@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,335 @@
1
+ :host {
2
+
3
+ /* @doc Define a camada de visibilidae do componente. */
4
+ --ez-list__host--z-index: var(--visible, 1);
5
+ /* @doc Define o raio da borda do componente. */
6
+ --ez-list__host--border-radius: var(--border--radius-medium, 12px);
7
+ /* @doc Define o espaçamento entre a lista e o componente. */
8
+ --ez-list__host--padding: var(--space--medium, 12px);
9
+
10
+ /* @doc Define o espaçamento interno do ícone. */
11
+ --ez-list__icon__padding: var(--space--small, 6px);
12
+ /* @doc Define a cor do ícone de arrasto do item da lista. */
13
+ --ez-list__icon--color: #AFB6C0;
14
+
15
+ /* @doc Define o espaçamento externo do item da lista. */
16
+ --ez-list__item__margin: 0 var(--space--small, 6px);
17
+ /* @doc Define a cor do texto do item da lista. */
18
+ --ez-list__item--color: var(--title--primary, #2b3a54);
19
+ /* @doc Define o estilo borda inferior do item da lista. */
20
+ --ez-list__item--border-bottom: var(--border--small, 1px solid);
21
+ /* @doc Define a cor da borda inferior do item da lista. */
22
+ --ez-list__item--border-color: var(--title--primary, #2b3a54);
23
+ /* @doc Define o estilo do texto do item da lista. */
24
+ --ez-list__item--font-family: var(--font-pattern, "Sora");
25
+ /* @doc Define o tamanho do texto do item da lista. */
26
+ --ez-list__item--font-size: var(--text--medium, 14px);
27
+
28
+ /* @doc Define o espaçamento lateral direito para items selecionados. */
29
+ --ez-list__selectable--padding-right: var(--space--small, 6px);
30
+ /* @doc Define o espaçamento lateral esquerdo para items selecionados. */
31
+ --ez-list__selectable--padding-left: var(--space--small, 6px);
32
+
33
+ /*@doc Define o raio da borda de items selecionados.*/
34
+ --ez-list__selected-item__border-radius: var(--border--radius-small, 6px);
35
+ /*@doc Define a cor de fundo de items selecionados.*/
36
+ --ez-list__selected-item__background: var(--color--primary-300, #E2F4EF);
37
+
38
+ /* @doc Define o estilo do texto do grupo da lista. */
39
+ --ez-list__group--font-family: var(--font-pattern, "Sora");
40
+ /* @doc Define o tamanho do texto do grupo da lista. */
41
+ --ez-list__group--font-size: var(--text--medium, 14px);
42
+ /* @doc Define o peso do texto do grupo da lista. */
43
+ --ez-list__group--font-weight: var(--text-weight--large, 600);
44
+ /* @doc Define o espaçamento inferior do grupo da lista. */
45
+ --ez-list__group--padding-bottom: var(--space-small, 6px);
46
+
47
+ /* @doc Define o estilo do texto da área de transferência de grupos. */
48
+ --ez-list__group__overlay--font-family: var(--font-pattern, "Sora");
49
+ /* @doc Define o tamanho do texto da área de transferência de grupos. */
50
+ --ez-list__group__overlay--font-size: var(--text--medium, 14px);
51
+
52
+ /*@doc Define o raio da borda da barra de rolagem do container de grupos.*/
53
+ --ez-list__group-container__scrollbar--border-radius: var(--border--radius-large, 24px);
54
+ /*@doc Define a largura da barra de rolagem do container de grupos.*/
55
+ --ez-list__group-container__scrollbar--width: var(--space--medium, 12px);
56
+ /*@doc Define a cor da barra de rolagem do container de grupos.*/
57
+ --ez-list__group-container__scrollbar--background-color: var(--text--primary, #626e82);
58
+
59
+ /* @doc Define a cor da borda pontilhada sobre os elementos da lista. */
60
+ --ez-list__over--border--color: var(--color--primary, #008561);
61
+
62
+ /*@doc Define o espaçamento do container de itens arrastáveis .*/
63
+ --ez-list__draggable__list--padding-bottom: var(--space--small, 6px);
64
+
65
+ /*@doc Define a altura do container para arrasto para última posição .*/
66
+ --ez-list__last-droppable-space--height: var(--space--small, 6px);
67
+
68
+ /*@doc Define o raio da borda da barra de rolagem do componente.*/
69
+ --ez-list__draggable__scrollbar--border-radius: var(--border--radius-large, 24px);
70
+ /*@doc Define a largura da barra de rolagem do componente.*/
71
+ --ez-list__draggable__scrollbar--width: var(--space--medium, 12px);
72
+ /*@doc Define a cor da barra de rolagem do componente.*/
73
+ --ez-list__draggable__scrollbar--background-color: var(--text--primary, #626e82);
74
+ /* @doc Define a imagem do ícone de drag. */
75
+ --ez-list__draggable__icon--image: url('data:image/svg+xml;utf8,<svg width="18" height="18" viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg"><path d="m 6.75,2.25 h 1.5 v 1.5 h -1.5 z m 3,0 h 1.5 v 1.5 h -1.5 z m -3,3 h 1.5 v 1.5 h -1.5 z m 3,0 h 1.5 v 1.5 h -1.5 z m -3,3 h 1.5 v 1.5 h -1.5 z m 3,0 h 1.5 v 1.5 h -1.5 z m -3,3 h 1.5 v 1.5 h -1.5 z m 3,0 h 1.5 v 1.5 h -1.5 z m -3,3 h 1.5 v 1.5 h -1.5 z m 3,0 h 1.5 v 1.5 h -1.5 z"/></svg>');
76
+
77
+ max-height: 100%;
78
+ width: 100%;
79
+ background-color: #fff;
80
+ display: flex;
81
+ z-index: var(--ez-list__host--z-index);
82
+ }
83
+
84
+ p {
85
+ margin: 0;
86
+ }
87
+
88
+ .draggable {
89
+ display: flex;
90
+ align-items: center;
91
+ border-top: 1px dashed #fff;
92
+ justify-content: space-between;
93
+ background-color: #fff;
94
+ font-family: var(--ez-list__item--font-family);
95
+ font-size: var(--ez-list__item--font-size);
96
+ flex: 1;
97
+ }
98
+
99
+ .dragging {
100
+ background: #FFFFFF;
101
+ /* Primary/color--primary */
102
+
103
+ border: 1px solid #008561;
104
+ box-sizing: border-box;
105
+ box-shadow: 0px 0px 16px rgba(0, 38, 111, 0.122);
106
+ border-radius: 6px;
107
+ }
108
+
109
+ .selectable {
110
+ cursor: pointer;
111
+ padding-right: var(--ez-list__selectable--padding-right);
112
+ padding-left: var(--ez-list__selectable--padding-left);
113
+ }
114
+
115
+ .selectable-container {
116
+ margin: 0px !important;
117
+ }
118
+
119
+ .item-content {
120
+ display: flex;
121
+ justify-content: center;
122
+ align-items: center;
123
+ }
124
+
125
+ .draggable-list {
126
+ color: var(--text-color);
127
+ padding: 0;
128
+ margin: 0;
129
+ width: 100%;
130
+ max-height: 100%;
131
+ }
132
+
133
+ .draggable-list li {
134
+ background-color: #fff;
135
+ display: flex;
136
+ margin: var(--ez-list__item__margin);
137
+ font-family: var(--ez-list__item--font-family);
138
+ font-size: var(--ez-list__item--font-size);
139
+ color: var(--ez-list__item--color);
140
+ height: 32px;
141
+ }
142
+
143
+ .over {
144
+ border-top: 1px dashed var(--ez-list__over--border--color);
145
+ }
146
+
147
+ .last-droppable-space {
148
+ height: var(--ez-list__last-droppable-space--height);
149
+ }
150
+
151
+ .draggable-selected {
152
+ background-color: var(--background--strong) !important;
153
+ }
154
+
155
+ .draggable-selected div:hover {
156
+ background-color: var(--background--strong) !important;
157
+ }
158
+
159
+
160
+ /* Precisamos dos tokens do scrollbar */
161
+ .draggable-list::-webkit-scrollbar-track {
162
+ background-color: #f0f2f5;
163
+ }
164
+
165
+ .draggable-list::-webkit-scrollbar-thumb {
166
+ background-color: var(--ez-list__draggable__scrollbar--background-color);
167
+ border-radius: var(--ez-list__draggable__scrollbar--border-radius);
168
+ }
169
+
170
+ .draggable-list::-webkit-scrollbar {
171
+ background-color: #f0f2f5;
172
+ width: var(--ez-list__draggable__scrollbar--width);
173
+ max-width: var(--ez-list__draggable__scrollbar--width);
174
+ min-width: var(--ez-list__draggable__scrollbar--width);
175
+ }
176
+
177
+ .draggable-icon {
178
+ align-items: flex-start;
179
+ display: flex;
180
+ outline: none;
181
+ border: none;
182
+ background-color: unset;
183
+ }
184
+
185
+ .draggable-icon::after {
186
+ content: '';
187
+ display: flex;
188
+ background-color: var(--ez-list__icon--color);
189
+ width: 18px;
190
+ height: 18px;
191
+ -webkit-mask-image: var(--ez-list__draggable__icon--image);
192
+ mask-image: var(--ez-list__draggable__icon--image);
193
+ }
194
+
195
+ * {
196
+ box-sizing: border-box;
197
+ }
198
+
199
+ .checkbox {
200
+ width: fit-content;
201
+ }
202
+
203
+ .text--ellipsis {
204
+ white-space: nowrap;
205
+ overflow: hidden;
206
+ text-overflow: ellipsis;
207
+ }
208
+
209
+ .group-container {
210
+ display: flex;
211
+ flex-direction: column;
212
+ max-height: 100%;
213
+ overflow-y: auto;
214
+ outline: none;
215
+ width: 100%;
216
+ }
217
+
218
+ .group-name {
219
+ font-family: var(--ez-list__group--font-family);
220
+ font-size: var(--ez-list__group--font-size);
221
+ font-weight: var(--ez-list__group--font-weight);
222
+ padding-bottom: var(--ez-list__group--padding-bottom);
223
+ -webkit-user-select: none;
224
+ -moz-user-select: -moz-none;
225
+ -ms-user-select: none;
226
+ user-select: none;
227
+ }
228
+
229
+ .group {
230
+ display: flex;
231
+ flex-direction: column;
232
+ }
233
+
234
+
235
+ /* Precisamos dos tokens do scrollbar */
236
+ .group-container::-webkit-scrollbar-track {
237
+ background-color: #f0f2f5;
238
+ }
239
+
240
+ .group-container::-webkit-scrollbar-thumb {
241
+ background-color: var(--ez-list__group-container__scrollbar--background-color);
242
+ border-radius: var(--ez-list__group-container__scrollbar--border-radius);
243
+ }
244
+
245
+ .group-container::-webkit-scrollbar {
246
+ background-color: #f0f2f5;
247
+ width: var(--ez-list__group-container__scrollbar--width);
248
+ max-width: var(--ez-list__group-container__scrollbar--width);
249
+ min-width: var(--ez-list__group-container__scrollbar--width);
250
+ }
251
+
252
+ .section-container {
253
+ display: flex;
254
+ position: relative;
255
+ height: 100%;
256
+ }
257
+
258
+ .items-container {
259
+ width: 100%;
260
+ max-height: 100%;
261
+ overflow-y: auto;
262
+ outline: none;
263
+ }
264
+
265
+ .group-items-container {
266
+ width: 100%;
267
+ max-height: 100%;
268
+ height: 100%;
269
+ outline: none;
270
+ }
271
+
272
+ .items-container::-webkit-scrollbar-track {
273
+ background-color: #f0f2f5;
274
+ }
275
+
276
+ .items-container::-webkit-scrollbar-thumb {
277
+ background-color: var(--ez-list__draggable__scrollbar--background-color);
278
+ border-radius: var(--ez-list__draggable__scrollbar--border-radius);
279
+ }
280
+
281
+ .items-container::-webkit-scrollbar {
282
+ background-color: #f0f2f5;
283
+ width: var(--ez-list__draggable__scrollbar--width);
284
+ max-width: var(--ez-list__draggable__scrollbar--width);
285
+ min-width: var(--ez-list__draggable__scrollbar--width);
286
+ }
287
+
288
+ .group-overlay {
289
+ font-family: var(--ez-list__group__overlay--font-family);
290
+ font-size: var(--ez-list__group__overlay--font-size);
291
+ background: rgba(226, 244, 239, 0.8);
292
+ border: 1px solid #008561;
293
+ border-radius: 8px;
294
+ position: absolute;
295
+ display: none;
296
+ place-items: center;
297
+ top: 0;
298
+ bottom: 0;
299
+ left: 0;
300
+ right: 0;
301
+ z-index: 2;
302
+ margin: 0;
303
+ cursor: pointer;
304
+ }
305
+
306
+ .presetedHeight {
307
+ min-height: 100px;
308
+ }
309
+
310
+ .overlay-text {
311
+ position: absolute;
312
+ top: 50%;
313
+ left: 50%;
314
+ font-size: 50px;
315
+ color: white;
316
+ transform: translate(-50%, -50%);
317
+ -ms-transform: translate(-50%, -50%);
318
+ }
319
+
320
+ .selected-item {
321
+ background: var(--ez-list__selected-item__background);
322
+ border-radius: var(--ez-list__selected-item__border-radius);
323
+ }
324
+
325
+ .slot-item {
326
+ align-items: flex-end;
327
+ }
328
+
329
+ .overGroup {
330
+ background: rgba(226, 244, 239, 0.8);
331
+ border: 1px solid #008561;
332
+ box-sizing: border-box;
333
+ border-radius: 8px;
334
+ padding-top: 6px;
335
+ }
@@ -0,0 +1,358 @@
1
+ :host {
2
+ /*@doc Define a camada em que o componente será exibido.*/
3
+ --ez-modal-z-index: var(--most-visible, 3);
4
+ /*@doc Define o espaçamento vertical do conteúdo do modal.*/
5
+ --ez-modal-vertical-padding: var(--space--large, 24px);
6
+ display: block;
7
+ }
8
+
9
+ .modal {
10
+ position: fixed;
11
+ padding: var(--ez-modal-vertical-padding) 0;
12
+ display: flex;
13
+ top: 0px;
14
+ z-index: var(--ez-modal-z-index);
15
+ left: 0px;
16
+ width: 100%;
17
+ box-sizing: border-box;
18
+ height: 100vh;
19
+ backdrop-filter: blur(4px);
20
+ background: rgba(0, 4, 12, 0.4);
21
+ }
22
+
23
+ @keyframes expand-modal--left {
24
+ from {
25
+ transform: translate(-100%)
26
+ }
27
+ }
28
+
29
+ @keyframes expand-modal--right {
30
+ from {
31
+ transform: translate(100%)
32
+ }
33
+ }
34
+
35
+ .modal__container {
36
+ display: flex;
37
+ flex-wrap: wrap;
38
+ height: 100%;
39
+ box-sizing: border-box;
40
+ width: 100%;
41
+ align-items: flex-start;
42
+ }
43
+
44
+ .modal__container--right {
45
+ animation: expand-modal--right .2s ease-in-out 1;
46
+ justify-content: flex-end;
47
+ }
48
+
49
+ .modal__container--left {
50
+ animation: expand-modal--left .2s ease-in-out 1;
51
+ justify-content: flex-start;
52
+ }
53
+
54
+ .modal__content {
55
+ display: flex;
56
+ flex-wrap: wrap;
57
+ /* Cálculo deve ser revisto pois foi feito apenas para lista de tarefas */
58
+ max-height: calc(100% - 48px);
59
+ height: 100%;
60
+ overflow-y: auto;
61
+ background-color: rgb(255, 255, 255);
62
+ padding: 24px;
63
+ border-radius: 12px 0px 0px 12px;
64
+ box-shadow: rgb(0 38 111 / 12%) 0px 0px 16px 0px;
65
+ }
66
+
67
+ .modal__content--right {
68
+ border-radius: 12px 0px 0px 12px;
69
+ }
70
+
71
+ .modal__content--left {
72
+ border-radius: 0px 12px 12px 0px;
73
+ }
74
+
75
+ .modal__box__container {
76
+ display: flex;
77
+ flex-wrap: wrap;
78
+ background-color: #fff;
79
+ width: 100%;
80
+ border-radius: 12px;
81
+ }
82
+
83
+ /* //////// GRID SYSTEM //////// */
84
+
85
+ .row {
86
+ width: 100%;
87
+ display: flex;
88
+ flex-wrap: wrap;
89
+ }
90
+
91
+ .col {
92
+ display: flex;
93
+ flex-wrap: wrap;
94
+ align-self: flex-start;
95
+ box-sizing: border-box;
96
+ }
97
+
98
+ .col--stretch {
99
+ align-self: stretch;
100
+ }
101
+
102
+ .col--undefined {
103
+ width: unset;
104
+ }
105
+
106
+ .col--nowrap {
107
+ flex-wrap: nowrap;
108
+ }
109
+
110
+ @media screen and (min-width: 320px) {
111
+ .col--sd-1 {
112
+ width: 8.33333%;
113
+ }
114
+
115
+ .col--sd-2 {
116
+ width: 16.66667%;
117
+ }
118
+
119
+ .col--sd-3 {
120
+ width: 25%;
121
+ }
122
+
123
+ .col--sd-4 {
124
+ width: 33.33333%;
125
+ }
126
+
127
+ .col--sd-5 {
128
+ width: 41.66667%;
129
+ }
130
+
131
+ .col--sd-6 {
132
+ width: 50%;
133
+ }
134
+
135
+ .col--sd-7 {
136
+ width: 58.33333%;
137
+ }
138
+
139
+ .col--sd-8 {
140
+ width: 66.66667%;
141
+ }
142
+
143
+ .col--sd-9 {
144
+ width: 75%;
145
+ }
146
+
147
+ .col--sd-10 {
148
+ width: 83.33333%;
149
+ }
150
+
151
+ .col--sd-11 {
152
+ width: 91.66667%;
153
+ }
154
+
155
+ .col--sd-12 {
156
+ width: 100%;
157
+ }
158
+ }
159
+
160
+ @media screen and (min-width: 480px) {
161
+ .col--pn-1 {
162
+ width: 8.33333%;
163
+ }
164
+
165
+ .col--pn-2 {
166
+ width: 16.66667%;
167
+ }
168
+
169
+ .col--pn-3 {
170
+ width: 25%;
171
+ }
172
+
173
+ .col--pn-4 {
174
+ width: 33.33333%;
175
+ }
176
+
177
+ .col--pn-5 {
178
+ width: 41.66667%;
179
+ }
180
+
181
+ .col--pn-6 {
182
+ width: 50%;
183
+ }
184
+
185
+ .col--pn-7 {
186
+ width: 58.33333%;
187
+ }
188
+
189
+ .col--pn-8 {
190
+ width: 66.66667%;
191
+ }
192
+
193
+ .col--pn-9 {
194
+ width: 75%;
195
+ }
196
+
197
+ .col--pn-10 {
198
+ width: 83.33333%;
199
+ }
200
+
201
+ .col--pn-11 {
202
+ width: 91.66667%;
203
+ }
204
+
205
+ .col--pn-12 {
206
+ width: 100%;
207
+ }
208
+ }
209
+
210
+ @media screen and (min-width: 768px) {
211
+ .col--tb-1 {
212
+ width: 8.33333%;
213
+ }
214
+
215
+ .col--tb-2 {
216
+ width: 16.66667%;
217
+ }
218
+
219
+ .col--tb-3 {
220
+ width: 25%;
221
+ }
222
+
223
+ .col--tb-4 {
224
+ width: 33.33333%;
225
+ }
226
+
227
+ .col--tb-5 {
228
+ width: 41.66667%;
229
+ }
230
+
231
+ .col--tb-6 {
232
+ width: 50%;
233
+ }
234
+
235
+ .col--tb-7 {
236
+ width: 58.33333%;
237
+ }
238
+
239
+ .col--tb-8 {
240
+ width: 66.66667%;
241
+ }
242
+
243
+ .col--tb-9 {
244
+ width: 75%;
245
+ }
246
+
247
+ .col--tb-10 {
248
+ width: 83.33333%;
249
+ }
250
+
251
+ .col--tb-11 {
252
+ width: 91.66667%;
253
+ }
254
+
255
+ .col--tb-12 {
256
+ width: 100%;
257
+ }
258
+ }
259
+
260
+ @media screen and (min-width: 992px) {
261
+ .col--md-1 {
262
+ width: 8.33333%;
263
+ }
264
+
265
+ .col--md-2 {
266
+ width: 16.66667%;
267
+ }
268
+
269
+ .col--md-3 {
270
+ width: 25%;
271
+ }
272
+
273
+ .col--md-4 {
274
+ width: 33.33333%;
275
+ }
276
+
277
+ .col--md-5 {
278
+ width: 41.66667%;
279
+ }
280
+
281
+ .col--md-6 {
282
+ width: 50%;
283
+ }
284
+
285
+ .col--md-7 {
286
+ width: 58.33333%;
287
+ }
288
+
289
+ .col--md-8 {
290
+ width: 66.66667%;
291
+ }
292
+
293
+ .col--md-9 {
294
+ width: 75%;
295
+ }
296
+
297
+ .col--md-10 {
298
+ width: 83.33333%;
299
+ }
300
+
301
+ .col--md-11 {
302
+ width: 91.66667%;
303
+ }
304
+
305
+ .col--md-12 {
306
+ width: 100%;
307
+ }
308
+ }
309
+
310
+ @media screen and (min-width: 1200px) {
311
+ .col--ld-1 {
312
+ width: 8.33333%;
313
+ }
314
+
315
+ .col--ld-2 {
316
+ width: 16.66667%;
317
+ }
318
+
319
+ .col--ld-3 {
320
+ width: 25%;
321
+ }
322
+
323
+ .col--ld-4 {
324
+ width: 33.33333%;
325
+ }
326
+
327
+ .col--ld-5 {
328
+ width: 41.66667%;
329
+ }
330
+
331
+ .col--ld-6 {
332
+ width: 50%;
333
+ }
334
+
335
+ .col--ld-7 {
336
+ width: 58.33333%;
337
+ }
338
+
339
+ .col--ld-8 {
340
+ width: 66.66667%;
341
+ }
342
+
343
+ .col--ld-9 {
344
+ width: 75%;
345
+ }
346
+
347
+ .col--ld-10 {
348
+ width: 83.33333%;
349
+ }
350
+
351
+ .col--ld-11 {
352
+ width: 91.66667%;
353
+ }
354
+
355
+ .col--ld-12 {
356
+ width: 100%;
357
+ }
358
+ }