Add new component for inline notifications
2 unresolved threads
2 unresolved threads
Merge request reports
Activity
- packages/common/src/inline-notification.js 0 → 100644
54 } 55 56 .notification h3 { 57 margin: 0 0 3px 0; 58 font: inherit; 59 font-weight: bold; 60 } 61 `; 62 } 63 64 createBodyHtml() { 65 return document.createRange().createContextualFragment(`${ this.body }`); 66 } 67 68 render() { 69 const notificationId = createUUID(); changed this line in version 6 of the diff
- packages/common/src/inline-notification.js 0 → 100644
22 this.summary = ''; 23 this.body = ''; 24 } 25 26 static get properties() { 27 return { 28 lang: { type: String }, 29 type: { type: String }, 30 summary: { type: String }, 31 body: { type: String }, 32 }; 33 } 34 35 connectedCallback() { 36 super.connectedCallback(); 37 i18n.changeLanguage(this.lang); changed this line in version 6 of the diff
mentioned in commit 6b1f2886
Please register or sign in to reply