@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,129 @@
1
+ :host {
2
+
3
+ /*@doc Define o espaçamento utilizado no rodapé do componente.*/
4
+ --ez-grid-config__footer--padding-top: var(--space--medium, 12px);
5
+
6
+ /*@doc Define o espaçamento utilizado no centro do componente.*/
7
+ --ez-grid-config__main--padding-right: var(--space--medium, 12px);
8
+
9
+ /*@doc Define o espaçamento utilizado no seletor de abas do componente.*/
10
+ --ez-grid-config__tabselector-container--padding: var(--space--medium, 12px);
11
+
12
+ /*@doc Define o espaçamento utilizado à esquerda do botão de fechar do componente.*/
13
+ --ez-grid-config__button-close--padding-left: var(--space--medium, 12px);
14
+
15
+ /*@doc Define o estilo da fonte utilizada para o subtitulo do componente.*/
16
+ --ez-grid-config__subtitle--font-family: var(--font-pattern, "Sora");
17
+
18
+ --ez-grid-config__title--font-family: var(--font-pattern, "Sora");
19
+
20
+ --ez-grid-config__title--font-weight: var(--text-weight--large, 700);
21
+
22
+ /*@doc Define o tamanho da fonte utilizada para o subtitulo do componente.*/
23
+ --ez-grid-config__subtitle--font-size: var(--text--medium, 14px);
24
+
25
+ /*@doc Define a largura da barra de rolagem do componente.*/
26
+ --ez-grid-config__scrollbar--width: var(--space--medium, 12px);
27
+
28
+ /*@doc Define a cor da barra de rolagem do componente.*/
29
+ --ez-grid-config__main__scrollbar--background-color: var(--text--primary, #626e82);
30
+
31
+ /*@doc Define o raio da borda da barra de rolagem do componente.*/
32
+ --ez-grid-config__main__scrollbar--border-radius: var(--border--radius-medium, 12px);
33
+
34
+ /* @doc Define o estilo do texto do grupo da lista. */
35
+ --ez-grid__group--font-family: var(--font-pattern, "Sora");
36
+ /* @doc Define o tamanho do texto do grupo da lista. */
37
+ --ez-grid__group--font-size: var(--text--medium, 14px);
38
+ /* @doc Define o peso do texto do grupo da lista. */
39
+ --ez-grid__group--font-weight: var(--text-weight--large, 600);
40
+ /* @doc Define o espaçamento inferior do grupo da lista. */
41
+ --ez-grid__group--padding-bottom: var(--space-small, 6px);
42
+
43
+ display: grid;
44
+ grid-template-rows: auto 1fr auto;
45
+ max-height: 100%;
46
+ width: 100%;
47
+ }
48
+
49
+ .padding-right--medium {
50
+ padding-right: var(--space--medium);
51
+ }
52
+
53
+ ez-list {
54
+ height: 100%;
55
+ }
56
+ .heigth-calc{
57
+ max-height: calc(100% - 24px);
58
+ }
59
+
60
+ .grid-config__footer {
61
+ padding-top: var(--ez-grid-config__footer--padding-top);
62
+ display: flex;
63
+ justify-content: flex-end;
64
+ width: 100%;
65
+ }
66
+
67
+ .hidden {
68
+ display: none;
69
+ }
70
+
71
+ .grid-config__main {
72
+ padding-right: var(--ez-grid-config__main--padding-right);
73
+ overflow-y: auto;
74
+ }
75
+
76
+ .tabselector-container {
77
+ padding: var(--ez-grid-config__tabselector-container--padding) 0;
78
+ }
79
+
80
+ .button-close {
81
+ padding-left: var(--ez-grid-config__button-close--padding-left);
82
+ }
83
+
84
+ .title-container {
85
+ display: flex;
86
+ justify-content: space-between;
87
+ align-items: center;
88
+ width: 359px;
89
+ }
90
+
91
+ .subtitle {
92
+ font-family: var(--ez-grid-config__subtitle--font-family);
93
+ font-size: var(--ez-grid-config__subtitle--font-size);
94
+ color: var(--text--primary);
95
+ }
96
+
97
+ .title {
98
+ display: flex;
99
+ margin: 0;
100
+ font-family: var(--ez-grid-config__title--font-family);
101
+ font-size: var(--title--large);
102
+ font-weight: var(--ez-grid-config__title--font-weight);
103
+ line-height: normal;
104
+ letter-spacing: 0em;
105
+ text-align: left;
106
+ color: var(--title--primary);
107
+ }
108
+
109
+ .grid-config__main::-webkit-scrollbar-track {
110
+ background-color: #f0f2f5;
111
+ }
112
+
113
+ .grid-config__main::-webkit-scrollbar-thumb {
114
+ background-color: var(--ez-grid-config__main__scrollbar--background-color);
115
+ border-radius: var(--ez-grid-config__main__scrollbar--border-radius);
116
+ }
117
+
118
+ .grid-config__main::-webkit-scrollbar {
119
+ background-color: #f0f2f5;
120
+ width: var(--ez-grid-config__scrollbar--width);
121
+ max-width: var(--ez-grid-config__scrollbar--width);
122
+ min-width: var(--ez-grid-config__scrollbar--width);
123
+ }
124
+ .group-name {
125
+ font-family: var(--ez-grid__group--font-family);
126
+ font-size: var(--ez-grid__group--font-size);
127
+ font-weight: var(--ez-grid__group--font-weight);
128
+ padding-bottom: var(--ez-grid__group--padding-bottom);
129
+ }
@@ -0,0 +1,10 @@
1
+
2
+ ez-combo-box{
3
+ width: 100px;
4
+ }
5
+
6
+ .grid-config-combo{
7
+ --ez-text-input--height: 28px;
8
+ --ez-text-input__input--background-color: #fff;
9
+ --ez-text-input__input--border-color: #dce0e8;
10
+ }
@@ -0,0 +1,176 @@
1
+ :host {
2
+ display: flex;
3
+ overflow: hidden;
4
+ position: relative;
5
+ /* @doc Define a cor do ícone. */
6
+ --ez-icon--color: var(--icon--color, #ffffff);
7
+ }
8
+
9
+ svg {
10
+ display: flex;
11
+ justify-content: center;
12
+ align-items: center;
13
+ fill: var(--ez-icon--color);
14
+ }
15
+
16
+ .x-small {
17
+ width: 12px;
18
+ height: 12px;
19
+ }
20
+
21
+ .small {
22
+ width: 16px;
23
+ height: 16px;
24
+ }
25
+
26
+ .medium {
27
+ width: 20px;
28
+ height: 20px;
29
+ }
30
+
31
+ .large {
32
+ width: 24px;
33
+ height: 24px;
34
+ }
35
+
36
+ .x-large {
37
+ width: 30px;
38
+ height: 30px;
39
+ }
40
+
41
+ [class^="ez-icon-"], [class*=" ez-icon-"] {
42
+ color: var(--ez-icon--color);
43
+ }
44
+
45
+ /*
46
+ START CSS GENERATED BY EZ-DESIGN ICONS, SEE MORE AT ez-design\scripts\fontsGenerator.js.
47
+ WHEN ADD NEW ICONS THIS CSS NEED TO BE UPDATED
48
+ */
49
+ [class^="ez-icon-"], [class*=" ez-icon-"] {
50
+ font-family: 'ez-icons' !important;
51
+ font-size: 16px;
52
+ font-style:normal;
53
+ -webkit-font-smoothing: antialiased;
54
+ -moz-osx-font-smoothing: grayscale;
55
+ }
56
+
57
+ .ez-icon-account-outline:before { content: "\ea01"; }
58
+ .ez-icon-account:before { content: "\ea02"; }
59
+ .ez-icon-alert-circle-inverted:before { content: "\ea03"; }
60
+ .ez-icon-alert-circle:before { content: "\ea04"; }
61
+ .ez-icon-alert-mail:before { content: "\ea05"; }
62
+ .ez-icon-alert-outline:before { content: "\ea06"; }
63
+ .ez-icon-alert-popup:before { content: "\ea07"; }
64
+ .ez-icon-apps:before { content: "\ea08"; }
65
+ .ez-icon-arrow_back:before { content: "\ea09"; }
66
+ .ez-icon-bell-inverted:before { content: "\ea0a"; }
67
+ .ez-icon-bell:before { content: "\ea0b"; }
68
+ .ez-icon-business-center:before { content: "\ea0c"; }
69
+ .ez-icon-calendar-text:before { content: "\ea0d"; }
70
+ .ez-icon-calendar:before { content: "\ea0e"; }
71
+ .ez-icon-check-circle-inverted:before { content: "\ea0f"; }
72
+ .ez-icon-check-circle:before { content: "\ea10"; }
73
+ .ez-icon-check:before { content: "\ea11"; }
74
+ .ez-icon-chevron-down:before { content: "\ea12"; }
75
+ .ez-icon-chevron-left:before { content: "\ea13"; }
76
+ .ez-icon-chevron-right:before { content: "\ea14"; }
77
+ .ez-icon-chevron-up:before { content: "\ea15"; }
78
+ .ez-icon-circle--medium:before { content: "\ea16"; }
79
+ .ez-icon-circle:before { content: "\ea17"; }
80
+ .ez-icon-clipboard:before { content: "\ea18"; }
81
+ .ez-icon-close-circle-inverted:before { content: "\ea19"; }
82
+ .ez-icon-close-circle:before { content: "\ea1a"; }
83
+ .ez-icon-close:before { content: "\ea1b"; }
84
+ .ez-icon-comment-inverted:before { content: "\ea1c"; }
85
+ .ez-icon-comment:before { content: "\ea1d"; }
86
+ .ez-icon-configuration:before { content: "\ea1e"; }
87
+ .ez-icon-copy:before { content: "\ea1f"; }
88
+ .ez-icon-crop:before { content: "\ea20"; }
89
+ .ez-icon-delete:before { content: "\ea21"; }
90
+ .ez-icon-description:before { content: "\ea22"; }
91
+ .ez-icon-dot-notification:before { content: "\ea23"; }
92
+ .ez-icon-dots-horizontal:before { content: "\ea24"; }
93
+ .ez-icon-dots-vertical:before { content: "\ea25"; }
94
+ .ez-icon-drag-indicator:before { content: "\ea26"; }
95
+ .ez-icon-edit-file:before { content: "\ea27"; }
96
+ .ez-icon-edit-table:before { content: "\ea28"; }
97
+ .ez-icon-edit-time:before { content: "\ea29"; }
98
+ .ez-icon-edit:before { content: "\ea2a"; }
99
+ .ez-icon-email-inverted:before { content: "\ea2b"; }
100
+ .ez-icon-email:before { content: "\ea2c"; }
101
+ .ez-icon-error-octagon:before { content: "\ea2d"; }
102
+ .ez-icon-expand:before { content: "\ea2e"; }
103
+ .ez-icon-eye-off:before { content: "\ea2f"; }
104
+ .ez-icon-eye:before { content: "\ea30"; }
105
+ .ez-icon-favorite:before { content: "\ea31"; }
106
+ .ez-icon-file-download:before { content: "\ea32"; }
107
+ .ez-icon-file-upload:before { content: "\ea33"; }
108
+ .ez-icon-filter:before { content: "\ea34"; }
109
+ .ez-icon-find-file:before { content: "\ea35"; }
110
+ .ez-icon-find-page:before { content: "\ea36"; }
111
+ .ez-icon-format-color-fill:before { content: "\ea37"; }
112
+ .ez-icon-help-circle-outline:before { content: "\ea38"; }
113
+ .ez-icon-help-inverted:before { content: "\ea39"; }
114
+ .ez-icon-help:before { content: "\ea3a"; }
115
+ .ez-icon-home:before { content: "\ea3b"; }
116
+ .ez-icon-language:before { content: "\ea3c"; }
117
+ .ez-icon-launch:before { content: "\ea3d"; }
118
+ .ez-icon-lightbulb:before { content: "\ea3e"; }
119
+ .ez-icon-list:before { content: "\ea3f"; }
120
+ .ez-icon-loading:before { content: "\ea40"; }
121
+ .ez-icon-lock-outline:before { content: "\ea41"; }
122
+ .ez-icon-lock:before { content: "\ea42"; }
123
+ .ez-icon-menu:before { content: "\ea43"; }
124
+ .ez-icon-minus-circle-inverted:before { content: "\ea44"; }
125
+ .ez-icon-minus:before { content: "\ea45"; }
126
+ .ez-icon-money-off:before { content: "\ea46"; }
127
+ .ez-icon-money:before { content: "\ea47"; }
128
+ .ez-icon-north-west:before { content: "\ea48"; }
129
+ .ez-icon-pause:before { content: "\ea49"; }
130
+ .ez-icon-payments:before { content: "\ea4a"; }
131
+ .ez-icon-play:before { content: "\ea4b"; }
132
+ .ez-icon-plus-circle-inverted:before { content: "\ea4c"; }
133
+ .ez-icon-plus-circle:before { content: "\ea4d"; }
134
+ .ez-icon-plus:before { content: "\ea4e"; }
135
+ .ez-icon-power:before { content: "\ea4f"; }
136
+ .ez-icon-push-pin:before { content: "\ea50"; }
137
+ .ez-icon-restore:before { content: "\ea51"; }
138
+ .ez-icon-return:before { content: "\ea52"; }
139
+ .ez-icon-rotate:before { content: "\ea53"; }
140
+ .ez-icon-save:before { content: "\ea54"; }
141
+ .ez-icon-search:before { content: "\ea55"; }
142
+ .ez-icon-settings-inverted:before { content: "\ea56"; }
143
+ .ez-icon-settings:before { content: "\ea57"; }
144
+ .ez-icon-share:before { content: "\ea58"; }
145
+ .ez-icon-shield:before { content: "\ea59"; }
146
+ .ez-icon-south-east:before { content: "\ea5a"; }
147
+ .ez-icon-success-circle:before { content: "\ea5b"; }
148
+ .ez-icon-sync:before { content: "\ea5c"; }
149
+ .ez-icon-table:before { content: "\ea5d"; }
150
+ .ez-icon-timer-outline:before { content: "\ea5e"; }
151
+ .ez-icon-user-circle:before { content: "\ea5f"; }
152
+ .ez-icon-warning-minus:before { content: "\ea60"; }
153
+ .ez-icon-warning-triangle:before { content: "\ea61"; }
154
+ /*
155
+ END CSS GENERATED BY EZ-DESIGN ICONS
156
+ */
157
+
158
+ .x-small--font {
159
+ font-size: 12px;
160
+ }
161
+
162
+ .small--font {
163
+ font-size: 16px;
164
+ }
165
+
166
+ .medium--font {
167
+ font-size: 20px;
168
+ }
169
+
170
+ .large--font {
171
+ font-size: 24px;
172
+ }
173
+
174
+ .x-large--font {
175
+ font-size: 30px;
176
+ }
@@ -0,0 +1,139 @@
1
+ :host {
2
+ /* dimensions */
3
+ /*@doc Define a altura do chip.*/
4
+ --ez-label-chip--height: 36px;
5
+
6
+ /* Label */
7
+ /*@doc Define o tamanho do label.*/
8
+ --ez-label-chip__label--font-size: var(--text--medium, 14px);
9
+ /*@doc Define a família da fonte do label.*/
10
+ --ez-label-chip__label--font-family: var(--font-pattern, Arial);
11
+ /*@doc Define o peso da fonte do label.*/
12
+ --ez-label-chip__label--font-weight: var(--text-weight--large, 600);
13
+ /*@doc Define o espaçamento do label.*/
14
+ --ez-label-chip__label--space--medium: var(--space--medium, 12px);
15
+ /*@doc Define a cor do texto e do ícone.*/
16
+ --ez-label-chip__label--title--primary: var(--title--primary, #919191);
17
+
18
+ /* Label Container */
19
+ /*@doc Define o raio da borda do container do chip.*/
20
+ --ez-label-chip__label__container--border-radius: var(--border--radius-large, 24px);
21
+ /*@doc Define o estilo da borda do container.*/
22
+ --ez-label-chip__label__container--border: 1px solid;
23
+ /*@doc Define a cor da borda do container.*/
24
+ --ez-label-chip__label__container--border-color-strokes: var(--color--strokes, #DCE0E8);
25
+ /*@doc Define a cor do texto, do ícone do label e do botão de remoção (quando o chip está ativo).*/
26
+ --ez-label-chip__label__container--color-primary: var(--color--primary, #008561);
27
+ /*@doc Define a cor da borda e do fundo quando o chip está desativado.*/
28
+ --ez-label-chip__label__container-color--disable-secondary: var(--color--disable-secondary, #F2F5F8);
29
+ /*@doc Define a cor de fundo do container quando ativo.*/
30
+ --ez-label-chip__label__container--background-color: #0085610F;
31
+ /*@doc Define a cor da borda do container quando ativo.*/
32
+ --ez-label-chip__label__container--border-color: #0085610F;
33
+ /*@doc Define a cor da borda do container quando o cursor está sobre ele.*/
34
+ --ez-label-chip__label__container--default--border-color--hover: var(--color--primary-600, #007a5a);
35
+ /*@doc Define a cor do fundo do container quando o cursor está sobre ele.*/
36
+ --ez-label-chip__label__container--default--background-color--hover: var(--color--primary-200, #f2faf8);
37
+ /*@doc Define a cor do texto e do ícone quando o chip está desabilitado.*/
38
+ --ez-label-chip__label__container--text--disabled: var(--text--disable, #AFB6C0);
39
+
40
+ /* Buttons */
41
+ /* @doc Contém o ícone do botão de fechamento. */
42
+ --ez-label-chip__btn__close--image: url('data:image/svg+xml;utf8,<svg width="8" height="8" viewBox="0 0 8 8" xmlns="http://www.w3.org/2000/svg"><path d="M 4.7098145,3.9968334 7.8535703,0.85318776 C 7.9473034,0.75946455 8,0.63233985 8,0.49978585 8,0.36723841 7.947304,0.24011361 7.8535703,0.14638378 7.7598354,0.05266059 7.6327257,6.48e-8 7.500152,6.48e-8 7.3676457,6.48e-8 7.2404691,0.0526608 7.1467354,0.14638378 L 4.00298,3.2900293 0.8591984,0.14638378 C 0.76546463,0.05266059 0.63834103,6.48e-8 0.50578123,6.48e-8 0.3732281,6.48e-8 0.24609783,0.05266059 0.15236397,0.14638378 0.05863012,0.24011361 0.00597395,0.36723841 0.00597395,0.49978585 c 0,0.132554 0.05265617,0.2596787 0.14639002,0.35340191 L 3.2961455,3.9968334 0.15236397,7.1411589 C 0.10466427,7.1872561 0.06663114,7.2424161 0.04046961,7.303371 0.01431473,7.3643212 5.6180845e-4,7.429943 1.6859246e-5,7.4962264 -5.2808998e-4,7.5625744 0.01214297,7.6283944 0.03729854,7.6897476 c 0.02514888,0.061416 0.06227604,0.1171794 0.1092096,0.1640783 0.0469402,0.046903 0.10274083,0.083936 0.16415749,0.1090508 0.0614166,0.025114 0.12721688,0.037703 0.19355667,0.037103 0.06634,-5.714e-4 0.13190027,-0.014457 0.19284393,-0.04064 0.0609507,-0.026246 0.11606474,-0.064351 0.16213217,-0.1120492 L 4.00298,4.7036374 7.1467354,7.8472967 c 0.093734,0.09373 0.2209103,0.1463572 0.3534166,0.1463572 0.1325737,0 0.2596834,-0.052623 0.3534183,-0.1463572 C 7.9473034,7.753567 8,7.6264624 8,7.493895 8,7.3613281 7.9473086,7.2342224 7.8535703,7.1404927 Z"/></svg>');
43
+ }
44
+
45
+ .btn-close {
46
+ align-items: flex-start;
47
+ display: flex;
48
+ outline: none;
49
+ border: none;
50
+ padding: 0px 0px 0px 6px;
51
+ background-color: unset;
52
+ cursor: pointer;
53
+ }
54
+
55
+ .btn-close::after {
56
+ content: '';
57
+ display: flex;
58
+ background-color: var(--ez-label-chip__label__container--color-primary);
59
+ width: 8px;
60
+ height: 8px;
61
+ -webkit-mask-image: var(--ez-label-chip__btn__close--image);
62
+ mask-image: var(--ez-label-chip__btn__close--image);
63
+ }
64
+
65
+ .label__container {
66
+ /*private*/
67
+ width: fit-content;
68
+ display: flex;
69
+ flex-wrap: wrap;
70
+ position: relative;
71
+ align-items: center;
72
+ background-color: #FFFFFF;
73
+ align-self: center;
74
+ color: var(--ez-label-chip__label--title--primary);
75
+ fill: var(--ez-label-chip__label--title--primary);
76
+ border: var(--ez-label-chip__label__container--border);
77
+ border-radius: var(--ez-label-chip__label__container--border-radius);
78
+ border-color: var(--ez-label-chip__label__container--border-color-strokes);
79
+ padding-right: var(--ez-label-chip__label--space--medium);
80
+ padding-left: var(--ez-label-chip__label--space--medium);
81
+ }
82
+
83
+ .label__container:hover {
84
+ border-color: var(--ez-label-chip__label__container--default--border-color--hover);
85
+ background-color: var(--ez-label-chip__label__container--default--background-color--hover);
86
+ }
87
+
88
+ .label__container--active {
89
+ /*private*/
90
+ width: fit-content;
91
+ display: flex;
92
+ flex-wrap: wrap;
93
+ position: relative;
94
+ align-items: center;
95
+ align-self: center;
96
+ border: var(--ez-label-chip__label__container--border);
97
+ border-radius: var(--ez-label-chip__label__container--border-radius);
98
+ padding-right: var(--ez-label-chip__label--space--medium);
99
+ padding-left: var(--ez-label-chip__label--space--medium);
100
+ fill: var(--ez-label-chip__label__container--color-primary);
101
+ color: var(--ez-label-chip__label__container--color-primary);
102
+ border-color: var(--ez-label-chip__label__container--border-color);
103
+ background-color: var(--ez-label-chip__label__container--background-color);
104
+ }
105
+
106
+
107
+ .label__container--disabled {
108
+ width: fit-content;
109
+ display: flex;
110
+ flex-wrap: wrap;
111
+ position: relative;
112
+ align-items: center;
113
+ align-self: center;
114
+ border: var(--ez-label-chip__label__container--border);
115
+ border-color: var(--ez-label-chip__label__container-color--disable-secondary);
116
+ border-radius: var(--ez-label-chip__label__container--border-radius);
117
+ padding-right: var(--ez-label-chip__label--space--medium);
118
+ padding-left: var(--ez-label-chip__label--space--medium);
119
+ fill: var(--ez-label-chip__label__container--text--disabled);
120
+ color: var(--ez-label-chip__label__container--text--disabled);
121
+ background-color: var(--ez-label-chip__label__container-color--disable-secondary);
122
+ }
123
+
124
+ label {
125
+ /*private*/
126
+ display: flex;
127
+ align-items: center;
128
+ font-weight: var(--ez-label-chip__label--font-weight);
129
+ cursor: pointer;
130
+ /*public*/
131
+ height: var(--ez-label-chip--height);
132
+ font-family: var(--ez-label-chip__label--font-family);
133
+ font-size: var(--ez-label-chip__label--font-size);
134
+ }
135
+
136
+ .label__icon {
137
+ display: flex;
138
+ cursor: pointer;
139
+ }