@sankhyalabs/ezui 1.1.87 → 1.1.88
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/ez-button_11.cjs.entry.js +21 -11
- package/dist/cjs/ezui.cjs.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/components/ez-button/ez-button.js +19 -2
- package/dist/collection/components/ez-grid/ez-grid.js +3 -4
- package/dist/collection/components/ez-icon/ez-icon.css +133 -1
- package/dist/collection/components/ez-icon/ez-icon.js +34 -6
- package/dist/custom-elements/index.js +42 -32
- package/dist/esm/ez-button_11.entry.js +21 -11
- package/dist/esm/ezui.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/ezui/ezui.esm.js +1 -1
- package/dist/ezui/{p-b796d351.entry.js → p-85a056d7.entry.js} +19 -19
- package/dist/types/components/ez-button/ez-button.d.ts +4 -0
- package/dist/types/components/ez-icon/ez-icon.d.ts +6 -0
- package/dist/types/components.d.ts +16 -0
- package/package.json +1 -1
|
@@ -45,13 +45,13 @@ let EzButton = class {
|
|
|
45
45
|
}
|
|
46
46
|
render() {
|
|
47
47
|
if (this.mode == "icon") {
|
|
48
|
-
return (index.h("button", { class: "icon " + this.size, type: "button", disabled: !this.enabled }, index.h("ez-icon", { class: "icon", href: this.image, size: this.getIconSize(), onClick: evt => {
|
|
48
|
+
return (index.h("button", { class: "icon " + this.size, type: "button", disabled: !this.enabled }, index.h("ez-icon", { class: "icon", href: this.image, iconName: this.iconName, size: this.getIconSize(), onClick: evt => {
|
|
49
49
|
if (!this.enabled)
|
|
50
50
|
evt.stopPropagation();
|
|
51
51
|
} })));
|
|
52
52
|
}
|
|
53
53
|
else if (this.mode == "label-icon") {
|
|
54
|
-
return (index.h("div", { class: "label-icon" }, index.h("button", { class: "icon", type: "button", disabled: !this.enabled }, index.h("ez-icon", { class: "icon", href: this.image, size: "large", onClick: evt => {
|
|
54
|
+
return (index.h("div", { class: "label-icon" }, index.h("button", { class: "icon", type: "button", disabled: !this.enabled }, index.h("ez-icon", { class: "icon", href: this.image, iconName: this.iconName, size: "large", onClick: evt => {
|
|
55
55
|
if (!this.enabled)
|
|
56
56
|
evt.stopPropagation();
|
|
57
57
|
} })), index.h("label", { title: this.label }, this.label)));
|
|
@@ -110535,8 +110535,8 @@ let EzGrid = class {
|
|
|
110535
110535
|
}
|
|
110536
110536
|
return [
|
|
110537
110537
|
index.h("div", { class: "text text--primary text--medium margin-right--medium" }, index.h("strong", { class: "text text--primary text--medium" }, `${this._navigationFirstRow}-${this._navigationLastRow}`), ` de ${this._navigationTotalRows}`),
|
|
110538
|
-
index.h("ez-button", { size: "small",
|
|
110539
|
-
index.h("ez-button", { size: "small",
|
|
110538
|
+
index.h("ez-button", { size: "small", iconName: "chevron-left", class: "button--secondary margin-right--medium", mode: "icon", enabled: this._navigationHasPrevious, onClick: () => this._gridController.previousPage(), label: "P\u00E1gina anterior" }),
|
|
110539
|
+
index.h("ez-button", { size: "small", iconName: "chevron-right", class: "button--secondary margin-right--medium", mode: "icon", enabled: this._navigationHasNext, onClick: () => this._gridController.nextPage(), label: "Pr\u00F3xima P\u00E1gina" })
|
|
110540
110540
|
];
|
|
110541
110541
|
}
|
|
110542
110542
|
applyConfig(cols) {
|
|
@@ -110552,13 +110552,13 @@ let EzGrid = class {
|
|
|
110552
110552
|
this._popUpVisible = true;
|
|
110553
110553
|
}
|
|
110554
110554
|
render() {
|
|
110555
|
-
return (index.h(index.Host, null, index.h("div", { class: "box box--shadow padding--medium grid__header margin-bottom--small" }, this.getPaginationControl(), index.h("ez-button", { size: "small",
|
|
110555
|
+
return (index.h(index.Host, null, index.h("div", { class: "box box--shadow padding--medium grid__header margin-bottom--small" }, this.getPaginationControl(), index.h("ez-button", { size: "small", iconName: "settings", class: "button--secondary", mode: "icon", onClick: () => { this.openConfig(); } })), index.h("div", { class: "grid__container ag-sankhya-theme", ref: elem => this._container = elem }), index.h("div", { class: "grid__footer" }), index.h("ez-modal", { modalSize: "small", closeEsc: true, closeOutsideClick: true, opened: this._popUpVisible, onEzCloseModal: () => this._popUpVisible = false }, index.h("grid-config", { ref: ref => this._gridConfig = ref, selectedTab: "Colunas", onConfigFinish: evt => this.applyConfig(evt.detail), onConfigCancel: _evt => this.closeConfig() }))));
|
|
110556
110556
|
}
|
|
110557
110557
|
static get assetsDirs() { return ["../assets"]; }
|
|
110558
110558
|
};
|
|
110559
110559
|
EzGrid.style = ezGridCss;
|
|
110560
110560
|
|
|
110561
|
-
const ezIconCss = ":host{display:flex;overflow:hidden;position:relative;--ez-icon--color:var(--icon--color, #ffffff)}svg{display:flex;justify-content:center;align-items:center;fill:var(--ez-icon--color)}.x-small{width:12px;height:12px}.small{width:16px;height:16px}.medium{width:20px;height:20px}.large{width:24px;height:24px}.x-large{width:30px;height:30px}";
|
|
110561
|
+
const ezIconCss = ":host{display:flex;overflow:hidden;position:relative;--ez-icon--color:var(--icon--color, #ffffff)}svg{display:flex;justify-content:center;align-items:center;fill:var(--ez-icon--color)}.x-small{width:12px;height:12px}.small{width:16px;height:16px}.medium{width:20px;height:20px}.large{width:24px;height:24px}.x-large{width:30px;height:30px}[class^=\"ez-icon-\"],[class*=\" ez-icon-\"]{font-family:'ez-icons' !important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ez-icon-account-outline:before{content:\"\\ea01\"}.ez-icon-account:before{content:\"\\ea02\"}.ez-icon-alert-circle-inverted:before{content:\"\\ea03\"}.ez-icon-alert-circle:before{content:\"\\ea04\"}.ez-icon-alert-mail:before{content:\"\\ea05\"}.ez-icon-alert-outline:before{content:\"\\ea06\"}.ez-icon-alert-popup:before{content:\"\\ea07\"}.ez-icon-apps:before{content:\"\\ea08\"}.ez-icon-arrow_back:before{content:\"\\ea09\"}.ez-icon-bell-inverted:before{content:\"\\ea0a\"}.ez-icon-bell:before{content:\"\\ea0b\"}.ez-icon-business-center:before{content:\"\\ea0c\"}.ez-icon-calendar-text:before{content:\"\\ea0d\"}.ez-icon-calendar:before{content:\"\\ea0e\"}.ez-icon-check-circle-inverted:before{content:\"\\ea0f\"}.ez-icon-check-circle:before{content:\"\\ea10\"}.ez-icon-check:before{content:\"\\ea11\"}.ez-icon-chevron-down:before{content:\"\\ea12\"}.ez-icon-chevron-left:before{content:\"\\ea13\"}.ez-icon-chevron-right:before{content:\"\\ea14\"}.ez-icon-chevron-up:before{content:\"\\ea15\"}.ez-icon-circle--medium:before{content:\"\\ea16\"}.ez-icon-circle:before{content:\"\\ea17\"}.ez-icon-clipboard:before{content:\"\\ea18\"}.ez-icon-close-circle-inverted:before{content:\"\\ea19\"}.ez-icon-close-circle:before{content:\"\\ea1a\"}.ez-icon-close:before{content:\"\\ea1b\"}.ez-icon-comment-inverted:before{content:\"\\ea1c\"}.ez-icon-comment:before{content:\"\\ea1d\"}.ez-icon-configuration:before{content:\"\\ea1e\"}.ez-icon-copy:before{content:\"\\ea1f\"}.ez-icon-crop:before{content:\"\\ea20\"}.ez-icon-delete:before{content:\"\\ea21\"}.ez-icon-description:before{content:\"\\ea22\"}.ez-icon-dot-notification:before{content:\"\\ea23\"}.ez-icon-dots-horizontal:before{content:\"\\ea24\"}.ez-icon-dots-vertical:before{content:\"\\ea25\"}.ez-icon-drag-indicator:before{content:\"\\ea26\"}.ez-icon-edit-file:before{content:\"\\ea27\"}.ez-icon-edit-table:before{content:\"\\ea28\"}.ez-icon-edit-time:before{content:\"\\ea29\"}.ez-icon-edit:before{content:\"\\ea2a\"}.ez-icon-email-inverted:before{content:\"\\ea2b\"}.ez-icon-email:before{content:\"\\ea2c\"}.ez-icon-error-octagon:before{content:\"\\ea2d\"}.ez-icon-expand:before{content:\"\\ea2e\"}.ez-icon-eye-off:before{content:\"\\ea2f\"}.ez-icon-eye:before{content:\"\\ea30\"}.ez-icon-favorite:before{content:\"\\ea31\"}.ez-icon-file-download:before{content:\"\\ea32\"}.ez-icon-file-upload:before{content:\"\\ea33\"}.ez-icon-filter:before{content:\"\\ea34\"}.ez-icon-find-file:before{content:\"\\ea35\"}.ez-icon-find-page:before{content:\"\\ea36\"}.ez-icon-format-color-fill:before{content:\"\\ea37\"}.ez-icon-help-circle-outline:before{content:\"\\ea38\"}.ez-icon-help-inverted:before{content:\"\\ea39\"}.ez-icon-help:before{content:\"\\ea3a\"}.ez-icon-home:before{content:\"\\ea3b\"}.ez-icon-language:before{content:\"\\ea3c\"}.ez-icon-launch:before{content:\"\\ea3d\"}.ez-icon-lightbulb:before{content:\"\\ea3e\"}.ez-icon-list:before{content:\"\\ea3f\"}.ez-icon-loading:before{content:\"\\ea40\"}.ez-icon-lock-outline:before{content:\"\\ea41\"}.ez-icon-lock:before{content:\"\\ea42\"}.ez-icon-menu:before{content:\"\\ea43\"}.ez-icon-minus-circle-inverted:before{content:\"\\ea44\"}.ez-icon-minus:before{content:\"\\ea45\"}.ez-icon-money-off:before{content:\"\\ea46\"}.ez-icon-money:before{content:\"\\ea47\"}.ez-icon-north-west:before{content:\"\\ea48\"}.ez-icon-pause:before{content:\"\\ea49\"}.ez-icon-payments:before{content:\"\\ea4a\"}.ez-icon-play:before{content:\"\\ea4b\"}.ez-icon-plus-circle-inverted:before{content:\"\\ea4c\"}.ez-icon-plus-circle:before{content:\"\\ea4d\"}.ez-icon-plus:before{content:\"\\ea4e\"}.ez-icon-power:before{content:\"\\ea4f\"}.ez-icon-push-pin:before{content:\"\\ea50\"}.ez-icon-restore:before{content:\"\\ea51\"}.ez-icon-return:before{content:\"\\ea52\"}.ez-icon-rotate:before{content:\"\\ea53\"}.ez-icon-save:before{content:\"\\ea54\"}.ez-icon-search:before{content:\"\\ea55\"}.ez-icon-settings-inverted:before{content:\"\\ea56\"}.ez-icon-settings:before{content:\"\\ea57\"}.ez-icon-share:before{content:\"\\ea58\"}.ez-icon-shield:before{content:\"\\ea59\"}.ez-icon-south-east:before{content:\"\\ea5a\"}.ez-icon-success-circle:before{content:\"\\ea5b\"}.ez-icon-sync:before{content:\"\\ea5c\"}.ez-icon-table:before{content:\"\\ea5d\"}.ez-icon-timer-outline:before{content:\"\\ea5e\"}.ez-icon-user-circle:before{content:\"\\ea5f\"}.ez-icon-warning-minus:before{content:\"\\ea60\"}.ez-icon-warning-triangle:before{content:\"\\ea61\"}.x-small--font{font-size:12px}.small--font{font-size:16px}.medium--font{font-size:20px}.large--font{font-size:24px}.x-large--font{font-size:30px}";
|
|
110562
110562
|
|
|
110563
110563
|
let EzIcon = class {
|
|
110564
110564
|
constructor(hostRef) {
|
|
@@ -110571,12 +110571,22 @@ let EzIcon = class {
|
|
|
110571
110571
|
isSprite() {
|
|
110572
110572
|
return this.href && this.href.indexOf('#') > -1;
|
|
110573
110573
|
}
|
|
110574
|
+
getIconClassName() {
|
|
110575
|
+
return `ez-icon-${this.iconName}`;
|
|
110576
|
+
}
|
|
110577
|
+
getIconContent() {
|
|
110578
|
+
if (this.isSprite()) {
|
|
110579
|
+
return index.h("svg", { class: this.size, role: "img" }, index.h("use", { xlinkHref: this.href }));
|
|
110580
|
+
}
|
|
110581
|
+
else if (!StringUtils.isEmpty(this.iconName)) {
|
|
110582
|
+
return index.h("span", { class: `icon-content ${this.getIconClassName()} ${this.size}--font` });
|
|
110583
|
+
}
|
|
110584
|
+
else {
|
|
110585
|
+
return index.h("img", { class: this.size, src: this.href });
|
|
110586
|
+
}
|
|
110587
|
+
}
|
|
110574
110588
|
render() {
|
|
110575
|
-
return (index.h(index.Host, null, this.
|
|
110576
|
-
?
|
|
110577
|
-
index.h("svg", { class: this.size, role: "img" }, index.h("use", { xlinkHref: this.href }))
|
|
110578
|
-
:
|
|
110579
|
-
index.h("img", { class: this.size, src: this.href })));
|
|
110589
|
+
return (index.h(index.Host, null, this.getIconContent()));
|
|
110580
110590
|
}
|
|
110581
110591
|
};
|
|
110582
110592
|
EzIcon.style = ezIconCss;
|
package/dist/cjs/ezui.cjs.js
CHANGED
|
@@ -15,5 +15,5 @@ const patchBrowser = () => {
|
|
|
15
15
|
};
|
|
16
16
|
|
|
17
17
|
patchBrowser().then(options => {
|
|
18
|
-
return index.bootstrapLazy([["ez-form.cjs",[[0,"ez-form",{"dataUnit":[1040],"config":[16],"submit":[64],"cancel":[64],"validate":[64]}]]],["ez-dialog.cjs",[[1,"ez-dialog",{"confirm":[1028],"critical":[1028],"message":[1025],"opened":[1540],"personalizedIconPath":[1025,"personalized-icon-path"],"ezTitle":[1025,"ez-title"],"handleButtonClick":[64],"show":[64]}]]],["ez-time-input.cjs",[[1,"ez-time-input",{"label":[513],"viewValue":[1537,"view-value"],"value":[1026],"enabled":[516],"errorMessage":[1537,"error-message"],"showSeconds":[516,"show-seconds"],"setFocus":[64],"setBlur":[64]}]]],["ez-action-chip.cjs",[[1,"ez-action-chip",{"label":[513],"enabled":[516]}]]],["ez-application.cjs",[[0,"ez-application"]]],["ez-label-chip.cjs",[[1,"ez-label-chip",{"label":[513],"enabled":[516],"removable":[516],"value":[1540],"setFocus":[64],"setBlur":[64]}]]],["ez-popover.cjs",[[1,"ez-popover",{"autoClose":[516,"auto-close"],"top":[1537],"left":[1537],"bottom":[1537],"right":[1537],"boxWidth":[513,"box-width"],"opened":[1540],"updatePosition":[64],"show":[64],"hide":[64]}]]],["ez-popup.cjs",[[1,"ez-popup",{"size":[1],"opened":[1540],"useHeader":[1540,"use-header"],"ezTitle":[1,"ez-title"]}]]],["ez-toast.cjs",[[1,"ez-toast",{"message":[1025],"fadeTime":[1026,"fade-time"],"useIcon":[1028,"use-icon"],"show":[64]}]]],["ez-calendar.cjs",[[1,"ez-calendar",{"value":[1040],"floating":[516],"time":[516],"showSeconds":[516,"show-seconds"],"show":[64],"fitVertical":[64],"hide":[64]}]]],["ez-button_11.cjs",[[0,"test-du"],[2,"ez-grid",{"multipleSelection":[4,"multiple-selection"],"pageSize":[2,"page-size"],"serverUrl":[1,"server-url"],"dataUnit":[16],"_navigationHasPrevious":[32],"_navigationHasNext":[32],"_navigationFirstRow":[32],"_navigationLastRow":[32],"_navigationTotalRows":[32],"_popUpVisible":[32],"setColumnsDef":[64],"addColumnMenuItem":[64],"setColumnsState":[64],"setData":[64],"getSelection":[64],"getColumnsState":[64],"getColumns":[64]}],[2,"grid-config",{"selectedTab":[1025,"selected-tab"],"columns":[1040]}],[1,"ez-modal",{"modalSize":[1,"modal-size"],"align":[1],"opened":[1028],"closeEsc":[4,"close-esc"],"closeOutsideClick":[4,"close-outside-click"]}],[1,"ez-list",{"dataSource":[1040],"useGroups":[1540,"use-groups"],"ezDraggable":[1028,"ez-draggable"],"ezSelectable":[1028,"ez-selectable"],"itemSlotBuilder":[1040],"_listItems":[32],"_listGroupItems":[32],"setSelection":[64],"getSelection":[64],"getList":[64]}],[1,"select-box",{"selectedOption":[1,"selected-option"]}],[1,"ez-button",{"label":[513],"enabled":[516],"mode":[513],"image":[513],"size":[513]}],[1,"ez-check",{"label":[513],"value":[1540],"enabled":[516],"mode":[513],"getMode":[64],"setFocus":[64]}],[1,"ez-tabselector",{"selectedIndex":[1537,"selected-index"],"selectedTab":[1537,"selected-tab"],"tabs":[1]}],[1,"ez-icon",{"size":[513],"href":[513]}],[1,"ez-text-input",{"label":[513],"value":[1537],"enabled":[516],"loading":[516],"errorMessage":[1537,"error-message"],"mask":[1],"restrict":[1],"setFocus":[64],"setBlur":[64]}]]],["ez-combo-box.cjs",[[1,"ez-combo-box",{"value":[1537],"label":[513],"enabled":[516],"options":[1040],"errorMessage":[1537,"error-message"],"searchMode":[4,"search-mode"],"showSelectedValue":[4,"show-selected-value"],"showOptionValue":[4,"show-option-value"],"optionLoader":[16],"_preSelection":[32],"_visibleOptions":[32]}]]],["ez-collapsible-box_7.cjs",[[1,"ez-date-input",{"label":[513],"value":[1040],"enabled":[516],"errorMessage":[1537,"error-message"]}],[1,"ez-date-time-input",{"label":[513],"value":[1040],"enabled":[516],"errorMessage":[1537,"error-message"],"showSeconds":[516,"show-seconds"]}],[1,"ez-search",{"value":[1537],"label":[1537],"enabled":[1540],"errorMessage":[1537,"error-message"],"optionLoader":[16],"showSelectedValue":[4,"show-selected-value"],"showOptionValue":[4,"show-option-value"]}],[1,"ez-number-input",{"label":[1],"value":[1538],"enabled":[4],"errorMessage":[1537,"error-message"],"precision":[2],"prettyPrecision":[2,"pretty-precision"]}],[1,"ez-collapsible-box",{"value":[1540],"label":[513],"headerSize":[513,"header-size"],"iconPlacement":[513,"icon-placement"],"showHide":[64]}],[1,"ez-text-area",{"label":[513],"value":[1537],"enabled":[516],"loading":[516],"errorMessage":[1537,"error-message"],"rows":[1538],"setFocus":[64],"setBlur":[64]}],[1,"ez-upload",{"label":[1],"enabled":[4],"maxFileSize":[2,"max-file-size"],"maxFiles":[2,"max-files"],"requestHeaders":[8,"request-headers"],"urlUpload":[1,"url-upload"],"urlDelete":[1,"url-delete"],"value":[1040],"addFiles":[64]}]]]], options);
|
|
18
|
+
return index.bootstrapLazy([["ez-form.cjs",[[0,"ez-form",{"dataUnit":[1040],"config":[16],"submit":[64],"cancel":[64],"validate":[64]}]]],["ez-dialog.cjs",[[1,"ez-dialog",{"confirm":[1028],"critical":[1028],"message":[1025],"opened":[1540],"personalizedIconPath":[1025,"personalized-icon-path"],"ezTitle":[1025,"ez-title"],"handleButtonClick":[64],"show":[64]}]]],["ez-time-input.cjs",[[1,"ez-time-input",{"label":[513],"viewValue":[1537,"view-value"],"value":[1026],"enabled":[516],"errorMessage":[1537,"error-message"],"showSeconds":[516,"show-seconds"],"setFocus":[64],"setBlur":[64]}]]],["ez-action-chip.cjs",[[1,"ez-action-chip",{"label":[513],"enabled":[516]}]]],["ez-application.cjs",[[0,"ez-application"]]],["ez-label-chip.cjs",[[1,"ez-label-chip",{"label":[513],"enabled":[516],"removable":[516],"value":[1540],"setFocus":[64],"setBlur":[64]}]]],["ez-popover.cjs",[[1,"ez-popover",{"autoClose":[516,"auto-close"],"top":[1537],"left":[1537],"bottom":[1537],"right":[1537],"boxWidth":[513,"box-width"],"opened":[1540],"updatePosition":[64],"show":[64],"hide":[64]}]]],["ez-popup.cjs",[[1,"ez-popup",{"size":[1],"opened":[1540],"useHeader":[1540,"use-header"],"ezTitle":[1,"ez-title"]}]]],["ez-toast.cjs",[[1,"ez-toast",{"message":[1025],"fadeTime":[1026,"fade-time"],"useIcon":[1028,"use-icon"],"show":[64]}]]],["ez-calendar.cjs",[[1,"ez-calendar",{"value":[1040],"floating":[516],"time":[516],"showSeconds":[516,"show-seconds"],"show":[64],"fitVertical":[64],"hide":[64]}]]],["ez-button_11.cjs",[[0,"test-du"],[2,"ez-grid",{"multipleSelection":[4,"multiple-selection"],"pageSize":[2,"page-size"],"serverUrl":[1,"server-url"],"dataUnit":[16],"_navigationHasPrevious":[32],"_navigationHasNext":[32],"_navigationFirstRow":[32],"_navigationLastRow":[32],"_navigationTotalRows":[32],"_popUpVisible":[32],"setColumnsDef":[64],"addColumnMenuItem":[64],"setColumnsState":[64],"setData":[64],"getSelection":[64],"getColumnsState":[64],"getColumns":[64]}],[2,"grid-config",{"selectedTab":[1025,"selected-tab"],"columns":[1040]}],[1,"ez-modal",{"modalSize":[1,"modal-size"],"align":[1],"opened":[1028],"closeEsc":[4,"close-esc"],"closeOutsideClick":[4,"close-outside-click"]}],[1,"ez-list",{"dataSource":[1040],"useGroups":[1540,"use-groups"],"ezDraggable":[1028,"ez-draggable"],"ezSelectable":[1028,"ez-selectable"],"itemSlotBuilder":[1040],"_listItems":[32],"_listGroupItems":[32],"setSelection":[64],"getSelection":[64],"getList":[64]}],[1,"select-box",{"selectedOption":[1,"selected-option"]}],[1,"ez-button",{"label":[513],"enabled":[516],"mode":[513],"image":[513],"iconName":[513,"icon-name"],"size":[513]}],[1,"ez-check",{"label":[513],"value":[1540],"enabled":[516],"mode":[513],"getMode":[64],"setFocus":[64]}],[1,"ez-tabselector",{"selectedIndex":[1537,"selected-index"],"selectedTab":[1537,"selected-tab"],"tabs":[1]}],[1,"ez-icon",{"size":[513],"href":[513],"iconName":[513,"icon-name"]}],[1,"ez-text-input",{"label":[513],"value":[1537],"enabled":[516],"loading":[516],"errorMessage":[1537,"error-message"],"mask":[1],"restrict":[1],"setFocus":[64],"setBlur":[64]}]]],["ez-combo-box.cjs",[[1,"ez-combo-box",{"value":[1537],"label":[513],"enabled":[516],"options":[1040],"errorMessage":[1537,"error-message"],"searchMode":[4,"search-mode"],"showSelectedValue":[4,"show-selected-value"],"showOptionValue":[4,"show-option-value"],"optionLoader":[16],"_preSelection":[32],"_visibleOptions":[32]}]]],["ez-collapsible-box_7.cjs",[[1,"ez-date-input",{"label":[513],"value":[1040],"enabled":[516],"errorMessage":[1537,"error-message"]}],[1,"ez-date-time-input",{"label":[513],"value":[1040],"enabled":[516],"errorMessage":[1537,"error-message"],"showSeconds":[516,"show-seconds"]}],[1,"ez-search",{"value":[1537],"label":[1537],"enabled":[1540],"errorMessage":[1537,"error-message"],"optionLoader":[16],"showSelectedValue":[4,"show-selected-value"],"showOptionValue":[4,"show-option-value"]}],[1,"ez-number-input",{"label":[1],"value":[1538],"enabled":[4],"errorMessage":[1537,"error-message"],"precision":[2],"prettyPrecision":[2,"pretty-precision"]}],[1,"ez-collapsible-box",{"value":[1540],"label":[513],"headerSize":[513,"header-size"],"iconPlacement":[513,"icon-placement"],"showHide":[64]}],[1,"ez-text-area",{"label":[513],"value":[1537],"enabled":[516],"loading":[516],"errorMessage":[1537,"error-message"],"rows":[1538],"setFocus":[64],"setBlur":[64]}],[1,"ez-upload",{"label":[1],"enabled":[4],"maxFileSize":[2,"max-file-size"],"maxFiles":[2,"max-files"],"requestHeaders":[8,"request-headers"],"urlUpload":[1,"url-upload"],"urlDelete":[1,"url-delete"],"value":[1040],"addFiles":[64]}]]]], options);
|
|
19
19
|
});
|
package/dist/cjs/loader.cjs.js
CHANGED
|
@@ -14,7 +14,7 @@ const patchEsm = () => {
|
|
|
14
14
|
const defineCustomElements = (win, options) => {
|
|
15
15
|
if (typeof window === 'undefined') return Promise.resolve();
|
|
16
16
|
return patchEsm().then(() => {
|
|
17
|
-
return index.bootstrapLazy([["ez-form.cjs",[[0,"ez-form",{"dataUnit":[1040],"config":[16],"submit":[64],"cancel":[64],"validate":[64]}]]],["ez-dialog.cjs",[[1,"ez-dialog",{"confirm":[1028],"critical":[1028],"message":[1025],"opened":[1540],"personalizedIconPath":[1025,"personalized-icon-path"],"ezTitle":[1025,"ez-title"],"handleButtonClick":[64],"show":[64]}]]],["ez-time-input.cjs",[[1,"ez-time-input",{"label":[513],"viewValue":[1537,"view-value"],"value":[1026],"enabled":[516],"errorMessage":[1537,"error-message"],"showSeconds":[516,"show-seconds"],"setFocus":[64],"setBlur":[64]}]]],["ez-action-chip.cjs",[[1,"ez-action-chip",{"label":[513],"enabled":[516]}]]],["ez-application.cjs",[[0,"ez-application"]]],["ez-label-chip.cjs",[[1,"ez-label-chip",{"label":[513],"enabled":[516],"removable":[516],"value":[1540],"setFocus":[64],"setBlur":[64]}]]],["ez-popover.cjs",[[1,"ez-popover",{"autoClose":[516,"auto-close"],"top":[1537],"left":[1537],"bottom":[1537],"right":[1537],"boxWidth":[513,"box-width"],"opened":[1540],"updatePosition":[64],"show":[64],"hide":[64]}]]],["ez-popup.cjs",[[1,"ez-popup",{"size":[1],"opened":[1540],"useHeader":[1540,"use-header"],"ezTitle":[1,"ez-title"]}]]],["ez-toast.cjs",[[1,"ez-toast",{"message":[1025],"fadeTime":[1026,"fade-time"],"useIcon":[1028,"use-icon"],"show":[64]}]]],["ez-calendar.cjs",[[1,"ez-calendar",{"value":[1040],"floating":[516],"time":[516],"showSeconds":[516,"show-seconds"],"show":[64],"fitVertical":[64],"hide":[64]}]]],["ez-button_11.cjs",[[0,"test-du"],[2,"ez-grid",{"multipleSelection":[4,"multiple-selection"],"pageSize":[2,"page-size"],"serverUrl":[1,"server-url"],"dataUnit":[16],"_navigationHasPrevious":[32],"_navigationHasNext":[32],"_navigationFirstRow":[32],"_navigationLastRow":[32],"_navigationTotalRows":[32],"_popUpVisible":[32],"setColumnsDef":[64],"addColumnMenuItem":[64],"setColumnsState":[64],"setData":[64],"getSelection":[64],"getColumnsState":[64],"getColumns":[64]}],[2,"grid-config",{"selectedTab":[1025,"selected-tab"],"columns":[1040]}],[1,"ez-modal",{"modalSize":[1,"modal-size"],"align":[1],"opened":[1028],"closeEsc":[4,"close-esc"],"closeOutsideClick":[4,"close-outside-click"]}],[1,"ez-list",{"dataSource":[1040],"useGroups":[1540,"use-groups"],"ezDraggable":[1028,"ez-draggable"],"ezSelectable":[1028,"ez-selectable"],"itemSlotBuilder":[1040],"_listItems":[32],"_listGroupItems":[32],"setSelection":[64],"getSelection":[64],"getList":[64]}],[1,"select-box",{"selectedOption":[1,"selected-option"]}],[1,"ez-button",{"label":[513],"enabled":[516],"mode":[513],"image":[513],"size":[513]}],[1,"ez-check",{"label":[513],"value":[1540],"enabled":[516],"mode":[513],"getMode":[64],"setFocus":[64]}],[1,"ez-tabselector",{"selectedIndex":[1537,"selected-index"],"selectedTab":[1537,"selected-tab"],"tabs":[1]}],[1,"ez-icon",{"size":[513],"href":[513]}],[1,"ez-text-input",{"label":[513],"value":[1537],"enabled":[516],"loading":[516],"errorMessage":[1537,"error-message"],"mask":[1],"restrict":[1],"setFocus":[64],"setBlur":[64]}]]],["ez-combo-box.cjs",[[1,"ez-combo-box",{"value":[1537],"label":[513],"enabled":[516],"options":[1040],"errorMessage":[1537,"error-message"],"searchMode":[4,"search-mode"],"showSelectedValue":[4,"show-selected-value"],"showOptionValue":[4,"show-option-value"],"optionLoader":[16],"_preSelection":[32],"_visibleOptions":[32]}]]],["ez-collapsible-box_7.cjs",[[1,"ez-date-input",{"label":[513],"value":[1040],"enabled":[516],"errorMessage":[1537,"error-message"]}],[1,"ez-date-time-input",{"label":[513],"value":[1040],"enabled":[516],"errorMessage":[1537,"error-message"],"showSeconds":[516,"show-seconds"]}],[1,"ez-search",{"value":[1537],"label":[1537],"enabled":[1540],"errorMessage":[1537,"error-message"],"optionLoader":[16],"showSelectedValue":[4,"show-selected-value"],"showOptionValue":[4,"show-option-value"]}],[1,"ez-number-input",{"label":[1],"value":[1538],"enabled":[4],"errorMessage":[1537,"error-message"],"precision":[2],"prettyPrecision":[2,"pretty-precision"]}],[1,"ez-collapsible-box",{"value":[1540],"label":[513],"headerSize":[513,"header-size"],"iconPlacement":[513,"icon-placement"],"showHide":[64]}],[1,"ez-text-area",{"label":[513],"value":[1537],"enabled":[516],"loading":[516],"errorMessage":[1537,"error-message"],"rows":[1538],"setFocus":[64],"setBlur":[64]}],[1,"ez-upload",{"label":[1],"enabled":[4],"maxFileSize":[2,"max-file-size"],"maxFiles":[2,"max-files"],"requestHeaders":[8,"request-headers"],"urlUpload":[1,"url-upload"],"urlDelete":[1,"url-delete"],"value":[1040],"addFiles":[64]}]]]], options);
|
|
17
|
+
return index.bootstrapLazy([["ez-form.cjs",[[0,"ez-form",{"dataUnit":[1040],"config":[16],"submit":[64],"cancel":[64],"validate":[64]}]]],["ez-dialog.cjs",[[1,"ez-dialog",{"confirm":[1028],"critical":[1028],"message":[1025],"opened":[1540],"personalizedIconPath":[1025,"personalized-icon-path"],"ezTitle":[1025,"ez-title"],"handleButtonClick":[64],"show":[64]}]]],["ez-time-input.cjs",[[1,"ez-time-input",{"label":[513],"viewValue":[1537,"view-value"],"value":[1026],"enabled":[516],"errorMessage":[1537,"error-message"],"showSeconds":[516,"show-seconds"],"setFocus":[64],"setBlur":[64]}]]],["ez-action-chip.cjs",[[1,"ez-action-chip",{"label":[513],"enabled":[516]}]]],["ez-application.cjs",[[0,"ez-application"]]],["ez-label-chip.cjs",[[1,"ez-label-chip",{"label":[513],"enabled":[516],"removable":[516],"value":[1540],"setFocus":[64],"setBlur":[64]}]]],["ez-popover.cjs",[[1,"ez-popover",{"autoClose":[516,"auto-close"],"top":[1537],"left":[1537],"bottom":[1537],"right":[1537],"boxWidth":[513,"box-width"],"opened":[1540],"updatePosition":[64],"show":[64],"hide":[64]}]]],["ez-popup.cjs",[[1,"ez-popup",{"size":[1],"opened":[1540],"useHeader":[1540,"use-header"],"ezTitle":[1,"ez-title"]}]]],["ez-toast.cjs",[[1,"ez-toast",{"message":[1025],"fadeTime":[1026,"fade-time"],"useIcon":[1028,"use-icon"],"show":[64]}]]],["ez-calendar.cjs",[[1,"ez-calendar",{"value":[1040],"floating":[516],"time":[516],"showSeconds":[516,"show-seconds"],"show":[64],"fitVertical":[64],"hide":[64]}]]],["ez-button_11.cjs",[[0,"test-du"],[2,"ez-grid",{"multipleSelection":[4,"multiple-selection"],"pageSize":[2,"page-size"],"serverUrl":[1,"server-url"],"dataUnit":[16],"_navigationHasPrevious":[32],"_navigationHasNext":[32],"_navigationFirstRow":[32],"_navigationLastRow":[32],"_navigationTotalRows":[32],"_popUpVisible":[32],"setColumnsDef":[64],"addColumnMenuItem":[64],"setColumnsState":[64],"setData":[64],"getSelection":[64],"getColumnsState":[64],"getColumns":[64]}],[2,"grid-config",{"selectedTab":[1025,"selected-tab"],"columns":[1040]}],[1,"ez-modal",{"modalSize":[1,"modal-size"],"align":[1],"opened":[1028],"closeEsc":[4,"close-esc"],"closeOutsideClick":[4,"close-outside-click"]}],[1,"ez-list",{"dataSource":[1040],"useGroups":[1540,"use-groups"],"ezDraggable":[1028,"ez-draggable"],"ezSelectable":[1028,"ez-selectable"],"itemSlotBuilder":[1040],"_listItems":[32],"_listGroupItems":[32],"setSelection":[64],"getSelection":[64],"getList":[64]}],[1,"select-box",{"selectedOption":[1,"selected-option"]}],[1,"ez-button",{"label":[513],"enabled":[516],"mode":[513],"image":[513],"iconName":[513,"icon-name"],"size":[513]}],[1,"ez-check",{"label":[513],"value":[1540],"enabled":[516],"mode":[513],"getMode":[64],"setFocus":[64]}],[1,"ez-tabselector",{"selectedIndex":[1537,"selected-index"],"selectedTab":[1537,"selected-tab"],"tabs":[1]}],[1,"ez-icon",{"size":[513],"href":[513],"iconName":[513,"icon-name"]}],[1,"ez-text-input",{"label":[513],"value":[1537],"enabled":[516],"loading":[516],"errorMessage":[1537,"error-message"],"mask":[1],"restrict":[1],"setFocus":[64],"setBlur":[64]}]]],["ez-combo-box.cjs",[[1,"ez-combo-box",{"value":[1537],"label":[513],"enabled":[516],"options":[1040],"errorMessage":[1537,"error-message"],"searchMode":[4,"search-mode"],"showSelectedValue":[4,"show-selected-value"],"showOptionValue":[4,"show-option-value"],"optionLoader":[16],"_preSelection":[32],"_visibleOptions":[32]}]]],["ez-collapsible-box_7.cjs",[[1,"ez-date-input",{"label":[513],"value":[1040],"enabled":[516],"errorMessage":[1537,"error-message"]}],[1,"ez-date-time-input",{"label":[513],"value":[1040],"enabled":[516],"errorMessage":[1537,"error-message"],"showSeconds":[516,"show-seconds"]}],[1,"ez-search",{"value":[1537],"label":[1537],"enabled":[1540],"errorMessage":[1537,"error-message"],"optionLoader":[16],"showSelectedValue":[4,"show-selected-value"],"showOptionValue":[4,"show-option-value"]}],[1,"ez-number-input",{"label":[1],"value":[1538],"enabled":[4],"errorMessage":[1537,"error-message"],"precision":[2],"prettyPrecision":[2,"pretty-precision"]}],[1,"ez-collapsible-box",{"value":[1540],"label":[513],"headerSize":[513,"header-size"],"iconPlacement":[513,"icon-placement"],"showHide":[64]}],[1,"ez-text-area",{"label":[513],"value":[1537],"enabled":[516],"loading":[516],"errorMessage":[1537,"error-message"],"rows":[1538],"setFocus":[64],"setBlur":[64]}],[1,"ez-upload",{"label":[1],"enabled":[4],"maxFileSize":[2,"max-file-size"],"maxFiles":[2,"max-files"],"requestHeaders":[8,"request-headers"],"urlUpload":[1,"url-upload"],"urlDelete":[1,"url-delete"],"value":[1040],"addFiles":[64]}]]]], options);
|
|
18
18
|
});
|
|
19
19
|
};
|
|
20
20
|
|
|
@@ -36,13 +36,13 @@ export class EzButton {
|
|
|
36
36
|
render() {
|
|
37
37
|
if (this.mode == "icon") {
|
|
38
38
|
return (h("button", { class: "icon " + this.size, type: "button", disabled: !this.enabled },
|
|
39
|
-
h("ez-icon", { class: "icon", href: this.image, size: this.getIconSize(), onClick: evt => { if (!this.enabled)
|
|
39
|
+
h("ez-icon", { class: "icon", href: this.image, iconName: this.iconName, size: this.getIconSize(), onClick: evt => { if (!this.enabled)
|
|
40
40
|
evt.stopPropagation(); } })));
|
|
41
41
|
}
|
|
42
42
|
else if (this.mode == "label-icon") {
|
|
43
43
|
return (h("div", { class: "label-icon" },
|
|
44
44
|
h("button", { class: "icon", type: "button", disabled: !this.enabled },
|
|
45
|
-
h("ez-icon", { class: "icon", href: this.image, size: "large", onClick: evt => { if (!this.enabled)
|
|
45
|
+
h("ez-icon", { class: "icon", href: this.image, iconName: this.iconName, size: "large", onClick: evt => { if (!this.enabled)
|
|
46
46
|
evt.stopPropagation(); } })),
|
|
47
47
|
h("label", { title: this.label }, this.label)));
|
|
48
48
|
}
|
|
@@ -138,6 +138,23 @@ export class EzButton {
|
|
|
138
138
|
"attribute": "image",
|
|
139
139
|
"reflect": true
|
|
140
140
|
},
|
|
141
|
+
"iconName": {
|
|
142
|
+
"type": "string",
|
|
143
|
+
"mutable": false,
|
|
144
|
+
"complexType": {
|
|
145
|
+
"original": "string",
|
|
146
|
+
"resolved": "string",
|
|
147
|
+
"references": {}
|
|
148
|
+
},
|
|
149
|
+
"required": false,
|
|
150
|
+
"optional": false,
|
|
151
|
+
"docs": {
|
|
152
|
+
"tags": [],
|
|
153
|
+
"text": "Nome do icone dispon\u00EDvel no pacote de fontes [ez-icons](https://sankhyalabs-storybook.herokuapp.com/themes/default/icons/fonts/index.html)"
|
|
154
|
+
},
|
|
155
|
+
"attribute": "icon-name",
|
|
156
|
+
"reflect": true
|
|
157
|
+
},
|
|
141
158
|
"size": {
|
|
142
159
|
"type": "string",
|
|
143
160
|
"mutable": false,
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { Component, h, Host, Prop, Method, Event, State } from "@stencil/core";
|
|
2
2
|
import AgGridController from "./controller/ag-grid/AgGridController";
|
|
3
|
-
import { getSpritePath } from "../../utils/AssetsUtils";
|
|
4
3
|
import DataUnitBridge from "./controller/DataUnitBridge";
|
|
5
4
|
export class EzGrid {
|
|
6
5
|
constructor() {
|
|
@@ -89,8 +88,8 @@ export class EzGrid {
|
|
|
89
88
|
h("div", { class: "text text--primary text--medium margin-right--medium" },
|
|
90
89
|
h("strong", { class: "text text--primary text--medium" }, `${this._navigationFirstRow}-${this._navigationLastRow}`),
|
|
91
90
|
` de ${this._navigationTotalRows}`),
|
|
92
|
-
h("ez-button", { size: "small",
|
|
93
|
-
h("ez-button", { size: "small",
|
|
91
|
+
h("ez-button", { size: "small", iconName: "chevron-left", class: "button--secondary margin-right--medium", mode: "icon", enabled: this._navigationHasPrevious, onClick: () => this._gridController.previousPage(), label: "P\u00E1gina anterior" }),
|
|
92
|
+
h("ez-button", { size: "small", iconName: "chevron-right", class: "button--secondary margin-right--medium", mode: "icon", enabled: this._navigationHasNext, onClick: () => this._gridController.nextPage(), label: "Pr\u00F3xima P\u00E1gina" })
|
|
94
93
|
];
|
|
95
94
|
}
|
|
96
95
|
applyConfig(cols) {
|
|
@@ -109,7 +108,7 @@ export class EzGrid {
|
|
|
109
108
|
return (h(Host, null,
|
|
110
109
|
h("div", { class: "box box--shadow padding--medium grid__header margin-bottom--small" },
|
|
111
110
|
this.getPaginationControl(),
|
|
112
|
-
h("ez-button", { size: "small",
|
|
111
|
+
h("ez-button", { size: "small", iconName: "settings", class: "button--secondary", mode: "icon", onClick: () => { this.openConfig(); } })),
|
|
113
112
|
h("div", { class: "grid__container ag-sankhya-theme", ref: elem => this._container = elem }),
|
|
114
113
|
h("div", { class: "grid__footer" }),
|
|
115
114
|
h("ez-modal", { modalSize: "small", closeEsc: true, closeOutsideClick: true, opened: this._popUpVisible, onEzCloseModal: () => this._popUpVisible = false },
|
|
@@ -36,4 +36,136 @@ svg {
|
|
|
36
36
|
.x-large {
|
|
37
37
|
width: 30px;
|
|
38
38
|
height: 30px;
|
|
39
|
-
}
|
|
39
|
+
}
|
|
40
|
+
/*
|
|
41
|
+
START CSS GENERATED BY EZ-DESIGN ICONS, SEE MORE AT ez-design\scripts\fontsGenerator.js.
|
|
42
|
+
WHEN ADD NEW ICONS THIS CSS NEED TO BE UPDATED
|
|
43
|
+
*/
|
|
44
|
+
[class^="ez-icon-"], [class*=" ez-icon-"] {
|
|
45
|
+
font-family: 'ez-icons' !important;
|
|
46
|
+
font-size: 16px;
|
|
47
|
+
font-style:normal;
|
|
48
|
+
-webkit-font-smoothing: antialiased;
|
|
49
|
+
-moz-osx-font-smoothing: grayscale;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.ez-icon-account-outline:before { content: "\ea01"; }
|
|
53
|
+
.ez-icon-account:before { content: "\ea02"; }
|
|
54
|
+
.ez-icon-alert-circle-inverted:before { content: "\ea03"; }
|
|
55
|
+
.ez-icon-alert-circle:before { content: "\ea04"; }
|
|
56
|
+
.ez-icon-alert-mail:before { content: "\ea05"; }
|
|
57
|
+
.ez-icon-alert-outline:before { content: "\ea06"; }
|
|
58
|
+
.ez-icon-alert-popup:before { content: "\ea07"; }
|
|
59
|
+
.ez-icon-apps:before { content: "\ea08"; }
|
|
60
|
+
.ez-icon-arrow_back:before { content: "\ea09"; }
|
|
61
|
+
.ez-icon-bell-inverted:before { content: "\ea0a"; }
|
|
62
|
+
.ez-icon-bell:before { content: "\ea0b"; }
|
|
63
|
+
.ez-icon-business-center:before { content: "\ea0c"; }
|
|
64
|
+
.ez-icon-calendar-text:before { content: "\ea0d"; }
|
|
65
|
+
.ez-icon-calendar:before { content: "\ea0e"; }
|
|
66
|
+
.ez-icon-check-circle-inverted:before { content: "\ea0f"; }
|
|
67
|
+
.ez-icon-check-circle:before { content: "\ea10"; }
|
|
68
|
+
.ez-icon-check:before { content: "\ea11"; }
|
|
69
|
+
.ez-icon-chevron-down:before { content: "\ea12"; }
|
|
70
|
+
.ez-icon-chevron-left:before { content: "\ea13"; }
|
|
71
|
+
.ez-icon-chevron-right:before { content: "\ea14"; }
|
|
72
|
+
.ez-icon-chevron-up:before { content: "\ea15"; }
|
|
73
|
+
.ez-icon-circle--medium:before { content: "\ea16"; }
|
|
74
|
+
.ez-icon-circle:before { content: "\ea17"; }
|
|
75
|
+
.ez-icon-clipboard:before { content: "\ea18"; }
|
|
76
|
+
.ez-icon-close-circle-inverted:before { content: "\ea19"; }
|
|
77
|
+
.ez-icon-close-circle:before { content: "\ea1a"; }
|
|
78
|
+
.ez-icon-close:before { content: "\ea1b"; }
|
|
79
|
+
.ez-icon-comment-inverted:before { content: "\ea1c"; }
|
|
80
|
+
.ez-icon-comment:before { content: "\ea1d"; }
|
|
81
|
+
.ez-icon-configuration:before { content: "\ea1e"; }
|
|
82
|
+
.ez-icon-copy:before { content: "\ea1f"; }
|
|
83
|
+
.ez-icon-crop:before { content: "\ea20"; }
|
|
84
|
+
.ez-icon-delete:before { content: "\ea21"; }
|
|
85
|
+
.ez-icon-description:before { content: "\ea22"; }
|
|
86
|
+
.ez-icon-dot-notification:before { content: "\ea23"; }
|
|
87
|
+
.ez-icon-dots-horizontal:before { content: "\ea24"; }
|
|
88
|
+
.ez-icon-dots-vertical:before { content: "\ea25"; }
|
|
89
|
+
.ez-icon-drag-indicator:before { content: "\ea26"; }
|
|
90
|
+
.ez-icon-edit-file:before { content: "\ea27"; }
|
|
91
|
+
.ez-icon-edit-table:before { content: "\ea28"; }
|
|
92
|
+
.ez-icon-edit-time:before { content: "\ea29"; }
|
|
93
|
+
.ez-icon-edit:before { content: "\ea2a"; }
|
|
94
|
+
.ez-icon-email-inverted:before { content: "\ea2b"; }
|
|
95
|
+
.ez-icon-email:before { content: "\ea2c"; }
|
|
96
|
+
.ez-icon-error-octagon:before { content: "\ea2d"; }
|
|
97
|
+
.ez-icon-expand:before { content: "\ea2e"; }
|
|
98
|
+
.ez-icon-eye-off:before { content: "\ea2f"; }
|
|
99
|
+
.ez-icon-eye:before { content: "\ea30"; }
|
|
100
|
+
.ez-icon-favorite:before { content: "\ea31"; }
|
|
101
|
+
.ez-icon-file-download:before { content: "\ea32"; }
|
|
102
|
+
.ez-icon-file-upload:before { content: "\ea33"; }
|
|
103
|
+
.ez-icon-filter:before { content: "\ea34"; }
|
|
104
|
+
.ez-icon-find-file:before { content: "\ea35"; }
|
|
105
|
+
.ez-icon-find-page:before { content: "\ea36"; }
|
|
106
|
+
.ez-icon-format-color-fill:before { content: "\ea37"; }
|
|
107
|
+
.ez-icon-help-circle-outline:before { content: "\ea38"; }
|
|
108
|
+
.ez-icon-help-inverted:before { content: "\ea39"; }
|
|
109
|
+
.ez-icon-help:before { content: "\ea3a"; }
|
|
110
|
+
.ez-icon-home:before { content: "\ea3b"; }
|
|
111
|
+
.ez-icon-language:before { content: "\ea3c"; }
|
|
112
|
+
.ez-icon-launch:before { content: "\ea3d"; }
|
|
113
|
+
.ez-icon-lightbulb:before { content: "\ea3e"; }
|
|
114
|
+
.ez-icon-list:before { content: "\ea3f"; }
|
|
115
|
+
.ez-icon-loading:before { content: "\ea40"; }
|
|
116
|
+
.ez-icon-lock-outline:before { content: "\ea41"; }
|
|
117
|
+
.ez-icon-lock:before { content: "\ea42"; }
|
|
118
|
+
.ez-icon-menu:before { content: "\ea43"; }
|
|
119
|
+
.ez-icon-minus-circle-inverted:before { content: "\ea44"; }
|
|
120
|
+
.ez-icon-minus:before { content: "\ea45"; }
|
|
121
|
+
.ez-icon-money-off:before { content: "\ea46"; }
|
|
122
|
+
.ez-icon-money:before { content: "\ea47"; }
|
|
123
|
+
.ez-icon-north-west:before { content: "\ea48"; }
|
|
124
|
+
.ez-icon-pause:before { content: "\ea49"; }
|
|
125
|
+
.ez-icon-payments:before { content: "\ea4a"; }
|
|
126
|
+
.ez-icon-play:before { content: "\ea4b"; }
|
|
127
|
+
.ez-icon-plus-circle-inverted:before { content: "\ea4c"; }
|
|
128
|
+
.ez-icon-plus-circle:before { content: "\ea4d"; }
|
|
129
|
+
.ez-icon-plus:before { content: "\ea4e"; }
|
|
130
|
+
.ez-icon-power:before { content: "\ea4f"; }
|
|
131
|
+
.ez-icon-push-pin:before { content: "\ea50"; }
|
|
132
|
+
.ez-icon-restore:before { content: "\ea51"; }
|
|
133
|
+
.ez-icon-return:before { content: "\ea52"; }
|
|
134
|
+
.ez-icon-rotate:before { content: "\ea53"; }
|
|
135
|
+
.ez-icon-save:before { content: "\ea54"; }
|
|
136
|
+
.ez-icon-search:before { content: "\ea55"; }
|
|
137
|
+
.ez-icon-settings-inverted:before { content: "\ea56"; }
|
|
138
|
+
.ez-icon-settings:before { content: "\ea57"; }
|
|
139
|
+
.ez-icon-share:before { content: "\ea58"; }
|
|
140
|
+
.ez-icon-shield:before { content: "\ea59"; }
|
|
141
|
+
.ez-icon-south-east:before { content: "\ea5a"; }
|
|
142
|
+
.ez-icon-success-circle:before { content: "\ea5b"; }
|
|
143
|
+
.ez-icon-sync:before { content: "\ea5c"; }
|
|
144
|
+
.ez-icon-table:before { content: "\ea5d"; }
|
|
145
|
+
.ez-icon-timer-outline:before { content: "\ea5e"; }
|
|
146
|
+
.ez-icon-user-circle:before { content: "\ea5f"; }
|
|
147
|
+
.ez-icon-warning-minus:before { content: "\ea60"; }
|
|
148
|
+
.ez-icon-warning-triangle:before { content: "\ea61"; }
|
|
149
|
+
/*
|
|
150
|
+
END CSS GENERATED BY EZ-DESIGN ICONS
|
|
151
|
+
*/
|
|
152
|
+
|
|
153
|
+
.x-small--font {
|
|
154
|
+
font-size: 12px;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.small--font {
|
|
158
|
+
font-size: 16px;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.medium--font {
|
|
162
|
+
font-size: 20px;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.large--font {
|
|
166
|
+
font-size: 24px;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.x-large--font {
|
|
170
|
+
font-size: 30px;
|
|
171
|
+
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { StringUtils } from '@sankhyalabs/core';
|
|
1
2
|
import { Component, h, Host, Prop } from '@stencil/core';
|
|
2
3
|
export class EzIcon {
|
|
3
4
|
constructor() {
|
|
@@ -9,13 +10,23 @@ export class EzIcon {
|
|
|
9
10
|
isSprite() {
|
|
10
11
|
return this.href && this.href.indexOf('#') > -1;
|
|
11
12
|
}
|
|
13
|
+
getIconClassName() {
|
|
14
|
+
return `ez-icon-${this.iconName}`;
|
|
15
|
+
}
|
|
16
|
+
getIconContent() {
|
|
17
|
+
if (this.isSprite()) {
|
|
18
|
+
return h("svg", { class: this.size, role: "img" },
|
|
19
|
+
h("use", { xlinkHref: this.href }));
|
|
20
|
+
}
|
|
21
|
+
else if (!StringUtils.isEmpty(this.iconName)) {
|
|
22
|
+
return h("span", { class: `icon-content ${this.getIconClassName()} ${this.size}--font` });
|
|
23
|
+
}
|
|
24
|
+
else {
|
|
25
|
+
return h("img", { class: this.size, src: this.href });
|
|
26
|
+
}
|
|
27
|
+
}
|
|
12
28
|
render() {
|
|
13
|
-
return (h(Host, null, this.
|
|
14
|
-
?
|
|
15
|
-
h("svg", { class: this.size, role: "img" },
|
|
16
|
-
h("use", { xlinkHref: this.href }))
|
|
17
|
-
:
|
|
18
|
-
h("img", { class: this.size, src: this.href })));
|
|
29
|
+
return (h(Host, null, this.getIconContent()));
|
|
19
30
|
}
|
|
20
31
|
static get is() { return "ez-icon"; }
|
|
21
32
|
static get encapsulation() { return "shadow"; }
|
|
@@ -60,6 +71,23 @@ export class EzIcon {
|
|
|
60
71
|
},
|
|
61
72
|
"attribute": "href",
|
|
62
73
|
"reflect": true
|
|
74
|
+
},
|
|
75
|
+
"iconName": {
|
|
76
|
+
"type": "string",
|
|
77
|
+
"mutable": false,
|
|
78
|
+
"complexType": {
|
|
79
|
+
"original": "string",
|
|
80
|
+
"resolved": "string",
|
|
81
|
+
"references": {}
|
|
82
|
+
},
|
|
83
|
+
"required": false,
|
|
84
|
+
"optional": false,
|
|
85
|
+
"docs": {
|
|
86
|
+
"tags": [],
|
|
87
|
+
"text": "Nome do icone dispon\u00EDvel no pacote de fontes [ez-icons](https://sankhyalabs-storybook.herokuapp.com/themes/default/icons/fonts/index.html)"
|
|
88
|
+
},
|
|
89
|
+
"attribute": "icon-name",
|
|
90
|
+
"reflect": true
|
|
63
91
|
}
|
|
64
92
|
}; }
|
|
65
93
|
}
|
|
@@ -84,13 +84,13 @@ let EzButton$1 = class extends HTMLElement$1 {
|
|
|
84
84
|
}
|
|
85
85
|
render() {
|
|
86
86
|
if (this.mode == "icon") {
|
|
87
|
-
return (h("button", { class: "icon " + this.size, type: "button", disabled: !this.enabled }, h("ez-icon", { class: "icon", href: this.image, size: this.getIconSize(), onClick: evt => {
|
|
87
|
+
return (h("button", { class: "icon " + this.size, type: "button", disabled: !this.enabled }, h("ez-icon", { class: "icon", href: this.image, iconName: this.iconName, size: this.getIconSize(), onClick: evt => {
|
|
88
88
|
if (!this.enabled)
|
|
89
89
|
evt.stopPropagation();
|
|
90
90
|
} })));
|
|
91
91
|
}
|
|
92
92
|
else if (this.mode == "label-icon") {
|
|
93
|
-
return (h("div", { class: "label-icon" }, h("button", { class: "icon", type: "button", disabled: !this.enabled }, h("ez-icon", { class: "icon", href: this.image, size: "large", onClick: evt => {
|
|
93
|
+
return (h("div", { class: "label-icon" }, h("button", { class: "icon", type: "button", disabled: !this.enabled }, h("ez-icon", { class: "icon", href: this.image, iconName: this.iconName, size: "large", onClick: evt => {
|
|
94
94
|
if (!this.enabled)
|
|
95
95
|
evt.stopPropagation();
|
|
96
96
|
} })), h("label", { title: this.label }, this.label)));
|
|
@@ -119659,25 +119659,6 @@ class AgGridController {
|
|
|
119659
119659
|
}
|
|
119660
119660
|
}
|
|
119661
119661
|
|
|
119662
|
-
const getSpritePath = (sprite) => `${getContextAssetsPath("../assets/actions-sprite.svg")}#${sprite}`;
|
|
119663
|
-
let ctxLoaded = false;
|
|
119664
|
-
function getContextAssetsPath(resource) {
|
|
119665
|
-
if (!ctxLoaded) {
|
|
119666
|
-
const scriptElem = document.querySelector("script[data-ezui-assets-url]");
|
|
119667
|
-
if (scriptElem) {
|
|
119668
|
-
let assetsPath = scriptElem.dataset.ezuiAssetsUrl;
|
|
119669
|
-
if (assetsPath) {
|
|
119670
|
-
if (assetsPath.startsWith('/')) {
|
|
119671
|
-
assetsPath = window.location.origin + assetsPath;
|
|
119672
|
-
}
|
|
119673
|
-
setAssetPath(assetsPath);
|
|
119674
|
-
}
|
|
119675
|
-
}
|
|
119676
|
-
ctxLoaded = true;
|
|
119677
|
-
}
|
|
119678
|
-
return getAssetPath(resource);
|
|
119679
|
-
}
|
|
119680
|
-
|
|
119681
119662
|
class DataUnitBridge {
|
|
119682
119663
|
constructor(gridController, dataUnit) {
|
|
119683
119664
|
this._gridController = gridController;
|
|
@@ -119793,8 +119774,8 @@ let EzGrid$1 = class extends HTMLElement$1 {
|
|
|
119793
119774
|
}
|
|
119794
119775
|
return [
|
|
119795
119776
|
h("div", { class: "text text--primary text--medium margin-right--medium" }, h("strong", { class: "text text--primary text--medium" }, `${this._navigationFirstRow}-${this._navigationLastRow}`), ` de ${this._navigationTotalRows}`),
|
|
119796
|
-
h("ez-button", { size: "small",
|
|
119797
|
-
h("ez-button", { size: "small",
|
|
119777
|
+
h("ez-button", { size: "small", iconName: "chevron-left", class: "button--secondary margin-right--medium", mode: "icon", enabled: this._navigationHasPrevious, onClick: () => this._gridController.previousPage(), label: "P\u00E1gina anterior" }),
|
|
119778
|
+
h("ez-button", { size: "small", iconName: "chevron-right", class: "button--secondary margin-right--medium", mode: "icon", enabled: this._navigationHasNext, onClick: () => this._gridController.nextPage(), label: "Pr\u00F3xima P\u00E1gina" })
|
|
119798
119779
|
];
|
|
119799
119780
|
}
|
|
119800
119781
|
applyConfig(cols) {
|
|
@@ -119810,13 +119791,13 @@ let EzGrid$1 = class extends HTMLElement$1 {
|
|
|
119810
119791
|
this._popUpVisible = true;
|
|
119811
119792
|
}
|
|
119812
119793
|
render() {
|
|
119813
|
-
return (h(Host, null, h("div", { class: "box box--shadow padding--medium grid__header margin-bottom--small" }, this.getPaginationControl(), h("ez-button", { size: "small",
|
|
119794
|
+
return (h(Host, null, h("div", { class: "box box--shadow padding--medium grid__header margin-bottom--small" }, this.getPaginationControl(), h("ez-button", { size: "small", iconName: "settings", class: "button--secondary", mode: "icon", onClick: () => { this.openConfig(); } })), h("div", { class: "grid__container ag-sankhya-theme", ref: elem => this._container = elem }), h("div", { class: "grid__footer" }), h("ez-modal", { modalSize: "small", closeEsc: true, closeOutsideClick: true, opened: this._popUpVisible, onEzCloseModal: () => this._popUpVisible = false }, h("grid-config", { ref: ref => this._gridConfig = ref, selectedTab: "Colunas", onConfigFinish: evt => this.applyConfig(evt.detail), onConfigCancel: _evt => this.closeConfig() }))));
|
|
119814
119795
|
}
|
|
119815
119796
|
static get assetsDirs() { return ["../assets"]; }
|
|
119816
119797
|
static get style() { return ezGridCss; }
|
|
119817
119798
|
};
|
|
119818
119799
|
|
|
119819
|
-
const ezIconCss = ":host{display:flex;overflow:hidden;position:relative;--ez-icon--color:var(--icon--color, #ffffff)}svg{display:flex;justify-content:center;align-items:center;fill:var(--ez-icon--color)}.x-small{width:12px;height:12px}.small{width:16px;height:16px}.medium{width:20px;height:20px}.large{width:24px;height:24px}.x-large{width:30px;height:30px}";
|
|
119800
|
+
const ezIconCss = ":host{display:flex;overflow:hidden;position:relative;--ez-icon--color:var(--icon--color, #ffffff)}svg{display:flex;justify-content:center;align-items:center;fill:var(--ez-icon--color)}.x-small{width:12px;height:12px}.small{width:16px;height:16px}.medium{width:20px;height:20px}.large{width:24px;height:24px}.x-large{width:30px;height:30px}[class^=\"ez-icon-\"],[class*=\" ez-icon-\"]{font-family:'ez-icons' !important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ez-icon-account-outline:before{content:\"\\ea01\"}.ez-icon-account:before{content:\"\\ea02\"}.ez-icon-alert-circle-inverted:before{content:\"\\ea03\"}.ez-icon-alert-circle:before{content:\"\\ea04\"}.ez-icon-alert-mail:before{content:\"\\ea05\"}.ez-icon-alert-outline:before{content:\"\\ea06\"}.ez-icon-alert-popup:before{content:\"\\ea07\"}.ez-icon-apps:before{content:\"\\ea08\"}.ez-icon-arrow_back:before{content:\"\\ea09\"}.ez-icon-bell-inverted:before{content:\"\\ea0a\"}.ez-icon-bell:before{content:\"\\ea0b\"}.ez-icon-business-center:before{content:\"\\ea0c\"}.ez-icon-calendar-text:before{content:\"\\ea0d\"}.ez-icon-calendar:before{content:\"\\ea0e\"}.ez-icon-check-circle-inverted:before{content:\"\\ea0f\"}.ez-icon-check-circle:before{content:\"\\ea10\"}.ez-icon-check:before{content:\"\\ea11\"}.ez-icon-chevron-down:before{content:\"\\ea12\"}.ez-icon-chevron-left:before{content:\"\\ea13\"}.ez-icon-chevron-right:before{content:\"\\ea14\"}.ez-icon-chevron-up:before{content:\"\\ea15\"}.ez-icon-circle--medium:before{content:\"\\ea16\"}.ez-icon-circle:before{content:\"\\ea17\"}.ez-icon-clipboard:before{content:\"\\ea18\"}.ez-icon-close-circle-inverted:before{content:\"\\ea19\"}.ez-icon-close-circle:before{content:\"\\ea1a\"}.ez-icon-close:before{content:\"\\ea1b\"}.ez-icon-comment-inverted:before{content:\"\\ea1c\"}.ez-icon-comment:before{content:\"\\ea1d\"}.ez-icon-configuration:before{content:\"\\ea1e\"}.ez-icon-copy:before{content:\"\\ea1f\"}.ez-icon-crop:before{content:\"\\ea20\"}.ez-icon-delete:before{content:\"\\ea21\"}.ez-icon-description:before{content:\"\\ea22\"}.ez-icon-dot-notification:before{content:\"\\ea23\"}.ez-icon-dots-horizontal:before{content:\"\\ea24\"}.ez-icon-dots-vertical:before{content:\"\\ea25\"}.ez-icon-drag-indicator:before{content:\"\\ea26\"}.ez-icon-edit-file:before{content:\"\\ea27\"}.ez-icon-edit-table:before{content:\"\\ea28\"}.ez-icon-edit-time:before{content:\"\\ea29\"}.ez-icon-edit:before{content:\"\\ea2a\"}.ez-icon-email-inverted:before{content:\"\\ea2b\"}.ez-icon-email:before{content:\"\\ea2c\"}.ez-icon-error-octagon:before{content:\"\\ea2d\"}.ez-icon-expand:before{content:\"\\ea2e\"}.ez-icon-eye-off:before{content:\"\\ea2f\"}.ez-icon-eye:before{content:\"\\ea30\"}.ez-icon-favorite:before{content:\"\\ea31\"}.ez-icon-file-download:before{content:\"\\ea32\"}.ez-icon-file-upload:before{content:\"\\ea33\"}.ez-icon-filter:before{content:\"\\ea34\"}.ez-icon-find-file:before{content:\"\\ea35\"}.ez-icon-find-page:before{content:\"\\ea36\"}.ez-icon-format-color-fill:before{content:\"\\ea37\"}.ez-icon-help-circle-outline:before{content:\"\\ea38\"}.ez-icon-help-inverted:before{content:\"\\ea39\"}.ez-icon-help:before{content:\"\\ea3a\"}.ez-icon-home:before{content:\"\\ea3b\"}.ez-icon-language:before{content:\"\\ea3c\"}.ez-icon-launch:before{content:\"\\ea3d\"}.ez-icon-lightbulb:before{content:\"\\ea3e\"}.ez-icon-list:before{content:\"\\ea3f\"}.ez-icon-loading:before{content:\"\\ea40\"}.ez-icon-lock-outline:before{content:\"\\ea41\"}.ez-icon-lock:before{content:\"\\ea42\"}.ez-icon-menu:before{content:\"\\ea43\"}.ez-icon-minus-circle-inverted:before{content:\"\\ea44\"}.ez-icon-minus:before{content:\"\\ea45\"}.ez-icon-money-off:before{content:\"\\ea46\"}.ez-icon-money:before{content:\"\\ea47\"}.ez-icon-north-west:before{content:\"\\ea48\"}.ez-icon-pause:before{content:\"\\ea49\"}.ez-icon-payments:before{content:\"\\ea4a\"}.ez-icon-play:before{content:\"\\ea4b\"}.ez-icon-plus-circle-inverted:before{content:\"\\ea4c\"}.ez-icon-plus-circle:before{content:\"\\ea4d\"}.ez-icon-plus:before{content:\"\\ea4e\"}.ez-icon-power:before{content:\"\\ea4f\"}.ez-icon-push-pin:before{content:\"\\ea50\"}.ez-icon-restore:before{content:\"\\ea51\"}.ez-icon-return:before{content:\"\\ea52\"}.ez-icon-rotate:before{content:\"\\ea53\"}.ez-icon-save:before{content:\"\\ea54\"}.ez-icon-search:before{content:\"\\ea55\"}.ez-icon-settings-inverted:before{content:\"\\ea56\"}.ez-icon-settings:before{content:\"\\ea57\"}.ez-icon-share:before{content:\"\\ea58\"}.ez-icon-shield:before{content:\"\\ea59\"}.ez-icon-south-east:before{content:\"\\ea5a\"}.ez-icon-success-circle:before{content:\"\\ea5b\"}.ez-icon-sync:before{content:\"\\ea5c\"}.ez-icon-table:before{content:\"\\ea5d\"}.ez-icon-timer-outline:before{content:\"\\ea5e\"}.ez-icon-user-circle:before{content:\"\\ea5f\"}.ez-icon-warning-minus:before{content:\"\\ea60\"}.ez-icon-warning-triangle:before{content:\"\\ea61\"}.x-small--font{font-size:12px}.small--font{font-size:16px}.medium--font{font-size:20px}.large--font{font-size:24px}.x-large--font{font-size:30px}";
|
|
119820
119801
|
|
|
119821
119802
|
let EzIcon$1 = class extends HTMLElement$1 {
|
|
119822
119803
|
constructor() {
|
|
@@ -119831,12 +119812,22 @@ let EzIcon$1 = class extends HTMLElement$1 {
|
|
|
119831
119812
|
isSprite() {
|
|
119832
119813
|
return this.href && this.href.indexOf('#') > -1;
|
|
119833
119814
|
}
|
|
119815
|
+
getIconClassName() {
|
|
119816
|
+
return `ez-icon-${this.iconName}`;
|
|
119817
|
+
}
|
|
119818
|
+
getIconContent() {
|
|
119819
|
+
if (this.isSprite()) {
|
|
119820
|
+
return h("svg", { class: this.size, role: "img" }, h("use", { xlinkHref: this.href }));
|
|
119821
|
+
}
|
|
119822
|
+
else if (!StringUtils.isEmpty(this.iconName)) {
|
|
119823
|
+
return h("span", { class: `icon-content ${this.getIconClassName()} ${this.size}--font` });
|
|
119824
|
+
}
|
|
119825
|
+
else {
|
|
119826
|
+
return h("img", { class: this.size, src: this.href });
|
|
119827
|
+
}
|
|
119828
|
+
}
|
|
119834
119829
|
render() {
|
|
119835
|
-
return (h(Host, null, this.
|
|
119836
|
-
?
|
|
119837
|
-
h("svg", { class: this.size, role: "img" }, h("use", { xlinkHref: this.href }))
|
|
119838
|
-
:
|
|
119839
|
-
h("img", { class: this.size, src: this.href })));
|
|
119830
|
+
return (h(Host, null, this.getIconContent()));
|
|
119840
119831
|
}
|
|
119841
119832
|
static get style() { return ezIconCss; }
|
|
119842
119833
|
};
|
|
@@ -121198,6 +121189,25 @@ let EzTextInput$1 = class extends HTMLElement$1 {
|
|
|
121198
121189
|
static get style() { return ezTextInputCss; }
|
|
121199
121190
|
};
|
|
121200
121191
|
|
|
121192
|
+
const getSpritePath = (sprite) => `${getContextAssetsPath("../assets/actions-sprite.svg")}#${sprite}`;
|
|
121193
|
+
let ctxLoaded = false;
|
|
121194
|
+
function getContextAssetsPath(resource) {
|
|
121195
|
+
if (!ctxLoaded) {
|
|
121196
|
+
const scriptElem = document.querySelector("script[data-ezui-assets-url]");
|
|
121197
|
+
if (scriptElem) {
|
|
121198
|
+
let assetsPath = scriptElem.dataset.ezuiAssetsUrl;
|
|
121199
|
+
if (assetsPath) {
|
|
121200
|
+
if (assetsPath.startsWith('/')) {
|
|
121201
|
+
assetsPath = window.location.origin + assetsPath;
|
|
121202
|
+
}
|
|
121203
|
+
setAssetPath(assetsPath);
|
|
121204
|
+
}
|
|
121205
|
+
}
|
|
121206
|
+
ctxLoaded = true;
|
|
121207
|
+
}
|
|
121208
|
+
return getAssetPath(resource);
|
|
121209
|
+
}
|
|
121210
|
+
|
|
121201
121211
|
const ezTimeInputCss = ":host{display:flex;flex-wrap:wrap;position:relative;width:100%}";
|
|
121202
121212
|
|
|
121203
121213
|
let EzTimeInput$1 = class extends HTMLElement$1 {
|
|
@@ -122023,7 +122033,7 @@ let TestDu$1 = class extends HTMLElement$1 {
|
|
|
122023
122033
|
|
|
122024
122034
|
const EzActionChip = /*@__PURE__*/proxyCustomElement(EzLabelChip$2, [1,"ez-action-chip",{"label":[513],"enabled":[516]}]);
|
|
122025
122035
|
const EzApplication = /*@__PURE__*/proxyCustomElement(EzApplication$1, [0,"ez-application"]);
|
|
122026
|
-
const EzButton = /*@__PURE__*/proxyCustomElement(EzButton$1, [1,"ez-button",{"label":[513],"enabled":[516],"mode":[513],"image":[513],"size":[513]}]);
|
|
122036
|
+
const EzButton = /*@__PURE__*/proxyCustomElement(EzButton$1, [1,"ez-button",{"label":[513],"enabled":[516],"mode":[513],"image":[513],"iconName":[513,"icon-name"],"size":[513]}]);
|
|
122027
122037
|
const EzCalendar = /*@__PURE__*/proxyCustomElement(EzCalendar$1, [1,"ez-calendar",{"value":[1040],"floating":[516],"time":[516],"showSeconds":[516,"show-seconds"]}]);
|
|
122028
122038
|
const EzCheck = /*@__PURE__*/proxyCustomElement(EzCheck$1, [1,"ez-check",{"label":[513],"value":[1540],"enabled":[516],"mode":[513]}]);
|
|
122029
122039
|
const EzCollapsibleBox = /*@__PURE__*/proxyCustomElement(EzCollapsibleBox$1, [1,"ez-collapsible-box",{"value":[1540],"label":[513],"headerSize":[513,"header-size"],"iconPlacement":[513,"icon-placement"]}]);
|
|
@@ -122033,7 +122043,7 @@ const EzDateTimeInput = /*@__PURE__*/proxyCustomElement(EzDateTimeInput$1, [1,"e
|
|
|
122033
122043
|
const EzDialog = /*@__PURE__*/proxyCustomElement(EzDialog$1, [1,"ez-dialog",{"confirm":[1028],"critical":[1028],"message":[1025],"opened":[1540],"personalizedIconPath":[1025,"personalized-icon-path"],"ezTitle":[1025,"ez-title"]}]);
|
|
122034
122044
|
const EzForm = /*@__PURE__*/proxyCustomElement(EzForm$1, [0,"ez-form",{"dataUnit":[1040],"config":[16]}]);
|
|
122035
122045
|
const EzGrid = /*@__PURE__*/proxyCustomElement(EzGrid$1, [2,"ez-grid",{"multipleSelection":[4,"multiple-selection"],"pageSize":[2,"page-size"],"serverUrl":[1,"server-url"],"dataUnit":[16],"_navigationHasPrevious":[32],"_navigationHasNext":[32],"_navigationFirstRow":[32],"_navigationLastRow":[32],"_navigationTotalRows":[32],"_popUpVisible":[32]}]);
|
|
122036
|
-
const EzIcon = /*@__PURE__*/proxyCustomElement(EzIcon$1, [1,"ez-icon",{"size":[513],"href":[513]}]);
|
|
122046
|
+
const EzIcon = /*@__PURE__*/proxyCustomElement(EzIcon$1, [1,"ez-icon",{"size":[513],"href":[513],"iconName":[513,"icon-name"]}]);
|
|
122037
122047
|
const EzLabelChip = /*@__PURE__*/proxyCustomElement(EzLabelChip$1, [1,"ez-label-chip",{"label":[513],"enabled":[516],"removable":[516],"value":[1540]}]);
|
|
122038
122048
|
const EzList = /*@__PURE__*/proxyCustomElement(EzList$1, [1,"ez-list",{"dataSource":[1040],"useGroups":[1540,"use-groups"],"ezDraggable":[1028,"ez-draggable"],"ezSelectable":[1028,"ez-selectable"],"itemSlotBuilder":[1040],"_listItems":[32],"_listGroupItems":[32]}]);
|
|
122039
122049
|
const EzModal = /*@__PURE__*/proxyCustomElement(EzModal$1, [1,"ez-modal",{"modalSize":[1,"modal-size"],"align":[1],"opened":[1028],"closeEsc":[4,"close-esc"],"closeOutsideClick":[4,"close-outside-click"]}]);
|