@sankhyalabs/sankhyablocks 1.1.23 → 1.1.27

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 (186) hide show
  1. package/dist/cjs/ApplicationUtils-05b74ee9.js +39 -0
  2. package/dist/cjs/AssetsUtils-bd004f63.js +24 -0
  3. package/dist/cjs/CSSVarsUtils-75ca9c64.js +19 -0
  4. package/dist/cjs/_commonjsHelpers-537d719a.js +20 -0
  5. package/dist/cjs/ez-action-chip.cjs.entry.js +27 -0
  6. package/dist/cjs/ez-application.cjs.entry.js +26 -0
  7. package/dist/cjs/ez-button_4.cjs.entry.js +660 -0
  8. package/dist/cjs/ez-calendar.cjs.entry.js +223 -0
  9. package/dist/cjs/ez-collapsible-box.cjs.entry.js +47 -0
  10. package/dist/cjs/ez-combo-box.cjs.entry.js +278 -0
  11. package/dist/cjs/ez-date-input.cjs.entry.js +102 -0
  12. package/dist/cjs/ez-date-time-input.cjs.entry.js +145 -0
  13. package/dist/cjs/ez-dialog.cjs.entry.js +89 -0
  14. package/dist/cjs/ez-form.cjs.entry.js +785 -0
  15. package/dist/cjs/ez-grid.cjs.entry.js +110485 -0
  16. package/dist/cjs/ez-icon.cjs.entry.js +41 -0
  17. package/dist/cjs/ez-label-chip.cjs.entry.js +104 -0
  18. package/dist/cjs/ez-modal_2.cjs.entry.js +316 -0
  19. package/dist/cjs/ez-number-input.cjs.entry.js +86 -0
  20. package/dist/cjs/ez-popover.cjs.entry.js +120 -0
  21. package/dist/cjs/ez-popup.cjs.entry.js +48 -0
  22. package/dist/cjs/ez-search.cjs.entry.js +64 -0
  23. package/dist/cjs/ez-tabselector.cjs.entry.js +198 -0
  24. package/dist/cjs/ez-text-area.cjs.entry.js +114 -0
  25. package/dist/cjs/ez-text-input.cjs.entry.js +201 -0
  26. package/dist/cjs/ez-time-input.cjs.entry.js +118 -0
  27. package/dist/cjs/ez-toast.cjs.entry.js +44 -0
  28. package/dist/cjs/ez-upload.cjs.entry.js +356 -0
  29. package/dist/cjs/index-6ac5268e.js +1769 -0
  30. package/dist/cjs/loader.cjs.js +2 -2
  31. package/dist/cjs/sankhyablocks.cjs.js +2 -2
  32. package/dist/cjs/snk-application.cjs.entry.js +52 -1313
  33. package/dist/cjs/test-du.cjs.entry.js +76 -0
  34. package/dist/collection/collection-manifest.json +36 -1
  35. package/dist/collection/components/snk-application/snk-application.js +8 -4
  36. package/dist/{collection/temp → components}/ApplicationUtils.js +37 -31
  37. package/dist/components/AssetsUtils.js +22 -0
  38. package/dist/components/CSSVarsUtils.js +17 -0
  39. package/dist/components/_commonjsHelpers.js +17 -0
  40. package/dist/components/ez-action-chip.js +44 -0
  41. package/dist/components/ez-application.js +39 -0
  42. package/dist/components/ez-button.js +6 -0
  43. package/dist/components/ez-button2.js +105 -0
  44. package/dist/components/ez-calendar.js +6 -0
  45. package/dist/components/ez-calendar2.js +242 -0
  46. package/dist/components/ez-check.js +6 -0
  47. package/dist/components/ez-check2.js +94 -0
  48. package/dist/components/ez-collapsible-box.js +67 -0
  49. package/dist/components/ez-combo-box.js +6 -0
  50. package/dist/components/ez-combo-box2.js +311 -0
  51. package/dist/components/ez-date-input.js +135 -0
  52. package/dist/components/ez-date-time-input.js +179 -0
  53. package/dist/components/ez-dialog.js +124 -0
  54. package/dist/components/ez-form.js +6 -0
  55. package/dist/components/ez-form2.js +807 -0
  56. package/dist/components/ez-grid.js +110576 -0
  57. package/dist/components/ez-icon.js +6 -0
  58. package/dist/components/ez-icon2.js +56 -0
  59. package/dist/components/ez-label-chip.js +125 -0
  60. package/dist/components/ez-list.js +6 -0
  61. package/dist/components/ez-list2.js +523 -0
  62. package/dist/components/ez-modal.js +6 -0
  63. package/dist/components/ez-modal2.js +82 -0
  64. package/dist/components/ez-number-input.js +115 -0
  65. package/dist/components/ez-popover.js +145 -0
  66. package/dist/components/ez-popup.js +67 -0
  67. package/dist/components/ez-search.js +100 -0
  68. package/dist/components/ez-tabselector.js +6 -0
  69. package/dist/components/ez-tabselector2.js +213 -0
  70. package/dist/components/ez-text-area.js +137 -0
  71. package/dist/components/ez-text-input.js +6 -0
  72. package/dist/components/ez-text-input2.js +223 -0
  73. package/dist/components/ez-time-input.js +153 -0
  74. package/dist/components/ez-toast.js +64 -0
  75. package/dist/components/ez-upload.js +382 -0
  76. package/dist/components/grid-config.js +6 -0
  77. package/dist/components/grid-config2.js +318 -0
  78. package/dist/components/select-box.js +6 -0
  79. package/dist/components/select-box2.js +47 -0
  80. package/dist/components/snk-application.js +5 -1266
  81. package/dist/components/test-du.js +101 -0
  82. package/dist/esm/ApplicationUtils-e0b6d857.js +37 -0
  83. package/dist/esm/AssetsUtils-98074c9c.js +22 -0
  84. package/dist/esm/CSSVarsUtils-0787c3f3.js +17 -0
  85. package/dist/esm/_commonjsHelpers-9943807e.js +17 -0
  86. package/dist/esm/ez-action-chip.entry.js +23 -0
  87. package/dist/esm/ez-application.entry.js +22 -0
  88. package/dist/esm/ez-button_4.entry.js +653 -0
  89. package/dist/esm/ez-calendar.entry.js +219 -0
  90. package/dist/esm/ez-collapsible-box.entry.js +43 -0
  91. package/dist/esm/ez-combo-box.entry.js +274 -0
  92. package/dist/esm/ez-date-input.entry.js +98 -0
  93. package/dist/esm/ez-date-time-input.entry.js +141 -0
  94. package/dist/esm/ez-dialog.entry.js +85 -0
  95. package/dist/esm/ez-form.entry.js +781 -0
  96. package/dist/esm/ez-grid.entry.js +110481 -0
  97. package/dist/esm/ez-icon.entry.js +37 -0
  98. package/dist/esm/ez-label-chip.entry.js +100 -0
  99. package/dist/esm/ez-modal_2.entry.js +311 -0
  100. package/dist/esm/ez-number-input.entry.js +82 -0
  101. package/dist/esm/ez-popover.entry.js +116 -0
  102. package/dist/esm/ez-popup.entry.js +44 -0
  103. package/dist/esm/ez-search.entry.js +60 -0
  104. package/dist/esm/ez-tabselector.entry.js +194 -0
  105. package/dist/esm/ez-text-area.entry.js +110 -0
  106. package/dist/esm/ez-text-input.entry.js +197 -0
  107. package/dist/esm/ez-time-input.entry.js +114 -0
  108. package/dist/esm/ez-toast.entry.js +40 -0
  109. package/dist/esm/ez-upload.entry.js +352 -0
  110. package/dist/esm/index-df166135.js +1738 -0
  111. package/dist/esm/loader.js +2 -2
  112. package/dist/esm/sankhyablocks.js +2 -2
  113. package/dist/esm/snk-application.entry.js +6 -1267
  114. package/dist/esm/test-du.entry.js +72 -0
  115. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-action-chip/ez-action-chip.css +67 -0
  116. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-application/ez-application.css +3 -0
  117. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-button/ez-button.css +180 -0
  118. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-calendar/ez-calendar.css +319 -0
  119. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-check/ez-check.css +327 -0
  120. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-collapsible-box/ez-collapsible-box.css +162 -0
  121. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-combo-box/ez-combo-box.css +217 -0
  122. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-date-input/ez-date-input.css +49 -0
  123. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-date-time-input/ez-date-time-input.css +44 -0
  124. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-dialog/ez-dialog.css +527 -0
  125. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-form/ez-form.css +5 -0
  126. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-grid/ez-grid.css +31 -0
  127. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-grid/subcomponents/gridconfig/grid-config.css +129 -0
  128. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-grid/subcomponents/select-box/select-box.css +10 -0
  129. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-icon/ez-icon.css +176 -0
  130. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-label-chip/ez-label-chip.css +139 -0
  131. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-list/ez-list.css +335 -0
  132. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-modal/ez-modal.css +358 -0
  133. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-number-input/ez-number-input.css +4 -0
  134. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-popover/ez-popover.css +44 -0
  135. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-popup/ez-popup.css +405 -0
  136. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-search/ez-search.css +3 -0
  137. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-tabselector/ez-tabselector.css +138 -0
  138. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-text-area/ez-text-area.css +165 -0
  139. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-text-input/ez-text-input.css +196 -0
  140. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-time-input/ez-time-input.css +10 -0
  141. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-toast/ez-toast.css +127 -0
  142. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-upload/ez-upload.css +568 -0
  143. package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/test-du/test-du.css +3 -0
  144. package/dist/sankhyablocks/p-08e1cded.entry.js +1 -0
  145. package/dist/sankhyablocks/p-0a77ac95.entry.js +57 -0
  146. package/dist/sankhyablocks/p-112455b1.js +1 -0
  147. package/dist/sankhyablocks/p-126c4aaa.entry.js +1 -0
  148. package/dist/sankhyablocks/p-1421b89a.entry.js +1 -0
  149. package/dist/sankhyablocks/p-1beadcaf.entry.js +1 -0
  150. package/dist/sankhyablocks/p-1c423f5d.entry.js +1 -0
  151. package/dist/sankhyablocks/p-28a0dbf0.entry.js +1 -0
  152. package/dist/sankhyablocks/p-4763d5c2.js +1 -0
  153. package/dist/sankhyablocks/p-4c66200a.entry.js +1 -0
  154. package/dist/sankhyablocks/p-5dc772be.entry.js +1 -0
  155. package/dist/sankhyablocks/p-5ff3e300.entry.js +1 -0
  156. package/dist/sankhyablocks/p-7122cec4.entry.js +1 -0
  157. package/dist/sankhyablocks/p-811b4b9d.js +1 -0
  158. package/dist/sankhyablocks/p-813fe4f7.js +1 -0
  159. package/dist/sankhyablocks/p-9b33a005.entry.js +1 -0
  160. package/dist/sankhyablocks/p-9e22ec87.entry.js +1 -0
  161. package/dist/sankhyablocks/p-9f7239df.entry.js +1 -0
  162. package/dist/sankhyablocks/p-9f7e6e48.js +1 -0
  163. package/dist/sankhyablocks/p-a47e0537.entry.js +1 -0
  164. package/dist/sankhyablocks/p-a9aba60a.entry.js +1 -0
  165. package/dist/sankhyablocks/p-afda7940.entry.js +1 -0
  166. package/dist/sankhyablocks/p-b3a83eaf.entry.js +1 -0
  167. package/dist/sankhyablocks/p-b96a8d40.entry.js +1 -0
  168. package/dist/sankhyablocks/p-c61c0e40.entry.js +1 -0
  169. package/dist/sankhyablocks/p-ca29d028.entry.js +1 -0
  170. package/dist/sankhyablocks/p-cd17abb1.entry.js +1 -0
  171. package/dist/sankhyablocks/p-d3a5366d.entry.js +369 -0
  172. package/dist/sankhyablocks/p-d5703a41.entry.js +1 -0
  173. package/dist/sankhyablocks/p-e5f77a59.entry.js +1 -0
  174. package/dist/sankhyablocks/p-e9e94d51.entry.js +1 -0
  175. package/dist/sankhyablocks/sankhyablocks.esm.js +1 -1
  176. package/dist/types/components/snk-application/snk-application.d.ts +1 -1
  177. package/dist/types/components.d.ts +1 -1
  178. package/package.json +11 -3
  179. package/react/components.d.ts +29 -0
  180. package/react/components.js +29 -0
  181. package/react/components.js.map +1 -1
  182. package/dist/cjs/index-20a7d705.js +0 -733
  183. package/dist/esm/index-8d3572c4.js +0 -707
  184. package/dist/sankhyablocks/p-5fa264b9.js +0 -1
  185. package/dist/sankhyablocks/p-f3bdd8c3.entry.js +0 -57
  186. package/dist/types/temp/ApplicationUtils.d.ts +0 -7
