@webitel/ui-sdk 23.12.111 → 23.12.113
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/ui-sdk.css +1 -1
- package/dist/ui-sdk.mjs +4 -4
- package/dist/ui-sdk.umd.js +3 -3
- package/package.json +1 -1
- package/src/components/wt-input/wt-input.vue +0 -14
- package/src/components/wt-table/_variables.scss +1 -0
- package/src/components/wt-table/wt-table.vue +1 -1
- package/src/components/wt-time-input/wt-time-input.vue +0 -14
package/package.json
CHANGED
|
@@ -298,20 +298,6 @@ onMounted(() => {
|
|
|
298
298
|
border-radius: var(--border-radius);
|
|
299
299
|
background: transparent;
|
|
300
300
|
|
|
301
|
-
// disable arrows
|
|
302
|
-
/* Chrome, Safari, Edge, Opera */
|
|
303
|
-
&::-webkit-outer-spin-button,
|
|
304
|
-
&::-webkit-inner-spin-button {
|
|
305
|
-
-webkit-appearance: none;
|
|
306
|
-
margin: 0;
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
// disable arrows
|
|
310
|
-
/* Firefox */
|
|
311
|
-
&[type=number] {
|
|
312
|
-
-moz-appearance: textfield;
|
|
313
|
-
}
|
|
314
|
-
|
|
315
301
|
.wt-input--invalid &,
|
|
316
302
|
.wt-input--invalid:hover & {
|
|
317
303
|
@include wt-placeholder('error');
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
--table-row-padding: var(--spacing-xs);
|
|
11
11
|
|
|
12
12
|
--wt-table-head-border-color: var(--grey-lighten-1);
|
|
13
|
+
--wt-table-head-background-color: var(--content-wrapper-color);
|
|
13
14
|
--wt-table-primary-color: var(--content-wrapper-color);
|
|
14
15
|
--wt-table-zebra-color: var(--dp-18-surface-color);
|
|
15
16
|
}
|
|
@@ -247,7 +247,7 @@ export default {
|
|
|
247
247
|
border: var(--table-head-border);
|
|
248
248
|
border-color: var(--wt-table-head-border-color);
|
|
249
249
|
border-radius: var(--border-radius);
|
|
250
|
-
background:
|
|
250
|
+
background: var(--wt-table-head-background-color);
|
|
251
251
|
}
|
|
252
252
|
|
|
253
253
|
.wt-table__th,
|
|
@@ -132,20 +132,6 @@ export default {
|
|
|
132
132
|
background: transparent;
|
|
133
133
|
transition: var(--transition);
|
|
134
134
|
|
|
135
|
-
// disable arrows
|
|
136
|
-
/* Chrome, Safari, Edge, Opera */
|
|
137
|
-
&::-webkit-outer-spin-button,
|
|
138
|
-
&::-webkit-inner-spin-button {
|
|
139
|
-
-webkit-appearance: none;
|
|
140
|
-
margin: 0;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
// disable arrows
|
|
144
|
-
/* Firefox */
|
|
145
|
-
&[type=number] {
|
|
146
|
-
-moz-appearance: textfield;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
135
|
.wt-time-input--invalid &,
|
|
150
136
|
.wt-time-input--invalid:hover & {
|
|
151
137
|
@include wt-placeholder('error');
|