@webitel/ui-sdk 25.4.8 → 25.4.10

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.8",
3
+ "version": "25.04.10",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -114,7 +114,7 @@
114
114
  "@vuelidate/validators": "^2.0.4",
115
115
  "@vuepic/vue-datepicker": "^4.5.1",
116
116
  "@vueuse/components": "^11.2.0",
117
- "@webitel/styleguide": "^24.12.22",
117
+ "@webitel/styleguide": "^24.12.25",
118
118
  "autosize": "^6.0.1",
119
119
  "axios": "^1.7.7",
120
120
  "clipboard-copy": "^4.0.1",
@@ -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,
@@ -26,7 +26,7 @@ const props = defineProps({
26
26
  },
27
27
  duration: {
28
28
  type: String,
29
- default: 'sm',
29
+ default: 'fast',
30
30
  },
31
31
  });
32
32
  </script>
@@ -43,11 +43,14 @@ const props = defineProps({
43
43
  }
44
44
 
45
45
  .wt-transition {
46
- &--sm {
47
- transition-duration: 0.3s; // TODO: add variable
46
+ &--fast {
47
+ transition-duration: var(--transition-fast);
48
48
  }
49
- &--md {
50
- transition-duration: 0.6s; // TODO: add variable
49
+ &--normal {
50
+ transition-duration: var(--transition-normal);
51
+ }
52
+ &--slow {
53
+ transition-duration: var(--transition-slow);
51
54
  }
52
55
  }
53
56
  </style>