@pure-ds/core 0.5.12 → 0.5.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -312,12 +312,9 @@ document.body.appendChild(settingsBtn);
|
|
|
312
312
|
|
|
313
313
|
const drawer = document.createElement('pds-drawer');
|
|
314
314
|
drawer.setAttribute('position', 'right');
|
|
315
|
-
drawer.innerHTML =
|
|
316
|
-
<div slot="drawer-header">Settings</div>
|
|
317
|
-
<div slot="drawer-content">
|
|
318
|
-
<my-theme></my-theme>
|
|
319
|
-
</div>
|
|
320
|
-
`;
|
|
315
|
+
drawer.innerHTML =
|
|
316
|
+
'<div slot="drawer-header">Settings</div>' +
|
|
317
|
+
'<div slot="drawer-content"><my-theme></my-theme></div>';
|
|
321
318
|
document.body.appendChild(drawer);
|
|
322
319
|
|
|
323
320
|
settingsBtn.addEventListener('click', () => {
|