@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.
Files changed (173) hide show
  1. package/dist/cjs/{CSSVarsUtils-b136a156.js → CSSVarsUtils-10c9d5b4.js} +13 -0
  2. package/dist/cjs/ez-actions-button.cjs.entry.js +1 -1
  3. package/dist/cjs/ez-alert-list.cjs.entry.js +1 -1
  4. package/dist/cjs/ez-card-item_3.cjs.entry.js +183 -0
  5. package/dist/cjs/ez-check.cjs.entry.js +1 -1
  6. package/dist/cjs/ez-combo-box.cjs.entry.js +20 -163
  7. package/dist/cjs/ez-date-input.cjs.entry.js +4 -1
  8. package/dist/cjs/ez-date-time-input.cjs.entry.js +4 -1
  9. package/dist/cjs/ez-form-view.cjs.entry.js +30 -13
  10. package/dist/cjs/ez-grid.cjs.entry.js +149 -50
  11. package/dist/cjs/ez-icon.cjs.entry.js +1 -1
  12. package/dist/cjs/ez-modal-container.cjs.entry.js +6 -0
  13. package/dist/cjs/ez-multi-selection-list.cjs.entry.js +2 -10
  14. package/dist/cjs/ez-number-input.cjs.entry.js +4 -1
  15. package/dist/cjs/ez-popup.cjs.entry.js +8 -1
  16. package/dist/cjs/ez-scroller_3.cjs.entry.js +18 -4
  17. package/dist/cjs/ez-search.cjs.entry.js +611 -32
  18. package/dist/cjs/ez-split-button.cjs.entry.js +147 -0
  19. package/dist/cjs/ez-split-item.cjs.entry.js +20 -2
  20. package/dist/cjs/ez-split-panel.cjs.entry.js +52 -15
  21. package/dist/cjs/ez-time-input.cjs.entry.js +1 -1
  22. package/dist/cjs/ez-toast.cjs.entry.js +1 -1
  23. package/dist/cjs/ezui.cjs.js +1 -1
  24. package/dist/cjs/filter-column.cjs.entry.js +16 -5
  25. package/dist/cjs/index-a7b0c73d.js +10 -10
  26. package/dist/cjs/loader.cjs.js +1 -1
  27. package/dist/collection/collection-manifest.json +4 -3
  28. package/dist/collection/components/ez-alert-list/ez-alert-list.css +1 -1
  29. package/dist/collection/components/ez-card-item/ez-card-item.css +52 -3
  30. package/dist/collection/components/ez-card-item/ez-card-item.js +22 -3
  31. package/dist/collection/components/ez-check/ez-check.css +1 -0
  32. package/dist/collection/components/ez-collapsible-box/ez-collapsible-box.css +1 -0
  33. package/dist/collection/components/ez-combo-box/ez-combo-box.js +20 -180
  34. package/dist/collection/components/ez-date-input/ez-date-input.js +3 -0
  35. package/dist/collection/components/ez-date-time-input/ez-date-time-input.js +3 -0
  36. package/dist/collection/components/ez-form-view/ez-form-view.css +17 -1
  37. package/dist/collection/components/ez-form-view/ez-form-view.js +22 -5
  38. package/dist/collection/components/ez-form-view/fieldbuilder/templates/CheckBox.tpl.js +1 -1
  39. package/dist/collection/components/ez-form-view/fieldbuilder/templates/ComboBox.tpl.js +1 -1
  40. package/dist/collection/components/ez-form-view/fieldbuilder/templates/DateInput.tpl.js +3 -3
  41. package/dist/collection/components/ez-form-view/fieldbuilder/templates/NumberInput.tpl.js +1 -1
  42. package/dist/collection/components/ez-form-view/fieldbuilder/templates/SearchInput.tpl.js +1 -1
  43. package/dist/collection/components/ez-form-view/fieldbuilder/templates/TextInput.tpl.js +1 -1
  44. package/dist/collection/components/ez-grid/controller/ag-grid/AgGridController.js +34 -18
  45. package/dist/collection/components/ez-grid/controller/ag-grid/DataSource.js +15 -2
  46. package/dist/collection/components/ez-grid/controller/ag-grid/DataSourceInterceptor.js +21 -0
  47. package/dist/collection/components/ez-grid/controller/ag-grid/components/EzGridCustomHeader.js +5 -7
  48. package/dist/collection/components/ez-grid/ez-grid.css +25 -2
  49. package/dist/collection/components/ez-grid/ez-grid.js +80 -18
  50. package/dist/collection/components/ez-grid/subcomponents/filter-column.js +16 -5
  51. package/dist/collection/components/ez-icon/ez-icon.css +118 -116
  52. package/dist/collection/components/ez-modal-container/ez-modal-container.js +15 -0
  53. package/dist/collection/components/ez-multi-selection-list/ez-multi-selection-list.js +2 -10
  54. package/dist/collection/components/ez-number-input/ez-number-input.js +3 -0
  55. package/dist/collection/components/ez-popup/ez-popup.css +2 -5
  56. package/dist/collection/components/ez-popup/ez-popup.js +31 -1
  57. package/dist/collection/components/ez-search/ez-search.css +331 -0
  58. package/dist/collection/components/ez-search/ez-search.js +688 -55
  59. package/dist/collection/components/ez-split-button/ez-split-button.css +229 -0
  60. package/dist/collection/components/ez-split-button/ez-split-button.js +436 -0
  61. package/dist/collection/components/ez-split-button/test/dropdownItems.js +42 -0
  62. package/dist/collection/components/ez-split-panel/ez-split-panel.css +6 -14
  63. package/dist/collection/components/ez-split-panel/ez-split-panel.js +77 -23
  64. package/dist/collection/components/ez-split-panel/structure/item/ez-split-item.css +66 -12
  65. package/dist/collection/components/ez-split-panel/structure/item/ez-split-item.js +82 -2
  66. package/dist/collection/components/ez-toast/ez-toast.css +1 -1
  67. package/dist/collection/components/ez-tree/ez-tree.css +26 -0
  68. package/dist/collection/components/ez-tree/interfaces/ITreeItemBadge.js +1 -0
  69. package/dist/collection/components/ez-tree/subcomponents/TreeItem.js +15 -2
  70. package/dist/collection/utils/CSSVarsUtils.js +13 -0
  71. package/dist/collection/utils/form/test/DataBinder.test.js +9 -0
  72. package/dist/custom-elements/index.d.ts +6 -0
  73. package/dist/custom-elements/index.js +1109 -314
  74. package/dist/esm/{CSSVarsUtils-a97cfa29.js → CSSVarsUtils-71ce76be.js} +13 -0
  75. package/dist/esm/ez-actions-button.entry.js +1 -1
  76. package/dist/esm/ez-alert-list.entry.js +1 -1
  77. package/dist/esm/ez-card-item_3.entry.js +177 -0
  78. package/dist/esm/ez-check.entry.js +1 -1
  79. package/dist/esm/ez-combo-box.entry.js +21 -164
  80. package/dist/esm/ez-date-input.entry.js +4 -1
  81. package/dist/esm/ez-date-time-input.entry.js +4 -1
  82. package/dist/esm/ez-form-view.entry.js +31 -14
  83. package/dist/esm/ez-grid.entry.js +150 -51
  84. package/dist/esm/ez-icon.entry.js +1 -1
  85. package/dist/esm/ez-modal-container.entry.js +6 -0
  86. package/dist/esm/ez-multi-selection-list.entry.js +2 -10
  87. package/dist/esm/ez-number-input.entry.js +4 -1
  88. package/dist/esm/ez-popup.entry.js +8 -1
  89. package/dist/esm/ez-scroller_3.entry.js +18 -4
  90. package/dist/esm/ez-search.entry.js +613 -34
  91. package/dist/esm/ez-split-button.entry.js +143 -0
  92. package/dist/esm/ez-split-item.entry.js +20 -2
  93. package/dist/esm/ez-split-panel.entry.js +52 -15
  94. package/dist/esm/ez-time-input.entry.js +1 -1
  95. package/dist/esm/ez-toast.entry.js +1 -1
  96. package/dist/esm/ezui.js +1 -1
  97. package/dist/esm/filter-column.entry.js +16 -5
  98. package/dist/esm/index-baa5e267.js +10 -10
  99. package/dist/esm/loader.js +1 -1
  100. package/dist/ezui/ezui.esm.js +1 -1
  101. package/dist/ezui/{p-844ee673.entry.js → p-1dede1b2.entry.js} +2 -2
  102. package/dist/ezui/p-2eb8f73b.entry.js +1 -0
  103. package/dist/ezui/p-58fae29b.entry.js +1 -0
  104. package/dist/ezui/{p-40f72de4.entry.js → p-784fe207.entry.js} +1 -1
  105. package/dist/ezui/p-7a636dfc.entry.js +1 -0
  106. package/dist/ezui/p-7af81663.entry.js +1 -0
  107. package/dist/ezui/p-7bc07c31.entry.js +1 -0
  108. package/dist/ezui/p-8c82374d.entry.js +1 -0
  109. package/dist/ezui/{p-8becebf8.entry.js → p-8df1ca33.entry.js} +1 -1
  110. package/dist/ezui/{p-940ed30b.entry.js → p-8e7031a0.entry.js} +1 -1
  111. package/dist/ezui/p-91f626d3.entry.js +1 -0
  112. package/dist/ezui/{p-eb36f072.entry.js → p-99ead599.entry.js} +1 -1
  113. package/dist/ezui/{p-7eb3e1a5.js → p-9e11fc7b.js} +1 -1
  114. package/dist/ezui/p-9f1e89c9.entry.js +1 -0
  115. package/dist/ezui/p-af95cd16.entry.js +1 -0
  116. package/dist/ezui/{p-c0f1715f.entry.js → p-b567fa8c.entry.js} +1 -1
  117. package/dist/ezui/p-b9fbf4e7.entry.js +1 -0
  118. package/dist/ezui/p-bae3d0aa.entry.js +1 -0
  119. package/dist/ezui/p-baf80b13.entry.js +1 -0
  120. package/dist/ezui/p-bf79aaa1.entry.js +1 -0
  121. package/dist/ezui/{p-93c3df4f.entry.js → p-d7d7423a.entry.js} +1 -1
  122. package/dist/ezui/p-db77a984.entry.js +1 -0
  123. package/dist/ezui/{p-9cad9b6e.entry.js → p-e85c48d7.entry.js} +1 -1
  124. package/dist/types/components/ez-card-item/ez-card-item.d.ts +4 -0
  125. package/dist/types/components/ez-combo-box/ez-combo-box.d.ts +1 -15
  126. package/dist/types/components/ez-form-view/ez-form-view.d.ts +3 -0
  127. package/dist/types/components/ez-grid/controller/EzGridController.d.ts +1 -0
  128. package/dist/types/components/ez-grid/controller/ag-grid/AgGridController.d.ts +2 -0
  129. package/dist/types/components/ez-grid/controller/ag-grid/DataSource.d.ts +2 -1
  130. package/dist/types/components/ez-grid/controller/ag-grid/DataSourceInterceptor.d.ts +8 -0
  131. package/dist/types/components/ez-grid/controller/ag-grid/components/EzGridCustomHeader.d.ts +1 -1
  132. package/dist/types/components/ez-grid/ez-grid.d.ts +16 -2
  133. package/dist/types/components/ez-grid/subcomponents/filter-column.d.ts +4 -1
  134. package/dist/types/components/ez-guide-navigator/interfaces/IGuideItem.d.ts +0 -1
  135. package/dist/types/components/ez-modal-container/ez-modal-container.d.ts +1 -0
  136. package/dist/types/components/ez-multi-selection-list/ez-multi-selection-list.d.ts +0 -1
  137. package/dist/types/components/ez-popup/ez-popup.d.ts +6 -1
  138. package/dist/types/components/ez-search/ez-search.d.ts +100 -10
  139. package/dist/types/components/ez-split-button/ez-split-button.d.ts +89 -0
  140. package/dist/types/components/ez-split-button/test/dropdownItems.d.ts +2 -0
  141. package/dist/types/components/ez-split-panel/ez-split-panel.d.ts +28 -0
  142. package/dist/types/components/ez-split-panel/structure/item/ez-split-item.d.ts +27 -0
  143. package/dist/types/components/ez-tree/interfaces/ITreeItem.d.ts +3 -1
  144. package/dist/types/components/ez-tree/interfaces/ITreeItemBadge.d.ts +6 -0
  145. package/dist/types/components/ez-tree/subcomponents/TreeItem.d.ts +0 -1
  146. package/dist/types/components.d.ts +182 -21
  147. package/dist/types/utils/CSSVarsUtils.d.ts +1 -0
  148. package/dist/types/utils/form/test/DataBinder.test.d.ts +1 -0
  149. package/dist/types/utils/interfaces/AbstractFieldMetadata.d.ts +2 -1
  150. package/package.json +5 -5
  151. package/react/components.d.ts +1 -0
  152. package/react/components.js +1 -0
  153. package/react/components.js.map +1 -1
  154. package/dist/cjs/ez-card-item.cjs.entry.js +0 -52
  155. package/dist/cjs/ez-filter-input_2.cjs.entry.js +0 -137
  156. package/dist/collection/components/ez-grid/controller/ag-grid/AgGridUtils.js +0 -8
  157. package/dist/esm/ez-card-item.entry.js +0 -48
  158. package/dist/esm/ez-filter-input_2.entry.js +0 -132
  159. package/dist/ezui/p-05f5a778.entry.js +0 -1
  160. package/dist/ezui/p-13dbad96.entry.js +0 -1
  161. package/dist/ezui/p-24d3fede.entry.js +0 -1
  162. package/dist/ezui/p-51c5e071.entry.js +0 -1
  163. package/dist/ezui/p-5613fe63.entry.js +0 -1
  164. package/dist/ezui/p-596634e9.entry.js +0 -1
  165. package/dist/ezui/p-5d692ed1.entry.js +0 -1
  166. package/dist/ezui/p-5d86cca9.entry.js +0 -1
  167. package/dist/ezui/p-60848ef6.entry.js +0 -1
  168. package/dist/ezui/p-a08b309b.entry.js +0 -1
  169. package/dist/ezui/p-a32aaac6.entry.js +0 -1
  170. package/dist/ezui/p-a5ac7151.entry.js +0 -1
  171. package/dist/ezui/p-af15c277.entry.js +0 -1
  172. package/dist/ezui/p-d6ffe679.entry.js +0 -1
  173. 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-close:before { content: "\ea26"; }