@@ -0,0 +1,311 @@
1
+ import { proxyCustomElement, HTMLElement, createEvent, h, Host } from '@stencil/core/internal/client';
2
+ import { FloatingManager } from '@sankhyalabs/core';
3
+ import { C as CSSVarsUtils } from './CSSVarsUtils.js';
4
+ import { d as defineCustomElement$1 } from './ez-text-input2.js';
5
+
6
+ const ezComboBoxCss = ":host{--ez-combo-box--height:42px;--ez-combo-box--width:100%;--ez-combo-box__icon--width:48px;--ez-combo-box--border-radius:var(--border--radius-medium, 12px);--ez-combo-box--border-radius-small:var(--border--radius-small, 6px);--ez-combo-box--font-size:var(--text--medium, 14px);--ez-combo-box--font-family:var(--font-pattern, Arial);--ez-combo-box--font-weight--large:var(--text-weight--large, 500);--ez-combo-box--font-weight--medium:var(--text-weight--medium, 400);--ez-combo-box--background-color--xlight:var(--background--xlight, #fff);--ez-combo-box--background-medium:var(--background--medium, #f0f3f7);--ez-combo-box__input--background-color:var(--background--medium, #e0e0e0);--ez-combo-box__input--border:var(--border--medium, 2px solid);--ez-combo-box__input--border-color:var(--ez-combo-box__input--background-color);--ez-combo-box__input--focus--border-color:var(--color--primary, #008561);--ez-combo-box__input--disabled--background-color:var(--color--disable-secondary, #F2F5F8);--ez-combo-box__input--disabled--color:var(--text--disable, #AFB6C0);--ez-combo-box__input--error--border-color:#CC2936;--ez-combo-box__btn-search--background-color:var(--text--primary, #626e82);--ez-combo-box__btn-search-disabled--background-color:var(--text--disable, #AFB6C0);--ez-combo-box__btn-search-hover--background-color:var(--color--primary, #4e4e4e);--ez-combo-box__btn-options--background-color:var(--text--primary, #626e82);--ez-combo-box__btn-options-disabled--background-color:var(--text--disable, #AFB6C0);--ez-combo-box__btn-options-hover--background-color:var(--color--primary, #4e4e4e);--ez-combo-box__label--color:var(--title--primary, #919191);--ez-combo-box__list-text--primary:var(--text--primary, #626e82);--ez-combo-box__list-height:calc(var(--ez-combo-box--font-size) + var(--ez-combo-box--space--medium));--ez-combo-box__drop-down-image:url('data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" height=\"16px\" width=\"16px\"><path d=\"M 1.8585859,3.0707069 7.9999998,9.2121212 14.141414,3.0707069 16,5.0101006 7.9999998,12.929293 0,4.9292932 Z\"/></svg>');--ez-combo-box__search-image:url('data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" height=\"22px\" width=\"22px\"><path d=\"m 9.4,2.3 c 4.1,0 7.4,3.2 7.4,7.2 0,1.8 -0.7,3.4 -1.8,4.7 l 0.3,0.3 h 0.9 l 5.7,5.6 -1.7,1.7 -5.7,-5.6 V 15.3 L 14.3,15 C 13,16.1 11.3,16.7 9.5,16.7 5.3,16.7 2,13.5 2,9.5 2,5.5 5.3,2.3 9.4,2.3 m 0,2.2 c -2.9,0 -5.1,2.2 -5.1,5 0,2.8 2.3,5 5.1,5 2.8,0 5.1,-2.2 5.1,-5 0,-2.8 -2.2,-5 -5.1,-5 z\"/></svg>');--ez-combo-box--space--medium:var(--space--medium, 12px);--ez-combo-box--space--small:var(--space--small, 6px);display:flex;flex-wrap:wrap;position:relative;width:var(--ez-combo-box--width)}.list-container{position:relative;width:100%}.options-list{box-sizing:border-box;width:100%;z-index:var(--more-visible, 2);display:flex;flex-direction:column;background-color:var(--ez-combo-box--background-color--xlight);padding:var(--ez-combo-box--space--small);border-radius:var(--ez-combo-box--border-radius);box-shadow:var(--shadow, 0px 0px 16px 0px #000);scroll-behavior:smooth;max-height:calc(4*var(--ez-combo-box__list-height) + 2*var(--ez-combo-box--space--small));overflow:auto}.item{text-align:left;display:flex;justify-content:space-between;align-items:center;border-radius:var(--ez-combo-box--border-radius-small);padding:0 var(--ez-combo-box--space--small);list-style-type:none;min-height:var(--ez-combo-box__list-height)}.item--label{text-align:left;flex-basis:85%;flex-grow:1;color:var(--ez-combo-box__list-text--primary);font-weight:var(--ez-combo-box--font-weight--large);font-family:var(--ez-combo-box--font-family);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.item--value{text-align:right;flex-basis:15%;flex-grow:0;color:var(--ez-combo-box__list-text--primary);font-weight:var(--ez-combo-box--font-weight--large);font-family:var(--ez-combo-box--font-family);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}li:hover{background-color:var(--ez-combo-box--background-medium)}.preselected{background-color:var(--background--medium)}.btn-open-options{outline:none;border:none;background-color:unset;cursor:pointer}.btn-open-options:disabled{cursor:unset}.btn-open-options::after{content:'';display:flex;background-color:var(--ez-combo-box__btn-options--background-color);width:16px;height:16px;-webkit-mask-image:var(--ez-combo-box__drop-down-image);mask-image:var(--ez-combo-box__drop-down-image)}.btn-open-options:disabled:after{background-color:var(--ez-combo-box__btn-options-disabled--background-color)}.btn-open-options:enabled:hover::after{background-color:var(--ez-combo-box__btn-options-hover--background-color)}.btn-open-search{outline:none;border:none;background-color:unset;cursor:pointer}.btn-open-search:disabled{cursor:unset}.btn-open-search::after{content:'';display:flex;background-color:var(--ez-combo-box__btn-search--background-color);width:22px;height:22px;-webkit-mask-image:var(--ez-combo-box__search-image);mask-image:var(--ez-combo-box__search-image)}.btn-open-search:disabled:after{background-color:var(--ez-combo-box__btn-search-disabled--background-color)}.btn-open-search:enabled:hover::after{background-color:var(--ez-combo-box__btn-search-hover--background-color)}";
7
+
8
+ const EzComboBox = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
9
+ constructor() {
10
+ super();
11
+ this.__registerHost();
12
+ this.__attachShadow();
13
+ this.ezChange = createEvent(this, "ezChange", 7);
14
+ /**
15
+ * Deixa o campo disponível ou não para interação com usuário.
16
+ */
17
+ this.enabled = true;
18
+ /**
19
+ * Ajusta a opção de mostrar o "value" ao selecionar uma opção. Por padrão não mostra.
20
+ */
21
+ this.showSelectedValue = false;
22
+ /**
23
+ * Ajusta a opção de mostrar o "value" para cada opção. Por padrão não mostra
24
+ */
25
+ this.showOptionValue = false;
26
+ /**
27
+ * Remove a opção vazia da lista de opções
28
+ */
29
+ this.suppressEmptyOption = false;
30
+ /**
31
+ * Permite exibir a mensagem de erro.
32
+ */
33
+ this.canShowError = true;
34
+ }
35
+ internalUpdate() {
36
+ if (this._inputElement) {
37
+ this._inputElement.value = this.getText();
38
+ }
39
+ this.hideOptions();
40
+ this._criteria = undefined;
41
+ this._preSelection = undefined;
42
+ this.updateVisibleOptions();
43
+ }
44
+ /**
45
+ * Realiza o foco no componente de seleção
46
+ */
47
+ async setFocus() {
48
+ this._inputElement.setFocus();
49
+ }
50
+ /**
51
+ * Remove o foco no componente de seleção
52
+ */
53
+ async setBlur() {
54
+ this._inputElement.setBlur();
55
+ }
56
+ getText() {
57
+ let text = "";
58
+ const selected = this.getSelectedOption();
59
+ if (selected) {
60
+ text = this.showSelectedValue ? `${selected.value} - ${selected.label}` : selected.label;
61
+ }
62
+ return text;
63
+ }
64
+ getSelectedOption() {
65
+ if (typeof this.value === "string" || this.value instanceof String) {
66
+ return this._visibleOptions.find(o => o.value === this.value);
67
+ }
68
+ return this.value;
69
+ }
70
+ updateVisibleOptions() {
71
+ let opts = this._source || [];
72
+ if (!this.searchMode && this._criteria) {
73
+ const upperCriteria = this._criteria.toUpperCase();
74
+ opts = opts.filter(opt => opt.label.toLocaleUpperCase().indexOf(upperCriteria) > -1);
75
+ }
76
+ if (this.suppressEmptyOption) {
77
+ this._visibleOptions = opts;
78
+ }
79
+ else {
80
+ this._visibleOptions = [{ value: undefined, label: "" }].concat(opts);
81
+ }
82
+ }
83
+ buildItem(opt, index) {
84
+ return h("li", { class: index === this._preSelection ? "item preselected" : "item", id: `item_${opt.value}`, onMouseDown: () => this.selectOption(opt), onMouseOver: () => this._preSelection = undefined }, h("span", { class: "item--label", title: opt.label }, opt.label), this.showOptionValue ? h("span", { class: "item--value", title: opt.value }, opt.value) : undefined);
85
+ }
86
+ showOptions() {
87
+ if (!this.enabled) {
88
+ return;
89
+ }
90
+ //FIXME: Provavelmente isso fará com que o popup abra em uma
91
+ //posição errada no futuro. Preferi fazer simples no começo,
92
+ //porque não quis onerar o text input com essa funcionalidade...
93
+ const top = (this.errorMessage || !this.canShowError) ? "0px" : "-17px";
94
+ this._floatingID = FloatingManager.float(this._optionsList, this._listContainer, { autoClose: true, top });
95
+ window.requestAnimationFrame(() => {
96
+ this._optionsList.scrollIntoView({ behavior: "smooth", block: "nearest", inline: "nearest" });
97
+ });
98
+ }
99
+ hideOptions() {
100
+ if (this._floatingID !== undefined) {
101
+ FloatingManager.close(this._floatingID);
102
+ }
103
+ this._floatingID = undefined;
104
+ }
105
+ isOptionsVisible() {
106
+ return this._floatingID !== undefined && FloatingManager.isFloating(this._floatingID);
107
+ }
108
+ nextOption() {
109
+ if (this.searchMode && !this.isOptionsVisible()) {
110
+ return;
111
+ }
112
+ this.showOptions();
113
+ this._preSelection = this._preSelection === undefined ? 0 : Math.min(this._preSelection + 1, this._visibleOptions.length - 1);
114
+ this.scrollToOption(this._visibleOptions[this._preSelection], true);
115
+ }
116
+ previousOption() {
117
+ this._preSelection = this._preSelection === undefined ? 0 : Math.max(this._preSelection - 1, 0);
118
+ this.scrollToOption(this._visibleOptions[this._preSelection], false);
119
+ }
120
+ scrollToOption(opt, down) {
121
+ window.requestAnimationFrame(() => {
122
+ const liElem = this._optionsList.querySelector(`li#item_${opt.value}`);
123
+ if (liElem) {
124
+ const parent = liElem.parentElement;
125
+ const parentRect = parent.getBoundingClientRect();
126
+ const itemRect = liElem.getBoundingClientRect();
127
+ if (down && itemRect.bottom > parentRect.bottom) {
128
+ parent.scrollTop = itemRect.top;
129
+ }
130
+ else if (!down && itemRect.top < parentRect.top) {
131
+ parent.scrollTop = 0;
132
+ }
133
+ }
134
+ });
135
+ }
136
+ selectCurrentOption() {
137
+ if (this._preSelection !== undefined) {
138
+ this.selectOption(this._visibleOptions[this._preSelection]);
139
+ this._preSelection = undefined;
140
+ }
141
+ }
142
+ selectOption(opt) {
143
+ const currentOpt = this.getSelectedOption();
144
+ if (currentOpt !== opt) {
145
+ const adjustedOpt = !(opt === null || opt === void 0 ? void 0 : opt.value) ? undefined : opt;
146
+ this.value = adjustedOpt;
147
+ this.errorMessage = "";
148
+ this.ezChange.emit(adjustedOpt);
149
+ }
150
+ else {
151
+ this.internalUpdate();
152
+ }
153
+ }
154
+ updateSource(source) {
155
+ if (source instanceof Promise) {
156
+ source.then(result => this.updateSource(result));
157
+ this.updateVisibleOptions();
158
+ }
159
+ else {
160
+ this._source = source;
161
+ this.updateVisibleOptions();
162
+ }
163
+ }
164
+ loadOptions(mode, argument = "") {
165
+ this._criteria = argument;
166
+ if (this.optionLoader) {
167
+ this.updateSource(this.optionLoader({ mode, argument }));
168
+ }
169
+ else {
170
+ this.updateSource(this.options);
171
+ }
172
+ }
173
+ cancelPreselection() {
174
+ if (!this._inputElement.value && this.value) {
175
+ this.selectOption(undefined);
176
+ }
177
+ else {
178
+ this.internalUpdate();
179
+ }
180
+ }
181
+ //---------------------------------------------
182
+ // Lifecycle web component
183
+ //---------------------------------------------
184
+ componentWillLoad() {
185
+ if (this.options === undefined) {
186
+ this.options = [];
187
+ const optionsTags = this.el.querySelectorAll("option");
188
+ if (optionsTags) {
189
+ optionsTags.forEach(e => {
190
+ let label = e.innerText;
191
+ let value = e.getAttribute("value");
192
+ if (!value) {
193
+ value = label;
194
+ }
195
+ this.options.push({ label, value });
196
+ e.hidden = true;
197
+ });
198
+ }
199
+ }
200
+ if (this.searchMode) {
201
+ this.updateSource([]);
202
+ }
203
+ else {
204
+ this.loadOptions("PRELOAD");
205
+ }
206
+ }
207
+ componentDidRender() {
208
+ if (this._floatingID === undefined) {
209
+ this._optionsList.remove();
210
+ }
211
+ }
212
+ componentDidLoad() {
213
+ CSSVarsUtils.applyVarsTextInput(this.el, this._inputElement);
214
+ }
215
+ //---------------------------------------------
216
+ // Event handlers
217
+ //---------------------------------------------
218
+ onTextInputChangeHandler(event) {
219
+ if (!this._criteria) {
220
+ this._inputElement.value = event.data;
221
+ }
222
+ const argument = event.target.value;
223
+ this._criteria = argument;
224
+ if (this._criteria) {
225
+ if (this.searchMode) {
226
+ if (this._changeDeboucingTimeout) {
227
+ window.clearTimeout(this._changeDeboucingTimeout);
228
+ }
229
+ this._changeDeboucingTimeout = window.setTimeout(() => {
230
+ this.loadOptions("PREDICTIVE", argument);
231
+ }, 200);
232
+ }
233
+ else {
234
+ this.updateVisibleOptions();
235
+ }
236
+ this.showOptions();
237
+ }
238
+ }
239
+ onTextInputClickHandler() {
240
+ if (!this.searchMode) {
241
+ this.showOptions();
242
+ }
243
+ }
244
+ keyDownHandler(event) {
245
+ switch (event.key) {
246
+ case "ArrowDown":
247
+ this.nextOption();
248
+ break;
249
+ case "ArrowUp":
250
+ this.previousOption();
251
+ break;
252
+ case "Enter":
253
+ this.selectCurrentOption();
254
+ break;
255
+ case "Escape":
256
+ this.cancelPreselection();
257
+ break;
258
+ }
259
+ event.stopPropagation();
260
+ }
261
+ onTextInputFocusOutHandler() {
262
+ this.cancelPreselection();
263
+ }
264
+ render() {
265
+ return (h(Host, null, h("ez-text-input", { ref: elem => this._inputElement = elem, enabled: this.enabled, onInput: evt => this.onTextInputChangeHandler(evt), onClick: () => this.onTextInputClickHandler(), onFocusout: () => this.onTextInputFocusOutHandler(), onEzChange: event => event.stopPropagation(), onKeyDown: event => this.keyDownHandler(event), label: this.label, value: this.getText(), canShowError: this.canShowError, errorMessage: this.errorMessage }, this.searchMode ?
266
+ h("button", { disabled: !this.enabled, tabindex: -1, class: "btn-open-search", onClick: () => { this.loadOptions("ADVANCED"); }, slot: "leftIcon" })
267
+ :
268
+ h("button", { disabled: !this.enabled, tabindex: -1, class: "btn-open-options", slot: "rightIcon", onClick: () => this.showOptions() })), h("section", { class: "list-container", ref: elem => this._listContainer = elem }, h("div", { class: "options-list", ref: elem => this._optionsList = elem }, this._visibleOptions.map((opt, index) => this.buildItem(opt, index))))));
269
+ }
270
+ get el() { return this; }
271
+ static get watchers() { return {
272
+ "value": ["internalUpdate"]
273
+ }; }
274
+ static get style() { return ezComboBoxCss; }
275
+ }, [1, "ez-combo-box", {
276
+ "value": [1537],
277
+ "label": [513],
278
+ "enabled": [516],
279
+ "options": [1040],
280
+ "errorMessage": [1537, "error-message"],
281
+ "searchMode": [4, "search-mode"],
282
+ "showSelectedValue": [4, "show-selected-value"],
283
+ "showOptionValue": [4, "show-option-value"],
284
+ "optionLoader": [16],
285
+ "suppressEmptyOption": [4, "suppress-empty-option"],
286
+ "canShowError": [516, "can-show-error"],
287
+ "_preSelection": [32],
288
+ "_visibleOptions": [32],
289
+ "setFocus": [64],
290
+ "setBlur": [64]
291
+ }]);
292
+ function defineCustomElement() {
293
+ if (typeof customElements === "undefined") {
294
+ return;
295
+ }
296
+ const components = ["ez-combo-box", "ez-text-input"];
297
+ components.forEach(tagName => { switch (tagName) {
298
+ case "ez-combo-box":
299
+ if (!customElements.get(tagName)) {
300
+ customElements.define(tagName, EzComboBox);
301
+ }
302
+ break;
303
+ case "ez-text-input":
304
+ if (!customElements.get(tagName)) {
305
+ defineCustomElement$1();
306
+ }
307
+ break;
308
+ } });
309
+ }
310
+
311
+ export { EzComboBox as E, defineCustomElement as d };
@@ -0,0 +1,135 @@
1
+ import { proxyCustomElement, HTMLElement, createEvent, h, Host } from '@stencil/core/internal/client';
2
+ import { DateUtils } from '@sankhyalabs/core';
3
+ import { C as CSSVarsUtils } from './CSSVarsUtils.js';
4
+ import { d as defineCustomElement$3 } from './ez-calendar2.js';
5
+ import { d as defineCustomElement$2 } from './ez-text-input2.js';
6
+
7
+ const ezDateInputCss = ":host{display:block;width:100%;--ez-date-input__input--background-color:var(--background--medium, #e0e0e0);--ez-date-input__input--border-color:var(--ez-date-input__input--background-color);--ez-date-input__calendar-image:url('data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" height=\"16px\" width=\"15px\"><path d=\"M 3.171875,5.25 C 2.6485088,5.25 2.21875,5.6797588 2.21875,6.203125 2.21875,6.7264912 2.6485088,7.15625 3.171875,7.15625 3.6952412,7.15625 4.125,6.7264912 4.125,6.203125 4.125,5.6797588 3.6952412,5.25 3.171875,5.25 Z m 2.875,0 C 5.5235088,5.25 5.09375,5.6797588 5.09375,6.203125 5.09375,6.7264912 5.5235088,7.15625 6.046875,7.15625 6.5702412,7.15625 7,6.7264912 7,6.203125 7,5.6797588 6.5702412,5.25 6.046875,5.25 Z m 2.875,0 c -0.5233662,0 -0.953125,0.4297588 -0.953125,0.953125 0,0.5233662 0.4297588,0.953125 0.953125,0.953125 0.5233662,0 0.9511719,-0.4297588 0.9511719,-0.953125 C 9.8730469,5.6797588 9.4452412,5.25 8.921875,5.25 Z m 2.873047,0 c -0.523366,0 -0.953125,0.4297588 -0.953125,0.953125 0,0.5233662 0.429759,0.953125 0.953125,0.953125 0.523366,0 0.953125,-0.4297588 0.953125,-0.953125 C 12.748047,5.6797588 12.318288,5.25 11.794922,5.25 Z M 3.171875,8.1230469 c -0.5233662,0 -0.953125,0.4297588 -0.953125,0.953125 0,0.5233662 0.4297588,0.9531251 0.953125,0.9531251 0.5233662,0 0.953125,-0.4297589 0.953125,-0.9531251 0,-0.5233662 -0.4297588,-0.953125 -0.953125,-0.953125 z m 2.875,0 c -0.5233662,0 -0.953125,0.4297588 -0.953125,0.953125 0,0.5233662 0.4297588,0.9531251 0.953125,0.9531251 C 6.5702412,10.029297 7,9.5995381 7,9.0761719 7,8.5528057 6.5702412,8.1230469 6.046875,8.1230469 Z m 2.8554688,0 c -0.5233663,0 -0.953125,0.4297588 -0.953125,0.953125 0,0.5233662 0.4297587,0.9531251 0.953125,0.9531251 0.5233661,0 0.9531249,-0.4297589 0.953125,-0.9531251 0,-0.5233662 -0.4297588,-0.953125 -0.953125,-0.953125 z m 2.9003902,0 c -0.523366,0 -0.953125,0.4297588 -0.953125,0.953125 0,0.5233662 0.429759,0.9531251 0.953125,0.9531251 0.523367,0 0.953125,-0.4297589 0.953125,-0.9531251 0,-0.5233662 -0.429758,-0.953125 -0.953125,-0.953125 z M 3.171875,10.998047 c -0.5233662,0 -0.953125,0.429759 -0.953125,0.953125 0,0.523366 0.4297588,0.953125 0.953125,0.953125 0.5233662,0 0.953125,-0.429759 0.953125,-0.953125 0,-0.523366 -0.4297588,-0.953125 -0.953125,-0.953125 z m 2.875,0 c -0.5233662,0 -0.953125,0.429759 -0.953125,0.953125 0,0.523366 0.4297588,0.953125 0.953125,0.953125 C 6.5702412,12.904297 7,12.474538 7,11.951172 7,11.427806 6.5702412,10.998047 6.046875,10.998047 Z m 2.8554688,0 c -0.5233663,0 -0.953125,0.429759 -0.953125,0.953125 0,0.523366 0.4297587,0.953125 0.953125,0.953125 0.5233661,0 0.9531249,-0.429759 0.953125,-0.953125 0,-0.523366 -0.4297588,-0.953125 -0.953125,-0.953125 z m 2.9003902,0 c -0.523366,0 -0.953125,0.429759 -0.953125,0.953125 0,0.523366 0.429759,0.953125 0.953125,0.953125 0.523367,0 0.953125,-0.429759 0.953125,-0.953125 0,-0.523366 -0.429758,-0.953125 -0.953125,-0.953125 z M 3.5,0 c -0.554,0 -1,0.446 -1,1 v 0.050781 C 1.0853217,1.2909766 0,2.5186658 0,4 v 9 c 0,1.652487 1.3475134,3 3,3 h 9 c 1.652487,0 3,-1.347513 3,-3 V 4 C 15,2.5186658 13.914678,1.2909766 12.5,1.0507812 V 1 c 0,-0.554 -0.446,-1 -1,-1 -0.554,0 -1,0.446 -1,1 h -2 c 0,-0.554 -0.446,-1 -1,-1 -0.554,0 -1,0.446 -1,1 h -2 C 4.5,0.446 4.054,0 3.5,0 Z m 1,2.0996094 h 2 v 0.640625 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 v -0.640625 h 2 v 0.640625 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 V 2.1738281 C 13.311725,2.3905225 13.900391,3.11278 13.900391,4 v 9 c 0,1.062113 -0.838278,1.900391 -1.900391,1.900391 H 3 C 1.9378864,14.900391 1.0996094,14.062113 1.0996094,13 V 4 C 1.0996094,3.11278 1.6882747,2.3905225 2.5,2.1738281 v 0.5664063 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 z\"/></svg>')}.btn-open-cal{outline:none;border:none;background-color:unset;cursor:pointer}.btn-open-cal:disabled{cursor:unset}.btn-open-cal::after{content:'';display:flex;background-color:var(--text--primary, #008561);width:15px;height:16px;-webkit-mask-image:var(--ez-date-input__calendar-image);mask-image:var(--ez-date-input__calendar-image)}.btn-open-cal:disabled:after{background-color:var(--text--disable, #AFB6C0)}.btn-open-cal:enabled:hover::after{background-color:var(--color--primary, #4e4e4e)}ez-text-input{--text-input__input--background-color:var(--ez-date-input__input--background-color, #FFFFFF);--text-input__input--border-color:var(--ez-date-input__input--border-color, #DCE0E8)}";
8
+
9
+ const EzDateInput$1 = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
10
+ constructor() {
11
+ super();
12
+ this.__registerHost();
13
+ this.__attachShadow();
14
+ this.ezChange = createEvent(this, "ezChange", 7);
15
+ /**
16
+ * Deixa o campo disponível ou não para uso.
17
+ */
18
+ this.enabled = true;
19
+ }
20
+ setLabel() {
21
+ this._textInput.label = this.label;
22
+ }
23
+ setErrorMessage() {
24
+ this._textInput.errorMessage = this.errorMessage;
25
+ }
26
+ applyValueToInput() {
27
+ if (this._textInput) {
28
+ this._textInput.value = this.getTextValue(this.value);
29
+ }
30
+ }
31
+ /**
32
+ * Realiza o foco no componente de data
33
+ */
34
+ async setFocus() {
35
+ this._textInput.setFocus();
36
+ }
37
+ /**
38
+ * Remove o foco no componente de data
39
+ */
40
+ async setBlur() {
41
+ this._textInput.setBlur();
42
+ }
43
+ changeValue(newValue) {
44
+ var _a;
45
+ newValue = newValue instanceof Date ? DateUtils.clearTime(newValue) : null;
46
+ this.value = this.value instanceof Date ? DateUtils.clearTime(this.value) : null;
47
+ this._textInput.errorMessage = "";
48
+ if ((newValue === null || newValue === void 0 ? void 0 : newValue.toString()) !== ((_a = this.value) === null || _a === void 0 ? void 0 : _a.toString())) {
49
+ this.value = newValue;
50
+ this.ezChange.emit(this.value);
51
+ }
52
+ }
53
+ showCalendar() {
54
+ this.parseDate();
55
+ this._calendar.value = this.value;
56
+ //FIXME: Provavelmente isso fará com que o popup abra em uma
57
+ //posição errada no futuro. Preferi fazer simples no começo,
58
+ //porque não quis onerar o text input com essa funcionalidade...
59
+ const top = this._textInput.errorMessage ? 0 : -17;
60
+ this._calendar.fitVertical(top, this._elem.clientHeight);
61
+ }
62
+ hideCalendar() {
63
+ this.changeValue(this._calendar.value);
64
+ this._calendar.hide();
65
+ }
66
+ parseDate() {
67
+ const strValue = this._textInput.value;
68
+ const parsedDate = DateUtils.strToDate(strValue);
69
+ if (parsedDate || !strValue) {
70
+ if (this.value === parsedDate) {
71
+ this.changeValue(this.value);
72
+ }
73
+ else {
74
+ this.changeValue(parsedDate);
75
+ }
76
+ }
77
+ else {
78
+ this._textInput.errorMessage = "O valor digitado não é uma data válida";
79
+ }
80
+ }
81
+ getTextValue(d) {
82
+ return d ? new Intl.DateTimeFormat("pt-BR").format(d) : null;
83
+ }
84
+ componentDidLoad() {
85
+ CSSVarsUtils.applyVarsTextInput(this._elem, this._textInput);
86
+ }
87
+ render() {
88
+ return (h(Host, null, h("ez-text-input", { ref: elem => this._textInput = elem, onBlur: () => this.parseDate(), onKeyDown: event => {
89
+ if (event.key === "H" || event.key === "h")
90
+ this.changeValue(new Date());
91
+ }, label: this.label, onEzChange: event => event.stopPropagation(), value: this.getTextValue(this.value), restrict: "0123456789/", enabled: this.enabled, errorMessage: this.errorMessage }, h("button", { disabled: !this.enabled, tabindex: -1, class: "btn-open-cal", onClick: () => this.showCalendar(), slot: "leftIcon" })), h("ez-calendar", { onEzChange: (event) => { this.hideCalendar(); event.stopPropagation(); }, floating: true, ref: elem => this._calendar = elem })));
92
+ }
93
+ get _elem() { return this; }
94
+ static get watchers() { return {
95
+ "label": ["setLabel"],
96
+ "errorMessage": ["setErrorMessage"],
97
+ "value": ["applyValueToInput"]
98
+ }; }
99
+ static get style() { return ezDateInputCss; }
100
+ }, [1, "ez-date-input", {
101
+ "label": [513],
102
+ "value": [1040],
103
+ "enabled": [516],
104
+ "errorMessage": [1537, "error-message"],
105
+ "setFocus": [64],
106
+ "setBlur": [64]
107
+ }]);
108
+ function defineCustomElement$1() {
109
+ if (typeof customElements === "undefined") {
110
+ return;
111
+ }
112
+ const components = ["ez-date-input", "ez-calendar", "ez-text-input"];
113
+ components.forEach(tagName => { switch (tagName) {
114
+ case "ez-date-input":
115
+ if (!customElements.get(tagName)) {
116
+ customElements.define(tagName, EzDateInput$1);
117
+ }
118
+ break;
119
+ case "ez-calendar":
120
+ if (!customElements.get(tagName)) {
121
+ defineCustomElement$3();
122
+ }
123
+ break;
124
+ case "ez-text-input":
125
+ if (!customElements.get(tagName)) {
126
+ defineCustomElement$2();
127
+ }
128
+ break;
129
+ } });
130
+ }
131
+
132
+ const EzDateInput = EzDateInput$1;
133
+ const defineCustomElement = defineCustomElement$1;
134
+
135
+ export { EzDateInput, defineCustomElement };
@@ -0,0 +1,179 @@
1
+ import { proxyCustomElement, HTMLElement, createEvent, h, Host } from '@stencil/core/internal/client';
2
+ import { TimeFormatter, DateUtils } from '@sankhyalabs/core';
3
+ import { C as CSSVarsUtils } from './CSSVarsUtils.js';
4
+ import { d as defineCustomElement$3 } from './ez-calendar2.js';
5
+ import { d as defineCustomElement$2 } from './ez-text-input2.js';
6
+
7
+ const ezDateTimeInputCss = ":host{display:block;width:100%;--ez-date-input__input--background-color:var(--background--medium, #e0e0e0);--ez-date-input__input--border-color:var(--ez-date-input__input--background-color);--ez-date-input__calendar-image:url('data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" height=\"16px\" width=\"15px\"><path d=\"M 3.171875,5.25 C 2.6485088,5.25 2.21875,5.6797588 2.21875,6.203125 2.21875,6.7264912 2.6485088,7.15625 3.171875,7.15625 3.6952412,7.15625 4.125,6.7264912 4.125,6.203125 4.125,5.6797588 3.6952412,5.25 3.171875,5.25 Z m 2.875,0 C 5.5235088,5.25 5.09375,5.6797588 5.09375,6.203125 5.09375,6.7264912 5.5235088,7.15625 6.046875,7.15625 6.5702412,7.15625 7,6.7264912 7,6.203125 7,5.6797588 6.5702412,5.25 6.046875,5.25 Z m 2.875,0 c -0.5233662,0 -0.953125,0.4297588 -0.953125,0.953125 0,0.5233662 0.4297588,0.953125 0.953125,0.953125 0.5233662,0 0.9511719,-0.4297588 0.9511719,-0.953125 C 9.8730469,5.6797588 9.4452412,5.25 8.921875,5.25 Z m 2.873047,0 c -0.523366,0 -0.953125,0.4297588 -0.953125,0.953125 0,0.5233662 0.429759,0.953125 0.953125,0.953125 0.523366,0 0.953125,-0.4297588 0.953125,-0.953125 C 12.748047,5.6797588 12.318288,5.25 11.794922,5.25 Z M 3.171875,8.1230469 c -0.5233662,0 -0.953125,0.4297588 -0.953125,0.953125 0,0.5233662 0.4297588,0.9531251 0.953125,0.9531251 0.5233662,0 0.953125,-0.4297589 0.953125,-0.9531251 0,-0.5233662 -0.4297588,-0.953125 -0.953125,-0.953125 z m 2.875,0 c -0.5233662,0 -0.953125,0.4297588 -0.953125,0.953125 0,0.5233662 0.4297588,0.9531251 0.953125,0.9531251 C 6.5702412,10.029297 7,9.5995381 7,9.0761719 7,8.5528057 6.5702412,8.1230469 6.046875,8.1230469 Z m 2.8554688,0 c -0.5233663,0 -0.953125,0.4297588 -0.953125,0.953125 0,0.5233662 0.4297587,0.9531251 0.953125,0.9531251 0.5233661,0 0.9531249,-0.4297589 0.953125,-0.9531251 0,-0.5233662 -0.4297588,-0.953125 -0.953125,-0.953125 z m 2.9003902,0 c -0.523366,0 -0.953125,0.4297588 -0.953125,0.953125 0,0.5233662 0.429759,0.9531251 0.953125,0.9531251 0.523367,0 0.953125,-0.4297589 0.953125,-0.9531251 0,-0.5233662 -0.429758,-0.953125 -0.953125,-0.953125 z M 3.171875,10.998047 c -0.5233662,0 -0.953125,0.429759 -0.953125,0.953125 0,0.523366 0.4297588,0.953125 0.953125,0.953125 0.5233662,0 0.953125,-0.429759 0.953125,-0.953125 0,-0.523366 -0.4297588,-0.953125 -0.953125,-0.953125 z m 2.875,0 c -0.5233662,0 -0.953125,0.429759 -0.953125,0.953125 0,0.523366 0.4297588,0.953125 0.953125,0.953125 C 6.5702412,12.904297 7,12.474538 7,11.951172 7,11.427806 6.5702412,10.998047 6.046875,10.998047 Z m 2.8554688,0 c -0.5233663,0 -0.953125,0.429759 -0.953125,0.953125 0,0.523366 0.4297587,0.953125 0.953125,0.953125 0.5233661,0 0.9531249,-0.429759 0.953125,-0.953125 0,-0.523366 -0.4297588,-0.953125 -0.953125,-0.953125 z m 2.9003902,0 c -0.523366,0 -0.953125,0.429759 -0.953125,0.953125 0,0.523366 0.429759,0.953125 0.953125,0.953125 0.523367,0 0.953125,-0.429759 0.953125,-0.953125 0,-0.523366 -0.429758,-0.953125 -0.953125,-0.953125 z M 3.5,0 c -0.554,0 -1,0.446 -1,1 v 0.050781 C 1.0853217,1.2909766 0,2.5186658 0,4 v 9 c 0,1.652487 1.3475134,3 3,3 h 9 c 1.652487,0 3,-1.347513 3,-3 V 4 C 15,2.5186658 13.914678,1.2909766 12.5,1.0507812 V 1 c 0,-0.554 -0.446,-1 -1,-1 -0.554,0 -1,0.446 -1,1 h -2 c 0,-0.554 -0.446,-1 -1,-1 -0.554,0 -1,0.446 -1,1 h -2 C 4.5,0.446 4.054,0 3.5,0 Z m 1,2.0996094 h 2 v 0.640625 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 v -0.640625 h 2 v 0.640625 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 V 2.1738281 C 13.311725,2.3905225 13.900391,3.11278 13.900391,4 v 9 c 0,1.062113 -0.838278,1.900391 -1.900391,1.900391 H 3 C 1.9378864,14.900391 1.0996094,14.062113 1.0996094,13 V 4 C 1.0996094,3.11278 1.6882747,2.3905225 2.5,2.1738281 v 0.5664063 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 z\"/></svg>')}.btn-open-cal{outline:none;border:none;background-color:unset;cursor:pointer}.btn-open-cal:disabled{cursor:unset}.btn-open-cal::after{content:'';display:flex;background-color:var(--text--primary, #008561);width:15px;height:16px;-webkit-mask-image:var(--ez-date-input__calendar-image);mask-image:var(--ez-date-input__calendar-image)}.btn-open-cal:disabled:after{background-color:var(--text--disable, #AFB6C0)}.btn-open-cal:enabled:hover::after{background-color:var(--color--primary, #4e4e4e)}ez-text-input{--text-input__input--background-color:var(--ez-date-input__input--background-color, #FFFFFF);--text-input__input--border-color:var(--ez-date-input__input--border-color, #DCE0E8)}";
8
+
9
+ const EzDateTimeInput$1 = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
10
+ constructor() {
11
+ super();
12
+ this.__registerHost();
13
+ this.__attachShadow();
14
+ this.ezChange = createEvent(this, "ezChange", 7);
15
+ /**
16
+ * Deixa o campo disponível ou não para uso.
17
+ */
18
+ this.enabled = true;
19
+ /**
20
+ * Exibe ou não os segundos no input
21
+ */
22
+ this.showSeconds = false;
23
+ }
24
+ setLabel() {
25
+ this._textInput.label = this.label;
26
+ }
27
+ setErrorMessage() {
28
+ this._textInput.errorMessage = this.errorMessage;
29
+ }
30
+ applyValueToInput() {
31
+ if (this._textInput) {
32
+ this._textInput.value = this.getTextValue(this.value);
33
+ }
34
+ }
35
+ /**
36
+ * Realiza o foco no componente de datetime
37
+ */
38
+ async setFocus() {
39
+ this._textInput.setFocus();
40
+ }
41
+ /**
42
+ * Remove o foco no componente de datetime
43
+ */
44
+ async setBlur() {
45
+ this._textInput.setBlur();
46
+ }
47
+ onChangeKeyDown(ev) {
48
+ const input = this._textInput.shadowRoot.querySelector('input');
49
+ if (ev.key === "H" || ev.key === "h") {
50
+ this.changeValue(new Date());
51
+ }
52
+ else if (ev.shiftKey && ev.key === "Tab") {
53
+ if (input.selectionStart > 0) {
54
+ let selectIni = input.value.lastIndexOf(" ", input.selectionStart);
55
+ if (selectIni !== -1) {
56
+ input.setSelectionRange(0, selectIni);
57
+ ev.preventDefault();
58
+ }
59
+ }
60
+ }
61
+ else if (ev.key === "Tab") {
62
+ if (input.value.length !== input.selectionEnd) {
63
+ let selectIni = input.value.indexOf(" ", input.selectionEnd);
64
+ selectIni = selectIni === -1 ? input.selectionEnd : selectIni + 1;
65
+ input.setSelectionRange(selectIni, input.value.length);
66
+ ev.preventDefault();
67
+ }
68
+ }
69
+ }
70
+ onFocused() {
71
+ const input = this._textInput.shadowRoot.querySelector('input');
72
+ if (input.selectionStart !== input.selectionEnd) {
73
+ let selectIni = input.value.indexOf(" ", input.selectionStart);
74
+ selectIni = selectIni === -1 ? input.value.length : selectIni;
75
+ input.setSelectionRange(0, selectIni);
76
+ }
77
+ }
78
+ onClicked() {
79
+ const input = this._textInput.shadowRoot.querySelector('input');
80
+ let selectIni = input.value.lastIndexOf(" ", input.selectionEnd);
81
+ selectIni = selectIni === -1 ? 0 : selectIni + 1;
82
+ selectIni = selectIni > input.selectionEnd ? 0 : selectIni;
83
+ let selectFin = selectIni === 0 ? input.value.indexOf(" ") : input.value.length;
84
+ input.setSelectionRange(selectIni, selectFin);
85
+ }
86
+ changeValue(newValue) {
87
+ var _a;
88
+ this._textInput.errorMessage = "";
89
+ if ((newValue === null || newValue === void 0 ? void 0 : newValue.toString()) !== ((_a = this.value) === null || _a === void 0 ? void 0 : _a.toString())) {
90
+ this.value = newValue;
91
+ this.ezChange.emit(this.value);
92
+ }
93
+ }
94
+ showCalendar() {
95
+ const top = this._textInput.errorMessage ? 0 : -17;
96
+ this._calendar.fitVertical(top, this._elem.clientHeight);
97
+ this._calendar.style.visibility = 'inherit';
98
+ }
99
+ parseDate() {
100
+ const strValue = this._textInput.value;
101
+ const partsDateTime = (strValue && strValue.length > 0) ? strValue.split(" ") : [];
102
+ const onlyDate = partsDateTime.length > 0 ? partsDateTime[0] : strValue;
103
+ const onlyTime = partsDateTime[1] ? partsDateTime[1] : "";
104
+ const parsedTime = TimeFormatter.prepareValue(onlyTime, this.showSeconds);
105
+ const strDateTime = onlyDate + (parsedTime && " " + parsedTime);
106
+ const parsedDate = DateUtils.strToDate(strDateTime);
107
+ if (parsedDate || !strValue) {
108
+ if (this.value === parsedDate) {
109
+ this.changeValue(this.value);
110
+ }
111
+ else {
112
+ this.changeValue(parsedDate);
113
+ }
114
+ }
115
+ else {
116
+ this._textInput.errorMessage = "O valor digitado não é uma data válida";
117
+ }
118
+ }
119
+ getTextValue(d) {
120
+ const options = {
121
+ year: 'numeric', month: 'numeric', day: 'numeric',
122
+ hour: 'numeric', minute: 'numeric'
123
+ };
124
+ const optionsSecond = {
125
+ year: 'numeric', month: 'numeric', day: 'numeric',
126
+ hour: 'numeric', minute: 'numeric', second: 'numeric'
127
+ };
128
+ return d ? (new Intl.DateTimeFormat('pt-BR', this.showSeconds ? optionsSecond : options).format(d)) : null;
129
+ }
130
+ componentDidLoad() {
131
+ CSSVarsUtils.applyVarsTextInput(this._elem, this._textInput);
132
+ }
133
+ render() {
134
+ return (h(Host, null, h("ez-text-input", { ref: elem => this._textInput = elem, onBlur: () => this.parseDate(), onKeyDown: event => { this.onChangeKeyDown(event); }, label: this.label, onEzChange: event => event.stopPropagation(), value: this.getTextValue(this.value), restrict: "0123456789/: ", enabled: this.enabled, errorMessage: this.errorMessage, onFocus: () => this.onFocused(), onClick: () => this.onClicked() }, h("button", { disabled: !this.enabled, tabindex: -1, class: "btn-open-cal", onClick: () => this.showCalendar(), slot: "leftIcon" })), h("ez-calendar", { onEzChange: (event) => { this.changeValue(this._calendar.value); event.stopPropagation(); }, floating: true, ref: elem => this._calendar = elem, time: true, showSeconds: this.showSeconds })));
135
+ }
136
+ get _elem() { return this; }
137
+ static get watchers() { return {
138
+ "label": ["setLabel"],
139
+ "errorMessage": ["setErrorMessage"],
140
+ "value": ["applyValueToInput"]
141
+ }; }
142
+ static get style() { return ezDateTimeInputCss; }
143
+ }, [1, "ez-date-time-input", {
144
+ "label": [513],
145
+ "value": [1040],
146
+ "enabled": [516],
147
+ "errorMessage": [1537, "error-message"],
148
+ "showSeconds": [516, "show-seconds"],
149
+ "setFocus": [64],
150
+ "setBlur": [64]
151
+ }]);
152
+ function defineCustomElement$1() {
153
+ if (typeof customElements === "undefined") {
154
+ return;
155
+ }
156
+ const components = ["ez-date-time-input", "ez-calendar", "ez-text-input"];
157
+ components.forEach(tagName => { switch (tagName) {
158
+ case "ez-date-time-input":
159
+ if (!customElements.get(tagName)) {
160
+ customElements.define(tagName, EzDateTimeInput$1);
161
+ }
162
+ break;
163
+ case "ez-calendar":
164
+ if (!customElements.get(tagName)) {
165
+ defineCustomElement$3();
166
+ }
167
+ break;
168
+ case "ez-text-input":
169
+ if (!customElements.get(tagName)) {
170
+ defineCustomElement$2();
171
+ }
172
+ break;
173
+ } });
174
+ }
175
+
176
+ const EzDateTimeInput = EzDateTimeInput$1;
177
+ const defineCustomElement = defineCustomElement$1;
178
+
179
+ export { EzDateTimeInput, defineCustomElement };