@sankhyalabs/sankhyablocks 1.4.0-beta.7 → 1.4.0-beta.9
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/{SnkMessageBuilder-b54dfb89.js → SnkMessageBuilder-6c2f7bcd.js} +87 -11
- package/dist/cjs/_commonjsHelpers-537d719a.js +20 -0
- package/dist/cjs/configurableElementsStorage-93459c72.js +20 -0
- package/dist/cjs/constants-9056ca9e.js +84 -0
- package/dist/cjs/draggable.bundle-82a25c06.js +6886 -0
- package/dist/cjs/form-config-fetcher-2de7c16a.js +6895 -0
- package/dist/cjs/{index-6fcf07f3.js → index-20e8b68a.js} +50 -2
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/cjs/sankhyablocks.cjs.js +2 -2
- package/dist/cjs/snk-application.cjs.entry.js +209 -6976
- package/dist/cjs/snk-config-modal.cjs.entry.js +62 -0
- package/dist/cjs/snk-config-options.cjs.entry.js +230 -0
- package/dist/cjs/{snk-filter-bar_5.cjs.entry.js → snk-configurator_6.cjs.entry.js} +194 -7
- package/dist/cjs/snk-crud.cjs.entry.js +13 -11
- package/dist/cjs/snk-data-unit.cjs.entry.js +2 -2
- package/dist/cjs/snk-field-config_2.cjs.entry.js +135 -0
- package/dist/cjs/snk-filter-binary-select.cjs.entry.js +1 -1
- package/dist/cjs/snk-filter-detail.cjs.entry.js +1 -1
- package/dist/cjs/snk-filter-multi-select.cjs.entry.js +1 -1
- package/dist/cjs/snk-filter-number.cjs.entry.js +1 -1
- package/dist/cjs/snk-filter-period.cjs.entry.js +1 -1
- package/dist/cjs/snk-filter-personalized.cjs.entry.js +3 -2
- package/dist/cjs/snk-filter-search.cjs.entry.js +1 -1
- package/dist/cjs/snk-filter-text.cjs.entry.js +1 -1
- package/dist/cjs/snk-form-config.cjs.entry.js +957 -0
- package/dist/cjs/snk-form.cjs.entry.js +146 -0
- package/dist/cjs/snk-pesquisa.cjs.entry.js +1 -1
- package/dist/cjs/snk-tab-config.cjs.entry.js +321 -0
- package/dist/cjs/{taskbar-elements-aedfeae6.js → taskbar-elements-9a4b1e19.js} +10 -6
- package/dist/cjs/taskbar-processor-6bd0d35c.js +47 -0
- package/dist/cjs/teste-pesquisa.cjs.entry.js +1 -1
- package/dist/collection/collection-manifest.json +27 -1
- package/dist/collection/components/snk-application/snk-application.js +144 -23
- package/dist/collection/components/snk-configurator/snk-configurator.js +261 -0
- package/dist/collection/components/snk-configurator/subcomponents/configModalProvider/configurableElementsStorage.js +16 -0
- package/dist/collection/components/snk-configurator/subcomponents/snk-config-modal/snk-config-modal.css +122 -0
- package/dist/collection/components/snk-configurator/subcomponents/snk-config-modal/snk-config-modal.js +137 -0
- package/dist/collection/components/snk-crud/snk-crud.js +15 -13
- package/dist/collection/components/snk-filter-bar/filter-item/editors/snk-filter-personalized.js +35 -4
- package/dist/collection/components/snk-filter-bar/filter-item/editors/snk-filter-search.js +3 -3
- package/dist/collection/components/snk-filter-bar/filter-modal/snk-filter-modal.js +2 -1
- package/dist/collection/components/snk-filter-bar/snk-filter-bar.css +1 -1
- package/dist/collection/components/snk-form/snk-form.css +4 -0
- package/dist/collection/components/snk-form/snk-form.js +108 -30
- package/dist/collection/components/snk-form/subcomponents/snk-config-options/snk-config-options.css +9 -0
- package/dist/collection/components/snk-form/subcomponents/snk-config-options/snk-config-options.js +315 -0
- package/dist/collection/components/snk-form/subcomponents/snk-field-config/snk-field-config.css +164 -0
- package/dist/collection/components/snk-form/subcomponents/snk-field-config/snk-field-config.js +140 -0
- package/dist/collection/components/snk-form/subcomponents/snk-form-config/snk-form-config.css +185 -0
- package/dist/collection/components/snk-form/subcomponents/snk-form-config/snk-form-config.js +1062 -0
- package/dist/collection/components/snk-form/subcomponents/snk-tab-config/snk-tab-config.css +272 -0
- package/dist/collection/components/snk-form/subcomponents/snk-tab-config/snk-tab-config.js +476 -0
- package/dist/collection/components/snk-grid/snk-grid.js +92 -22
- package/dist/collection/components/snk-taskbar/elements/taskbar-elements.js +9 -5
- package/dist/collection/components/snk-taskbar/snk-taskbar.js +35 -3
- package/dist/collection/lib/http/data-fetcher/fetchers/form-config-fetcher.js +106 -3
- package/dist/collection/lib/http/data-fetcher/fetchers/resource-fetcher.js +9 -1
- package/dist/collection/lib/message/SnkMessageBuilder.js +8 -1
- package/dist/collection/lib/message/resources/snk-configurator.msg.js +11 -0
- package/dist/collection/lib/message/resources/snk-form.msg.js +59 -2
- package/dist/collection/lib/message/resources/snk-taskbar.msg.js +1 -1
- package/dist/collection/lib/utils/constants.js +72 -0
- package/dist/components/SnkMessageBuilder.js +87 -11
- package/dist/components/_commonjsHelpers.js +17 -0
- package/dist/components/constants.js +74 -0
- package/dist/components/form-config-fetcher.js +6889 -0
- package/dist/components/index.d.ts +6 -0
- package/dist/components/index.js +6 -0
- package/dist/components/snk-application2.js +221 -6985
- package/dist/components/snk-config-modal.d.ts +11 -0
- package/dist/components/snk-config-modal.js +6 -0
- package/dist/components/snk-config-modal2.js +91 -0
- package/dist/components/snk-config-options.d.ts +11 -0
- package/dist/components/snk-config-options.js +6 -0
- package/dist/components/snk-config-options2.js +245 -0
- package/dist/components/snk-configurator.d.ts +11 -0
- package/dist/components/snk-configurator.js +6 -0
- package/dist/components/snk-configurator2.js +212 -0
- package/dist/components/snk-crud.js +62 -25
- package/dist/components/snk-field-config.d.ts +11 -0
- package/dist/components/snk-field-config.js +6 -0
- package/dist/components/snk-field-config2.js +70 -0
- package/dist/components/snk-filter-bar2.js +1 -1
- package/dist/components/snk-filter-modal2.js +2 -1
- package/dist/components/snk-filter-personalized.js +4 -1
- package/dist/components/snk-form-config.d.ts +11 -0
- package/dist/components/snk-form-config.js +6 -0
- package/dist/components/snk-form-config2.js +996 -0
- package/dist/components/snk-form2.js +79 -29
- package/dist/components/snk-grid2.js +43 -24
- package/dist/components/snk-tab-config.d.ts +11 -0
- package/dist/components/snk-tab-config.js +6 -0
- package/dist/components/snk-tab-config2.js +7220 -0
- package/dist/components/snk-taskbar2.js +27 -9
- package/dist/esm/{SnkMessageBuilder-d440381c.js → SnkMessageBuilder-5792c260.js} +87 -11
- package/dist/esm/_commonjsHelpers-9943807e.js +17 -0
- package/dist/esm/configurableElementsStorage-cdc144b5.js +18 -0
- package/dist/esm/constants-c6039d3d.js +74 -0
- package/dist/esm/draggable.bundle-41d56f06.js +6884 -0
- package/dist/esm/form-config-fetcher-96c6c2dc.js +6889 -0
- package/dist/esm/{index-81dda3cf.js → index-e4121713.js} +50 -3
- package/dist/esm/loader.js +2 -2
- package/dist/esm/sankhyablocks.js +2 -2
- package/dist/esm/snk-application.entry.js +220 -6987
- package/dist/esm/snk-config-modal.entry.js +58 -0
- package/dist/esm/snk-config-options.entry.js +226 -0
- package/dist/esm/{snk-filter-bar_5.entry.js → snk-configurator_6.entry.js} +195 -9
- package/dist/esm/snk-crud.entry.js +13 -11
- package/dist/esm/snk-data-unit.entry.js +2 -2
- package/dist/esm/snk-field-config_2.entry.js +130 -0
- package/dist/esm/snk-filter-binary-select.entry.js +1 -1
- package/dist/esm/snk-filter-detail.entry.js +1 -1
- package/dist/esm/snk-filter-multi-select.entry.js +1 -1
- package/dist/esm/snk-filter-number.entry.js +1 -1
- package/dist/esm/snk-filter-period.entry.js +1 -1
- package/dist/esm/snk-filter-personalized.entry.js +3 -2
- package/dist/esm/snk-filter-search.entry.js +1 -1
- package/dist/esm/snk-filter-text.entry.js +1 -1
- package/dist/esm/snk-form-config.entry.js +953 -0
- package/dist/esm/snk-form.entry.js +142 -0
- package/dist/esm/snk-pesquisa.entry.js +1 -1
- package/dist/esm/snk-tab-config.entry.js +317 -0
- package/dist/esm/{taskbar-elements-38eb5d51.js → taskbar-elements-e2ed0536.js} +10 -6
- package/dist/esm/taskbar-processor-aa6772c9.js +45 -0
- package/dist/esm/teste-pesquisa.entry.js +1 -1
- package/dist/sankhyablocks/{p-4574a955.entry.js → p-029ae4e4.entry.js} +1 -1
- package/dist/sankhyablocks/p-03f9c407.js +1 -0
- package/dist/sankhyablocks/p-112455b1.js +1 -0
- package/dist/sankhyablocks/p-12ad2a19.entry.js +1 -0
- package/dist/sankhyablocks/p-1feabfc7.entry.js +1 -0
- package/dist/sankhyablocks/p-21c8929b.js +1 -0
- package/dist/sankhyablocks/p-2284c850.entry.js +1 -0
- package/dist/sankhyablocks/p-2b891c4a.entry.js +1 -0
- package/dist/sankhyablocks/{p-0ea25487.entry.js → p-2dc76d79.entry.js} +1 -1
- package/dist/sankhyablocks/p-361299e8.js +26 -0
- package/dist/sankhyablocks/p-366aa0f5.entry.js +1 -0
- package/dist/sankhyablocks/p-36d2d9cf.entry.js +75 -0
- package/dist/sankhyablocks/{p-6386d720.entry.js → p-3a276f3d.entry.js} +1 -1
- package/dist/sankhyablocks/{p-0352c0e2.entry.js → p-44ce5b90.entry.js} +1 -1
- package/dist/sankhyablocks/{p-aecf3e0a.entry.js → p-6988f4a6.entry.js} +1 -1
- package/dist/sankhyablocks/p-776ff4d1.entry.js +1 -0
- package/dist/sankhyablocks/p-7b4a4a50.entry.js +1 -0
- package/dist/sankhyablocks/p-9ba3df4c.js +2 -0
- package/dist/sankhyablocks/{p-40b27004.entry.js → p-9dc4426d.entry.js} +1 -1
- package/dist/sankhyablocks/p-a17a4fca.entry.js +1 -0
- package/dist/sankhyablocks/p-a5b26df2.js +1 -0
- package/dist/sankhyablocks/p-b6d6b172.js +1 -0
- package/dist/sankhyablocks/{p-5bdb8452.entry.js → p-cc4bef9f.entry.js} +1 -1
- package/dist/sankhyablocks/{p-2e49afef.entry.js → p-d1ac09c9.entry.js} +1 -1
- package/dist/sankhyablocks/p-d50651a3.js +1 -0
- package/dist/sankhyablocks/p-d9fbb26f.js +1 -0
- package/dist/sankhyablocks/{p-49580cdd.entry.js → p-deb1f523.entry.js} +1 -1
- package/dist/sankhyablocks/p-e871aa92.entry.js +1 -0
- package/dist/sankhyablocks/{p-ba426ea9.entry.js → p-e9beab79.entry.js} +1 -1
- package/dist/sankhyablocks/sankhyablocks.esm.js +1 -1
- package/dist/types/components/snk-application/snk-application.d.ts +29 -14
- package/dist/types/components/snk-configurator/snk-configurator.d.ts +46 -0
- package/dist/types/components/snk-configurator/subcomponents/configModalProvider/configurableElementsStorage.d.ts +8 -0
- package/dist/types/components/snk-configurator/subcomponents/snk-config-modal/snk-config-modal.d.ts +38 -0
- package/dist/types/components/snk-crud/snk-crud.d.ts +50 -0
- package/dist/types/components/snk-data-unit/snk-data-unit.d.ts +92 -0
- package/dist/types/components/snk-filter-bar/filter-item/editors/snk-filter-personalized.d.ts +8 -6
- package/dist/types/components/snk-filter-bar/filter-item/editors/snk-filter-search.d.ts +3 -3
- package/dist/types/components/snk-filter-bar/filter-item/snk-filter-item.d.ts +40 -0
- package/dist/types/components/snk-filter-bar/snk-filter-bar.d.ts +65 -0
- package/dist/types/components/snk-form/snk-form.d.ts +71 -0
- package/dist/types/components/snk-form/subcomponents/snk-config-options/snk-config-options.d.ts +51 -0
- package/dist/types/components/snk-form/subcomponents/snk-field-config/snk-field-config.d.ts +32 -0
- package/dist/types/components/snk-form/subcomponents/snk-form-config/snk-form-config.d.ts +139 -0
- package/dist/types/components/snk-form/subcomponents/snk-tab-config/snk-tab-config.d.ts +97 -0
- package/dist/types/components/snk-grid/snk-grid.d.ts +59 -0
- package/dist/types/components/snk-taskbar/elements/taskbar-elements.d.ts +6 -5
- package/dist/types/components/snk-taskbar/snk-taskbar.d.ts +11 -3
- package/dist/types/components.d.ts +358 -13
- package/dist/types/lib/http/data-fetcher/fetchers/form-config-fetcher.d.ts +21 -3
- package/dist/types/lib/http/data-fetcher/fetchers/resource-fetcher.d.ts +1 -0
- package/dist/types/lib/message/resources/snk-configurator.msg.d.ts +2 -0
- package/dist/types/lib/message/resources/snk-form.msg.d.ts +5 -2
- package/dist/types/lib/utils/constants.d.ts +76 -0
- package/dist/types/lib/utils/pesquisa.d.ts +2 -1
- package/package.json +4 -3
- package/react/components.d.ts +6 -0
- package/react/components.js +6 -0
- package/react/components.js.map +1 -1
- package/dist/cjs/snk-form_2.cjs.entry.js +0 -247
- package/dist/esm/snk-form_2.entry.js +0 -242
- package/dist/sankhyablocks/p-21e940aa.entry.js +0 -1
- package/dist/sankhyablocks/p-2eea7eea.js +0 -1
- package/dist/sankhyablocks/p-42036db1.entry.js +0 -84
- package/dist/sankhyablocks/p-77216252.entry.js +0 -1
- package/dist/sankhyablocks/p-86f15ffe.js +0 -1
- package/dist/sankhyablocks/p-97009a2c.entry.js +0 -1
- package/dist/sankhyablocks/p-a14c49db.entry.js +0 -1
- package/dist/sankhyablocks/p-fac2b6a9.js +0 -2
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
@keyframes activate {
|
|
2
|
+
0% {
|
|
3
|
+
clip-path: inset(calc(100% - 3px) 50% 0px 50%);
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
100% {
|
|
7
|
+
clip-path: inset(calc(100% - 3px) 0px 0px 0px);
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
:host {
|
|
12
|
+
/*@doc Contém o ícone de voltar para a aba anterior.*/
|
|
13
|
+
--snk-tab-config--backward-icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="16px" width="10px"><path d="M 9.7808475,13.860393 3.9204526,8.0000004 9.7808475,2.0624965 7.9301965,0.28895552 0.21915255,8.0000004 7.9301965,15.711044 Z"/></svg>');
|
|
14
|
+
/*@doc Contém o ícone de avançar para a aba posterior.*/
|
|
15
|
+
--snk-tab-config--forward-icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="16px" width="10px"><path d="M 0.21915251,13.860393 6.0795475,8.0000007 0.21915251,2.0624968 2.0698036,0.28895588 9.7808475,8.0000007 2.0698036,15.711044 Z"/></svg>');
|
|
16
|
+
|
|
17
|
+
display: flex;
|
|
18
|
+
position: relative;
|
|
19
|
+
width: 100%;
|
|
20
|
+
overflow: hidden;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.tab-config__scroll {
|
|
24
|
+
display: flex;
|
|
25
|
+
width: 100%;
|
|
26
|
+
scroll-behavior: smooth;
|
|
27
|
+
overflow-x: auto;
|
|
28
|
+
scrollbar-width: none;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.tab-config__scroll--start-hidden {
|
|
32
|
+
-webkit-mask-image: linear-gradient(90deg, transparent 20px, #000 48px);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.tab-config__scroll--middle {
|
|
36
|
+
-webkit-mask-image: linear-gradient(90deg, transparent 20px, #000 48px, #000 calc(100% - 48px), transparent calc(100% - 20px));
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.tab-config__scroll--end-hidden {
|
|
40
|
+
-webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 48px), transparent calc(100% - 20px));
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.tab-config__lower-bar {
|
|
44
|
+
position: absolute;
|
|
45
|
+
left: 0%;
|
|
46
|
+
right: 0%;
|
|
47
|
+
top: 91%;
|
|
48
|
+
bottom: 0%;
|
|
49
|
+
border-radius: 2px;
|
|
50
|
+
|
|
51
|
+
/*public*/
|
|
52
|
+
background: var(--color--disable-primary);
|
|
53
|
+
border: 2px solid var(--color--disable-primary)
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.tab-config__tab {
|
|
57
|
+
display: flex;
|
|
58
|
+
border: none;
|
|
59
|
+
background-color: unset;
|
|
60
|
+
cursor: pointer;
|
|
61
|
+
align-items: center;
|
|
62
|
+
justify-content: center;
|
|
63
|
+
min-width: fit-content;
|
|
64
|
+
|
|
65
|
+
/*public*/
|
|
66
|
+
color: var(--text--primary, #626e82);
|
|
67
|
+
font-family: var(--font-pattern, "Sora, Algerian");
|
|
68
|
+
font-size: var(--title--small, 14px);
|
|
69
|
+
padding: var(--space--small, 6px) var(--space--medium, 12px);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.tab-config__tab:focus,
|
|
73
|
+
.tab-config__forward-button,
|
|
74
|
+
.tab-config__backward-button {
|
|
75
|
+
outline: none;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.tab-config__tab--is-active {
|
|
79
|
+
position: relative;
|
|
80
|
+
|
|
81
|
+
/*public*/
|
|
82
|
+
color: var(--color--primary, #008561);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.tab-config__tab:hover {
|
|
86
|
+
/*public*/
|
|
87
|
+
color: var(--color--secondary, #383c45);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.tab-config__tab--is-active:hover {
|
|
91
|
+
/*public*/
|
|
92
|
+
color: var(--color--primary, #008561);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.tab-config__tab--is-active::after {
|
|
96
|
+
content: "";
|
|
97
|
+
position: absolute;
|
|
98
|
+
width: 100%;
|
|
99
|
+
height: 100%;
|
|
100
|
+
background-color: var(--color--primary, #008561);
|
|
101
|
+
clip-path: inset(calc(100% - 3px) 0px 0px 0px);
|
|
102
|
+
animation: activate 0.25s ease-in-out;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.tab-config__tab--is-focused {
|
|
106
|
+
/*public*/
|
|
107
|
+
border: 1px dashed var(--color--primary, #000000c5);
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.tab-config__tab-label {
|
|
111
|
+
overflow: hidden;
|
|
112
|
+
white-space: nowrap;
|
|
113
|
+
text-overflow: ellipsis;
|
|
114
|
+
|
|
115
|
+
/*public*/
|
|
116
|
+
text-shadow: var(--text-shadow);
|
|
117
|
+
margin-bottom: var(--space--extra-small, 3px);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.tab-config__forward-button,
|
|
121
|
+
.tab-config__backward-button{
|
|
122
|
+
position: absolute;
|
|
123
|
+
z-index: 1;
|
|
124
|
+
display: flex;
|
|
125
|
+
box-sizing: border-box;
|
|
126
|
+
padding: 0px;
|
|
127
|
+
top: 0px;
|
|
128
|
+
right: 0px;
|
|
129
|
+
width: 16px;
|
|
130
|
+
height: 100%;
|
|
131
|
+
border: none;
|
|
132
|
+
background-color: unset;
|
|
133
|
+
cursor: pointer;
|
|
134
|
+
justify-content: center;
|
|
135
|
+
align-items: center;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.tab-config__new-button {
|
|
139
|
+
position: absolute;
|
|
140
|
+
z-index: 1;
|
|
141
|
+
display: flex;
|
|
142
|
+
box-sizing: border-box;
|
|
143
|
+
padding: 0px;
|
|
144
|
+
top: 0px;
|
|
145
|
+
right: 0px;
|
|
146
|
+
height: 100%;
|
|
147
|
+
border: none;
|
|
148
|
+
background-color: unset;
|
|
149
|
+
cursor: pointer;
|
|
150
|
+
justify-content: center;
|
|
151
|
+
align-items: center;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.tab-config__new-button ez-icon {
|
|
155
|
+
--ez-icon--color: var(--color--secondary-700, #1C1D22);
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.tab-config__backward-button {
|
|
159
|
+
left: 0px;
|
|
160
|
+
box-shadow: 10px 10px 5px 5px white;
|
|
161
|
+
background: white;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.tab-config__forward-button {
|
|
165
|
+
box-shadow: 10px 10px 5px 20px white;
|
|
166
|
+
background: white;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.tab-config__forward-button::after,
|
|
170
|
+
.tab-config__backward-button::after {
|
|
171
|
+
content: '';
|
|
172
|
+
display: flex;
|
|
173
|
+
background-color: var(--text--primary, #008561);
|
|
174
|
+
width: 10px;
|
|
175
|
+
height: 16px;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.tab-config__forward-button::after {
|
|
179
|
+
/*public*/
|
|
180
|
+
-webkit-mask-image: var(--snk-tab-config--forward-icon);
|
|
181
|
+
mask-image: var(--snk-tab-config--forward-icon);
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.tab-config__backward-button::after {
|
|
185
|
+
/*public*/
|
|
186
|
+
-webkit-mask-image: var(--snk-tab-config--backward-icon);
|
|
187
|
+
mask-image: var(--snk-tab-config--backward-icon);
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.tab-config__forward-button:hover::after,
|
|
191
|
+
.tab-config__backward-button:hover::after {
|
|
192
|
+
/*public*/
|
|
193
|
+
background-color: var(--color--primary, #4e4e4e);
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.tab-config__new-button:hover ez-icon {
|
|
197
|
+
--ez-icon--color: var(--color--primary, #4e4e4e);
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.tab-config__hidden {
|
|
201
|
+
display: none;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.tab-config__scroll::-webkit-scrollbar {
|
|
205
|
+
display: none;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.tab-config__left-icon {
|
|
209
|
+
/*public*/
|
|
210
|
+
padding-right: var(--space--small);
|
|
211
|
+
--ez-icon--color: var(--text--disable);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.tab-config__left-icon--eye-off {
|
|
215
|
+
/*public*/
|
|
216
|
+
--ez-icon--color: var(--text--disable, #AFB6C0);
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.tab-config__right-icon {
|
|
220
|
+
visibility: hidden;
|
|
221
|
+
|
|
222
|
+
/*public*/
|
|
223
|
+
padding-left: var(--space--small);
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.tab-config__tab:hover .tab-config__right-icon {
|
|
227
|
+
visibility: visible;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.tab-config__tab--is-active .tab-config__right-icon{
|
|
231
|
+
visibility: visible;
|
|
232
|
+
|
|
233
|
+
/*public*/
|
|
234
|
+
--ez-icon--color: var(--color--primary);
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.tab-config__tab:hover .tab-config__right-icon{
|
|
238
|
+
/*public*/
|
|
239
|
+
--ez-icon--color: var(--color--secondary, #383c45);
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.tab-config__tab--is-active:hover .tab-config__right-icon{
|
|
243
|
+
/*public*/
|
|
244
|
+
--ez-icon--color: var(--color--primary);
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.tab-config__actions-button {
|
|
248
|
+
--ez-actions-button__btn-action--min-width: 100px;
|
|
249
|
+
visibility: hidden;
|
|
250
|
+
opacity: 0;
|
|
251
|
+
transition:visibility 1s linear,opacity 0.3s linear;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.tab-config__tab:hover .tab-config__actions-button {
|
|
255
|
+
visibility: visible;
|
|
256
|
+
opacity: 1;
|
|
257
|
+
transition: visibility 0.2s linear, opacity 0.10s linear;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
[data-draggable-element] {
|
|
261
|
+
cursor: grab;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.tab-config__tab-label-disabled {
|
|
265
|
+
/*public*/
|
|
266
|
+
color: var(--text--disable, #AFB6C0);
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.tab-config__slot {
|
|
270
|
+
/*public*/
|
|
271
|
+
margin-left: var(--space--small, 6px);
|
|
272
|
+
}
|