@sankhyalabs/sankhyablocks 1.1.22 → 1.1.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/ApplicationUtils-05b74ee9.js +39 -0
- package/dist/cjs/AssetsUtils-7e3c38f9.js +24 -0
- package/dist/cjs/CSSVarsUtils-75ca9c64.js +19 -0
- package/dist/cjs/ez-action-chip.cjs.entry.js +27 -0
- package/dist/cjs/ez-application.cjs.entry.js +26 -0
- package/dist/cjs/ez-button_4.cjs.entry.js +660 -0
- package/dist/cjs/ez-calendar.cjs.entry.js +223 -0
- package/dist/cjs/ez-collapsible-box.cjs.entry.js +47 -0
- package/dist/cjs/ez-combo-box.cjs.entry.js +278 -0
- package/dist/cjs/ez-date-input.cjs.entry.js +102 -0
- package/dist/cjs/ez-date-time-input.cjs.entry.js +145 -0
- package/dist/cjs/ez-dialog.cjs.entry.js +89 -0
- package/dist/cjs/ez-form.cjs.entry.js +463 -0
- package/dist/cjs/ez-grid.cjs.entry.js +647 -0
- package/dist/cjs/ez-icon.cjs.entry.js +41 -0
- package/dist/cjs/ez-label-chip.cjs.entry.js +104 -0
- package/dist/cjs/ez-modal_2.cjs.entry.js +316 -0
- package/dist/cjs/ez-number-input.cjs.entry.js +86 -0
- package/dist/cjs/ez-popover.cjs.entry.js +120 -0
- package/dist/cjs/ez-popup.cjs.entry.js +48 -0
- package/dist/cjs/ez-search.cjs.entry.js +64 -0
- package/dist/cjs/ez-tabselector.cjs.entry.js +198 -0
- package/dist/cjs/ez-text-area.cjs.entry.js +114 -0
- package/dist/cjs/ez-text-input.cjs.entry.js +201 -0
- package/dist/cjs/ez-time-input.cjs.entry.js +118 -0
- package/dist/cjs/ez-toast.cjs.entry.js +44 -0
- package/dist/cjs/ez-upload.cjs.entry.js +356 -0
- package/dist/cjs/index-682c98b2.js +1771 -0
- package/dist/cjs/loader.cjs.js +3 -3
- package/dist/cjs/sankhyablocks.cjs.js +3 -3
- package/dist/cjs/snk-application.cjs.entry.js +319 -1275
- package/dist/cjs/test-du.cjs.entry.js +76 -0
- package/dist/collection/collection-manifest.json +37 -2
- package/dist/collection/components/snk-application/snk-application.js +8 -4
- package/dist/collection/lib/http/data-fetcher/fetchers/dataunit-fetcher.js +16 -9
- package/dist/{collection/temp → components}/ApplicationUtils.js +37 -31
- package/dist/components/AssetsUtils.js +22 -0
- package/dist/components/CSSVarsUtils.js +17 -0
- package/dist/components/ez-action-chip.js +44 -0
- package/dist/components/ez-application.js +39 -0
- package/dist/components/ez-button.js +6 -0
- package/dist/components/ez-button2.js +105 -0
- package/dist/components/ez-calendar.js +6 -0
- package/dist/components/ez-calendar2.js +242 -0
- package/dist/components/ez-check.js +6 -0
- package/dist/components/ez-check2.js +94 -0
- package/dist/components/ez-collapsible-box.js +67 -0
- package/dist/components/ez-combo-box.js +6 -0
- package/dist/components/ez-combo-box2.js +311 -0
- package/dist/components/ez-date-input.js +135 -0
- package/dist/components/ez-date-time-input.js +179 -0
- package/dist/components/ez-dialog.js +124 -0
- package/dist/components/ez-form.js +6 -0
- package/dist/components/ez-form2.js +485 -0
- package/dist/components/ez-grid.js +738 -0
- package/dist/components/ez-icon.js +6 -0
- package/dist/components/ez-icon2.js +56 -0
- package/dist/components/ez-label-chip.js +125 -0
- package/dist/components/ez-list.js +6 -0
- package/dist/components/ez-list2.js +523 -0
- package/dist/components/ez-modal.js +6 -0
- package/dist/components/ez-modal2.js +82 -0
- package/dist/components/ez-number-input.js +115 -0
- package/dist/components/ez-popover.js +145 -0
- package/dist/components/ez-popup.js +67 -0
- package/dist/components/ez-search.js +100 -0
- package/dist/components/ez-tabselector.js +6 -0
- package/dist/components/ez-tabselector2.js +213 -0
- package/dist/components/ez-text-area.js +137 -0
- package/dist/components/ez-text-input.js +6 -0
- package/dist/components/ez-text-input2.js +223 -0
- package/dist/components/ez-time-input.js +153 -0
- package/dist/components/ez-toast.js +64 -0
- package/dist/components/ez-upload.js +382 -0
- package/dist/components/grid-config.js +6 -0
- package/dist/components/grid-config2.js +318 -0
- package/dist/components/select-box.js +6 -0
- package/dist/components/select-box2.js +47 -0
- package/dist/components/snk-application.js +310 -1266
- package/dist/components/test-du.js +101 -0
- package/dist/esm/ApplicationUtils-e0b6d857.js +37 -0
- package/dist/esm/AssetsUtils-6e6624dc.js +22 -0
- package/dist/esm/CSSVarsUtils-0787c3f3.js +17 -0
- package/dist/esm/ez-action-chip.entry.js +23 -0
- package/dist/esm/ez-application.entry.js +22 -0
- package/dist/esm/ez-button_4.entry.js +653 -0
- package/dist/esm/ez-calendar.entry.js +219 -0
- package/dist/esm/ez-collapsible-box.entry.js +43 -0
- package/dist/esm/ez-combo-box.entry.js +274 -0
- package/dist/esm/ez-date-input.entry.js +98 -0
- package/dist/esm/ez-date-time-input.entry.js +141 -0
- package/dist/esm/ez-dialog.entry.js +85 -0
- package/dist/esm/ez-form.entry.js +459 -0
- package/dist/esm/ez-grid.entry.js +643 -0
- package/dist/esm/ez-icon.entry.js +37 -0
- package/dist/esm/ez-label-chip.entry.js +100 -0
- package/dist/esm/ez-modal_2.entry.js +311 -0
- package/dist/esm/ez-number-input.entry.js +82 -0
- package/dist/esm/ez-popover.entry.js +116 -0
- package/dist/esm/ez-popup.entry.js +44 -0
- package/dist/esm/ez-search.entry.js +60 -0
- package/dist/esm/ez-tabselector.entry.js +194 -0
- package/dist/esm/ez-text-area.entry.js +110 -0
- package/dist/esm/ez-text-input.entry.js +197 -0
- package/dist/esm/ez-time-input.entry.js +114 -0
- package/dist/esm/ez-toast.entry.js +40 -0
- package/dist/esm/ez-upload.entry.js +352 -0
- package/dist/esm/index-35088a3f.js +1740 -0
- package/dist/esm/loader.js +3 -3
- package/dist/esm/sankhyablocks.js +3 -3
- package/dist/esm/snk-application.entry.js +311 -1267
- package/dist/esm/test-du.entry.js +72 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-action-chip/ez-action-chip.css +67 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-application/ez-application.css +3 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-button/ez-button.css +180 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-calendar/ez-calendar.css +319 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-check/ez-check.css +327 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-collapsible-box/ez-collapsible-box.css +162 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-combo-box/ez-combo-box.css +217 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-date-input/ez-date-input.css +49 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-date-time-input/ez-date-time-input.css +44 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-dialog/ez-dialog.css +527 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-form/ez-form.css +5 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-grid/ez-grid.css +31 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-grid/subcomponents/gridconfig/grid-config.css +129 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-grid/subcomponents/select-box/select-box.css +10 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-icon/ez-icon.css +176 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-label-chip/ez-label-chip.css +139 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-list/ez-list.css +335 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-modal/ez-modal.css +358 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-number-input/ez-number-input.css +4 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-popover/ez-popover.css +44 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-popup/ez-popup.css +405 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-search/ez-search.css +3 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-tabselector/ez-tabselector.css +138 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-text-area/ez-text-area.css +165 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-text-input/ez-text-input.css +196 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-time-input/ez-time-input.css +10 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-toast/ez-toast.css +127 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/ez-upload/ez-upload.css +568 -0
- package/dist/node_modules/@sankhyalabs/ezui/dist/collection/components/test-du/test-du.css +3 -0
- package/dist/sankhyablocks/p-0183d259.entry.js +1 -0
- package/dist/sankhyablocks/p-01f23a70.entry.js +1 -0
- package/dist/sankhyablocks/p-07c32f68.entry.js +1 -0
- package/dist/sankhyablocks/p-0f90499d.entry.js +1 -0
- package/dist/sankhyablocks/p-105724a3.entry.js +1 -0
- package/dist/sankhyablocks/p-2ac02d48.entry.js +1 -0
- package/dist/sankhyablocks/p-35364a97.entry.js +1 -0
- package/dist/sankhyablocks/p-3f6aa9a7.entry.js +1 -0
- package/dist/sankhyablocks/p-5f9af495.entry.js +1 -0
- package/dist/sankhyablocks/p-60967cf0.js +1 -0
- package/dist/sankhyablocks/p-6ce33b60.entry.js +57 -0
- package/dist/sankhyablocks/p-70ad6c16.entry.js +1 -0
- package/dist/sankhyablocks/p-710bfffe.entry.js +1 -0
- package/dist/sankhyablocks/p-735440c1.entry.js +1 -0
- package/dist/sankhyablocks/p-811b4b9d.js +1 -0
- package/dist/sankhyablocks/p-813fe4f7.js +1 -0
- package/dist/sankhyablocks/p-85a9446b.js +2 -0
- package/dist/sankhyablocks/p-89a1100f.entry.js +1 -0
- package/dist/sankhyablocks/p-8b543003.entry.js +1 -0
- package/dist/sankhyablocks/p-9750632b.entry.js +1 -0
- package/dist/sankhyablocks/p-a96272f7.entry.js +1 -0
- package/dist/sankhyablocks/p-ac8842e5.entry.js +1 -0
- package/dist/sankhyablocks/p-ba64cc41.entry.js +1 -0
- package/dist/sankhyablocks/p-c1ede043.entry.js +1 -0
- package/dist/sankhyablocks/p-d90ebb85.entry.js +1 -0
- package/dist/sankhyablocks/p-e17dfaae.entry.js +1 -0
- package/dist/sankhyablocks/p-e5355a29.entry.js +1 -0
- package/dist/sankhyablocks/p-ef04b633.entry.js +1 -0
- package/dist/sankhyablocks/p-f6db07fb.entry.js +1 -0
- package/dist/sankhyablocks/p-fcd9bd92.entry.js +1 -0
- package/dist/sankhyablocks/sankhyablocks.esm.js +1 -1
- package/dist/types/components/snk-application/snk-application.d.ts +1 -1
- package/dist/types/components.d.ts +7 -3
- package/dist/types/lib/http/data-fetcher/fetchers/dataunit-fetcher.d.ts +1 -0
- package/package.json +12 -7
- package/react/components.d.ts +29 -0
- package/react/components.js +29 -0
- package/react/components.js.map +1 -1
- package/dist/cjs/index-20a7d705.js +0 -733
- package/dist/esm/index-8d3572c4.js +0 -707
- package/dist/sankhyablocks/p-5fa264b9.js +0 -1
- package/dist/sankhyablocks/p-fe95f2c4.entry.js +0 -57
- 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,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
|
+
}
|