@webitel/ui-sdk 25.4.9 → 25.4.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "25.04.9",
3
+ "version": "25.04.11",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -24,7 +24,7 @@ const props = defineProps({
24
24
  },
25
25
  duration: {
26
26
  type: String,
27
- default: 'sm',
27
+ default: 'fast',
28
28
  },
29
29
  appear: {
30
30
  type: Boolean,
@@ -140,20 +140,20 @@ export default {
140
140
  border-color: var(--wt-text-field-input-border-color);
141
141
  border-radius: var(--border-radius);
142
142
  background: transparent;
143
+ }
143
144
 
144
- .wt-time-input--invalid &,
145
- .wt-time-input--invalid:hover & {
146
- color: var(--wt-text-field-error-text-color);
147
- border-color: var(--wt-text-field-input-border-error-color);
148
- outline: none; // prevent outline overlapping false color
149
- @include wt-placeholder('error');
150
- }
145
+ &.wt-time-input--invalid .wt-time-input__input,
146
+ &.wt-time-input--invalid:hover .wt-time-input__input {
147
+ color: var(--wt-text-field-error-text-color);
148
+ border-color: var(--wt-text-field-input-border-error-color);
149
+ outline: none; // prevent outline overlapping false color
150
+ @include wt-placeholder('error');
151
+ }
151
152
 
152
- .wt-time-input--disabled & {
153
- border-color: var(--wt-text-field-input-border-disabled-color);
154
- background: var(--wt-text-field-input-background-disabled-color);
155
- @include wt-placeholder('disabled');
156
- }
153
+ &.wt-time-input--disabled .wt-time-input__input {
154
+ border-color: var(--wt-text-field-input-border-disabled-color);
155
+ background: var(--wt-text-field-input-background-disabled-color);
156
+ @include wt-placeholder('disabled');
157
157
  }
158
158
  }
159
159