@sankhyalabs/ezui 5.20.0-dev.4 → 5.20.0-dev.40
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/{CSSVarsUtils-b136a156.js → CSSVarsUtils-10c9d5b4.js} +13 -0
- package/dist/cjs/ez-actions-button.cjs.entry.js +1 -1
- package/dist/cjs/ez-alert-list.cjs.entry.js +1 -1
- package/dist/cjs/ez-card-item_3.cjs.entry.js +183 -0
- package/dist/cjs/ez-check.cjs.entry.js +1 -1
- package/dist/cjs/ez-combo-box.cjs.entry.js +20 -163
- package/dist/cjs/ez-date-input.cjs.entry.js +4 -1
- package/dist/cjs/ez-date-time-input.cjs.entry.js +4 -1
- package/dist/cjs/ez-form-view.cjs.entry.js +30 -13
- package/dist/cjs/ez-grid.cjs.entry.js +149 -50
- package/dist/cjs/ez-icon.cjs.entry.js +1 -1
- package/dist/cjs/ez-modal-container.cjs.entry.js +6 -0
- package/dist/cjs/ez-multi-selection-list.cjs.entry.js +2 -10
- package/dist/cjs/ez-number-input.cjs.entry.js +4 -1
- package/dist/cjs/ez-popup.cjs.entry.js +8 -1
- package/dist/cjs/ez-scroller_3.cjs.entry.js +18 -4
- package/dist/cjs/ez-search.cjs.entry.js +611 -32
- package/dist/cjs/ez-split-button.cjs.entry.js +147 -0
- package/dist/cjs/ez-split-item.cjs.entry.js +20 -2
- package/dist/cjs/ez-split-panel.cjs.entry.js +52 -15
- package/dist/cjs/ez-time-input.cjs.entry.js +1 -1
- package/dist/cjs/ez-toast.cjs.entry.js +1 -1
- package/dist/cjs/ezui.cjs.js +1 -1
- package/dist/cjs/filter-column.cjs.entry.js +16 -5
- package/dist/cjs/index-a7b0c73d.js +10 -10
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +4 -3
- package/dist/collection/components/ez-alert-list/ez-alert-list.css +1 -1
- package/dist/collection/components/ez-card-item/ez-card-item.css +52 -3
- package/dist/collection/components/ez-card-item/ez-card-item.js +22 -3
- package/dist/collection/components/ez-check/ez-check.css +1 -0
- package/dist/collection/components/ez-collapsible-box/ez-collapsible-box.css +1 -0
- package/dist/collection/components/ez-combo-box/ez-combo-box.js +20 -180
- package/dist/collection/components/ez-date-input/ez-date-input.js +3 -0
- package/dist/collection/components/ez-date-time-input/ez-date-time-input.js +3 -0
- package/dist/collection/components/ez-form-view/ez-form-view.css +17 -1
- package/dist/collection/components/ez-form-view/ez-form-view.js +22 -5
- 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/NumberInput.tpl.js +1 -1
- package/dist/collection/components/ez-form-view/fieldbuilder/templates/SearchInput.tpl.js +1 -1
- package/dist/collection/components/ez-form-view/fieldbuilder/templates/TextInput.tpl.js +1 -1
- package/dist/collection/components/ez-grid/controller/ag-grid/AgGridController.js +34 -18
- package/dist/collection/components/ez-grid/controller/ag-grid/DataSource.js +15 -2
- package/dist/collection/components/ez-grid/controller/ag-grid/DataSourceInterceptor.js +21 -0
- package/dist/collection/components/ez-grid/controller/ag-grid/components/EzGridCustomHeader.js +5 -7
- package/dist/collection/components/ez-grid/ez-grid.css +25 -2
- package/dist/collection/components/ez-grid/ez-grid.js +80 -18
- package/dist/collection/components/ez-grid/subcomponents/filter-column.js +16 -5
- package/dist/collection/components/ez-icon/ez-icon.css +118 -116
- package/dist/collection/components/ez-modal-container/ez-modal-container.js +15 -0
- package/dist/collection/components/ez-multi-selection-list/ez-multi-selection-list.js +2 -10
- package/dist/collection/components/ez-number-input/ez-number-input.js +3 -0
- package/dist/collection/components/ez-popup/ez-popup.css +2 -5
- package/dist/collection/components/ez-popup/ez-popup.js +31 -1
- package/dist/collection/components/ez-search/ez-search.css +331 -0
- package/dist/collection/components/ez-search/ez-search.js +688 -55
- package/dist/collection/components/ez-split-button/ez-split-button.css +229 -0
- package/dist/collection/components/ez-split-button/ez-split-button.js +436 -0
- package/dist/collection/components/ez-split-button/test/dropdownItems.js +42 -0
- package/dist/collection/components/ez-split-panel/ez-split-panel.css +6 -14
- package/dist/collection/components/ez-split-panel/ez-split-panel.js +77 -23
- package/dist/collection/components/ez-split-panel/structure/item/ez-split-item.css +66 -12
- package/dist/collection/components/ez-split-panel/structure/item/ez-split-item.js +82 -2
- package/dist/collection/components/ez-toast/ez-toast.css +1 -1
- package/dist/collection/components/ez-tree/ez-tree.css +26 -0
- package/dist/collection/components/ez-tree/interfaces/ITreeItemBadge.js +1 -0
- package/dist/collection/components/ez-tree/subcomponents/TreeItem.js +15 -2
- package/dist/collection/utils/CSSVarsUtils.js +13 -0
- package/dist/collection/utils/form/test/DataBinder.test.js +9 -0
- package/dist/custom-elements/index.d.ts +6 -0
- package/dist/custom-elements/index.js +1109 -314
- package/dist/esm/{CSSVarsUtils-a97cfa29.js → CSSVarsUtils-71ce76be.js} +13 -0
- package/dist/esm/ez-actions-button.entry.js +1 -1
- package/dist/esm/ez-alert-list.entry.js +1 -1
- package/dist/esm/ez-card-item_3.entry.js +177 -0
- package/dist/esm/ez-check.entry.js +1 -1
- package/dist/esm/ez-combo-box.entry.js +21 -164
- package/dist/esm/ez-date-input.entry.js +4 -1
- package/dist/esm/ez-date-time-input.entry.js +4 -1
- package/dist/esm/ez-form-view.entry.js +31 -14
- package/dist/esm/ez-grid.entry.js +150 -51
- package/dist/esm/ez-icon.entry.js +1 -1
- package/dist/esm/ez-modal-container.entry.js +6 -0
- package/dist/esm/ez-multi-selection-list.entry.js +2 -10
- package/dist/esm/ez-number-input.entry.js +4 -1
- package/dist/esm/ez-popup.entry.js +8 -1
- package/dist/esm/ez-scroller_3.entry.js +18 -4
- package/dist/esm/ez-search.entry.js +613 -34
- package/dist/esm/ez-split-button.entry.js +143 -0
- package/dist/esm/ez-split-item.entry.js +20 -2
- package/dist/esm/ez-split-panel.entry.js +52 -15
- package/dist/esm/ez-time-input.entry.js +1 -1
- package/dist/esm/ez-toast.entry.js +1 -1
- package/dist/esm/ezui.js +1 -1
- package/dist/esm/filter-column.entry.js +16 -5
- package/dist/esm/index-baa5e267.js +10 -10
- package/dist/esm/loader.js +1 -1
- package/dist/ezui/ezui.esm.js +1 -1
- package/dist/ezui/{p-844ee673.entry.js → p-1dede1b2.entry.js} +2 -2
- package/dist/ezui/p-2eb8f73b.entry.js +1 -0
- package/dist/ezui/p-58fae29b.entry.js +1 -0
- package/dist/ezui/{p-40f72de4.entry.js → p-784fe207.entry.js} +1 -1
- package/dist/ezui/p-7a636dfc.entry.js +1 -0
- package/dist/ezui/p-7af81663.entry.js +1 -0
- package/dist/ezui/p-7bc07c31.entry.js +1 -0
- package/dist/ezui/p-8c82374d.entry.js +1 -0
- package/dist/ezui/{p-8becebf8.entry.js → p-8df1ca33.entry.js} +1 -1
- package/dist/ezui/{p-940ed30b.entry.js → p-8e7031a0.entry.js} +1 -1
- package/dist/ezui/p-91f626d3.entry.js +1 -0
- package/dist/ezui/{p-eb36f072.entry.js → p-99ead599.entry.js} +1 -1
- package/dist/ezui/{p-7eb3e1a5.js → p-9e11fc7b.js} +1 -1
- package/dist/ezui/p-9f1e89c9.entry.js +1 -0
- package/dist/ezui/p-af95cd16.entry.js +1 -0
- package/dist/ezui/{p-c0f1715f.entry.js → p-b567fa8c.entry.js} +1 -1
- package/dist/ezui/p-b9fbf4e7.entry.js +1 -0
- package/dist/ezui/p-bae3d0aa.entry.js +1 -0
- package/dist/ezui/p-baf80b13.entry.js +1 -0
- package/dist/ezui/p-bf79aaa1.entry.js +1 -0
- package/dist/ezui/{p-93c3df4f.entry.js → p-d7d7423a.entry.js} +1 -1
- package/dist/ezui/p-db77a984.entry.js +1 -0
- package/dist/ezui/{p-9cad9b6e.entry.js → p-e85c48d7.entry.js} +1 -1
- package/dist/types/components/ez-card-item/ez-card-item.d.ts +4 -0
- package/dist/types/components/ez-combo-box/ez-combo-box.d.ts +1 -15
- package/dist/types/components/ez-form-view/ez-form-view.d.ts +3 -0
- package/dist/types/components/ez-grid/controller/EzGridController.d.ts +1 -0
- package/dist/types/components/ez-grid/controller/ag-grid/AgGridController.d.ts +2 -0
- package/dist/types/components/ez-grid/controller/ag-grid/DataSource.d.ts +2 -1
- package/dist/types/components/ez-grid/controller/ag-grid/DataSourceInterceptor.d.ts +8 -0
- package/dist/types/components/ez-grid/controller/ag-grid/components/EzGridCustomHeader.d.ts +1 -1
- package/dist/types/components/ez-grid/ez-grid.d.ts +16 -2
- package/dist/types/components/ez-grid/subcomponents/filter-column.d.ts +4 -1
- package/dist/types/components/ez-guide-navigator/interfaces/IGuideItem.d.ts +0 -1
- package/dist/types/components/ez-modal-container/ez-modal-container.d.ts +1 -0
- package/dist/types/components/ez-multi-selection-list/ez-multi-selection-list.d.ts +0 -1
- package/dist/types/components/ez-popup/ez-popup.d.ts +6 -1
- package/dist/types/components/ez-search/ez-search.d.ts +100 -10
- package/dist/types/components/ez-split-button/ez-split-button.d.ts +89 -0
- package/dist/types/components/ez-split-button/test/dropdownItems.d.ts +2 -0
- package/dist/types/components/ez-split-panel/ez-split-panel.d.ts +28 -0
- package/dist/types/components/ez-split-panel/structure/item/ez-split-item.d.ts +27 -0
- package/dist/types/components/ez-tree/interfaces/ITreeItem.d.ts +3 -1
- package/dist/types/components/ez-tree/interfaces/ITreeItemBadge.d.ts +6 -0
- package/dist/types/components/ez-tree/subcomponents/TreeItem.d.ts +0 -1
- package/dist/types/components.d.ts +182 -21
- package/dist/types/utils/CSSVarsUtils.d.ts +1 -0
- package/dist/types/utils/form/test/DataBinder.test.d.ts +1 -0
- package/dist/types/utils/interfaces/AbstractFieldMetadata.d.ts +2 -1
- package/package.json +5 -5
- package/react/components.d.ts +1 -0
- package/react/components.js +1 -0
- package/react/components.js.map +1 -1
- package/dist/cjs/ez-card-item.cjs.entry.js +0 -52
- package/dist/cjs/ez-filter-input_2.cjs.entry.js +0 -137
- package/dist/collection/components/ez-grid/controller/ag-grid/AgGridUtils.js +0 -8
- package/dist/esm/ez-card-item.entry.js +0 -48
- package/dist/esm/ez-filter-input_2.entry.js +0 -132
- package/dist/ezui/p-05f5a778.entry.js +0 -1
- package/dist/ezui/p-13dbad96.entry.js +0 -1
- package/dist/ezui/p-24d3fede.entry.js +0 -1
- package/dist/ezui/p-51c5e071.entry.js +0 -1
- package/dist/ezui/p-5613fe63.entry.js +0 -1
- package/dist/ezui/p-596634e9.entry.js +0 -1
- package/dist/ezui/p-5d692ed1.entry.js +0 -1
- package/dist/ezui/p-5d86cca9.entry.js +0 -1
- package/dist/ezui/p-60848ef6.entry.js +0 -1
- package/dist/ezui/p-a08b309b.entry.js +0 -1
- package/dist/ezui/p-a32aaac6.entry.js +0 -1
- package/dist/ezui/p-a5ac7151.entry.js +0 -1
- package/dist/ezui/p-af15c277.entry.js +0 -1
- package/dist/ezui/p-d6ffe679.entry.js +0 -1
- package/dist/types/components/ez-grid/controller/ag-grid/AgGridUtils.d.ts +0 -1
|
@@ -54,6 +54,7 @@ svg {
|
|
|
54
54
|
-moz-osx-font-smoothing: grayscale;
|
|
55
55
|
}
|
|
56
56
|
|
|
57
|
+
|
|
57
58
|
.ez-icon-2chevron-down:before { content: "\ea01"; }
|
|
58
59
|
.ez-icon-2chevron-up:before { content: "\ea02"; }
|
|
59
60
|
.ez-icon-acao:before { content: "\ea03"; }
|
|
@@ -91,122 +92,123 @@ svg {
|
|
|
91
92
|
.ez-icon-circle:before { content: "\ea23"; }
|
|
92
93
|
.ez-icon-cleaning:before { content: "\ea24"; }
|
|
93
94
|
.ez-icon-clipboard:before { content: "\ea25"; }
|
|
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-delete:before { content: "\ea30"; }
|
|
105
|
-
.ez-icon-
|
|
106
|
-
.ez-icon-
|
|
107
|
-
.ez-icon-
|
|
108
|
-
.ez-icon-
|
|
109
|
-
.ez-icon-
|
|
110
|
-
.ez-icon-dots-
|
|
111
|
-
.ez-icon-
|
|
112
|
-
.ez-icon-
|
|
113
|
-
.ez-icon-dual-chevron-
|
|
114
|
-
.ez-icon-dual-chevron-
|
|
115
|
-
.ez-icon-dual-chevron-
|
|
116
|
-
.ez-icon-
|
|
117
|
-
.ez-icon-edit-
|
|
118
|
-
.ez-icon-edit-
|
|
119
|
-
.ez-icon-edit-
|
|
120
|
-
.ez-icon-edit:before { content: "\ea40"; }
|
|
121
|
-
.ez-icon-
|
|
122
|
-
.ez-icon-
|
|
123
|
-
.ez-icon-
|
|
124
|
-
.ez-icon-
|
|
125
|
-
.ez-icon-
|
|
126
|
-
.ez-icon-
|
|
127
|
-
.ez-icon-
|
|
128
|
-
.ez-icon-eye:before { content: "\ea48"; }
|
|
129
|
-
.ez-icon-
|
|
130
|
-
.ez-icon-
|
|
131
|
-
.ez-icon-
|
|
132
|
-
.ez-icon-file-
|
|
133
|
-
.ez-icon-
|
|
134
|
-
.ez-icon-
|
|
135
|
-
.ez-icon-find-
|
|
136
|
-
.ez-icon-
|
|
137
|
-
.ez-icon-
|
|
138
|
-
.ez-icon-
|
|
139
|
-
.ez-icon-
|
|
140
|
-
.ez-icon-
|
|
141
|
-
.ez-icon-
|
|
142
|
-
.ez-icon-help:before { content: "\ea56"; }
|
|
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-lock:before { content: "\ea60"; }
|
|
153
|
-
.ez-icon-
|
|
154
|
-
.ez-icon-
|
|
155
|
-
.ez-icon-
|
|
156
|
-
.ez-icon-
|
|
157
|
-
.ez-icon-money:before { content: "\ea65"; }
|
|
158
|
-
.ez-icon-
|
|
159
|
-
.ez-icon-
|
|
160
|
-
.ez-icon-
|
|
161
|
-
.ez-icon-
|
|
162
|
-
.ez-icon-
|
|
163
|
-
.ez-icon-
|
|
164
|
-
.ez-icon-
|
|
165
|
-
.ez-icon-ordem-
|
|
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-settings:before { content: "\ea83"; }
|
|
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-
|
|
95
|
+
.ez-icon-clock-rotate-left:before { content: "\ea26"; }
|
|
96
|
+
.ez-icon-close:before { content: "\ea27"; }
|
|
97
|
+
.ez-icon-cobrar:before { content: "\ea28"; }
|
|
98
|
+
.ez-icon-code:before { content: "\ea29"; }
|
|
99
|
+
.ez-icon-configuration:before { content: "\ea2a"; }
|
|
100
|
+
.ez-icon-content-cut:before { content: "\ea2b"; }
|
|
101
|
+
.ez-icon-copy:before { content: "\ea2c"; }
|
|
102
|
+
.ez-icon-credit_card:before { content: "\ea2d"; }
|
|
103
|
+
.ez-icon-crop:before { content: "\ea2e"; }
|
|
104
|
+
.ez-icon-custom:before { content: "\ea2f"; }
|
|
105
|
+
.ez-icon-delete-file:before { content: "\ea30"; }
|
|
106
|
+
.ez-icon-delete:before { content: "\ea31"; }
|
|
107
|
+
.ez-icon-description:before { content: "\ea32"; }
|
|
108
|
+
.ez-icon-dividir:before { content: "\ea33"; }
|
|
109
|
+
.ez-icon-docx:before { content: "\ea34"; }
|
|
110
|
+
.ez-icon-dot-notification:before { content: "\ea35"; }
|
|
111
|
+
.ez-icon-dots-horizontal:before { content: "\ea36"; }
|
|
112
|
+
.ez-icon-dots-vertical:before { content: "\ea37"; }
|
|
113
|
+
.ez-icon-drag-indicator:before { content: "\ea38"; }
|
|
114
|
+
.ez-icon-dual-chevron-down:before { content: "\ea39"; }
|
|
115
|
+
.ez-icon-dual-chevron-left:before { content: "\ea3a"; }
|
|
116
|
+
.ez-icon-dual-chevron-right:before { content: "\ea3b"; }
|
|
117
|
+
.ez-icon-dual-chevron-up:before { content: "\ea3c"; }
|
|
118
|
+
.ez-icon-edit-file:before { content: "\ea3d"; }
|
|
119
|
+
.ez-icon-edit-table:before { content: "\ea3e"; }
|
|
120
|
+
.ez-icon-edit-time:before { content: "\ea3f"; }
|
|
121
|
+
.ez-icon-edit-value:before { content: "\ea40"; }
|
|
122
|
+
.ez-icon-edit:before { content: "\ea41"; }
|
|
123
|
+
.ez-icon-email:before { content: "\ea42"; }
|
|
124
|
+
.ez-icon-estorno:before { content: "\ea43"; }
|
|
125
|
+
.ez-icon-exe:before { content: "\ea44"; }
|
|
126
|
+
.ez-icon-expand:before { content: "\ea45"; }
|
|
127
|
+
.ez-icon-expandir_card:before { content: "\ea46"; }
|
|
128
|
+
.ez-icon-extrato:before { content: "\ea47"; }
|
|
129
|
+
.ez-icon-eye-off:before { content: "\ea48"; }
|
|
130
|
+
.ez-icon-eye:before { content: "\ea49"; }
|
|
131
|
+
.ez-icon-favorite:before { content: "\ea4a"; }
|
|
132
|
+
.ez-icon-figma:before { content: "\ea4b"; }
|
|
133
|
+
.ez-icon-file-download:before { content: "\ea4c"; }
|
|
134
|
+
.ez-icon-file-upload:before { content: "\ea4d"; }
|
|
135
|
+
.ez-icon-filter:before { content: "\ea4e"; }
|
|
136
|
+
.ez-icon-find-file:before { content: "\ea4f"; }
|
|
137
|
+
.ez-icon-find-page:before { content: "\ea50"; }
|
|
138
|
+
.ez-icon-format-color-fill:before { content: "\ea51"; }
|
|
139
|
+
.ez-icon-generic:before { content: "\ea52"; }
|
|
140
|
+
.ez-icon-gif:before { content: "\ea53"; }
|
|
141
|
+
.ez-icon-graph_bar:before { content: "\ea54"; }
|
|
142
|
+
.ez-icon-handshake:before { content: "\ea55"; }
|
|
143
|
+
.ez-icon-help-inverted:before { content: "\ea56"; }
|
|
144
|
+
.ez-icon-help:before { content: "\ea57"; }
|
|
145
|
+
.ez-icon-hide_menu:before { content: "\ea58"; }
|
|
146
|
+
.ez-icon-home:before { content: "\ea59"; }
|
|
147
|
+
.ez-icon-icons104:before { content: "\ea5a"; }
|
|
148
|
+
.ez-icon-language:before { content: "\ea5b"; }
|
|
149
|
+
.ez-icon-launch:before { content: "\ea5c"; }
|
|
150
|
+
.ez-icon-lightbulb:before { content: "\ea5d"; }
|
|
151
|
+
.ez-icon-list:before { content: "\ea5e"; }
|
|
152
|
+
.ez-icon-location:before { content: "\ea5f"; }
|
|
153
|
+
.ez-icon-lock-outline:before { content: "\ea60"; }
|
|
154
|
+
.ez-icon-lock:before { content: "\ea61"; }
|
|
155
|
+
.ez-icon-menu:before { content: "\ea62"; }
|
|
156
|
+
.ez-icon-mid:before { content: "\ea63"; }
|
|
157
|
+
.ez-icon-minus:before { content: "\ea64"; }
|
|
158
|
+
.ez-icon-money-off:before { content: "\ea65"; }
|
|
159
|
+
.ez-icon-money:before { content: "\ea66"; }
|
|
160
|
+
.ez-icon-more:before { content: "\ea67"; }
|
|
161
|
+
.ez-icon-mp3:before { content: "\ea68"; }
|
|
162
|
+
.ez-icon-mp4:before { content: "\ea69"; }
|
|
163
|
+
.ez-icon-multiple-files:before { content: "\ea6a"; }
|
|
164
|
+
.ez-icon-north-west:before { content: "\ea6b"; }
|
|
165
|
+
.ez-icon-number:before { content: "\ea6c"; }
|
|
166
|
+
.ez-icon-ordem-ascendente:before { content: "\ea6d"; }
|
|
167
|
+
.ez-icon-ordem-descendente:before { content: "\ea6e"; }
|
|
168
|
+
.ez-icon-parcelar:before { content: "\ea6f"; }
|
|
169
|
+
.ez-icon-pause:before { content: "\ea70"; }
|
|
170
|
+
.ez-icon-payments:before { content: "\ea71"; }
|
|
171
|
+
.ez-icon-pdf:before { content: "\ea72"; }
|
|
172
|
+
.ez-icon-play:before { content: "\ea73"; }
|
|
173
|
+
.ez-icon-plus:before { content: "\ea74"; }
|
|
174
|
+
.ez-icon-png:before { content: "\ea75"; }
|
|
175
|
+
.ez-icon-power:before { content: "\ea76"; }
|
|
176
|
+
.ez-icon-pptx:before { content: "\ea77"; }
|
|
177
|
+
.ez-icon-preview:before { content: "\ea78"; }
|
|
178
|
+
.ez-icon-print:before { content: "\ea79"; }
|
|
179
|
+
.ez-icon-push-pin:before { content: "\ea7a"; }
|
|
180
|
+
.ez-icon-rateio:before { content: "\ea7b"; }
|
|
181
|
+
.ez-icon-receipt:before { content: "\ea7c"; }
|
|
182
|
+
.ez-icon-recolher_card:before { content: "\ea7d"; }
|
|
183
|
+
.ez-icon-restore:before { content: "\ea7e"; }
|
|
184
|
+
.ez-icon-return:before { content: "\ea7f"; }
|
|
185
|
+
.ez-icon-sankhya-place:before { content: "\ea80"; }
|
|
186
|
+
.ez-icon-save:before { content: "\ea81"; }
|
|
187
|
+
.ez-icon-search:before { content: "\ea82"; }
|
|
188
|
+
.ez-icon-settings-inverted:before { content: "\ea83"; }
|
|
189
|
+
.ez-icon-settings:before { content: "\ea84"; }
|
|
190
|
+
.ez-icon-share:before { content: "\ea85"; }
|
|
191
|
+
.ez-icon-shield:before { content: "\ea86"; }
|
|
192
|
+
.ez-icon-show_menu:before { content: "\ea87"; }
|
|
193
|
+
.ez-icon-south-east:before { content: "\ea88"; }
|
|
194
|
+
.ez-icon-sync:before { content: "\ea89"; }
|
|
195
|
+
.ez-icon-table:before { content: "\ea8a"; }
|
|
196
|
+
.ez-icon-tag_code:before { content: "\ea8b"; }
|
|
197
|
+
.ez-icon-text:before { content: "\ea8c"; }
|
|
198
|
+
.ez-icon-timeline:before { content: "\ea8d"; }
|
|
199
|
+
.ez-icon-timer-outline:before { content: "\ea8e"; }
|
|
200
|
+
.ez-icon-trending-up:before { content: "\ea8f"; }
|
|
201
|
+
.ez-icon-tune:before { content: "\ea90"; }
|
|
202
|
+
.ez-icon-txt:before { content: "\ea91"; }
|
|
203
|
+
.ez-icon-un-pin:before { content: "\ea92"; }
|
|
204
|
+
.ez-icon-unfold_less:before { content: "\ea93"; }
|
|
205
|
+
.ez-icon-unfold_more:before { content: "\ea94"; }
|
|
206
|
+
.ez-icon-user-circle:before { content: "\ea95"; }
|
|
207
|
+
.ez-icon-warning-outline:before { content: "\ea96"; }
|
|
208
|
+
.ez-icon-warning_triangle:before { content: "\ea97"; }
|
|
209
|
+
.ez-icon-whatshot:before { content: "\ea98"; }
|
|
210
|
+
.ez-icon-xlsx:before { content: "\ea99"; }
|
|
211
|
+
.ez-icon-zip:before { content: "\ea9a"; }
|
|
210
212
|
/*
|
|
211
213
|
END CSS GENERATED BY EZ-DESIGN ICONS
|
|
212
214
|
*/
|
|
@@ -11,6 +11,12 @@ export class EzModalContainer {
|
|
|
11
11
|
this.cancelButtonStatus = undefined;
|
|
12
12
|
this.okButtonStatus = undefined;
|
|
13
13
|
}
|
|
14
|
+
handleKeyDown(event) {
|
|
15
|
+
if (event.key === 'Escape' || event.key === 'Esc')
|
|
16
|
+
this.ezModalAction.emit(ModalAction.CANCEL);
|
|
17
|
+
if (event.key === 'Enter')
|
|
18
|
+
this.ezModalAction.emit(ModalAction.OK);
|
|
19
|
+
}
|
|
14
20
|
cancelIsVisible() {
|
|
15
21
|
return (this.cancelButtonStatus !== ModalButtonStatus.HIDDEN && this.cancelButtonLabel != undefined);
|
|
16
22
|
}
|
|
@@ -188,4 +194,13 @@ export class EzModalContainer {
|
|
|
188
194
|
}
|
|
189
195
|
}];
|
|
190
196
|
}
|
|
197
|
+
static get listeners() {
|
|
198
|
+
return [{
|
|
199
|
+
"name": "keydown",
|
|
200
|
+
"method": "handleKeyDown",
|
|
201
|
+
"target": "window",
|
|
202
|
+
"capture": false,
|
|
203
|
+
"passive": false
|
|
204
|
+
}];
|
|
205
|
+
}
|
|
191
206
|
}
|
|
@@ -137,16 +137,8 @@ export class EzMuiltiSelectionList {
|
|
|
137
137
|
}
|
|
138
138
|
handleChangeSelectedItem(event) {
|
|
139
139
|
const { detail: itemCheckSelected } = event;
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
return Object.assign(Object.assign({}, item), { check: itemCheckSelected.check });
|
|
143
|
-
}
|
|
144
|
-
return item;
|
|
145
|
-
});
|
|
146
|
-
this.clearInputs();
|
|
147
|
-
}
|
|
148
|
-
clearInputs() {
|
|
149
|
-
this.filterInput ? (this.filterInput.value = '') : (this.searchInput.value = '');
|
|
140
|
+
const itemSelected = this.filteredOptions.find(item => item.label === itemCheckSelected.label);
|
|
141
|
+
itemSelected.check = itemCheckSelected.check;
|
|
150
142
|
}
|
|
151
143
|
buildViewList(hasDelete) {
|
|
152
144
|
return (h(Fragment, null, this.displayOptionToCheckAllItems && (h("ez-check", { ref: (element) => (this.checkInput = element), label: "Selecionar todos", class: "multi-selection__select-all", onEzChange: this.handleChangeSelectAllItems.bind(this) })), h("ez-list", { class: "multi-selection__list", dataSource: this.displayOptions, listMode: "check", hoverFeedback: true, onEzCheckChange: this.handleChangeSelectedItem.bind(this), itemSlotBuilder: hasDelete ? this.buildDeleteIconSlot.bind(this) : null })));
|
|
@@ -107,6 +107,9 @@ export class EzNumberInput {
|
|
|
107
107
|
this.ezCancelWaitingChange.emit();
|
|
108
108
|
}
|
|
109
109
|
handleBlur() {
|
|
110
|
+
if (!this._changePending) {
|
|
111
|
+
return;
|
|
112
|
+
}
|
|
110
113
|
try {
|
|
111
114
|
const parsedNumber = this.getParsedNumber();
|
|
112
115
|
if (parsedNumber !== undefined && isNaN(parsedNumber)) {
|
|
@@ -77,17 +77,14 @@
|
|
|
77
77
|
|
|
78
78
|
.popup__content {
|
|
79
79
|
box-sizing: border-box;
|
|
80
|
-
|
|
80
|
+
height: 100%;
|
|
81
81
|
width: 100%;
|
|
82
|
-
display: grid;
|
|
83
|
-
grid-template-rows: auto 1fr;
|
|
84
82
|
}
|
|
85
83
|
|
|
86
84
|
.popup__expandable-content {
|
|
87
85
|
box-sizing: border-box;
|
|
88
86
|
width: 100%;
|
|
89
|
-
|
|
90
|
-
height: 100%;
|
|
87
|
+
height: calc(100% - 44px);
|
|
91
88
|
}
|
|
92
89
|
|
|
93
90
|
.popup__header {
|
|
@@ -19,6 +19,12 @@ export class EzPopup {
|
|
|
19
19
|
observeConfig() {
|
|
20
20
|
this.manageOverflow();
|
|
21
21
|
}
|
|
22
|
+
handleKeyDown(event) {
|
|
23
|
+
if (event.key === 'Escape' || event.key === 'Esc')
|
|
24
|
+
this.opened = false;
|
|
25
|
+
if (event.key === 'Enter')
|
|
26
|
+
this.ezPopupAction.emit("OK");
|
|
27
|
+
}
|
|
22
28
|
manageOverflow() {
|
|
23
29
|
if (this.opened) {
|
|
24
30
|
window.document.body.style.overflow = "hidden";
|
|
@@ -162,13 +168,28 @@ export class EzPopup {
|
|
|
162
168
|
"composed": true,
|
|
163
169
|
"docs": {
|
|
164
170
|
"tags": [],
|
|
165
|
-
"text": "
|
|
171
|
+
"text": "Evento emitido ao clicar no bot\u00E3o de fechar (onEzClosePopup)."
|
|
166
172
|
},
|
|
167
173
|
"complexType": {
|
|
168
174
|
"original": "any",
|
|
169
175
|
"resolved": "any",
|
|
170
176
|
"references": {}
|
|
171
177
|
}
|
|
178
|
+
}, {
|
|
179
|
+
"method": "ezPopupAction",
|
|
180
|
+
"name": "ezPopupAction",
|
|
181
|
+
"bubbles": true,
|
|
182
|
+
"cancelable": true,
|
|
183
|
+
"composed": true,
|
|
184
|
+
"docs": {
|
|
185
|
+
"tags": [],
|
|
186
|
+
"text": "Evento emitido ao clicar no bot\u00E3o de fechar (ezPopupAction = OK)"
|
|
187
|
+
},
|
|
188
|
+
"complexType": {
|
|
189
|
+
"original": "string",
|
|
190
|
+
"resolved": "string",
|
|
191
|
+
"references": {}
|
|
192
|
+
}
|
|
172
193
|
}];
|
|
173
194
|
}
|
|
174
195
|
static get watchers() {
|
|
@@ -177,4 +198,13 @@ export class EzPopup {
|
|
|
177
198
|
"methodName": "observeConfig"
|
|
178
199
|
}];
|
|
179
200
|
}
|
|
201
|
+
static get listeners() {
|
|
202
|
+
return [{
|
|
203
|
+
"name": "keydown",
|
|
204
|
+
"method": "handleKeyDown",
|
|
205
|
+
"target": "window",
|
|
206
|
+
"capture": false,
|
|
207
|
+
"passive": false
|
|
208
|
+
}];
|
|
209
|
+
}
|
|
180
210
|
}
|