globuswebcomponents 2.6.8 → 2.6.9
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/gb-action-panel_70.cjs.entry.js +4 -1
- package/dist/cjs/gb-action-panel_70.cjs.entry.js.map +1 -1
- package/dist/cjs/globuscomponents.cjs.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/components/gb-empty-state/gb-empty-state.js +7 -1
- package/dist/collection/components/gb-empty-state/gb-empty-state.js.map +1 -1
- package/dist/components/gb-empty-state.js +6 -1
- package/dist/components/gb-empty-state.js.map +1 -1
- package/dist/docs.json +1 -1
- package/dist/esm/gb-action-panel_70.entry.js +4 -1
- package/dist/esm/gb-action-panel_70.entry.js.map +1 -1
- package/dist/esm/globuscomponents.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/globuscomponents/globuscomponents.esm.js +1 -1
- package/dist/globuscomponents/{p-0692411f.entry.js → p-67c4f4aa.entry.js} +2 -2
- package/dist/globuscomponents/p-67c4f4aa.entry.js.map +1 -0
- package/package.json +1 -1
- package/dist/globuscomponents/p-0692411f.entry.js.map +0 -1
|
@@ -4032,8 +4032,11 @@ const GbEmptyState = class {
|
|
|
4032
4032
|
this.changeTheme();
|
|
4033
4033
|
}
|
|
4034
4034
|
render() {
|
|
4035
|
-
return (h("div", { key: '
|
|
4035
|
+
return (h("div", { key: 'cee5d201fc10619b220f2d3990d2bc5233b3ddbf', class: "overall_container" }, h("div", { key: '39ad73ef7df6e31069475e1a3c83c19cc99c9774', class: `empty_state_wrapper ${this.size}` }, h("div", { key: '084f646b8b6f740cbcec214d6eacc4c90f538a32', class: "pattern" }), this.background && h("gb-pattern", { key: '0066b7c75fcf897c02854cfa12d2b794878b7442', type: this.backgroundType, theme: this.theme, class: `pattern ${this.icon}` }), h("div", { key: '845b3d469a0b15a6fed7622f27ad9c1da9d0a396', class: `top ${this.size}` }, this.icon === 'featured_icon' && h("gb-featured-icon", { key: 'fbfbf0d7734e3974d89baba83764a2a54173b627', size: "lg", icon: this.featuredIconSwap }), this.icon === 'illustration' && (h("gb-illustration", { key: '84c3e6c97d47d58772c0165dc577b3ab13dd489b', size: this.size, color: this.color, "illustration-style": this.illustrationStyle, "illustration-icon": this.illustrationIcon })), this.icon === 'file_type_icon' && (h("div", { key: '36cc0d2ba999816f873976200682568bd74a4cc2', class: "file_type_icon_div" }, h("gb-file-type-icon", { key: 'a2e78f82013985f940e52a69e589449a2b969f83', "file-style": this.fileStyle, "file-type": this.fileType }))), h("div", { key: '815f1a488c3872cdff33665e1ec9cc4893eefc84', class: "text_wrapper" }, h("p", { key: 'e205c97042f2a74d91d503adce6ad0628c519820', class: "heading text-md-semi-bold" }, this.mainText), h("p", { key: '5c006d02c5a00bdc2caac5faaa86db72daffe253', class: "supporting_text text-sm-regular" }, this.supportingText))), h("div", { key: 'ad5e039027845881841ae7acf91ccdb67e2bc6a1', class: "actions" }, this.secondaryButtonText && (h("div", { key: '2dee03f7d0e857525cc17588745293f8750ca825', class: "btn" }, h("gb-button", { key: 'af7be989a415290d68305deed495538c767da629', size: "lg", hierarchy: "secondary_gray", icon: "default", onClick: () => this.onSecondaryButtonClicked() }, h("p", { key: 'd6013e5c7fa6d95bce6e5a639adcd7028d255358' }, this.secondaryButtonText)))), this.primaryButtonText && (h("div", { key: 'c151ba3132c256733c130bc0d75523c7074084cd', class: "btn" }, h("gb-button", { key: 'ccd806adaa5b09a9ccb23da3a9b01e5d2fdc57a4', size: "lg", state: this.primaryButtonState, hierarchy: "primary", icon: "default", "icon-leading": this.primaryButtonIconLeadingSwap ? true : false, "icon-leading-swap": this.primaryButtonIconLeadingSwap, onClick: () => this.onPrimaryButtonClicked() }, h("p", { key: 'ea17a2e12356ba7bf9d75fe974ab6e75b260fb8d' }, this.primaryButtonText))))))));
|
|
4036
4036
|
}
|
|
4037
|
+
static get watchers() { return {
|
|
4038
|
+
"theme": ["changeTheme"]
|
|
4039
|
+
}; }
|
|
4037
4040
|
};
|
|
4038
4041
|
GbEmptyState.style = gbEmptyStateCss;
|
|
4039
4042
|
|