@haiilo/catalyst 10.9.0 → 10.10.0
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/catalyst/catalyst.esm.js +1 -1
- package/dist/catalyst/{p-18c3eb4d.entry.js → p-ff4075a2.entry.js} +2 -2
- package/dist/catalyst/p-ff4075a2.entry.js.map +1 -0
- package/dist/cjs/cat-alert_29.cjs.entry.js +5 -1
- package/dist/cjs/cat-alert_29.cjs.entry.js.map +1 -1
- package/dist/collection/components/cat-card/cat-card.js +27 -1
- package/dist/collection/components/cat-card/cat-card.js.map +1 -1
- package/dist/components/cat-card.js +6 -2
- package/dist/components/cat-card.js.map +1 -1
- package/dist/esm/cat-alert_29.entry.js +5 -1
- package/dist/esm/cat-alert_29.entry.js.map +1 -1
- package/dist/types/components/cat-card/cat-card.d.ts +6 -0
- package/dist/types/components.d.ts +19 -0
- package/package.json +2 -2
- package/dist/catalyst/p-18c3eb4d.entry.js.map +0 -1
|
@@ -1242,9 +1242,13 @@ const CatCardStyle0 = catCardCss;
|
|
|
1242
1242
|
const CatCard = class {
|
|
1243
1243
|
constructor(hostRef) {
|
|
1244
1244
|
index.registerInstance(this, hostRef);
|
|
1245
|
+
this.catLoad = index.createEvent(this, "catLoad", 7);
|
|
1245
1246
|
}
|
|
1246
1247
|
render() {
|
|
1247
|
-
return index.h("slot", { key: '
|
|
1248
|
+
return index.h("slot", { key: '7c606bbb0c69502b495cde09b987f232f52391fe' });
|
|
1249
|
+
}
|
|
1250
|
+
componentDidLoad() {
|
|
1251
|
+
this.catLoad.emit();
|
|
1248
1252
|
}
|
|
1249
1253
|
};
|
|
1250
1254
|
CatCard.style = CatCardStyle0;
|