@uzum-tech/ui 1.14.0 → 1.14.1

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.
Files changed (146) hide show
  1. package/dist/index.js +177 -143
  2. package/dist/index.prod.js +2 -2
  3. package/es/auto-complete/src/AutoComplete.d.ts +70 -0
  4. package/es/auto-complete/styles/light.d.ts +7 -0
  5. package/es/chat/src/Chat.d.ts +70 -0
  6. package/es/chat/src/ChatListItems.d.ts +77 -0
  7. package/es/chat/src/ChatMessages.d.ts +77 -0
  8. package/es/chat/src/ChatParts/MainArea.js +47 -54
  9. package/es/chat/src/ChatParts/Sidebar.d.ts +7 -0
  10. package/es/chat/src/styles/index.cssr.js +12 -7
  11. package/es/chat/styles/dark.d.ts +7 -0
  12. package/es/chat/styles/light.d.ts +7 -0
  13. package/es/color-picker/src/ColorInputUnit.d.ts +7 -0
  14. package/es/color-picker/src/ColorPicker.d.ts +63 -0
  15. package/es/color-picker/styles/light.d.ts +7 -0
  16. package/es/data-table/src/DataTable.d.ts +56 -0
  17. package/es/data-table/src/HeaderButton/FilterButton.d.ts +14 -0
  18. package/es/data-table/src/HeaderButton/FilterMenu.d.ts +14 -0
  19. package/es/data-table/src/TableParts/Body.d.ts +14 -0
  20. package/es/data-table/src/TableParts/Header.d.ts +14 -0
  21. package/es/data-table/src/interface.d.ts +21 -0
  22. package/es/data-table/styles/light.d.ts +7 -0
  23. package/es/date-picker/src/DatePicker.d.ts +147 -0
  24. package/es/date-picker/src/panel/date.d.ts +21 -0
  25. package/es/date-picker/src/panel/daterange.d.ts +21 -0
  26. package/es/date-picker/src/panel/datetime.d.ts +21 -0
  27. package/es/date-picker/src/panel/datetimerange.d.ts +21 -0
  28. package/es/date-picker/src/panel/panelMonth.d.ts +42 -0
  29. package/es/date-picker/src/panel/panelMonthContent.d.ts +21 -0
  30. package/es/date-picker/src/panel/panelYear.d.ts +42 -0
  31. package/es/date-picker/src/panel/panelYearContent.d.ts +21 -0
  32. package/es/date-picker/src/panel/use-calendar.d.ts +21 -0
  33. package/es/date-picker/src/panel/use-dual-calendar.d.ts +21 -0
  34. package/es/date-picker/src/panel/use-panel-common.d.ts +21 -0
  35. package/es/date-picker/styles/light.d.ts +14 -0
  36. package/es/date-picker-v2/src/DatePickerV2.d.ts +70 -0
  37. package/es/date-picker-v2/styles/dark.d.ts +7 -0
  38. package/es/date-picker-v2/styles/light.d.ts +7 -0
  39. package/es/dynamic-input/src/DynamicInput.d.ts +70 -0
  40. package/es/dynamic-input/src/InputPreset.d.ts +7 -0
  41. package/es/dynamic-input/src/PairPreset.d.ts +7 -0
  42. package/es/dynamic-input/styles/light.d.ts +7 -0
  43. package/es/dynamic-tags/src/DynamicTags.d.ts +70 -0
  44. package/es/dynamic-tags/styles/light.d.ts +7 -0
  45. package/es/input/src/Input.d.ts +77 -0
  46. package/es/input/src/Input.js +9 -1
  47. package/es/input/src/InputGroupLabel.d.ts +63 -0
  48. package/es/input/src/styles/input.cssr.js +1 -1
  49. package/es/input/styles/light.d.ts +7 -0
  50. package/es/input/styles/light.js +11 -1
  51. package/es/input-number/src/InputNumber.d.ts +70 -0
  52. package/es/input-number/styles/light.d.ts +7 -0
  53. package/es/input-otp/src/InputOtp.d.ts +70 -0
  54. package/es/input-otp/styles/light.d.ts +7 -0
  55. package/es/legacy-transfer/src/Transfer.d.ts +70 -0
  56. package/es/legacy-transfer/src/TransferFilter.d.ts +7 -0
  57. package/es/legacy-transfer/src/TransferList.d.ts +7 -0
  58. package/es/legacy-transfer/src/TransferListItem.d.ts +7 -0
  59. package/es/legacy-transfer/styles/light.d.ts +7 -0
  60. package/es/mention/src/Mention.d.ts +70 -0
  61. package/es/mention/styles/light.d.ts +7 -0
  62. package/es/pagination/src/Pagination.d.ts +70 -0
  63. package/es/pagination/styles/light.d.ts +7 -0
  64. package/es/time-picker/src/Panel.d.ts +7 -0
  65. package/es/time-picker/src/TimePicker.d.ts +70 -0
  66. package/es/time-picker/styles/light.d.ts +7 -0
  67. package/es/transfer/src/Transfer.d.ts +70 -0
  68. package/es/transfer/src/TransferFilter.d.ts +7 -0
  69. package/es/transfer/src/TransferList.d.ts +7 -0
  70. package/es/transfer/src/TransferListItem.d.ts +7 -0
  71. package/es/transfer/styles/light.d.ts +7 -0
  72. package/es/version.d.ts +1 -1
  73. package/es/version.js +1 -1
  74. package/lib/auto-complete/src/AutoComplete.d.ts +70 -0
  75. package/lib/auto-complete/styles/light.d.ts +7 -0
  76. package/lib/chat/src/Chat.d.ts +70 -0
  77. package/lib/chat/src/ChatListItems.d.ts +77 -0
  78. package/lib/chat/src/ChatMessages.d.ts +77 -0
  79. package/lib/chat/src/ChatParts/MainArea.js +47 -54
  80. package/lib/chat/src/ChatParts/Sidebar.d.ts +7 -0
  81. package/lib/chat/src/styles/index.cssr.js +12 -7
  82. package/lib/chat/styles/dark.d.ts +7 -0
  83. package/lib/chat/styles/light.d.ts +7 -0
  84. package/lib/color-picker/src/ColorInputUnit.d.ts +7 -0
  85. package/lib/color-picker/src/ColorPicker.d.ts +63 -0
  86. package/lib/color-picker/styles/light.d.ts +7 -0
  87. package/lib/data-table/src/DataTable.d.ts +56 -0
  88. package/lib/data-table/src/HeaderButton/FilterButton.d.ts +14 -0
  89. package/lib/data-table/src/HeaderButton/FilterMenu.d.ts +14 -0
  90. package/lib/data-table/src/TableParts/Body.d.ts +14 -0
  91. package/lib/data-table/src/TableParts/Header.d.ts +14 -0
  92. package/lib/data-table/src/interface.d.ts +21 -0
  93. package/lib/data-table/styles/light.d.ts +7 -0
  94. package/lib/date-picker/src/DatePicker.d.ts +147 -0
  95. package/lib/date-picker/src/panel/date.d.ts +21 -0
  96. package/lib/date-picker/src/panel/daterange.d.ts +21 -0
  97. package/lib/date-picker/src/panel/datetime.d.ts +21 -0
  98. package/lib/date-picker/src/panel/datetimerange.d.ts +21 -0
  99. package/lib/date-picker/src/panel/panelMonth.d.ts +42 -0
  100. package/lib/date-picker/src/panel/panelMonthContent.d.ts +21 -0
  101. package/lib/date-picker/src/panel/panelYear.d.ts +42 -0
  102. package/lib/date-picker/src/panel/panelYearContent.d.ts +21 -0
  103. package/lib/date-picker/src/panel/use-calendar.d.ts +21 -0
  104. package/lib/date-picker/src/panel/use-dual-calendar.d.ts +21 -0
  105. package/lib/date-picker/src/panel/use-panel-common.d.ts +21 -0
  106. package/lib/date-picker/styles/light.d.ts +14 -0
  107. package/lib/date-picker-v2/src/DatePickerV2.d.ts +70 -0
  108. package/lib/date-picker-v2/styles/dark.d.ts +7 -0
  109. package/lib/date-picker-v2/styles/light.d.ts +7 -0
  110. package/lib/dynamic-input/src/DynamicInput.d.ts +70 -0
  111. package/lib/dynamic-input/src/InputPreset.d.ts +7 -0
  112. package/lib/dynamic-input/src/PairPreset.d.ts +7 -0
  113. package/lib/dynamic-input/styles/light.d.ts +7 -0
  114. package/lib/dynamic-tags/src/DynamicTags.d.ts +70 -0
  115. package/lib/dynamic-tags/styles/light.d.ts +7 -0
  116. package/lib/input/src/Input.d.ts +77 -0
  117. package/lib/input/src/Input.js +9 -1
  118. package/lib/input/src/InputGroupLabel.d.ts +63 -0
  119. package/lib/input/src/styles/input.cssr.js +1 -1
  120. package/lib/input/styles/light.d.ts +7 -0
  121. package/lib/input/styles/light.js +11 -1
  122. package/lib/input-number/src/InputNumber.d.ts +70 -0
  123. package/lib/input-number/styles/light.d.ts +7 -0
  124. package/lib/input-otp/src/InputOtp.d.ts +70 -0
  125. package/lib/input-otp/styles/light.d.ts +7 -0
  126. package/lib/legacy-transfer/src/Transfer.d.ts +70 -0
  127. package/lib/legacy-transfer/src/TransferFilter.d.ts +7 -0
  128. package/lib/legacy-transfer/src/TransferList.d.ts +7 -0
  129. package/lib/legacy-transfer/src/TransferListItem.d.ts +7 -0
  130. package/lib/legacy-transfer/styles/light.d.ts +7 -0
  131. package/lib/mention/src/Mention.d.ts +70 -0
  132. package/lib/mention/styles/light.d.ts +7 -0
  133. package/lib/pagination/src/Pagination.d.ts +70 -0
  134. package/lib/pagination/styles/light.d.ts +7 -0
  135. package/lib/time-picker/src/Panel.d.ts +7 -0
  136. package/lib/time-picker/src/TimePicker.d.ts +70 -0
  137. package/lib/time-picker/styles/light.d.ts +7 -0
  138. package/lib/transfer/src/Transfer.d.ts +70 -0
  139. package/lib/transfer/src/TransferFilter.d.ts +7 -0
  140. package/lib/transfer/src/TransferList.d.ts +7 -0
  141. package/lib/transfer/src/TransferListItem.d.ts +7 -0
  142. package/lib/transfer/styles/light.d.ts +7 -0
  143. package/lib/version.d.ts +1 -1
  144. package/lib/version.js +1 -1
  145. package/package.json +1 -1
  146. package/web-types.json +1 -1
