@sankhyalabs/ezui 5.22.0-dev.6 → 5.22.0-dev.60
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/DataBinder-b4ef826a.js +445 -0
- package/dist/cjs/FocusResolver-885f2173.js +35 -0
- package/dist/cjs/ez-actions-button.cjs.entry.js +4 -3
- package/dist/cjs/ez-alert-list.cjs.entry.js +1 -1
- package/dist/cjs/ez-alert.cjs.entry.js +1 -1
- package/dist/cjs/ez-application.cjs.entry.js +1 -1
- package/dist/cjs/ez-badge.cjs.entry.js +1 -1
- package/dist/cjs/ez-breadcrumb.cjs.entry.js +1 -1
- package/dist/cjs/ez-button.cjs.entry.js +12 -6
- package/dist/cjs/ez-calendar.cjs.entry.js +1 -1
- package/dist/cjs/ez-card-item_3.cjs.entry.js +24 -8
- package/dist/cjs/ez-chart.cjs.entry.js +2 -2
- package/dist/cjs/ez-check.cjs.entry.js +2 -2
- package/dist/cjs/ez-chip.cjs.entry.js +1 -1
- package/dist/cjs/ez-collapsible-box.cjs.entry.js +2 -2
- package/dist/cjs/ez-combo-box.cjs.entry.js +68 -14
- package/dist/cjs/ez-custom-form-input_2.cjs.entry.js +37 -7
- package/dist/cjs/ez-date-input.cjs.entry.js +15 -5
- package/dist/cjs/ez-date-time-input.cjs.entry.js +12 -5
- package/dist/cjs/ez-dialog.cjs.entry.js +11 -3
- package/dist/cjs/{ez-dropdown.cjs.entry.js → ez-dropdown_2.cjs.entry.js} +76 -9
- package/dist/cjs/ez-file-item.cjs.entry.js +1 -1
- package/dist/cjs/ez-form-view.cjs.entry.js +23 -22
- package/dist/cjs/ez-form.cjs.entry.js +7 -326
- package/dist/cjs/ez-grid.cjs.entry.js +14708 -70254
- package/dist/cjs/ez-guide-navigator.cjs.entry.js +1 -1
- package/dist/cjs/ez-icon.cjs.entry.js +2 -2
- package/dist/cjs/ez-list.cjs.entry.js +7 -8
- package/dist/cjs/ez-loading-bar.cjs.entry.js +1 -1
- package/dist/cjs/ez-modal-container.cjs.entry.js +3 -2
- package/dist/cjs/ez-modal.cjs.entry.js +20 -5
- package/dist/cjs/ez-multi-selection-list.cjs.entry.js +3 -3
- package/dist/cjs/ez-number-input.cjs.entry.js +16 -3
- package/dist/cjs/ez-popover.cjs.entry.js +1 -1
- package/dist/cjs/ez-popup.cjs.entry.js +22 -3
- package/dist/cjs/ez-radio-button.cjs.entry.js +1 -1
- package/dist/cjs/ez-scroller_2.cjs.entry.js +4 -4
- package/dist/cjs/ez-search.cjs.entry.js +106 -46
- package/dist/cjs/ez-sidebar-navigator.cjs.entry.js +2 -2
- package/dist/cjs/ez-split-button.cjs.entry.js +3 -3
- package/dist/cjs/ez-split-item.cjs.entry.js +2 -2
- package/dist/cjs/ez-split-panel.cjs.entry.js +15 -5
- package/dist/cjs/ez-tabselector.cjs.entry.js +1 -1
- package/dist/cjs/ez-text-area.cjs.entry.js +68 -6
- package/dist/cjs/ez-text-input.cjs.entry.js +154 -17
- package/dist/cjs/ez-time-input.cjs.entry.js +9 -2
- package/dist/cjs/ez-toast.cjs.entry.js +1 -1
- package/dist/cjs/ez-tooltip.cjs.entry.js +55 -0
- package/dist/cjs/ez-tree.cjs.entry.js +1 -1
- package/dist/cjs/ez-upload.cjs.entry.js +1 -1
- package/dist/cjs/ez-view-stack.cjs.entry.js +1 -1
- package/dist/cjs/ezui.cjs.js +2 -2
- package/dist/cjs/filter-column.cjs.entry.js +3 -3
- package/dist/cjs/{index-a7b0c73d.js → index-9e5554cb.js} +9 -6
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/collection/collection-manifest.json +2 -1
- package/dist/collection/components/ez-actions-button/ez-actions-button.js +3 -2
- package/dist/collection/components/ez-button/ez-button.css +23 -13
- package/dist/collection/components/ez-button/ez-button.js +12 -6
- package/dist/collection/components/ez-card-item/ez-card-item.css +60 -10
- package/dist/collection/components/ez-card-item/ez-card-item.js +30 -3
- package/dist/collection/components/ez-check/ez-check.css +1 -6
- package/dist/collection/components/ez-collapsible-box/ez-collapsible-box.css +2 -2
- package/dist/collection/components/ez-combo-box/ez-combo-box.css +13 -1
- package/dist/collection/components/ez-combo-box/ez-combo-box.js +130 -15
- package/dist/collection/components/ez-date-input/ez-date-input.css +1 -1
- package/dist/collection/components/ez-date-input/ez-date-input.js +58 -5
- package/dist/collection/components/ez-date-time-input/ez-date-time-input.css +1 -1
- package/dist/collection/components/ez-date-time-input/ez-date-time-input.js +55 -5
- package/dist/collection/components/ez-dialog/ez-dialog.css +3 -3
- package/dist/collection/components/ez-dialog/ez-dialog.js +9 -1
- package/dist/collection/components/ez-dropdown/ez-dropdown.js +33 -8
- package/dist/collection/components/ez-filter-input/ez-filter-input.js +55 -5
- package/dist/collection/components/ez-form/ez-form.js +1 -0
- package/dist/collection/components/ez-form-view/custom-input/ez-custom-form-input.js +49 -6
- package/dist/collection/components/ez-form-view/ez-form-view.css +5 -2
- package/dist/collection/components/ez-form-view/fieldbuilder/templates/CheckBox.tpl.js +1 -1
- package/dist/collection/components/ez-form-view/fieldbuilder/templates/ComboBox.tpl.js +1 -1
- package/dist/collection/components/ez-form-view/fieldbuilder/templates/DateInput.tpl.js +3 -3
- package/dist/collection/components/ez-form-view/fieldbuilder/templates/FileInput.tpl.js +1 -1
- package/dist/collection/components/ez-form-view/fieldbuilder/templates/NumberInput.tpl.js +1 -1
- package/dist/collection/components/ez-form-view/fieldbuilder/templates/SearchInput.tpl.js +3 -2
- package/dist/collection/components/ez-form-view/fieldbuilder/templates/TextArea.tpl.js +1 -1
- package/dist/collection/components/ez-form-view/fieldbuilder/templates/TextInput.tpl.js +2 -2
- package/dist/collection/components/ez-grid/controller/ag-grid/AgGridController.js +258 -53
- package/dist/collection/components/ez-grid/controller/ag-grid/DataSource.js +107 -5
- package/dist/collection/components/ez-grid/controller/ag-grid/GridEditionManager.js +219 -42
- package/dist/collection/components/ez-grid/controller/ag-grid/components/EzGridCustomCellEditor.js +16 -0
- package/dist/collection/components/ez-grid/controller/ag-grid/editor/EzCellEditor.js +8 -0
- package/dist/collection/components/ez-grid/controller/ag-grid/editor/templates/ComboBox.tpl.js +2 -0
- package/dist/collection/components/ez-grid/controller/ag-grid/editor/templates/DateInput.tpl.js +1 -0
- package/dist/collection/components/ez-grid/controller/ag-grid/editor/templates/NumberInput.tpl.js +1 -0
- package/dist/collection/components/ez-grid/controller/ag-grid/editor/templates/Search.tpl.js +4 -1
- package/dist/collection/components/ez-grid/controller/ag-grid/editor/templates/TextInput.tpl.js +4 -1
- package/dist/collection/components/ez-grid/controller/ag-grid/test/constants/GridEditionMock.js +2 -0
- package/dist/collection/components/ez-grid/ez-grid.css +28 -7
- package/dist/collection/components/ez-grid/ez-grid.js +200 -7
- package/dist/collection/components/ez-grid/subcomponents/filter-column.css +4 -0
- package/dist/collection/components/ez-grid/subcomponents/filter-column.js +1 -1
- package/dist/collection/components/ez-icon/ez-icon.css +153 -149
- package/dist/collection/components/ez-list/ez-list.css +2 -1
- package/dist/collection/components/ez-list/ez-list.js +6 -7
- package/dist/collection/components/ez-modal/ez-modal.css +5 -1
- package/dist/collection/components/ez-modal/ez-modal.js +38 -5
- package/dist/collection/components/ez-modal-container/ez-modal-container.js +20 -1
- package/dist/collection/components/ez-multi-selection-list/ez-multi-selection-list.css +2 -3
- package/dist/collection/components/ez-multi-selection-list/ez-multi-selection-list.js +1 -1
- package/dist/collection/components/ez-number-input/ez-number-input.css +8 -0
- package/dist/collection/components/ez-number-input/ez-number-input.js +68 -1
- package/dist/collection/components/ez-popup/ez-popup.css +7 -3
- package/dist/collection/components/ez-popup/ez-popup.js +38 -1
- package/dist/collection/components/ez-scroller/ez-scroller.css +1 -0
- package/dist/collection/components/ez-search/ez-search.css +21 -10
- package/dist/collection/components/ez-search/ez-search.js +189 -49
- package/dist/collection/components/ez-sidebar-button/ez-sidebar-button.css +3 -0
- package/dist/collection/components/ez-sidebar-button/ez-sidebar-button.js +1 -1
- package/dist/collection/components/ez-sidebar-navigator/ez-sidebar-navigator.css +3 -1
- package/dist/collection/components/ez-split-button/ez-split-button.css +50 -14
- package/dist/collection/components/ez-split-button/ez-split-button.js +3 -3
- package/dist/collection/components/ez-split-panel/ez-split-panel.js +35 -4
- package/dist/collection/components/ez-split-panel/interfaces/IPanelSizeInfo.js +1 -0
- package/dist/collection/components/ez-split-panel/structure/item/ez-split-item.css +1 -0
- package/dist/collection/components/ez-text-area/ez-text-area.css +73 -28
- package/dist/collection/components/ez-text-area/ez-text-area.js +103 -3
- package/dist/collection/components/ez-text-input/ez-text-input.css +106 -91
- package/dist/collection/components/ez-text-input/ez-text-input.js +185 -15
- package/dist/collection/components/ez-time-input/ez-time-input.js +44 -1
- package/dist/collection/components/ez-tooltip/ez-tooltip.css +20 -0
- package/dist/collection/components/ez-tooltip/ez-tooltip.js +116 -0
- package/dist/collection/sw.js +46 -0
- package/dist/collection/utils/FocusResolver.js +31 -0
- package/dist/collection/utils/ResponsiveInputUtils.js +26 -0
- package/dist/collection/utils/form/DataBinder.js +20 -5
- package/dist/collection/utils/form/FormMetadata.js +2 -1
- package/dist/collection/utils/interfaces/AbstractFieldMetadata.js +1 -1
- package/dist/collection/utils/validators/recordvalidator/IInvalidCells.js +1 -0
- package/dist/collection/utils/validators/recordvalidator/RecordValidationProcessor.js +7 -1
- package/dist/custom-elements/index.d.ts +6 -0
- package/dist/custom-elements/index.js +15738 -70719
- package/dist/esm/DataBinder-d2ecbb0f.js +441 -0
- package/dist/esm/FocusResolver-1ccbf850.js +33 -0
- package/dist/esm/ez-actions-button.entry.js +4 -3
- package/dist/esm/ez-alert-list.entry.js +1 -1
- package/dist/esm/ez-alert.entry.js +1 -1
- package/dist/esm/ez-application.entry.js +1 -1
- package/dist/esm/ez-badge.entry.js +1 -1
- package/dist/esm/ez-breadcrumb.entry.js +1 -1
- package/dist/esm/ez-button.entry.js +12 -6
- package/dist/esm/ez-calendar.entry.js +1 -1
- package/dist/esm/ez-card-item_3.entry.js +24 -8
- package/dist/esm/ez-chart.entry.js +2 -2
- package/dist/esm/ez-check.entry.js +2 -2
- package/dist/esm/ez-chip.entry.js +1 -1
- package/dist/esm/ez-collapsible-box.entry.js +2 -2
- package/dist/esm/ez-combo-box.entry.js +69 -15
- package/dist/esm/ez-custom-form-input_2.entry.js +38 -8
- package/dist/esm/ez-date-input.entry.js +15 -5
- package/dist/esm/ez-date-time-input.entry.js +12 -5
- package/dist/esm/ez-dialog.entry.js +11 -3
- package/dist/esm/{ez-dropdown.entry.js → ez-dropdown_2.entry.js} +76 -10
- package/dist/esm/ez-file-item.entry.js +1 -1
- package/dist/esm/ez-form-view.entry.js +23 -22
- package/dist/esm/ez-form.entry.js +6 -325
- package/dist/esm/ez-grid.entry.js +14761 -70307
- package/dist/esm/ez-guide-navigator.entry.js +1 -1
- package/dist/esm/ez-icon.entry.js +2 -2
- package/dist/esm/ez-list.entry.js +7 -8
- package/dist/esm/ez-loading-bar.entry.js +1 -1
- package/dist/esm/ez-modal-container.entry.js +3 -2
- package/dist/esm/ez-modal.entry.js +20 -5
- package/dist/esm/ez-multi-selection-list.entry.js +3 -3
- package/dist/esm/ez-number-input.entry.js +16 -3
- package/dist/esm/ez-popover.entry.js +1 -1
- package/dist/esm/ez-popup.entry.js +22 -3
- package/dist/esm/ez-radio-button.entry.js +1 -1
- package/dist/esm/ez-scroller_2.entry.js +4 -4
- package/dist/esm/ez-search.entry.js +106 -46
- package/dist/esm/ez-sidebar-navigator.entry.js +2 -2
- package/dist/esm/ez-split-button.entry.js +3 -3
- package/dist/esm/ez-split-item.entry.js +2 -2
- package/dist/esm/ez-split-panel.entry.js +15 -5
- package/dist/esm/ez-tabselector.entry.js +1 -1
- package/dist/esm/ez-text-area.entry.js +68 -6
- package/dist/esm/ez-text-input.entry.js +154 -17
- package/dist/esm/ez-time-input.entry.js +9 -2
- package/dist/esm/ez-toast.entry.js +1 -1
- package/dist/esm/ez-tooltip.entry.js +51 -0
- package/dist/esm/ez-tree.entry.js +1 -1
- package/dist/esm/ez-upload.entry.js +1 -1
- package/dist/esm/ez-view-stack.entry.js +1 -1
- package/dist/esm/ezui.js +3 -3
- package/dist/esm/filter-column.entry.js +3 -3
- package/dist/esm/{index-baa5e267.js → index-5a720e56.js} +9 -7
- package/dist/esm/loader.js +3 -3
- package/dist/ezui/ezui.esm.js +1 -1
- package/dist/ezui/{p-44caad9a.entry.js → p-0378416a.entry.js} +1 -1
- package/dist/ezui/{p-77a4bd35.entry.js → p-11bfeca3.entry.js} +1 -1
- package/dist/ezui/p-16e21a40.entry.js +1 -0
- package/dist/ezui/p-18a2a28a.entry.js +1 -0
- package/dist/ezui/{p-8888d9ed.entry.js → p-1b08bf3c.entry.js} +1 -1
- package/dist/ezui/p-2f53435e.entry.js +1 -0
- package/dist/ezui/p-319d36b7.entry.js +1 -0
- package/dist/ezui/p-397e3026.entry.js +1 -0
- package/dist/ezui/p-3af64edd.entry.js +1 -0
- package/dist/ezui/p-3c10cd94.entry.js +1 -0
- package/dist/ezui/p-46a46507.entry.js +1 -0
- package/dist/ezui/p-554522db.entry.js +1 -0
- package/dist/ezui/p-5d01d189.entry.js +1 -0
- package/dist/ezui/{p-1f50fa05.entry.js → p-6b51c9cc.entry.js} +1 -1
- package/dist/ezui/p-6bda82d1.entry.js +1 -0
- package/dist/ezui/p-6d31c43c.entry.js +1 -0
- package/dist/ezui/p-6d8b3298.entry.js +1 -0
- package/dist/ezui/p-6ec40dec.entry.js +1 -0
- package/dist/ezui/{p-5ed81457.entry.js → p-6fc26622.entry.js} +1 -1
- package/dist/ezui/{p-555c9018.entry.js → p-7567ccdd.entry.js} +1 -1
- package/dist/ezui/p-7f5afb1f.entry.js +1 -0
- package/dist/ezui/{p-1e7a8633.entry.js → p-81461d2f.entry.js} +1 -1
- package/dist/ezui/{p-8df1ca33.entry.js → p-82fa4b09.entry.js} +1 -1
- package/dist/ezui/p-854f8504.entry.js +1 -0
- package/dist/ezui/p-8f026744.entry.js +1 -0
- package/dist/ezui/{p-09de35a2.entry.js → p-91ccae0c.entry.js} +1 -1
- package/dist/ezui/{p-c0d9c4f8.entry.js → p-92748142.entry.js} +1 -1
- package/dist/ezui/p-a1c0eadf.entry.js +1 -0
- package/dist/ezui/{p-072e6347.entry.js → p-a563df31.entry.js} +1 -1
- package/dist/ezui/p-a921e3e7.entry.js +1 -0
- package/dist/ezui/p-aa543378.entry.js +1 -0
- package/dist/ezui/p-aa6ad24d.entry.js +309 -0
- package/dist/ezui/p-aee8d615.entry.js +1 -0
- package/dist/ezui/{p-17be134a.entry.js → p-b2f6bc0a.entry.js} +1 -1
- package/dist/ezui/p-b6241ea3.entry.js +1 -0
- package/dist/ezui/p-b858fc6e.entry.js +1 -0
- package/dist/ezui/{p-84e439b9.entry.js → p-bef7daac.entry.js} +1 -1
- package/dist/ezui/{p-9f5fa3f9.entry.js → p-c2b20f78.entry.js} +1 -1
- package/dist/ezui/p-c7d1333c.entry.js +1 -0
- package/dist/ezui/p-cce6c015.entry.js +1 -0
- package/dist/ezui/p-ceadecd9.js +1 -0
- package/dist/ezui/p-dc628ed3.js +1 -0
- package/dist/ezui/p-def75121.entry.js +1 -0
- package/dist/ezui/{p-a80b1287.entry.js → p-dfca5946.entry.js} +1 -1
- package/dist/ezui/p-e18d9e6a.entry.js +1 -0
- package/dist/ezui/{p-23a36bb6.js → p-e4c7eb39.js} +2 -2
- package/dist/ezui/{p-0306dff7.entry.js → p-e6b38ade.entry.js} +1 -1
- package/dist/ezui/{p-922ac38b.entry.js → p-e7395eae.entry.js} +1 -1
- package/dist/ezui/p-ec5f987d.entry.js +1 -0
- package/dist/ezui/p-efbe0b73.entry.js +1 -0
- package/dist/ezui/{p-650e4b6d.entry.js → p-f1c2c19e.entry.js} +1 -1
- package/dist/ezui/{p-baf80b13.entry.js → p-fad4f1dd.entry.js} +1 -1
- package/dist/ezui/{p-6e429cff.entry.js → p-fc194825.entry.js} +1 -1
- package/dist/types/components/ez-button/ez-button.d.ts +2 -1
- package/dist/types/components/ez-card-item/ez-card-item.d.ts +5 -0
- package/dist/types/components/ez-combo-box/ez-combo-box.d.ts +16 -1
- package/dist/types/components/ez-date-input/ez-date-input.d.ts +10 -1
- package/dist/types/components/ez-date-time-input/ez-date-time-input.d.ts +10 -1
- package/dist/types/components/ez-dialog/ez-dialog.d.ts +2 -0
- package/dist/types/components/ez-dropdown/ez-dropdown.d.ts +4 -0
- package/dist/types/components/ez-dropdown/structure/DropdownItem.d.ts +1 -1
- package/dist/types/components/ez-filter-input/ez-filter-input.d.ts +10 -1
- package/dist/types/components/ez-form-view/custom-input/ez-custom-form-input.d.ts +7 -1
- package/dist/types/components/ez-form-view/fieldbuilder/templates/SearchInput.tpl.d.ts +1 -1
- package/dist/types/components/ez-form-view/fieldbuilder/templates/TextInput.tpl.d.ts +1 -1
- package/dist/types/components/ez-grid/controller/EzGridController.d.ts +56 -4
- package/dist/types/components/ez-grid/controller/ag-grid/AgGridController.d.ts +32 -4
- package/dist/types/components/ez-grid/controller/ag-grid/DataSource.d.ts +23 -1
- package/dist/types/components/ez-grid/controller/ag-grid/GridEditionManager.d.ts +33 -7
- package/dist/types/components/ez-grid/controller/ag-grid/components/EzGridCustomCellEditor.d.ts +4 -1
- package/dist/types/components/ez-grid/controller/ag-grid/components/EzGridCustomCellRender.d.ts +1 -1
- package/dist/types/components/ez-grid/controller/ag-grid/components/EzGridCustomHeader.d.ts +1 -1
- package/dist/types/components/ez-grid/controller/ag-grid/components/cellRendererStatus.d.ts +1 -1
- package/dist/types/components/ez-grid/controller/ag-grid/components/selectionHeader.d.ts +1 -1
- package/dist/types/components/ez-grid/controller/ag-grid/editor/EzCellEditor.d.ts +2 -1
- package/dist/types/components/ez-grid/controller/ag-grid/editor/EzCellRender.d.ts +1 -1
- package/dist/types/components/ez-grid/controller/ag-grid/editor/IUICellEditor.d.ts +1 -0
- package/dist/types/components/ez-grid/controller/ag-grid/mock/Server.d.ts +1 -1
- package/dist/types/components/ez-grid/ez-grid.d.ts +33 -1
- package/dist/types/components/ez-modal/ez-modal.d.ts +7 -1
- package/dist/types/components/ez-modal-container/ez-modal-container.d.ts +4 -0
- package/dist/types/components/ez-number-input/ez-number-input.d.ts +12 -0
- package/dist/types/components/ez-popup/ez-popup.d.ts +7 -0
- package/dist/types/components/ez-search/ez-search.d.ts +31 -4
- package/dist/types/components/ez-split-button/ez-split-button.d.ts +1 -1
- package/dist/types/components/ez-split-panel/ez-split-panel.d.ts +4 -0
- package/dist/types/components/ez-split-panel/interfaces/IPanelSizeInfo.d.ts +9 -0
- package/dist/types/components/ez-text-area/ez-text-area.d.ts +17 -0
- package/dist/types/components/ez-text-input/ez-text-input.d.ts +28 -2
- package/dist/types/components/ez-time-input/ez-time-input.d.ts +8 -0
- package/dist/types/components/ez-tooltip/ez-tooltip.d.ts +21 -0
- package/dist/types/components.d.ts +323 -14
- package/dist/types/utils/FocusResolver.d.ts +5 -0
- package/dist/types/utils/ResponsiveInputUtils.d.ts +6 -0
- package/dist/types/utils/customEditor/interfaces/ICustomEditor.d.ts +2 -0
- package/dist/types/utils/form/DataBinder.d.ts +3 -0
- package/dist/types/utils/validators/recordvalidator/IInvalidCells.d.ts +5 -0
- package/dist/types/utils/validators/recordvalidator/RecordValidationProcessor.d.ts +1 -1
- package/package.json +12 -4
- package/react/components.d.ts +1 -0
- package/react/components.js +1 -0
- package/react/components.js.map +1 -1
- package/dist/cjs/RecordValidationProcessor-4c893e04.js +0 -102
- package/dist/cjs/ez-skeleton.cjs.entry.js +0 -67
- package/dist/esm/RecordValidationProcessor-b00b8b77.js +0 -99
- package/dist/esm/ez-skeleton.entry.js +0 -63
- package/dist/ezui/p-04f24913.js +0 -1
- package/dist/ezui/p-1285c902.entry.js +0 -1
- package/dist/ezui/p-13d2fe2d.entry.js +0 -1
- package/dist/ezui/p-2097d0cf.entry.js +0 -1
- package/dist/ezui/p-30775e7f.entry.js +0 -1
- package/dist/ezui/p-3b4eeeb6.entry.js +0 -1
- package/dist/ezui/p-3faa2b46.entry.js +0 -1
- package/dist/ezui/p-49456b34.entry.js +0 -1
- package/dist/ezui/p-4d5235f1.entry.js +0 -1
- package/dist/ezui/p-5b205c80.entry.js +0 -1
- package/dist/ezui/p-5bd5e68f.entry.js +0 -1
- package/dist/ezui/p-784fe207.entry.js +0 -1
- package/dist/ezui/p-7922142b.entry.js +0 -1
- package/dist/ezui/p-7af81663.entry.js +0 -1
- package/dist/ezui/p-7bc07c31.entry.js +0 -1
- package/dist/ezui/p-85c8baae.entry.js +0 -1
- package/dist/ezui/p-8f0144f6.entry.js +0 -1
- package/dist/ezui/p-9050d2cd.entry.js +0 -1
- package/dist/ezui/p-9ab22a07.entry.js +0 -1
- package/dist/ezui/p-a31b9c90.entry.js +0 -1
- package/dist/ezui/p-af95cd16.entry.js +0 -1
- package/dist/ezui/p-bae4e180.entry.js +0 -1
- package/dist/ezui/p-bc2f844e.entry.js +0 -1
- package/dist/ezui/p-bcb53f27.entry.js +0 -1
- package/dist/ezui/p-bf79aaa1.entry.js +0 -1
- package/dist/ezui/p-d9401ea0.entry.js +0 -1
- package/dist/ezui/p-da8ae82b.entry.js +0 -304
- package/dist/ezui/p-e85c48d7.entry.js +0 -1
- package/dist/ezui/p-ecc2c1ec.entry.js +0 -1
- package/dist/ezui/p-f3c526cc.entry.js +0 -1
- package/dist/ezui/p-fcf0acce.entry.js +0 -1
|
@@ -60,155 +60,159 @@ svg {
|
|
|
60
60
|
.ez-icon-acao:before { content: "\ea03"; }
|
|
61
61
|
.ez-icon-account-outline:before { content: "\ea04"; }
|
|
62
62
|
.ez-icon-account:before { content: "\ea05"; }
|
|
63
|
-
.ez-icon-
|
|
64
|
-
.ez-icon-alert-circle:before { content: "\ea07"; }
|
|
65
|
-
.ez-icon-alert-
|
|
66
|
-
.ez-icon-alert-
|
|
67
|
-
.ez-icon-
|
|
68
|
-
.ez-icon-
|
|
69
|
-
.ez-icon-
|
|
70
|
-
.ez-icon-
|
|
71
|
-
.ez-icon-arrow-
|
|
72
|
-
.ez-icon-
|
|
73
|
-
.ez-icon-
|
|
74
|
-
.ez-icon-
|
|
75
|
-
.ez-icon-
|
|
76
|
-
.ez-icon-
|
|
77
|
-
.ez-icon-bell:before { content: "\ea14"; }
|
|
78
|
-
.ez-icon-
|
|
79
|
-
.ez-icon-
|
|
80
|
-
.ez-icon-
|
|
81
|
-
.ez-icon-
|
|
82
|
-
.ez-icon-calendar:before { content: "\ea19"; }
|
|
83
|
-
.ez-icon-
|
|
84
|
-
.ez-icon-
|
|
85
|
-
.ez-icon-
|
|
86
|
-
.ez-icon-check:before { content: "\ea1d"; }
|
|
87
|
-
.ez-icon-
|
|
88
|
-
.ez-icon-
|
|
89
|
-
.ez-icon-chevron-
|
|
90
|
-
.ez-icon-chevron-
|
|
91
|
-
.ez-icon-
|
|
92
|
-
.ez-icon-
|
|
93
|
-
.ez-icon-
|
|
94
|
-
.ez-icon-
|
|
95
|
-
.ez-icon-
|
|
96
|
-
.ez-icon-
|
|
97
|
-
.ez-icon-
|
|
98
|
-
.ez-icon-
|
|
99
|
-
.ez-icon-
|
|
100
|
-
.ez-icon-
|
|
101
|
-
.ez-icon-
|
|
102
|
-
.ez-icon-
|
|
103
|
-
.ez-icon-
|
|
104
|
-
.ez-icon-
|
|
105
|
-
.ez-icon-
|
|
106
|
-
.ez-icon-
|
|
107
|
-
.ez-icon-
|
|
108
|
-
.ez-icon-
|
|
109
|
-
.ez-icon-
|
|
110
|
-
.ez-icon-
|
|
111
|
-
.ez-icon-
|
|
112
|
-
.ez-icon-
|
|
113
|
-
.ez-icon-
|
|
114
|
-
.ez-icon-
|
|
115
|
-
.ez-icon-
|
|
116
|
-
.ez-icon-
|
|
117
|
-
.ez-icon-dual-chevron-
|
|
118
|
-
.ez-icon-
|
|
119
|
-
.ez-icon-
|
|
120
|
-
.ez-icon-
|
|
121
|
-
.ez-icon-edit-
|
|
122
|
-
.ez-icon-edit:before { content: "\ea41"; }
|
|
123
|
-
.ez-icon-
|
|
124
|
-
.ez-icon-
|
|
125
|
-
.ez-icon-
|
|
126
|
-
.ez-icon-
|
|
127
|
-
.ez-icon-
|
|
128
|
-
.ez-icon-
|
|
129
|
-
.ez-icon-
|
|
130
|
-
.ez-icon-
|
|
131
|
-
.ez-icon-
|
|
132
|
-
.ez-icon-
|
|
133
|
-
.ez-icon-
|
|
134
|
-
.ez-icon-
|
|
135
|
-
.ez-icon-
|
|
136
|
-
.ez-icon-
|
|
137
|
-
.ez-icon-
|
|
138
|
-
.ez-icon-
|
|
139
|
-
.ez-icon-
|
|
140
|
-
.ez-icon-
|
|
141
|
-
.ez-icon-
|
|
142
|
-
.ez-icon-
|
|
143
|
-
.ez-icon-
|
|
144
|
-
.ez-icon-
|
|
145
|
-
.ez-icon-
|
|
146
|
-
.ez-icon-
|
|
147
|
-
.ez-icon-
|
|
148
|
-
.ez-icon-
|
|
149
|
-
.ez-icon-
|
|
150
|
-
.ez-icon-
|
|
151
|
-
.ez-icon-
|
|
152
|
-
.ez-icon-
|
|
153
|
-
.ez-icon-
|
|
154
|
-
.ez-icon-
|
|
155
|
-
.ez-icon-
|
|
156
|
-
.ez-icon-
|
|
157
|
-
.ez-icon-
|
|
158
|
-
.ez-icon-
|
|
159
|
-
.ez-icon-
|
|
160
|
-
.ez-icon-
|
|
161
|
-
.ez-icon-
|
|
162
|
-
.ez-icon-
|
|
163
|
-
.ez-icon-
|
|
164
|
-
.ez-icon-
|
|
165
|
-
.ez-icon-
|
|
166
|
-
.ez-icon-
|
|
167
|
-
.ez-icon-
|
|
168
|
-
.ez-icon-
|
|
169
|
-
.ez-icon-
|
|
170
|
-
.ez-icon-
|
|
171
|
-
.ez-icon-
|
|
172
|
-
.ez-icon-
|
|
173
|
-
.ez-icon-
|
|
174
|
-
.ez-icon-
|
|
175
|
-
.ez-icon-
|
|
176
|
-
.ez-icon-
|
|
177
|
-
.ez-icon-
|
|
178
|
-
.ez-icon-
|
|
179
|
-
.ez-icon-
|
|
180
|
-
.ez-icon-
|
|
181
|
-
.ez-icon-
|
|
182
|
-
.ez-icon-
|
|
183
|
-
.ez-icon-
|
|
184
|
-
.ez-icon-
|
|
185
|
-
.ez-icon-
|
|
186
|
-
.ez-icon-
|
|
187
|
-
.ez-icon-
|
|
188
|
-
.ez-icon-
|
|
189
|
-
.ez-icon-
|
|
190
|
-
.ez-icon-
|
|
191
|
-
.ez-icon-
|
|
192
|
-
.ez-icon-
|
|
193
|
-
.ez-icon-
|
|
194
|
-
.ez-icon-
|
|
195
|
-
.ez-icon-
|
|
196
|
-
.ez-icon-
|
|
197
|
-
.ez-icon-
|
|
198
|
-
.ez-icon-
|
|
199
|
-
.ez-icon-
|
|
200
|
-
.ez-icon-
|
|
201
|
-
.ez-icon-
|
|
202
|
-
.ez-icon-
|
|
203
|
-
.ez-icon-
|
|
204
|
-
.ez-icon-
|
|
205
|
-
.ez-icon-
|
|
206
|
-
.ez-icon-
|
|
207
|
-
.ez-icon-
|
|
208
|
-
.ez-icon-
|
|
209
|
-
.ez-icon-
|
|
210
|
-
.ez-icon-
|
|
211
|
-
.ez-icon-
|
|
63
|
+
.ez-icon-add-to-cart:before { content: "\ea06"; }
|
|
64
|
+
.ez-icon-alert-circle-inverted:before { content: "\ea07"; }
|
|
65
|
+
.ez-icon-alert-circle:before { content: "\ea08"; }
|
|
66
|
+
.ez-icon-alert-mail:before { content: "\ea09"; }
|
|
67
|
+
.ez-icon-alert-popup:before { content: "\ea0a"; }
|
|
68
|
+
.ez-icon-anexo:before { content: "\ea0b"; }
|
|
69
|
+
.ez-icon-antecipação:before { content: "\ea0c"; }
|
|
70
|
+
.ez-icon-apps:before { content: "\ea0d"; }
|
|
71
|
+
.ez-icon-arrow-forward:before { content: "\ea0e"; }
|
|
72
|
+
.ez-icon-arrow-upward:before { content: "\ea0f"; }
|
|
73
|
+
.ez-icon-arrow_back:before { content: "\ea10"; }
|
|
74
|
+
.ez-icon-arrow_downward:before { content: "\ea11"; }
|
|
75
|
+
.ez-icon-baixa:before { content: "\ea12"; }
|
|
76
|
+
.ez-icon-balance:before { content: "\ea13"; }
|
|
77
|
+
.ez-icon-bell-inverted:before { content: "\ea14"; }
|
|
78
|
+
.ez-icon-bell:before { content: "\ea15"; }
|
|
79
|
+
.ez-icon-boleto:before { content: "\ea16"; }
|
|
80
|
+
.ez-icon-boolean:before { content: "\ea17"; }
|
|
81
|
+
.ez-icon-business-center:before { content: "\ea18"; }
|
|
82
|
+
.ez-icon-calendar-clock:before { content: "\ea19"; }
|
|
83
|
+
.ez-icon-calendar:before { content: "\ea1a"; }
|
|
84
|
+
.ez-icon-cart-history:before { content: "\ea1b"; }
|
|
85
|
+
.ez-icon-cash-remove:before { content: "\ea1c"; }
|
|
86
|
+
.ez-icon-check-circle-inverted:before { content: "\ea1d"; }
|
|
87
|
+
.ez-icon-check-circle:before { content: "\ea1e"; }
|
|
88
|
+
.ez-icon-check:before { content: "\ea1f"; }
|
|
89
|
+
.ez-icon-chevron-down:before { content: "\ea20"; }
|
|
90
|
+
.ez-icon-chevron-left:before { content: "\ea21"; }
|
|
91
|
+
.ez-icon-chevron-right:before { content: "\ea22"; }
|
|
92
|
+
.ez-icon-chevron-up:before { content: "\ea23"; }
|
|
93
|
+
.ez-icon-circle--medium:before { content: "\ea24"; }
|
|
94
|
+
.ez-icon-circle:before { content: "\ea25"; }
|
|
95
|
+
.ez-icon-clean-cart:before { content: "\ea26"; }
|
|
96
|
+
.ez-icon-cleaning:before { content: "\ea27"; }
|
|
97
|
+
.ez-icon-clipboard:before { content: "\ea28"; }
|
|
98
|
+
.ez-icon-clock-rotate-left:before { content: "\ea29"; }
|
|
99
|
+
.ez-icon-close:before { content: "\ea2a"; }
|
|
100
|
+
.ez-icon-cobrar:before { content: "\ea2b"; }
|
|
101
|
+
.ez-icon-code:before { content: "\ea2c"; }
|
|
102
|
+
.ez-icon-configuration:before { content: "\ea2d"; }
|
|
103
|
+
.ez-icon-content-cut:before { content: "\ea2e"; }
|
|
104
|
+
.ez-icon-copy:before { content: "\ea2f"; }
|
|
105
|
+
.ez-icon-credit_card:before { content: "\ea30"; }
|
|
106
|
+
.ez-icon-crop:before { content: "\ea31"; }
|
|
107
|
+
.ez-icon-custom:before { content: "\ea32"; }
|
|
108
|
+
.ez-icon-delete-file:before { content: "\ea33"; }
|
|
109
|
+
.ez-icon-delete:before { content: "\ea34"; }
|
|
110
|
+
.ez-icon-description:before { content: "\ea35"; }
|
|
111
|
+
.ez-icon-dividir:before { content: "\ea36"; }
|
|
112
|
+
.ez-icon-docx:before { content: "\ea37"; }
|
|
113
|
+
.ez-icon-dot-notification:before { content: "\ea38"; }
|
|
114
|
+
.ez-icon-dots-horizontal:before { content: "\ea39"; }
|
|
115
|
+
.ez-icon-dots-vertical:before { content: "\ea3a"; }
|
|
116
|
+
.ez-icon-drag-indicator:before { content: "\ea3b"; }
|
|
117
|
+
.ez-icon-dual-chevron-down:before { content: "\ea3c"; }
|
|
118
|
+
.ez-icon-dual-chevron-left:before { content: "\ea3d"; }
|
|
119
|
+
.ez-icon-dual-chevron-right:before { content: "\ea3e"; }
|
|
120
|
+
.ez-icon-dual-chevron-up:before { content: "\ea3f"; }
|
|
121
|
+
.ez-icon-edit-file:before { content: "\ea40"; }
|
|
122
|
+
.ez-icon-edit-table:before { content: "\ea41"; }
|
|
123
|
+
.ez-icon-edit-time:before { content: "\ea42"; }
|
|
124
|
+
.ez-icon-edit-value:before { content: "\ea43"; }
|
|
125
|
+
.ez-icon-edit:before { content: "\ea44"; }
|
|
126
|
+
.ez-icon-email:before { content: "\ea45"; }
|
|
127
|
+
.ez-icon-estorno:before { content: "\ea46"; }
|
|
128
|
+
.ez-icon-exe:before { content: "\ea47"; }
|
|
129
|
+
.ez-icon-expand:before { content: "\ea48"; }
|
|
130
|
+
.ez-icon-expandir_card:before { content: "\ea49"; }
|
|
131
|
+
.ez-icon-extrato:before { content: "\ea4a"; }
|
|
132
|
+
.ez-icon-eye-off:before { content: "\ea4b"; }
|
|
133
|
+
.ez-icon-eye:before { content: "\ea4c"; }
|
|
134
|
+
.ez-icon-favorite:before { content: "\ea4d"; }
|
|
135
|
+
.ez-icon-figma:before { content: "\ea4e"; }
|
|
136
|
+
.ez-icon-file-download:before { content: "\ea4f"; }
|
|
137
|
+
.ez-icon-file-upload:before { content: "\ea50"; }
|
|
138
|
+
.ez-icon-filter:before { content: "\ea51"; }
|
|
139
|
+
.ez-icon-find-file:before { content: "\ea52"; }
|
|
140
|
+
.ez-icon-find-page:before { content: "\ea53"; }
|
|
141
|
+
.ez-icon-format-color-fill:before { content: "\ea54"; }
|
|
142
|
+
.ez-icon-generic:before { content: "\ea55"; }
|
|
143
|
+
.ez-icon-gif:before { content: "\ea56"; }
|
|
144
|
+
.ez-icon-graph_bar:before { content: "\ea57"; }
|
|
145
|
+
.ez-icon-handshake:before { content: "\ea58"; }
|
|
146
|
+
.ez-icon-help-inverted:before { content: "\ea59"; }
|
|
147
|
+
.ez-icon-help:before { content: "\ea5a"; }
|
|
148
|
+
.ez-icon-hide_menu:before { content: "\ea5b"; }
|
|
149
|
+
.ez-icon-home:before { content: "\ea5c"; }
|
|
150
|
+
.ez-icon-icons104:before { content: "\ea5d"; }
|
|
151
|
+
.ez-icon-language:before { content: "\ea5e"; }
|
|
152
|
+
.ez-icon-launch:before { content: "\ea5f"; }
|
|
153
|
+
.ez-icon-lightbulb:before { content: "\ea60"; }
|
|
154
|
+
.ez-icon-list:before { content: "\ea61"; }
|
|
155
|
+
.ez-icon-location:before { content: "\ea62"; }
|
|
156
|
+
.ez-icon-lock-outline:before { content: "\ea63"; }
|
|
157
|
+
.ez-icon-lock:before { content: "\ea64"; }
|
|
158
|
+
.ez-icon-menu:before { content: "\ea65"; }
|
|
159
|
+
.ez-icon-mid:before { content: "\ea66"; }
|
|
160
|
+
.ez-icon-minus:before { content: "\ea67"; }
|
|
161
|
+
.ez-icon-money-off:before { content: "\ea68"; }
|
|
162
|
+
.ez-icon-money:before { content: "\ea69"; }
|
|
163
|
+
.ez-icon-more:before { content: "\ea6a"; }
|
|
164
|
+
.ez-icon-mp3:before { content: "\ea6b"; }
|
|
165
|
+
.ez-icon-mp4:before { content: "\ea6c"; }
|
|
166
|
+
.ez-icon-multiple-files:before { content: "\ea6d"; }
|
|
167
|
+
.ez-icon-north-west:before { content: "\ea6e"; }
|
|
168
|
+
.ez-icon-number:before { content: "\ea6f"; }
|
|
169
|
+
.ez-icon-ordem-ascendente:before { content: "\ea70"; }
|
|
170
|
+
.ez-icon-ordem-descendente:before { content: "\ea71"; }
|
|
171
|
+
.ez-icon-parcelar:before { content: "\ea72"; }
|
|
172
|
+
.ez-icon-pause:before { content: "\ea73"; }
|
|
173
|
+
.ez-icon-payments:before { content: "\ea74"; }
|
|
174
|
+
.ez-icon-pdf:before { content: "\ea75"; }
|
|
175
|
+
.ez-icon-play:before { content: "\ea76"; }
|
|
176
|
+
.ez-icon-plus:before { content: "\ea77"; }
|
|
177
|
+
.ez-icon-png:before { content: "\ea78"; }
|
|
178
|
+
.ez-icon-power:before { content: "\ea79"; }
|
|
179
|
+
.ez-icon-pptx:before { content: "\ea7a"; }
|
|
180
|
+
.ez-icon-preview:before { content: "\ea7b"; }
|
|
181
|
+
.ez-icon-print:before { content: "\ea7c"; }
|
|
182
|
+
.ez-icon-push-pin:before { content: "\ea7d"; }
|
|
183
|
+
.ez-icon-rateio:before { content: "\ea7e"; }
|
|
184
|
+
.ez-icon-receipt:before { content: "\ea7f"; }
|
|
185
|
+
.ez-icon-recolher_card:before { content: "\ea80"; }
|
|
186
|
+
.ez-icon-remove-from-cart:before { content: "\ea81"; }
|
|
187
|
+
.ez-icon-restore:before { content: "\ea82"; }
|
|
188
|
+
.ez-icon-return:before { content: "\ea83"; }
|
|
189
|
+
.ez-icon-sankhya-place:before { content: "\ea84"; }
|
|
190
|
+
.ez-icon-save:before { content: "\ea85"; }
|
|
191
|
+
.ez-icon-search:before { content: "\ea86"; }
|
|
192
|
+
.ez-icon-settings-inverted:before { content: "\ea87"; }
|
|
193
|
+
.ez-icon-settings:before { content: "\ea88"; }
|
|
194
|
+
.ez-icon-share:before { content: "\ea89"; }
|
|
195
|
+
.ez-icon-shield:before { content: "\ea8a"; }
|
|
196
|
+
.ez-icon-show_menu:before { content: "\ea8b"; }
|
|
197
|
+
.ez-icon-south-east:before { content: "\ea8c"; }
|
|
198
|
+
.ez-icon-sync:before { content: "\ea8d"; }
|
|
199
|
+
.ez-icon-table:before { content: "\ea8e"; }
|
|
200
|
+
.ez-icon-tag_code:before { content: "\ea8f"; }
|
|
201
|
+
.ez-icon-text:before { content: "\ea90"; }
|
|
202
|
+
.ez-icon-timeline:before { content: "\ea91"; }
|
|
203
|
+
.ez-icon-timer-outline:before { content: "\ea92"; }
|
|
204
|
+
.ez-icon-trending-up:before { content: "\ea93"; }
|
|
205
|
+
.ez-icon-tune:before { content: "\ea94"; }
|
|
206
|
+
.ez-icon-txt:before { content: "\ea95"; }
|
|
207
|
+
.ez-icon-un-pin:before { content: "\ea96"; }
|
|
208
|
+
.ez-icon-unfold_less:before { content: "\ea97"; }
|
|
209
|
+
.ez-icon-unfold_more:before { content: "\ea98"; }
|
|
210
|
+
.ez-icon-user-circle:before { content: "\ea99"; }
|
|
211
|
+
.ez-icon-warning-outline:before { content: "\ea9a"; }
|
|
212
|
+
.ez-icon-warning_triangle:before { content: "\ea9b"; }
|
|
213
|
+
.ez-icon-whatshot:before { content: "\ea9c"; }
|
|
214
|
+
.ez-icon-xlsx:before { content: "\ea9d"; }
|
|
215
|
+
.ez-icon-zip:before { content: "\ea9e"; }
|
|
212
216
|
/*
|
|
213
217
|
END CSS GENERATED BY EZ-DESIGN ICONS
|
|
214
218
|
*/
|
|
@@ -147,6 +147,7 @@ p {
|
|
|
147
147
|
|
|
148
148
|
.item-content {
|
|
149
149
|
display: flex;
|
|
150
|
+
align-items: center;
|
|
150
151
|
overflow: hidden;
|
|
151
152
|
justify-content: flex-start;
|
|
152
153
|
width: 100%;
|
|
@@ -176,7 +177,7 @@ p {
|
|
|
176
177
|
|
|
177
178
|
.draggable-list li > div {
|
|
178
179
|
/*public*/
|
|
179
|
-
padding: var(--space--
|
|
180
|
+
padding: var(--space--3xs, 4px) var(--space--3xs, 4px);
|
|
180
181
|
margin: var(--ez-list__item--margin);
|
|
181
182
|
}
|
|
182
183
|
|
|
@@ -25,10 +25,10 @@ export class EzList {
|
|
|
25
25
|
*/
|
|
26
26
|
async scrollToTop() {
|
|
27
27
|
if (this.useGroups) {
|
|
28
|
-
this._element.
|
|
28
|
+
this._element.querySelector('.group-container').scrollTop = 0;
|
|
29
29
|
}
|
|
30
30
|
else {
|
|
31
|
-
this._element.
|
|
31
|
+
this._element.querySelector('.items-container').scrollTop = 0;
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
34
|
/**
|
|
@@ -148,8 +148,7 @@ export class EzList {
|
|
|
148
148
|
}
|
|
149
149
|
}
|
|
150
150
|
buildIdDraggableListAndSelectable() {
|
|
151
|
-
const
|
|
152
|
-
const draggableList = shadow.querySelectorAll('.draggable-list');
|
|
151
|
+
const draggableList = this._element.querySelectorAll('.draggable-list');
|
|
153
152
|
draggableList === null || draggableList === void 0 ? void 0 : draggableList.forEach((draggable, index) => {
|
|
154
153
|
var _a, _b;
|
|
155
154
|
let suffix = 'draggableList';
|
|
@@ -159,7 +158,7 @@ export class EzList {
|
|
|
159
158
|
}
|
|
160
159
|
ElementIDUtils.addIDInfoIfNotExists(draggable, suffix);
|
|
161
160
|
});
|
|
162
|
-
const selectable =
|
|
161
|
+
const selectable = this._element.querySelectorAll('.selectable-container');
|
|
163
162
|
selectable === null || selectable === void 0 ? void 0 : selectable.forEach((item) => {
|
|
164
163
|
ElementIDUtils.addIDInfoIfNotExists(item, 'selectable');
|
|
165
164
|
});
|
|
@@ -288,7 +287,7 @@ export class EzList {
|
|
|
288
287
|
}
|
|
289
288
|
if (this._draggingElement) {
|
|
290
289
|
try {
|
|
291
|
-
this._element.
|
|
290
|
+
this._element.removeChild(this._draggingElement);
|
|
292
291
|
}
|
|
293
292
|
catch (err) { }
|
|
294
293
|
this._draggingElement = undefined;
|
|
@@ -551,7 +550,7 @@ export class EzList {
|
|
|
551
550
|
}, onDragEnd: () => this.onDragEnd(), onDrop: event => this.onDropLastIndex(event) }))))));
|
|
552
551
|
}
|
|
553
552
|
static get is() { return "ez-list"; }
|
|
554
|
-
static get encapsulation() { return "
|
|
553
|
+
static get encapsulation() { return "scoped"; }
|
|
555
554
|
static get originalStyleUrls() {
|
|
556
555
|
return {
|
|
557
556
|
"$": ["ez-list.css"]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
:host {
|
|
2
2
|
/*@doc Define a camada em que o componente será exibido.*/
|
|
3
|
-
--ez-modal-z-index: var(--elevation--
|
|
3
|
+
--ez-modal-z-index: var(--elevation--22, 22);
|
|
4
4
|
/*@doc Define o espaçamento vertical do conteúdo do modal.*/
|
|
5
5
|
--ez-modal-vertical-padding: var(--space--large, 24px);
|
|
6
6
|
/*@doc Define o padding entre o conteúdo e o modal */
|
|
@@ -23,6 +23,10 @@
|
|
|
23
23
|
background: rgba(0, 4, 12, 0.1);
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
+
.modal__screen-none{
|
|
27
|
+
background: none;
|
|
28
|
+
}
|
|
29
|
+
|
|
26
30
|
.modal__screen-medium{
|
|
27
31
|
backdrop-filter: blur(4px);
|
|
28
32
|
background: rgba(0, 4, 12, 0.4)
|
|
@@ -8,6 +8,7 @@ export class EzModal {
|
|
|
8
8
|
this.opened = true;
|
|
9
9
|
this.closeEsc = false;
|
|
10
10
|
this.closeOutsideClick = false;
|
|
11
|
+
this.closeOutsideLeave = false;
|
|
11
12
|
this.scrim = "medium";
|
|
12
13
|
}
|
|
13
14
|
observeOpened() {
|
|
@@ -30,15 +31,29 @@ export class EzModal {
|
|
|
30
31
|
.bind("Esc", () => this.closeModal());
|
|
31
32
|
}
|
|
32
33
|
componentDidRender() {
|
|
33
|
-
|
|
34
|
-
|
|
34
|
+
this.modalFocus();
|
|
35
|
+
}
|
|
36
|
+
modalFocus() {
|
|
37
|
+
if (!this.opened) {
|
|
38
|
+
return;
|
|
35
39
|
}
|
|
40
|
+
requestAnimationFrame(() => {
|
|
41
|
+
const slot = this._element.shadowRoot.querySelector("ez-modal-container");
|
|
42
|
+
if (this._modalRef && slot === null) {
|
|
43
|
+
this._modalRef.focus();
|
|
44
|
+
}
|
|
45
|
+
});
|
|
36
46
|
}
|
|
37
47
|
onMouseDownHandler(event) {
|
|
38
48
|
if (this.closeOutsideClick && event.target === this._overlay) {
|
|
39
49
|
this.closeModal();
|
|
40
50
|
}
|
|
41
51
|
}
|
|
52
|
+
onMouseLeaveHandler() {
|
|
53
|
+
if (this.closeOutsideLeave) {
|
|
54
|
+
this.closeModal();
|
|
55
|
+
}
|
|
56
|
+
}
|
|
42
57
|
render() {
|
|
43
58
|
const positionSufix = this.align === "left" ? "left" : "right";
|
|
44
59
|
const regularVerticalPaddingClass = this.heightMode === "regular" ? 'modal__vertical-padding' : '';
|
|
@@ -46,7 +61,7 @@ export class EzModal {
|
|
|
46
61
|
const scrimType = `modal__screen-${this.scrim}`;
|
|
47
62
|
return (h(Host, null, this.opened
|
|
48
63
|
?
|
|
49
|
-
h("div", { ref: ref => this._modalRef = ref, class: `modal ${scrimType} ${regularVerticalPaddingClass}`, onMouseDown: evt => this.onMouseDownHandler(evt), tabIndex: -1 }, h("div", { class: `modal__container modal__container--${positionSufix}`, ref: ref => this._overlay = ref }, h("div", { class: `modal__content ${modalContentHeightMode} ${this.modalSize}` }, h("slot", null))))
|
|
64
|
+
h("div", { ref: ref => this._modalRef = ref, class: `modal ${scrimType} ${regularVerticalPaddingClass}`, onMouseDown: evt => this.onMouseDownHandler(evt), tabIndex: -1 }, h("div", { class: `modal__container modal__container--${positionSufix}`, ref: ref => this._overlay = ref }, h("div", { onMouseLeave: () => this.onMouseLeaveHandler(), class: `modal__content ${modalContentHeightMode} ${this.modalSize}` }, h("slot", null))))
|
|
50
65
|
:
|
|
51
66
|
undefined));
|
|
52
67
|
}
|
|
@@ -174,12 +189,30 @@ export class EzModal {
|
|
|
174
189
|
"reflect": false,
|
|
175
190
|
"defaultValue": "false"
|
|
176
191
|
},
|
|
192
|
+
"closeOutsideLeave": {
|
|
193
|
+
"type": "boolean",
|
|
194
|
+
"mutable": false,
|
|
195
|
+
"complexType": {
|
|
196
|
+
"original": "boolean",
|
|
197
|
+
"resolved": "boolean",
|
|
198
|
+
"references": {}
|
|
199
|
+
},
|
|
200
|
+
"required": false,
|
|
201
|
+
"optional": true,
|
|
202
|
+
"docs": {
|
|
203
|
+
"tags": [],
|
|
204
|
+
"text": "Define se o modal ser\u00E1 fechado se o mouse sair para fora do conte\u00FAdo."
|
|
205
|
+
},
|
|
206
|
+
"attribute": "close-outside-leave",
|
|
207
|
+
"reflect": false,
|
|
208
|
+
"defaultValue": "false"
|
|
209
|
+
},
|
|
177
210
|
"scrim": {
|
|
178
211
|
"type": "string",
|
|
179
212
|
"mutable": false,
|
|
180
213
|
"complexType": {
|
|
181
|
-
"original": "\"medium\" | \"light\"",
|
|
182
|
-
"resolved": "\"light\" | \"medium\"",
|
|
214
|
+
"original": "\"medium\" | \"light\" | \"none\"",
|
|
215
|
+
"resolved": "\"light\" | \"medium\" | \"none\"",
|
|
183
216
|
"references": {}
|
|
184
217
|
},
|
|
185
218
|
"required": false,
|
|
@@ -11,6 +11,7 @@ export class EzModalContainer {
|
|
|
11
11
|
this.okButtonLabel = undefined;
|
|
12
12
|
this.cancelButtonStatus = undefined;
|
|
13
13
|
this.okButtonStatus = undefined;
|
|
14
|
+
this.showCloseButton = true;
|
|
14
15
|
}
|
|
15
16
|
async handleEzModalAction(event) {
|
|
16
17
|
var _a;
|
|
@@ -47,7 +48,7 @@ export class EzModalContainer {
|
|
|
47
48
|
this._closeButton.focus();
|
|
48
49
|
}
|
|
49
50
|
render() {
|
|
50
|
-
return (h(Host, null, h("button", { class: "ez-modal-container__focus-ctrl", onFocusin: () => this.focusLast() }), h("div", { ref: ref => this._modalRef = ref, tabIndex: -1, class: "ez-modal-container__header-container" }, this.showTitleBar && (h("div", { class: "ez-modal-container__header ez-margin-bottom--
|
|
51
|
+
return (h(Host, null, h("button", { class: "ez-modal-container__focus-ctrl", onFocusin: () => this.focusLast() }), h("div", { ref: ref => this._modalRef = ref, tabIndex: -1, class: "ez-modal-container__header-container" }, this.showTitleBar && (h("div", { class: "ez-modal-container__header ez-margin-bottom--medium" }, h("div", { class: "ez-col ez-align--middle ez-modal-container__title" }, h("h2", { class: "ez-text ez-title--large ez-title--primary ez-text--bold ez-margin-vertical--extra-small" }, this.modalTitle), this.modalSubTitle && (h("div", { class: "ez-text ez-text--medium ez-text--primary ez-margin-vertical--extra-small" }, this.modalSubTitle))), (this.showCloseButton && h("button", { ref: ref => this._closeButton = ref, class: "ez-modal-container__close-button", onClick: () => this.ezModalAction.emit(ModalAction.CLOSE) }, h("ez-icon", { class: "ez-modal-container__close-icon", size: "medium", iconName: "close" })))))), h("div", { class: "ez-modal-container__content" }, h("slot", null)), h("div", { class: "ez-modal-container__footer" }, this.cancelIsVisible() && (h("ez-button", { label: this.cancelButtonLabel, enabled: this.cancelButtonStatus !== ModalButtonStatus.DISABLED, onClick: () => this.ezModalAction.emit(ModalAction.CANCEL) })), this.okIsVisible() && (h("ez-button", { ref: ref => this._okButton = ref, class: "ez-button--primary", label: this.okButtonLabel, enabled: this.okButtonStatus !== ModalButtonStatus.DISABLED, onClick: () => this.ezModalAction.emit(ModalAction.OK) }))), h("button", { class: "ez-modal-container__focus-ctrl", onFocusin: () => this.focusFirst() })));
|
|
51
52
|
}
|
|
52
53
|
static get is() { return "ez-modal-container"; }
|
|
53
54
|
static get encapsulation() { return "scoped"; }
|
|
@@ -182,6 +183,24 @@ export class EzModalContainer {
|
|
|
182
183
|
},
|
|
183
184
|
"attribute": "ok-button-status",
|
|
184
185
|
"reflect": false
|
|
186
|
+
},
|
|
187
|
+
"showCloseButton": {
|
|
188
|
+
"type": "boolean",
|
|
189
|
+
"mutable": false,
|
|
190
|
+
"complexType": {
|
|
191
|
+
"original": "boolean",
|
|
192
|
+
"resolved": "boolean",
|
|
193
|
+
"references": {}
|
|
194
|
+
},
|
|
195
|
+
"required": false,
|
|
196
|
+
"optional": true,
|
|
197
|
+
"docs": {
|
|
198
|
+
"tags": [],
|
|
199
|
+
"text": "Define a visibilidade do bot\u00E3o de fechar."
|
|
200
|
+
},
|
|
201
|
+
"attribute": "show-close-button",
|
|
202
|
+
"reflect": false,
|
|
203
|
+
"defaultValue": "true"
|
|
185
204
|
}
|
|
186
205
|
};
|
|
187
206
|
}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
:host {
|
|
2
2
|
--ez-check--outter-gap: 0px;
|
|
3
|
+
--ez-multi-selection-default-height: 322px;
|
|
3
4
|
|
|
4
5
|
display: block;
|
|
5
6
|
width: 304px;
|
|
6
|
-
height:
|
|
7
|
+
height: var(--ez-multi-selection-default-height);
|
|
7
8
|
max-height: calc(100vh - 350px);
|
|
8
9
|
}
|
|
9
10
|
|
|
@@ -13,7 +14,6 @@
|
|
|
13
14
|
|
|
14
15
|
.multi-selection__content-options {
|
|
15
16
|
position: relative;
|
|
16
|
-
top: -12px;
|
|
17
17
|
left: -4px;
|
|
18
18
|
}
|
|
19
19
|
|
|
@@ -23,7 +23,6 @@
|
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
.multi-selection__list {
|
|
26
|
-
height: 235px;
|
|
27
26
|
max-height: calc(100vh - 435px);
|
|
28
27
|
overflow-y: auto;
|
|
29
28
|
overflow-x: clip;
|
|
@@ -96,7 +96,7 @@ export class EzMuiltiSelectionList {
|
|
|
96
96
|
}
|
|
97
97
|
async searchWithDataSource(searchArgument, fieldName) {
|
|
98
98
|
const { argument, mode } = searchArgument;
|
|
99
|
-
if (mode !== 'PRELOAD') {
|
|
99
|
+
if (mode !== 'PRELOAD' && fieldName) {
|
|
100
100
|
return this.dataSource.fetchData(argument, fieldName);
|
|
101
101
|
}
|
|
102
102
|
}
|
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
:host {
|
|
2
|
+
/*@doc Define a largura maxima do componente.*/
|
|
3
|
+
--ez-number-input__min-width: 0px;
|
|
4
|
+
/*@doc Define a largura minima do componente.*/
|
|
5
|
+
--ez-number-input__max-width: 100%;
|
|
6
|
+
|
|
2
7
|
display: block;
|
|
3
8
|
width: 100%;
|
|
4
9
|
}
|
|
5
10
|
|
|
6
11
|
.number__input {
|
|
7
12
|
height: 100%;
|
|
13
|
+
|
|
14
|
+
min-width: var(--ez-number-input__min-width);
|
|
15
|
+
max-width: var(--ez-number-input__max-width);
|
|
8
16
|
}
|