95
- .ez-icon-cobrar:before { content: "\ea27"; }
96
- .ez-icon-code:before { content: "\ea28"; }
97
- .ez-icon-configuration:before { content: "\ea29"; }
98
- .ez-icon-content-cut:before { content: "\ea2a"; }
99
- .ez-icon-copy:before { content: "\ea2b"; }
100
- .ez-icon-credit_card:before { content: "\ea2c"; }
101
- .ez-icon-crop:before { content: "\ea2d"; }
102
- .ez-icon-custom:before { content: "\ea2e"; }
103
- .ez-icon-delete-file:before { content: "\ea2f"; }
104
- .ez-icon-delete:before { content: "\ea30"; }
105
- .ez-icon-description:before { content: "\ea31"; }
106
- .ez-icon-dividir:before { content: "\ea32"; }
107
- .ez-icon-docx:before { content: "\ea33"; }
108
- .ez-icon-dot-notification:before { content: "\ea34"; }
109
- .ez-icon-dots-horizontal:before { content: "\ea35"; }
110
- .ez-icon-dots-vertical:before { content: "\ea36"; }
111
- .ez-icon-drag-indicator:before { content: "\ea37"; }
112
- .ez-icon-dual-chevron-down:before { content: "\ea38"; }
113
- .ez-icon-dual-chevron-left:before { content: "\ea39"; }
114
- .ez-icon-dual-chevron-right:before { content: "\ea3a"; }
115
- .ez-icon-dual-chevron-up:before { content: "\ea3b"; }
116
- .ez-icon-edit-file:before { content: "\ea3c"; }
117
- .ez-icon-edit-table:before { content: "\ea3d"; }
118
- .ez-icon-edit-time:before { content: "\ea3e"; }
119
- .ez-icon-edit-value:before { content: "\ea3f"; }
120
- .ez-icon-edit:before { content: "\ea40"; }
121
- .ez-icon-email:before { content: "\ea41"; }
122
- .ez-icon-estorno:before { content: "\ea42"; }
123
- .ez-icon-exe:before { content: "\ea43"; }
124
- .ez-icon-expand:before { content: "\ea44"; }
125
- .ez-icon-expandir_card:before { content: "\ea45"; }
126
- .ez-icon-extrato:before { content: "\ea46"; }
127
- .ez-icon-eye-off:before { content: "\ea47"; }
128
- .ez-icon-eye:before { content: "\ea48"; }
129
- .ez-icon-favorite:before { content: "\ea49"; }
130
- .ez-icon-figma:before { content: "\ea4a"; }
131
- .ez-icon-file-download:before { content: "\ea4b"; }
132
- .ez-icon-file-upload:before { content: "\ea4c"; }
133
- .ez-icon-filter:before { content: "\ea4d"; }
134
- .ez-icon-find-file:before { content: "\ea4e"; }
135
- .ez-icon-find-page:before { content: "\ea4f"; }
136
- .ez-icon-format-color-fill:before { content: "\ea50"; }
137
- .ez-icon-generic:before { content: "\ea51"; }
138
- .ez-icon-gif:before { content: "\ea52"; }
139
- .ez-icon-graph_bar:before { content: "\ea53"; }
140
- .ez-icon-handshake:before { content: "\ea54"; }
141
- .ez-icon-help-inverted:before { content: "\ea55"; }
142
- .ez-icon-help:before { content: "\ea56"; }
143
- .ez-icon-hide_menu:before { content: "\ea57"; }
144
- .ez-icon-home:before { content: "\ea58"; }
145
- .ez-icon-icons104:before { content: "\ea59"; }
146
- .ez-icon-language:before { content: "\ea5a"; }
147
- .ez-icon-launch:before { content: "\ea5b"; }
148
- .ez-icon-lightbulb:before { content: "\ea5c"; }
149
- .ez-icon-list:before { content: "\ea5d"; }
150
- .ez-icon-location:before { content: "\ea5e"; }
151
- .ez-icon-lock-outline:before { content: "\ea5f"; }
152
- .ez-icon-lock:before { content: "\ea60"; }
153
- .ez-icon-menu:before { content: "\ea61"; }
154
- .ez-icon-mid:before { content: "\ea62"; }
155
- .ez-icon-minus:before { content: "\ea63"; }
156
- .ez-icon-money-off:before { content: "\ea64"; }
157
- .ez-icon-money:before { content: "\ea65"; }
158
- .ez-icon-more:before { content: "\ea66"; }
159
- .ez-icon-mp3:before { content: "\ea67"; }
160
- .ez-icon-mp4:before { content: "\ea68"; }
161
- .ez-icon-multiple-files:before { content: "\ea69"; }
162
- .ez-icon-north-west:before { content: "\ea6a"; }
163
- .ez-icon-number:before { content: "\ea6b"; }
164
- .ez-icon-ordem-ascendente:before { content: "\ea6c"; }
165
- .ez-icon-ordem-descendente:before { content: "\ea6d"; }
166
- .ez-icon-parcelar:before { content: "\ea6e"; }
167
- .ez-icon-pause:before { content: "\ea6f"; }
168
- .ez-icon-payments:before { content: "\ea70"; }
169
- .ez-icon-pdf:before { content: "\ea71"; }
170
- .ez-icon-play:before { content: "\ea72"; }
171
- .ez-icon-plus:before { content: "\ea73"; }
172
- .ez-icon-png:before { content: "\ea74"; }
173
- .ez-icon-power:before { content: "\ea75"; }
174
- .ez-icon-pptx:before { content: "\ea76"; }
175
- .ez-icon-preview:before { content: "\ea77"; }
176
- .ez-icon-print:before { content: "\ea78"; }
177
- .ez-icon-push-pin:before { content: "\ea79"; }
178
- .ez-icon-rateio:before { content: "\ea7a"; }
179
- .ez-icon-receipt:before { content: "\ea7b"; }
180
- .ez-icon-recolher_card:before { content: "\ea7c"; }
181
- .ez-icon-restore:before { content: "\ea7d"; }
182
- .ez-icon-return:before { content: "\ea7e"; }
183
- .ez-icon-sankhya-place:before { content: "\ea7f"; }
184
- .ez-icon-save:before { content: "\ea80"; }
185
- .ez-icon-search:before { content: "\ea81"; }
186
- .ez-icon-settings-inverted:before { content: "\ea82"; }
187
- .ez-icon-settings:before { content: "\ea83"; }
188
- .ez-icon-share:before { content: "\ea84"; }
189
- .ez-icon-shield:before { content: "\ea85"; }
190
- .ez-icon-show_menu:before { content: "\ea86"; }
191
- .ez-icon-south-east:before { content: "\ea87"; }
192
- .ez-icon-sync:before { content: "\ea88"; }
193
- .ez-icon-table:before { content: "\ea89"; }
194
- .ez-icon-tag_code:before { content: "\ea8a"; }
195
- .ez-icon-text:before { content: "\ea8b"; }
196
- .ez-icon-timeline:before { content: "\ea8c"; }
197
- .ez-icon-timer-outline:before { content: "\ea8d"; }
198
- .ez-icon-trending-up:before { content: "\ea8e"; }
199
- .ez-icon-tune:before { content: "\ea8f"; }
200
- .ez-icon-txt:before { content: "\ea90"; }
201
- .ez-icon-un-pin:before { content: "\ea91"; }
202
- .ez-icon-unfold_less:before { content: "\ea92"; }
203
- .ez-icon-unfold_more:before { content: "\ea93"; }
204
- .ez-icon-user-circle:before { content: "\ea94"; }
205
- .ez-icon-warning-outline:before { content: "\ea95"; }
206
- .ez-icon-warning_triangle:before { content: "\ea96"; }
207
- .ez-icon-whatshot:before { content: "\ea97"; }
208
- .ez-icon-xlsx:before { content: "\ea98"; }
209
- .ez-icon-zip:before { content: "\ea99"; }
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
- this.filteredOptions = this.filteredOptions.map(item => {
141
- if (item.label === itemCheckSelected.label) {
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
- max-height: 100%;
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
- min-height: 100%;
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": "Emitido ao clicar no bot\u00E3o de fechar (onEzClosePopup)."
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
  }