@@ -41,6 +41,13 @@ declare const dynamicTagsLight: import("../../_mixins").Theme<"DynamicTags", {
41
41
  borderFocus: string;
42
42
  boxShadowFocus: string;
43
43
  loadingColor: string;
44
+ loadingColorSuccess: string;
45
+ borderSuccess: string;
46
+ borderHoverSuccess: string;
47
+ colorFocusSuccess: string;
48
+ borderFocusSuccess: string;
49
+ boxShadowFocusSuccess: string;
50
+ caretColorSuccess: string;
44
51
  loadingColorWarning: string;
45
52
  borderWarning: string;
46
53
  borderHoverWarning: string;
@@ -148,6 +148,13 @@ export declare const inputProps: {
148
148
  borderFocus: string;
149
149
  boxShadowFocus: string;
150
150
  loadingColor: string;
151
+ loadingColorSuccess: string;
152
+ borderSuccess: string;
153
+ borderHoverSuccess: string;
154
+ colorFocusSuccess: string;
155
+ borderFocusSuccess: string;
156
+ boxShadowFocusSuccess: string;
157
+ caretColorSuccess: string;
151
158
  loadingColorWarning: string;
152
159
  borderWarning: string;
153
160
  borderHoverWarning: string;
@@ -212,6 +219,13 @@ export declare const inputProps: {
212
219
  borderFocus: string;
213
220
  boxShadowFocus: string;
214
221
  loadingColor: string;
222
+ loadingColorSuccess: string;
223
+ borderSuccess: string;
224
+ borderHoverSuccess: string;
225
+ colorFocusSuccess: string;
226
+ borderFocusSuccess: string;
227
+ boxShadowFocusSuccess: string;
228
+ caretColorSuccess: string;
215
229
  loadingColorWarning: string;
216
230
  borderWarning: string;
217
231
  borderHoverWarning: string;
@@ -276,6 +290,13 @@ export declare const inputProps: {
276
290
  borderFocus: string;
277
291
  boxShadowFocus: string;
278
292
  loadingColor: string;
293
+ loadingColorSuccess: string;
294
+ borderSuccess: string;
295
+ borderHoverSuccess: string;
296
+ colorFocusSuccess: string;
297
+ borderFocusSuccess: string;
298
+ boxShadowFocusSuccess: string;
299
+ caretColorSuccess: string;
279
300
  loadingColorWarning: string;
280
301
  borderWarning: string;
281
302
  borderHoverWarning: string;
@@ -448,6 +469,13 @@ declare const _default: import("vue").DefineComponent<{
448
469
  borderFocus: string;
449
470
  boxShadowFocus: string;
450
471
  loadingColor: string;
472
+ loadingColorSuccess: string;
473
+ borderSuccess: string;
474
+ borderHoverSuccess: string;
475
+ colorFocusSuccess: string;
476
+ borderFocusSuccess: string;
477
+ boxShadowFocusSuccess: string;
478
+ caretColorSuccess: string;
451
479
  loadingColorWarning: string;
452
480
  borderWarning: string;
453
481
  borderHoverWarning: string;
@@ -512,6 +540,13 @@ declare const _default: import("vue").DefineComponent<{
512
540
  borderFocus: string;
513
541
  boxShadowFocus: string;
514
542
  loadingColor: string;
543
+ loadingColorSuccess: string;
544
+ borderSuccess: string;
545
+ borderHoverSuccess: string;
546
+ colorFocusSuccess: string;
547
+ borderFocusSuccess: string;
548
+ boxShadowFocusSuccess: string;
549
+ caretColorSuccess: string;
515
550
  loadingColorWarning: string;
516
551
  borderWarning: string;
517
552
  borderHoverWarning: string;
@@ -576,6 +611,13 @@ declare const _default: import("vue").DefineComponent<{
576
611
  borderFocus: string;
577
612
  boxShadowFocus: string;
578
613
  loadingColor: string;
614
+ loadingColorSuccess: string;
615
+ borderSuccess: string;
616
+ borderHoverSuccess: string;
617
+ colorFocusSuccess: string;
618
+ borderFocusSuccess: string;
619
+ boxShadowFocusSuccess: string;
620
+ caretColorSuccess: string;
579
621
  loadingColorWarning: string;
580
622
  borderWarning: string;
581
623
  borderHoverWarning: string;
@@ -706,6 +748,13 @@ declare const _default: import("vue").DefineComponent<{
706
748
  borderFocus: string;
707
749
  boxShadowFocus: string;
708
750
  loadingColor: string;
751
+ loadingColorSuccess: string;
752
+ borderSuccess: string;
753
+ borderHoverSuccess: string;
754
+ colorFocusSuccess: string;
755
+ borderFocusSuccess: string;
756
+ boxShadowFocusSuccess: string;
757
+ caretColorSuccess: string;
709
758
  loadingColorWarning: string;
710
759
  borderWarning: string;
711
760
  borderHoverWarning: string;
@@ -764,6 +813,13 @@ declare const _default: import("vue").DefineComponent<{
764
813
  '--u-text-color-disabled': string;
765
814
  '--u-box-shadow-focus': string;
766
815
  '--u-loading-color': string;
816
+ '--u-caret-color-success': string;
817
+ '--u-color-focus-success': string;
818
+ '--u-box-shadow-focus-success': string;
819
+ '--u-border-success': string;
820
+ '--u-border-focus-success': string;
821
+ '--u-border-hover-success': string;
822
+ '--u-loading-color-success': string;
767
823
  '--u-caret-color-warning': string;
768
824
  '--u-color-focus-warning': string;
769
825
  '--u-box-shadow-focus-warning': string;
@@ -943,6 +999,13 @@ declare const _default: import("vue").DefineComponent<{
943
999
  borderFocus: string;
944
1000
  boxShadowFocus: string;
945
1001
  loadingColor: string;
1002
+ loadingColorSuccess: string;
1003
+ borderSuccess: string;
1004
+ borderHoverSuccess: string;
1005
+ colorFocusSuccess: string;
1006
+ borderFocusSuccess: string;
1007
+ boxShadowFocusSuccess: string;
1008
+ caretColorSuccess: string;
946
1009
  loadingColorWarning: string;
947
1010
  borderWarning: string;
948
1011
  borderHoverWarning: string;
@@ -1007,6 +1070,13 @@ declare const _default: import("vue").DefineComponent<{
1007
1070
  borderFocus: string;
1008
1071
  boxShadowFocus: string;
1009
1072
  loadingColor: string;
1073
+ loadingColorSuccess: string;
1074
+ borderSuccess: string;
1075
+ borderHoverSuccess: string;
1076
+ colorFocusSuccess: string;
1077
+ borderFocusSuccess: string;
1078
+ boxShadowFocusSuccess: string;
1079
+ caretColorSuccess: string;
1010
1080
  loadingColorWarning: string;
1011
1081
  borderWarning: string;
1012
1082
  borderHoverWarning: string;
@@ -1071,6 +1141,13 @@ declare const _default: import("vue").DefineComponent<{
1071
1141
  borderFocus: string;
1072
1142
  boxShadowFocus: string;
1073
1143
  loadingColor: string;
1144
+ loadingColorSuccess: string;
1145
+ borderSuccess: string;
1146
+ borderHoverSuccess: string;
1147
+ colorFocusSuccess: string;
1148
+ borderFocusSuccess: string;
1149
+ boxShadowFocusSuccess: string;
1150
+ caretColorSuccess: string;
1074
1151
  loadingColorWarning: string;
1075
1152
  borderWarning: string;
1076
1153
  borderHoverWarning: string;
@@ -736,7 +736,7 @@ export default defineComponent({
736
736
  const rtlEnabledRef = useRtl('Input', mergedRtlRef, mergedClsPrefixRef);
737
737
  const cssVarsRef = computed(() => {
738
738
  const { value: size } = mergedSizeRef;
739
- const { common: { cubicBezierEaseInOut, fontWeightStrong, fontWeight }, self: { color, borderRadius, textColor, caretColor, caretColorError, caretColorWarning, textDecorationColor, border, borderDisabled, borderHover, borderFocus, placeholderColor, placeholderColorDisabled, lineHeightTextarea, colorDisabled, colorFocus, textColorDisabled, boxShadowFocus, iconSize, colorFocusWarning, boxShadowFocusWarning, borderWarning, borderFocusWarning, borderHoverWarning, colorFocusError, boxShadowFocusError, borderError, borderFocusError, borderHoverError, clearSize, clearColor, clearColorHover, clearColorPressed, iconColor, iconColorDisabled, suffixTextColor, countTextColor, countTextColorDisabled, iconColorHover, iconColorPressed, loadingColor, loadingColorError, loadingColorWarning, selectionColor, [createKey('padding', size)]: padding, [createKey('fontSize', size)]: fontSize, [createKey('height', size)]: height } } = themeRef.value;
739
+ const { common: { cubicBezierEaseInOut, fontWeightStrong, fontWeight }, self: { color, borderRadius, textColor, caretColor, caretColorSuccess, caretColorError, caretColorWarning, textDecorationColor, border, borderDisabled, borderHover, borderFocus, placeholderColor, placeholderColorDisabled, lineHeightTextarea, colorDisabled, colorFocus, textColorDisabled, boxShadowFocus, iconSize, colorFocusSuccess, boxShadowFocusSuccess, borderSuccess, borderFocusSuccess, borderHoverSuccess, colorFocusWarning, boxShadowFocusWarning, borderWarning, borderFocusWarning, borderHoverWarning, colorFocusError, boxShadowFocusError, borderError, borderFocusError, borderHoverError, clearSize, clearColor, clearColorHover, clearColorPressed, iconColor, iconColorDisabled, suffixTextColor, countTextColor, countTextColorDisabled, iconColorHover, iconColorPressed, loadingColor, loadingColorSuccess, loadingColorError, loadingColorWarning, selectionColor, [createKey('padding', size)]: padding, [createKey('fontSize', size)]: fontSize, [createKey('height', size)]: height } } = themeRef.value;
740
740
  const { left: paddingLeft, right: paddingRight } = getPadding(padding);
741
741
  return {
742
742
  '--u-bezier': cubicBezierEaseInOut,
@@ -767,6 +767,14 @@ export default defineComponent({
767
767
  '--u-text-color-disabled': textColorDisabled,
768
768
  '--u-box-shadow-focus': boxShadowFocus,
769
769
  '--u-loading-color': loadingColor,
770
+ // form success
771
+ '--u-caret-color-success': caretColorSuccess,
772
+ '--u-color-focus-success': colorFocusSuccess,
773
+ '--u-box-shadow-focus-success': boxShadowFocusSuccess,
774
+ '--u-border-success': borderSuccess,
775
+ '--u-border-focus-success': borderFocusSuccess,
776
+ '--u-border-hover-success': borderHoverSuccess,
777
+ '--u-loading-color-success': loadingColorSuccess,
770
778
  // form warning
771
779
  '--u-caret-color-warning': caretColorWarning,
772
780
  '--u-color-focus-warning': colorFocusWarning,
@@ -50,6 +50,13 @@ export declare const inputGroupLabelProps: {
50
50
  borderFocus: string;
51
51
  boxShadowFocus: string;
52
52
  loadingColor: string;
53
+ loadingColorSuccess: string;
54
+ borderSuccess: string;
55
+ borderHoverSuccess: string;
56
+ colorFocusSuccess: string;
57
+ borderFocusSuccess: string;
58
+ boxShadowFocusSuccess: string;
59
+ caretColorSuccess: string;
53
60
  loadingColorWarning: string;
54
61
  borderWarning: string;
55
62
  borderHoverWarning: string;
@@ -114,6 +121,13 @@ export declare const inputGroupLabelProps: {
114
121
  borderFocus: string;
115
122
  boxShadowFocus: string;
116
123
  loadingColor: string;
124
+ loadingColorSuccess: string;
125
+ borderSuccess: string;
126
+ borderHoverSuccess: string;
127
+ colorFocusSuccess: string;
128
+ borderFocusSuccess: string;
129
+ boxShadowFocusSuccess: string;
130
+ caretColorSuccess: string;
117
131
  loadingColorWarning: string;
118
132
  borderWarning: string;
119
133
  borderHoverWarning: string;
@@ -178,6 +192,13 @@ export declare const inputGroupLabelProps: {
178
192
  borderFocus: string;
179
193
  boxShadowFocus: string;
180
194
  loadingColor: string;
195
+ loadingColorSuccess: string;
196
+ borderSuccess: string;
197
+ borderHoverSuccess: string;
198
+ colorFocusSuccess: string;
199
+ borderFocusSuccess: string;
200
+ boxShadowFocusSuccess: string;
201
+ caretColorSuccess: string;
181
202
  loadingColorWarning: string;
182
203
  borderWarning: string;
183
204
  borderHoverWarning: string;
@@ -253,6 +274,13 @@ declare const _default: import("vue").DefineComponent<{
253
274
  borderFocus: string;
254
275
  boxShadowFocus: string;
255
276
  loadingColor: string;
277
+ loadingColorSuccess: string;
278
+ borderSuccess: string;
279
+ borderHoverSuccess: string;
280
+ colorFocusSuccess: string;
281
+ borderFocusSuccess: string;
282
+ boxShadowFocusSuccess: string;
283
+ caretColorSuccess: string;
256
284
  loadingColorWarning: string;
257
285
  borderWarning: string;
258
286
  borderHoverWarning: string;
@@ -317,6 +345,13 @@ declare const _default: import("vue").DefineComponent<{
317
345
  borderFocus: string;
318
346
  boxShadowFocus: string;
319
347
  loadingColor: string;
348
+ loadingColorSuccess: string;
349
+ borderSuccess: string;
350
+ borderHoverSuccess: string;
351
+ colorFocusSuccess: string;
352
+ borderFocusSuccess: string;
353
+ boxShadowFocusSuccess: string;
354
+ caretColorSuccess: string;
320
355
  loadingColorWarning: string;
321
356
  borderWarning: string;
322
357
  borderHoverWarning: string;
@@ -381,6 +416,13 @@ declare const _default: import("vue").DefineComponent<{
381
416
  borderFocus: string;
382
417
  boxShadowFocus: string;
383
418
  loadingColor: string;
419
+ loadingColorSuccess: string;
420
+ borderSuccess: string;
421
+ borderHoverSuccess: string;
422
+ colorFocusSuccess: string;
423
+ borderFocusSuccess: string;
424
+ boxShadowFocusSuccess: string;
425
+ caretColorSuccess: string;
384
426
  loadingColorWarning: string;
385
427
  borderWarning: string;
386
428
  borderHoverWarning: string;
@@ -470,6 +512,13 @@ declare const _default: import("vue").DefineComponent<{
470
512
  borderFocus: string;
471
513
  boxShadowFocus: string;
472
514
  loadingColor: string;
515
+ loadingColorSuccess: string;
516
+ borderSuccess: string;
517
+ borderHoverSuccess: string;
518
+ colorFocusSuccess: string;
519
+ borderFocusSuccess: string;
520
+ boxShadowFocusSuccess: string;
521
+ caretColorSuccess: string;
473
522
  loadingColorWarning: string;
474
523
  borderWarning: string;
475
524
  borderHoverWarning: string;
@@ -534,6 +583,13 @@ declare const _default: import("vue").DefineComponent<{
534
583
  borderFocus: string;
535
584
  boxShadowFocus: string;
536
585
  loadingColor: string;
586
+ loadingColorSuccess: string;
587
+ borderSuccess: string;
588
+ borderHoverSuccess: string;
589
+ colorFocusSuccess: string;
590
+ borderFocusSuccess: string;
591
+ boxShadowFocusSuccess: string;
592
+ caretColorSuccess: string;
537
593
  loadingColorWarning: string;
538
594
  borderWarning: string;
539
595
  borderHoverWarning: string;
@@ -598,6 +654,13 @@ declare const _default: import("vue").DefineComponent<{
598
654
  borderFocus: string;
599
655
  boxShadowFocus: string;
600
656
  loadingColor: string;
657
+ loadingColorSuccess: string;
658
+ borderSuccess: string;
659
+ borderHoverSuccess: string;
660
+ colorFocusSuccess: string;
661
+ borderFocusSuccess: string;
662
+ boxShadowFocusSuccess: string;
663
+ caretColorSuccess: string;
601
664
  loadingColorWarning: string;
602
665
  borderWarning: string;
603
666
  borderHoverWarning: string;
@@ -270,7 +270,7 @@ cM('pair', [cE('input-el, placeholder', 'text-align: center;'), cE('separator',
270
270
  transition: color .3s var(--u-bezier);
271
271
  margin-left: 4px;
272
272
  font-variant: tabular-nums;
273
- `), ['warning', 'error'].map(status => cM(`${status}-status`, [cNotM('disabled', [cB('base-loading', `
273
+ `), ['warning', 'error', 'success'].map(status => cM(`${status}-status`, [cNotM('disabled', [cB('base-loading', `
274
274
  color: var(--u-loading-color-${status})
275
275
  `), cE('input-el, textarea-el', `
276
276
  caret-color: var(--u-caret-color-${status});
@@ -40,6 +40,13 @@ export declare const self: (vars: ThemeCommonVars) => {
40
40
  borderFocus: string;
41
41
  boxShadowFocus: string;
42
42
  loadingColor: string;
43
+ loadingColorSuccess: string;
44
+ borderSuccess: string;
45
+ borderHoverSuccess: string;
46
+ colorFocusSuccess: string;
47
+ borderFocusSuccess: string;
48
+ boxShadowFocusSuccess: string;
49
+ caretColorSuccess: string;
43
50
  loadingColorWarning: string;
44
51
  borderWarning: string;
45
52
  borderHoverWarning: string;
@@ -1,7 +1,7 @@
1
1
  import { changeColor } from 'seemly';
2
2
  import { commonLight } from '../../_styles/common';
3
3
  export const self = (vars) => {
4
- const { iconMedium, textSecondary, elementsTertiary, textPrimary, fontBodyMedium, fontBodyLarge, lineHeightBodyLarge, borderRadius, containerPrimary, elementsQuaternary, elementsPrimary, staticOrange, staticRed, elementsQuinary, brandPrimary500, heightTiny, heightSmall, heightMedium, heightLarge, heightHuge, fontTitleMedium } = vars;
4
+ const { iconMedium, textSecondary, elementsTertiary, textPrimary, fontBodyMedium, fontBodyLarge, lineHeightBodyLarge, borderRadius, containerPrimary, elementsQuaternary, elementsPrimary, staticGreen, staticOrange, staticRed, elementsQuinary, brandPrimary500, heightTiny, heightSmall, heightMedium, heightLarge, heightHuge, fontTitleMedium } = vars;
5
5
  return {
6
6
  paddingTiny: '0 12px',
7
7
  paddingSmall: '0 12px',
@@ -42,6 +42,16 @@ export const self = (vars) => {
42
42
  borderFocus: `2px solid ${elementsPrimary}`,
43
43
  boxShadowFocus: `0 0 0 4px ${changeColor(elementsPrimary, { alpha: 0.1 })}`,
44
44
  loadingColor: elementsPrimary,
45
+ // success
46
+ loadingColorSuccess: staticGreen,
47
+ borderSuccess: `2px solid ${staticGreen}`,
48
+ borderHoverSuccess: `2px solid ${staticGreen}`,
49
+ colorFocusSuccess: containerPrimary,
50
+ borderFocusSuccess: `2px solid ${staticGreen}`,
51
+ boxShadowFocusSuccess: `0 0 0 4px ${changeColor(staticGreen, {
52
+ alpha: 0.1
53
+ })}`,
54
+ caretColorSuccess: elementsPrimary,
45
55
  // warning
46
56
  loadingColorWarning: staticOrange,
47
57
  borderWarning: `2px solid ${staticOrange}`,
@@ -322,6 +322,13 @@ export declare const inputNumberProps: {
322
322
  borderFocus: string;
323
323
  boxShadowFocus: string;
324
324
  loadingColor: string;
325
+ loadingColorSuccess: string;
326
+ borderSuccess: string;
327
+ borderHoverSuccess: string;
328
+ colorFocusSuccess: string;
329
+ borderFocusSuccess: string;
330
+ boxShadowFocusSuccess: string;
331
+ caretColorSuccess: string;
325
332
  loadingColorWarning: string;
326
333
  borderWarning: string;
327
334
  borderHoverWarning: string;
@@ -607,6 +614,13 @@ export declare const inputNumberProps: {
607
614
  borderFocus: string;
608
615
  boxShadowFocus: string;
609
616
  loadingColor: string;
617
+ loadingColorSuccess: string;
618
+ borderSuccess: string;
619
+ borderHoverSuccess: string;
620
+ colorFocusSuccess: string;
621
+ borderFocusSuccess: string;
622
+ boxShadowFocusSuccess: string;
623
+ caretColorSuccess: string;
610
624
  loadingColorWarning: string;
611
625
  borderWarning: string;
612
626
  borderHoverWarning: string;
@@ -892,6 +906,13 @@ export declare const inputNumberProps: {
892
906
  borderFocus: string;
893
907
  boxShadowFocus: string;
894
908
  loadingColor: string;
909
+ loadingColorSuccess: string;
910
+ borderSuccess: string;
911
+ borderHoverSuccess: string;
912
+ colorFocusSuccess: string;
913
+ borderFocusSuccess: string;
914
+ boxShadowFocusSuccess: string;
915
+ caretColorSuccess: string;
895
916
  loadingColorWarning: string;
896
917
  borderWarning: string;
897
918
  borderHoverWarning: string;
@@ -1238,6 +1259,13 @@ declare const _default: import("vue").DefineComponent<{
1238
1259
  borderFocus: string;
1239
1260
  boxShadowFocus: string;
1240
1261
  loadingColor: string;
1262
+ loadingColorSuccess: string;
1263
+ borderSuccess: string;
1264
+ borderHoverSuccess: string;
1265
+ colorFocusSuccess: string;
1266
+ borderFocusSuccess: string;
1267
+ boxShadowFocusSuccess: string;
1268
+ caretColorSuccess: string;
1241
1269
  loadingColorWarning: string;
1242
1270
  borderWarning: string;
1243
1271
  borderHoverWarning: string;
@@ -1523,6 +1551,13 @@ declare const _default: import("vue").DefineComponent<{
1523
1551
  borderFocus: string;
1524
1552
  boxShadowFocus: string;
1525
1553
  loadingColor: string;
1554
+ loadingColorSuccess: string;
1555
+ borderSuccess: string;
1556
+ borderHoverSuccess: string;
1557
+ colorFocusSuccess: string;
1558
+ borderFocusSuccess: string;
1559
+ boxShadowFocusSuccess: string;
1560
+ caretColorSuccess: string;
1526
1561
  loadingColorWarning: string;
1527
1562
  borderWarning: string;
1528
1563
  borderHoverWarning: string;
@@ -1808,6 +1843,13 @@ declare const _default: import("vue").DefineComponent<{
1808
1843
  borderFocus: string;
1809
1844
  boxShadowFocus: string;
1810
1845
  loadingColor: string;
1846
+ loadingColorSuccess: string;
1847
+ borderSuccess: string;
1848
+ borderHoverSuccess: string;
1849
+ colorFocusSuccess: string;
1850
+ borderFocusSuccess: string;
1851
+ boxShadowFocusSuccess: string;
1852
+ caretColorSuccess: string;
1811
1853
  loadingColorWarning: string;
1812
1854
  borderWarning: string;
1813
1855
  borderHoverWarning: string;
@@ -2138,6 +2180,13 @@ declare const _default: import("vue").DefineComponent<{
2138
2180
  borderFocus: string;
2139
2181
  boxShadowFocus: string;
2140
2182
  loadingColor: string;
2183
+ loadingColorSuccess: string;
2184
+ borderSuccess: string;
2185
+ borderHoverSuccess: string;
2186
+ colorFocusSuccess: string;
2187
+ borderFocusSuccess: string;
2188
+ boxShadowFocusSuccess: string;
2189
+ caretColorSuccess: string;
2141
2190
  loadingColorWarning: string;
2142
2191
  borderWarning: string;
2143
2192
  borderHoverWarning: string;
@@ -2503,6 +2552,13 @@ declare const _default: import("vue").DefineComponent<{
2503
2552
  borderFocus: string;
2504
2553
  boxShadowFocus: string;
2505
2554
  loadingColor: string;
2555
+ loadingColorSuccess: string;
2556
+ borderSuccess: string;
2557
+ borderHoverSuccess: string;
2558
+ colorFocusSuccess: string;
2559
+ borderFocusSuccess: string;
2560
+ boxShadowFocusSuccess: string;
2561
+ caretColorSuccess: string;
2506
2562
  loadingColorWarning: string;
2507
2563
  borderWarning: string;
2508
2564
  borderHoverWarning: string;
@@ -2788,6 +2844,13 @@ declare const _default: import("vue").DefineComponent<{
2788
2844
  borderFocus: string;
2789
2845
  boxShadowFocus: string;
2790
2846
  loadingColor: string;
2847
+ loadingColorSuccess: string;
2848
+ borderSuccess: string;
2849
+ borderHoverSuccess: string;
2850
+ colorFocusSuccess: string;
2851
+ borderFocusSuccess: string;
2852
+ boxShadowFocusSuccess: string;
2853
+ caretColorSuccess: string;
2791
2854
  loadingColorWarning: string;
2792
2855
  borderWarning: string;
2793
2856
  borderHoverWarning: string;
@@ -3073,6 +3136,13 @@ declare const _default: import("vue").DefineComponent<{
3073
3136
  borderFocus: string;
3074
3137
  boxShadowFocus: string;
3075
3138
  loadingColor: string;
3139
+ loadingColorSuccess: string;
3140
+ borderSuccess: string;
3141
+ borderHoverSuccess: string;
3142
+ colorFocusSuccess: string;
3143
+ borderFocusSuccess: string;
3144
+ boxShadowFocusSuccess: string;
3145
+ caretColorSuccess: string;
3076
3146
  loadingColorWarning: string;
3077
3147
  borderWarning: string;
3078
3148
  borderHoverWarning: string;
@@ -261,6 +261,13 @@ declare const inputNumberLight: import("../../_mixins").Theme<"InputNumber", {},
261
261
  borderFocus: string;
262
262
  boxShadowFocus: string;
263
263
  loadingColor: string;
264
+ loadingColorSuccess: string;
265
+ borderSuccess: string;
266
+ borderHoverSuccess: string;
267
+ colorFocusSuccess: string;
268
+ borderFocusSuccess: string;
269
+ boxShadowFocusSuccess: string;
270
+ caretColorSuccess: string;
264
271
  loadingColorWarning: string;
265
272
  borderWarning: string;
266
273
  borderHoverWarning: string;
@@ -77,6 +77,13 @@ export declare const inputOtpProps: {
77
77
  borderFocus: string;
78
78
  boxShadowFocus: string;
79
79
  loadingColor: string;
80
+ loadingColorSuccess: string;
81
+ borderSuccess: string;
82
+ borderHoverSuccess: string;
83
+ colorFocusSuccess: string;
84
+ borderFocusSuccess: string;
85
+ boxShadowFocusSuccess: string;
86
+ caretColorSuccess: string;
80
87
  loadingColorWarning: string;
81
88
  borderWarning: string;
82
89
  borderHoverWarning: string;
@@ -150,6 +157,13 @@ export declare const inputOtpProps: {
150
157
  borderFocus: string;
151
158
  boxShadowFocus: string;
152
159
  loadingColor: string;
160
+ loadingColorSuccess: string;
161
+ borderSuccess: string;
162
+ borderHoverSuccess: string;
163
+ colorFocusSuccess: string;
164
+ borderFocusSuccess: string;
165
+ boxShadowFocusSuccess: string;
166
+ caretColorSuccess: string;
153
167
  loadingColorWarning: string;
154
168
  borderWarning: string;
155
169
  borderHoverWarning: string;
@@ -223,6 +237,13 @@ export declare const inputOtpProps: {
223
237
  borderFocus: string;
224
238
  boxShadowFocus: string;
225
239
  loadingColor: string;
240
+ loadingColorSuccess: string;
241
+ borderSuccess: string;
242
+ borderHoverSuccess: string;
243
+ colorFocusSuccess: string;
244
+ borderFocusSuccess: string;
245
+ boxShadowFocusSuccess: string;
246
+ caretColorSuccess: string;
226
247
  loadingColorWarning: string;
227
248
  borderWarning: string;
228
249
  borderHoverWarning: string;
@@ -325,6 +346,13 @@ declare const _default: import("vue").DefineComponent<{
325
346
  borderFocus: string;
326
347
  boxShadowFocus: string;
327
348
  loadingColor: string;
349
+ loadingColorSuccess: string;
350
+ borderSuccess: string;
351
+ borderHoverSuccess: string;
352
+ colorFocusSuccess: string;
353
+ borderFocusSuccess: string;
354
+ boxShadowFocusSuccess: string;
355
+ caretColorSuccess: string;
328
356
  loadingColorWarning: string;
329
357
  borderWarning: string;
330
358
  borderHoverWarning: string;
@@ -398,6 +426,13 @@ declare const _default: import("vue").DefineComponent<{
398
426
  borderFocus: string;
399
427
  boxShadowFocus: string;
400
428
  loadingColor: string;
429
+ loadingColorSuccess: string;
430
+ borderSuccess: string;
431
+ borderHoverSuccess: string;
432
+ colorFocusSuccess: string;
433
+ borderFocusSuccess: string;
434
+ boxShadowFocusSuccess: string;
435
+ caretColorSuccess: string;
401
436
  loadingColorWarning: string;
402
437
  borderWarning: string;
403
438
  borderHoverWarning: string;
@@ -471,6 +506,13 @@ declare const _default: import("vue").DefineComponent<{
471
506
  borderFocus: string;
472
507
  boxShadowFocus: string;
473
508
  loadingColor: string;
509
+ loadingColorSuccess: string;
510
+ borderSuccess: string;
511
+ borderHoverSuccess: string;
512
+ colorFocusSuccess: string;
513
+ borderFocusSuccess: string;
514
+ boxShadowFocusSuccess: string;
515
+ caretColorSuccess: string;
474
516
  loadingColorWarning: string;
475
517
  borderWarning: string;
476
518
  borderHoverWarning: string;
@@ -549,6 +591,13 @@ declare const _default: import("vue").DefineComponent<{
549
591
  borderFocus: string;
550
592
  boxShadowFocus: string;
551
593
  loadingColor: string;
594
+ loadingColorSuccess: string;
595
+ borderSuccess: string;
596
+ borderHoverSuccess: string;
597
+ colorFocusSuccess: string;
598
+ borderFocusSuccess: string;
599
+ boxShadowFocusSuccess: string;
600
+ caretColorSuccess: string;
552
601
  loadingColorWarning: string;
553
602
  borderWarning: string;
554
603
  borderHoverWarning: string;
@@ -688,6 +737,13 @@ declare const _default: import("vue").DefineComponent<{
688
737
  borderFocus: string;
689
738
  boxShadowFocus: string;
690
739
  loadingColor: string;
740
+ loadingColorSuccess: string;
741
+ borderSuccess: string;
742
+ borderHoverSuccess: string;
743
+ colorFocusSuccess: string;
744
+ borderFocusSuccess: string;
745
+ boxShadowFocusSuccess: string;
746
+ caretColorSuccess: string;
691
747
  loadingColorWarning: string;
692
748
  borderWarning: string;
693
749
  borderHoverWarning: string;
@@ -761,6 +817,13 @@ declare const _default: import("vue").DefineComponent<{
761
817
  borderFocus: string;
762
818
  boxShadowFocus: string;
763
819
  loadingColor: string;
820
+ loadingColorSuccess: string;
821
+ borderSuccess: string;
822
+ borderHoverSuccess: string;
823
+ colorFocusSuccess: string;
824
+ borderFocusSuccess: string;
825
+ boxShadowFocusSuccess: string;
826
+ caretColorSuccess: string;
764
827
  loadingColorWarning: string;
765
828
  borderWarning: string;
766
829
  borderHoverWarning: string;
@@ -834,6 +897,13 @@ declare const _default: import("vue").DefineComponent<{
834
897
  borderFocus: string;
835
898
  boxShadowFocus: string;
836
899
  loadingColor: string;
900
+ loadingColorSuccess: string;
901
+ borderSuccess: string;
902
+ borderHoverSuccess: string;
903
+ colorFocusSuccess: string;
904
+ borderFocusSuccess: string;
905
+ boxShadowFocusSuccess: string;
906
+ caretColorSuccess: string;
837
907
  loadingColorWarning: string;
838
908
  borderWarning: string;
839
909
  borderHoverWarning: string;
@@ -54,6 +54,13 @@ declare const inputOtpLight: import("../../_mixins").Theme<"InputOtp", {
54
54
  borderFocus: string;
55
55
  boxShadowFocus: string;
56
56
  loadingColor: string;
57
+ loadingColorSuccess: string;
58
+ borderSuccess: string;
59
+ borderHoverSuccess: string;
60
+ colorFocusSuccess: string;
61
+ borderFocusSuccess: string;
62
+ boxShadowFocusSuccess: string;
63
+ caretColorSuccess: string;
57
64
  loadingColorWarning: string;
58
65
  borderWarning: string;
59
66
  borderHoverWarning: string;