smoothly 1.0.0-alpha.26 → 1.0.0-alpha.27
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/dist/cjs/smoothly-accordion_58.cjs.entry.js +2 -2
- package/dist/cjs/smoothly-accordion_58.cjs.entry.js.map +1 -1
- package/dist/collection/components/notification/index.js +1 -1
- package/dist/collection/components/notification/index.js.map +1 -1
- package/dist/collection/components/notification/style.css +15 -7
- package/dist/custom-elements/index.js +2 -2
- package/dist/custom-elements/index.js.map +1 -1
- package/dist/esm/smoothly-accordion_58.entry.js +2 -2
- package/dist/esm/smoothly-accordion_58.entry.js.map +1 -1
- package/dist/smoothly/{p-6de9baa3.entry.js → p-05703805.entry.js} +2 -2
- package/dist/smoothly/{p-6de9baa3.entry.js.map → p-05703805.entry.js.map} +1 -1
- package/dist/smoothly/smoothly.esm.js +1 -1
- package/package.json +1 -1
|
@@ -26783,7 +26783,7 @@ const Item = class {
|
|
|
26783
26783
|
};
|
|
26784
26784
|
Item.style = styleCss$r;
|
|
26785
26785
|
|
|
26786
|
-
const styleCss$q = ".sc-smoothly-notification-h{display:block;width:30em;min-height:3em;border-radius:5px;margin:0.5em}.
|
|
26786
|
+
const styleCss$q = ".sc-smoothly-notification-h{display:block;width:30em;min-height:3em;border-radius:5px;margin:0.5em}.clean.sc-smoothly-notification{display:flex;justify-content:center;align-items:center;padding:0.5em 1em}.icon.sc-smoothly-notification{display:grid;width:100%;grid-template-columns:1fr 5fr}.icon.sc-smoothly-notification>p.sc-smoothly-notification{padding-right:1em}.sc-smoothly-notification-h>span.sc-smoothly-notification>p.sc-smoothly-notification{text-align:left}[hidden].sc-smoothly-notification-h{display:none}smoothly-icon.sc-smoothly-notification{left:0;font-size:1.2em;align-self:center;justify-self:center}smoothly-trigger.sc-smoothly-notification{font-size:0.5em;float:right;text-align:right;margin-right:0.2em}";
|
|
26787
26787
|
|
|
26788
26788
|
const Notification = class {
|
|
26789
26789
|
constructor(hostRef) {
|
|
@@ -26838,7 +26838,7 @@ const Notification = class {
|
|
|
26838
26838
|
this.onUpdatedNotice(this.notice);
|
|
26839
26839
|
}
|
|
26840
26840
|
render() {
|
|
26841
|
-
return (index.h(index.Host, { color: this.properties[0], fill: "solid" }, this.closable ? (index.h("smoothly-trigger", { fill: "clear", name: "close" }, index.h("smoothly-icon", { name: "close-circle-outline" }))) : (""), index.h("span",
|
|
26841
|
+
return (index.h(index.Host, { color: this.properties[0], fill: "solid" }, this.closable ? (index.h("smoothly-trigger", { fill: "clear", name: "close" }, index.h("smoothly-icon", { name: "close-circle-outline" }))) : (""), index.h("span", { class: this.icon ? "icon" : "clean" }, this.icon ? index.h("smoothly-icon", { name: this.properties[1] }) : "", index.h("p", null, this.notice.message))));
|
|
26842
26842
|
}
|
|
26843
26843
|
static get watchers() { return {
|
|
26844
26844
|
"notice": ["onUpdatedNotice"]
|