@uzum-tech/ui 1.13.2 → 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 (188) hide show
  1. package/dist/index.js +1848 -1664
  2. package/dist/index.prod.js +3 -3
  3. package/es/_mixins/use-css-vars-class.js +5 -3
  4. package/es/_mixins/use-rtl.js +5 -2
  5. package/es/_mixins/use-style.js +4 -2
  6. package/es/_mixins/use-theme.js +4 -2
  7. package/es/auto-complete/src/AutoComplete.d.ts +70 -0
  8. package/es/auto-complete/styles/light.d.ts +7 -0
  9. package/es/chat/src/Chat.d.ts +70 -0
  10. package/es/chat/src/ChatListItems.d.ts +77 -0
  11. package/es/chat/src/ChatMessages.d.ts +77 -0
  12. package/es/chat/src/ChatParts/MainArea.js +47 -54
  13. package/es/chat/src/ChatParts/Sidebar.d.ts +7 -0
  14. package/es/chat/src/styles/index.cssr.js +12 -7
  15. package/es/chat/styles/dark.d.ts +7 -0
  16. package/es/chat/styles/light.d.ts +7 -0
  17. package/es/color-picker/src/ColorInputUnit.d.ts +7 -0
  18. package/es/color-picker/src/ColorPicker.d.ts +63 -0
  19. package/es/color-picker/styles/light.d.ts +7 -0
  20. package/es/config-provider/src/ConfigProvider.d.ts +3 -0
  21. package/es/config-provider/src/ConfigProvider.js +4 -1
  22. package/es/config-provider/src/internal-interface.d.ts +1 -0
  23. package/es/data-table/src/DataTable.d.ts +58 -0
  24. package/es/data-table/src/DataTable.js +71 -4
  25. package/es/data-table/src/HeaderButton/FilterButton.d.ts +14 -0
  26. package/es/data-table/src/HeaderButton/FilterMenu.d.ts +14 -0
  27. package/es/data-table/src/TableParts/Body.d.ts +14 -0
  28. package/es/data-table/src/TableParts/Body.js +6 -2
  29. package/es/data-table/src/TableParts/Header.d.ts +14 -0
  30. package/es/data-table/src/TableParts/Header.js +17 -5
  31. package/es/data-table/src/interface.d.ts +34 -0
  32. package/es/data-table/src/interface.js +1 -1
  33. package/es/data-table/src/use-resizable.d.ts +1 -0
  34. package/es/data-table/src/use-resizable.js +2 -1
  35. package/es/data-table/src/use-sorter.d.ts +1 -0
  36. package/es/data-table/src/use-sorter.js +2 -1
  37. package/es/data-table/src/use-table-data.d.ts +3 -2
  38. package/es/data-table/src/use-table-data.js +5 -1
  39. package/es/data-table/src/use-table-storage.d.ts +4 -0
  40. package/es/data-table/src/use-table-storage.js +43 -0
  41. package/es/data-table/src/utils.js +39 -5
  42. package/es/data-table/styles/light.d.ts +7 -0
  43. package/es/date-picker/src/DatePicker.d.ts +147 -0
  44. package/es/date-picker/src/panel/date.d.ts +21 -0
  45. package/es/date-picker/src/panel/daterange.d.ts +21 -0
  46. package/es/date-picker/src/panel/datetime.d.ts +21 -0
  47. package/es/date-picker/src/panel/datetimerange.d.ts +21 -0
  48. package/es/date-picker/src/panel/panelMonth.d.ts +42 -0
  49. package/es/date-picker/src/panel/panelMonthContent.d.ts +21 -0
  50. package/es/date-picker/src/panel/panelYear.d.ts +42 -0
  51. package/es/date-picker/src/panel/panelYearContent.d.ts +21 -0
  52. package/es/date-picker/src/panel/use-calendar.d.ts +21 -0
  53. package/es/date-picker/src/panel/use-dual-calendar.d.ts +21 -0
  54. package/es/date-picker/src/panel/use-panel-common.d.ts +21 -0
  55. package/es/date-picker/styles/light.d.ts +14 -0
  56. package/es/date-picker-v2/src/DatePickerV2.d.ts +70 -0
  57. package/es/date-picker-v2/styles/dark.d.ts +7 -0
  58. package/es/date-picker-v2/styles/light.d.ts +7 -0
  59. package/es/dynamic-input/src/DynamicInput.d.ts +70 -0
  60. package/es/dynamic-input/src/InputPreset.d.ts +7 -0
  61. package/es/dynamic-input/src/PairPreset.d.ts +7 -0
  62. package/es/dynamic-input/styles/light.d.ts +7 -0
  63. package/es/dynamic-tags/src/DynamicTags.d.ts +70 -0
  64. package/es/dynamic-tags/styles/light.d.ts +7 -0
  65. package/es/input/src/Input.d.ts +77 -0
  66. package/es/input/src/Input.js +9 -1
  67. package/es/input/src/InputGroupLabel.d.ts +63 -0
  68. package/es/input/src/styles/input.cssr.js +1 -1
  69. package/es/input/styles/light.d.ts +7 -0
  70. package/es/input/styles/light.js +11 -1
  71. package/es/input-number/src/InputNumber.d.ts +70 -0
  72. package/es/input-number/styles/light.d.ts +7 -0
  73. package/es/input-otp/src/InputOtp.d.ts +70 -0
  74. package/es/input-otp/styles/light.d.ts +7 -0
  75. package/es/legacy-transfer/src/Transfer.d.ts +70 -0
  76. package/es/legacy-transfer/src/TransferFilter.d.ts +7 -0
  77. package/es/legacy-transfer/src/TransferList.d.ts +7 -0
  78. package/es/legacy-transfer/src/TransferListItem.d.ts +7 -0
  79. package/es/legacy-transfer/styles/light.d.ts +7 -0
  80. package/es/locales/date/enUS.js +1 -1
  81. package/es/mention/src/Mention.d.ts +70 -0
  82. package/es/mention/styles/light.d.ts +7 -0
  83. package/es/pagination/src/Pagination.d.ts +70 -0
  84. package/es/pagination/styles/light.d.ts +7 -0
  85. package/es/time-picker/src/Panel.d.ts +7 -0
  86. package/es/time-picker/src/TimePicker.d.ts +70 -0
  87. package/es/time-picker/styles/light.d.ts +7 -0
  88. package/es/transfer/src/Transfer.d.ts +70 -0
  89. package/es/transfer/src/TransferFilter.d.ts +7 -0
  90. package/es/transfer/src/TransferList.d.ts +7 -0
  91. package/es/transfer/src/TransferListItem.d.ts +7 -0
  92. package/es/transfer/styles/light.d.ts +7 -0
  93. package/es/version.d.ts +1 -1
  94. package/es/version.js +1 -1
  95. package/lib/_mixins/use-css-vars-class.js +5 -3
  96. package/lib/_mixins/use-rtl.js +4 -1
  97. package/lib/_mixins/use-style.js +4 -2
  98. package/lib/_mixins/use-theme.js +4 -2
  99. package/lib/auto-complete/src/AutoComplete.d.ts +70 -0
  100. package/lib/auto-complete/styles/light.d.ts +7 -0
  101. package/lib/chat/src/Chat.d.ts +70 -0
  102. package/lib/chat/src/ChatListItems.d.ts +77 -0
  103. package/lib/chat/src/ChatMessages.d.ts +77 -0
  104. package/lib/chat/src/ChatParts/MainArea.js +47 -54
  105. package/lib/chat/src/ChatParts/Sidebar.d.ts +7 -0
  106. package/lib/chat/src/styles/index.cssr.js +12 -7
  107. package/lib/chat/styles/dark.d.ts +7 -0
  108. package/lib/chat/styles/light.d.ts +7 -0
  109. package/lib/color-picker/src/ColorInputUnit.d.ts +7 -0
  110. package/lib/color-picker/src/ColorPicker.d.ts +63 -0
  111. package/lib/color-picker/styles/light.d.ts +7 -0
  112. package/lib/config-provider/src/ConfigProvider.d.ts +3 -0
  113. package/lib/config-provider/src/ConfigProvider.js +4 -1
  114. package/lib/config-provider/src/internal-interface.d.ts +1 -0
  115. package/lib/data-table/src/DataTable.d.ts +58 -0
  116. package/lib/data-table/src/DataTable.js +70 -3
  117. package/lib/data-table/src/HeaderButton/FilterButton.d.ts +14 -0
  118. package/lib/data-table/src/HeaderButton/FilterMenu.d.ts +14 -0
  119. package/lib/data-table/src/TableParts/Body.d.ts +14 -0
  120. package/lib/data-table/src/TableParts/Body.js +6 -2
  121. package/lib/data-table/src/TableParts/Header.d.ts +14 -0
  122. package/lib/data-table/src/TableParts/Header.js +16 -4
  123. package/lib/data-table/src/interface.d.ts +34 -0
  124. package/lib/data-table/src/interface.js +1 -1
  125. package/lib/data-table/src/use-resizable.d.ts +1 -0
  126. package/lib/data-table/src/use-resizable.js +2 -1
  127. package/lib/data-table/src/use-sorter.d.ts +1 -0
  128. package/lib/data-table/src/use-sorter.js +2 -1
  129. package/lib/data-table/src/use-table-data.d.ts +3 -2
  130. package/lib/data-table/src/use-table-data.js +5 -1
  131. package/lib/data-table/src/use-table-storage.d.ts +4 -0
  132. package/lib/data-table/src/use-table-storage.js +48 -0
  133. package/lib/data-table/src/utils.js +39 -5
  134. package/lib/data-table/styles/light.d.ts +7 -0
  135. package/lib/date-picker/src/DatePicker.d.ts +147 -0
  136. package/lib/date-picker/src/panel/date.d.ts +21 -0
  137. package/lib/date-picker/src/panel/daterange.d.ts +21 -0
  138. package/lib/date-picker/src/panel/datetime.d.ts +21 -0
  139. package/lib/date-picker/src/panel/datetimerange.d.ts +21 -0
  140. package/lib/date-picker/src/panel/panelMonth.d.ts +42 -0
  141. package/lib/date-picker/src/panel/panelMonthContent.d.ts +21 -0
  142. package/lib/date-picker/src/panel/panelYear.d.ts +42 -0
  143. package/lib/date-picker/src/panel/panelYearContent.d.ts +21 -0
  144. package/lib/date-picker/src/panel/use-calendar.d.ts +21 -0
  145. package/lib/date-picker/src/panel/use-dual-calendar.d.ts +21 -0
  146. package/lib/date-picker/src/panel/use-panel-common.d.ts +21 -0
  147. package/lib/date-picker/styles/light.d.ts +14 -0
  148. package/lib/date-picker-v2/src/DatePickerV2.d.ts +70 -0
  149. package/lib/date-picker-v2/styles/dark.d.ts +7 -0
  150. package/lib/date-picker-v2/styles/light.d.ts +7 -0
  151. package/lib/dynamic-input/src/DynamicInput.d.ts +70 -0
  152. package/lib/dynamic-input/src/InputPreset.d.ts +7 -0
  153. package/lib/dynamic-input/src/PairPreset.d.ts +7 -0
  154. package/lib/dynamic-input/styles/light.d.ts +7 -0
  155. package/lib/dynamic-tags/src/DynamicTags.d.ts +70 -0
  156. package/lib/dynamic-tags/styles/light.d.ts +7 -0
  157. package/lib/input/src/Input.d.ts +77 -0
  158. package/lib/input/src/Input.js +9 -1
  159. package/lib/input/src/InputGroupLabel.d.ts +63 -0
  160. package/lib/input/src/styles/input.cssr.js +1 -1
  161. package/lib/input/styles/light.d.ts +7 -0
  162. package/lib/input/styles/light.js +11 -1
  163. package/lib/input-number/src/InputNumber.d.ts +70 -0
  164. package/lib/input-number/styles/light.d.ts +7 -0
  165. package/lib/input-otp/src/InputOtp.d.ts +70 -0
  166. package/lib/input-otp/styles/light.d.ts +7 -0
  167. package/lib/legacy-transfer/src/Transfer.d.ts +70 -0
  168. package/lib/legacy-transfer/src/TransferFilter.d.ts +7 -0
  169. package/lib/legacy-transfer/src/TransferList.d.ts +7 -0
  170. package/lib/legacy-transfer/src/TransferListItem.d.ts +7 -0
  171. package/lib/legacy-transfer/styles/light.d.ts +7 -0
  172. package/lib/locales/date/enUS.js +2 -2
  173. package/lib/mention/src/Mention.d.ts +70 -0
  174. package/lib/mention/styles/light.d.ts +7 -0
  175. package/lib/pagination/src/Pagination.d.ts +70 -0
  176. package/lib/pagination/styles/light.d.ts +7 -0
  177. package/lib/time-picker/src/Panel.d.ts +7 -0
  178. package/lib/time-picker/src/TimePicker.d.ts +70 -0
  179. package/lib/time-picker/styles/light.d.ts +7 -0
  180. package/lib/transfer/src/Transfer.d.ts +70 -0
  181. package/lib/transfer/src/TransferFilter.d.ts +7 -0
  182. package/lib/transfer/src/TransferList.d.ts +7 -0
  183. package/lib/transfer/src/TransferListItem.d.ts +7 -0
  184. package/lib/transfer/styles/light.d.ts +7 -0
  185. package/lib/version.d.ts +1 -1
  186. package/lib/version.js +1 -1
  187. package/package.json +1 -1
  188. package/web-types.json +18 -1
@@ -81,6 +81,13 @@ export declare const dynamicTagsProps: {
81
81
  borderFocus: string;
82
82
  boxShadowFocus: string;
83
83
  loadingColor: string;
84
+ loadingColorSuccess: string;
85
+ borderSuccess: string;
86
+ borderHoverSuccess: string;
87
+ colorFocusSuccess: string;
88
+ borderFocusSuccess: string;
89
+ boxShadowFocusSuccess: string;
90
+ caretColorSuccess: string;
84
91
  loadingColorWarning: string;
85
92
  borderWarning: string;
86
93
  borderHoverWarning: string;
@@ -435,6 +442,13 @@ export declare const dynamicTagsProps: {
435
442
  borderFocus: string;
436
443
  boxShadowFocus: string;
437
444
  loadingColor: string;
445
+ loadingColorSuccess: string;
446
+ borderSuccess: string;
447
+ borderHoverSuccess: string;
448
+ colorFocusSuccess: string;
449
+ borderFocusSuccess: string;
450
+ boxShadowFocusSuccess: string;
451
+ caretColorSuccess: string;
438
452
  loadingColorWarning: string;
439
453
  borderWarning: string;
440
454
  borderHoverWarning: string;
@@ -789,6 +803,13 @@ export declare const dynamicTagsProps: {
789
803
  borderFocus: string;
790
804
  boxShadowFocus: string;
791
805
  loadingColor: string;
806
+ loadingColorSuccess: string;
807
+ borderSuccess: string;
808
+ borderHoverSuccess: string;
809
+ colorFocusSuccess: string;
810
+ borderFocusSuccess: string;
811
+ boxShadowFocusSuccess: string;
812
+ caretColorSuccess: string;
792
813
  loadingColorWarning: string;
793
814
  borderWarning: string;
794
815
  borderHoverWarning: string;
@@ -1181,6 +1202,13 @@ declare const _default: import("vue").DefineComponent<{
1181
1202
  borderFocus: string;
1182
1203
  boxShadowFocus: string;
1183
1204
  loadingColor: string;
1205
+ loadingColorSuccess: string;
1206
+ borderSuccess: string;
1207
+ borderHoverSuccess: string;
1208
+ colorFocusSuccess: string;
1209
+ borderFocusSuccess: string;
1210
+ boxShadowFocusSuccess: string;
1211
+ caretColorSuccess: string;
1184
1212
  loadingColorWarning: string;
1185
1213
  borderWarning: string;
1186
1214
  borderHoverWarning: string;
@@ -1535,6 +1563,13 @@ declare const _default: import("vue").DefineComponent<{
1535
1563
  borderFocus: string;
1536
1564
  boxShadowFocus: string;
1537
1565
  loadingColor: string;
1566
+ loadingColorSuccess: string;
1567
+ borderSuccess: string;
1568
+ borderHoverSuccess: string;
1569
+ colorFocusSuccess: string;
1570
+ borderFocusSuccess: string;
1571
+ boxShadowFocusSuccess: string;
1572
+ caretColorSuccess: string;
1538
1573
  loadingColorWarning: string;
1539
1574
  borderWarning: string;
1540
1575
  borderHoverWarning: string;
@@ -1889,6 +1924,13 @@ declare const _default: import("vue").DefineComponent<{
1889
1924
  borderFocus: string;
1890
1925
  boxShadowFocus: string;
1891
1926
  loadingColor: string;
1927
+ loadingColorSuccess: string;
1928
+ borderSuccess: string;
1929
+ borderHoverSuccess: string;
1930
+ colorFocusSuccess: string;
1931
+ borderFocusSuccess: string;
1932
+ boxShadowFocusSuccess: string;
1933
+ caretColorSuccess: string;
1892
1934
  loadingColorWarning: string;
1893
1935
  borderWarning: string;
1894
1936
  borderHoverWarning: string;
@@ -2276,6 +2318,13 @@ declare const _default: import("vue").DefineComponent<{
2276
2318
  borderFocus: string;
2277
2319
  boxShadowFocus: string;
2278
2320
  loadingColor: string;
2321
+ loadingColorSuccess: string;
2322
+ borderSuccess: string;
2323
+ borderHoverSuccess: string;
2324
+ colorFocusSuccess: string;
2325
+ borderFocusSuccess: string;
2326
+ boxShadowFocusSuccess: string;
2327
+ caretColorSuccess: string;
2279
2328
  loadingColorWarning: string;
2280
2329
  borderWarning: string;
2281
2330
  borderHoverWarning: string;
@@ -2695,6 +2744,13 @@ declare const _default: import("vue").DefineComponent<{
2695
2744
  borderFocus: string;
2696
2745
  boxShadowFocus: string;
2697
2746
  loadingColor: string;
2747
+ loadingColorSuccess: string;
2748
+ borderSuccess: string;
2749
+ borderHoverSuccess: string;
2750
+ colorFocusSuccess: string;
2751
+ borderFocusSuccess: string;
2752
+ boxShadowFocusSuccess: string;
2753
+ caretColorSuccess: string;
2698
2754
  loadingColorWarning: string;
2699
2755
  borderWarning: string;
2700
2756
  borderHoverWarning: string;
@@ -3049,6 +3105,13 @@ declare const _default: import("vue").DefineComponent<{
3049
3105
  borderFocus: string;
3050
3106
  boxShadowFocus: string;
3051
3107
  loadingColor: string;
3108
+ loadingColorSuccess: string;
3109
+ borderSuccess: string;
3110
+ borderHoverSuccess: string;
3111
+ colorFocusSuccess: string;
3112
+ borderFocusSuccess: string;
3113
+ boxShadowFocusSuccess: string;
3114
+ caretColorSuccess: string;
3052
3115
  loadingColorWarning: string;
3053
3116
  borderWarning: string;
3054
3117
  borderHoverWarning: string;
@@ -3403,6 +3466,13 @@ declare const _default: import("vue").DefineComponent<{
3403
3466
  borderFocus: string;
3404
3467
  boxShadowFocus: string;
3405
3468
  loadingColor: string;
3469
+ loadingColorSuccess: string;
3470
+ borderSuccess: string;
3471
+ borderHoverSuccess: string;
3472
+ colorFocusSuccess: string;
3473
+ borderFocusSuccess: string;
3474
+ boxShadowFocusSuccess: string;
3475
+ caretColorSuccess: string;
3406
3476
  loadingColorWarning: string;
3407
3477
  borderWarning: string;
3408
3478
  borderHoverWarning: string;
@@ -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;
@@ -765,7 +765,7 @@ exports.default = (0, vue_1.defineComponent)({
765
765
  const rtlEnabledRef = (0, use_rtl_1.useRtl)('Input', mergedRtlRef, mergedClsPrefixRef);
766
766
  const cssVarsRef = (0, vue_1.computed)(() => {
767
767
  const { value: size } = mergedSizeRef;
768
- 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, [(0, _utils_1.createKey)('padding', size)]: padding, [(0, _utils_1.createKey)('fontSize', size)]: fontSize, [(0, _utils_1.createKey)('height', size)]: height } } = themeRef.value;
768
+ 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, [(0, _utils_1.createKey)('padding', size)]: padding, [(0, _utils_1.createKey)('fontSize', size)]: fontSize, [(0, _utils_1.createKey)('height', size)]: height } } = themeRef.value;
769
769
  const { left: paddingLeft, right: paddingRight } = (0, seemly_1.getPadding)(padding);
770
770
  return {
771
771
  '--u-bezier': cubicBezierEaseInOut,
@@ -796,6 +796,14 @@ exports.default = (0, vue_1.defineComponent)({
796
796
  '--u-text-color-disabled': textColorDisabled,
797
797
  '--u-box-shadow-focus': boxShadowFocus,
798
798
  '--u-loading-color': loadingColor,
799
+ // form success
800
+ '--u-caret-color-success': caretColorSuccess,
801
+ '--u-color-focus-success': colorFocusSuccess,
802
+ '--u-box-shadow-focus-success': boxShadowFocusSuccess,
803
+ '--u-border-success': borderSuccess,
804
+ '--u-border-focus-success': borderFocusSuccess,
805
+ '--u-border-hover-success': borderHoverSuccess,
806
+ '--u-loading-color-success': loadingColorSuccess,
799
807
  // form warning
800
808
  '--u-caret-color-warning': caretColorWarning,
801
809
  '--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;
@@ -276,7 +276,7 @@ exports.default = (0, cssr_1.cB)('input', `
276
276
  transition: color .3s var(--u-bezier);
277
277
  margin-left: 4px;
278
278
  font-variant: tabular-nums;
279
- `), ['warning', 'error'].map(status => (0, cssr_1.cM)(`${status}-status`, [(0, cssr_1.cNotM)('disabled', [(0, cssr_1.cB)('base-loading', `
279
+ `), ['warning', 'error', 'success'].map(status => (0, cssr_1.cM)(`${status}-status`, [(0, cssr_1.cNotM)('disabled', [(0, cssr_1.cB)('base-loading', `
280
280
  color: var(--u-loading-color-${status})
281
281
  `), (0, cssr_1.cE)('input-el, textarea-el', `
282
282
  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;
@@ -4,7 +4,7 @@ exports.self = void 0;
4
4
  const seemly_1 = require("seemly");
5
5
  const common_1 = require("../../_styles/common");
6
6
  const self = (vars) => {
7
- const { iconMedium, textSecondary, elementsTertiary, textPrimary, fontBodyMedium, fontBodyLarge, lineHeightBodyLarge, borderRadius, containerPrimary, elementsQuaternary, elementsPrimary, staticOrange, staticRed, elementsQuinary, brandPrimary500, heightTiny, heightSmall, heightMedium, heightLarge, heightHuge, fontTitleMedium } = vars;
7
+ const { iconMedium, textSecondary, elementsTertiary, textPrimary, fontBodyMedium, fontBodyLarge, lineHeightBodyLarge, borderRadius, containerPrimary, elementsQuaternary, elementsPrimary, staticGreen, staticOrange, staticRed, elementsQuinary, brandPrimary500, heightTiny, heightSmall, heightMedium, heightLarge, heightHuge, fontTitleMedium } = vars;
8
8
  return {
9
9
  paddingTiny: '0 12px',
10
10
  paddingSmall: '0 12px',
@@ -45,6 +45,16 @@ const self = (vars) => {
45
45
  borderFocus: `2px solid ${elementsPrimary}`,
46
46
  boxShadowFocus: `0 0 0 4px ${(0, seemly_1.changeColor)(elementsPrimary, { alpha: 0.1 })}`,
47
47
  loadingColor: elementsPrimary,
48
+ // success
49
+ loadingColorSuccess: staticGreen,
50
+ borderSuccess: `2px solid ${staticGreen}`,
51
+ borderHoverSuccess: `2px solid ${staticGreen}`,
52
+ colorFocusSuccess: containerPrimary,
53
+ borderFocusSuccess: `2px solid ${staticGreen}`,
54
+ boxShadowFocusSuccess: `0 0 0 4px ${(0, seemly_1.changeColor)(staticGreen, {
55
+ alpha: 0.1
56
+ })}`,
57
+ caretColorSuccess: elementsPrimary,
48
58
  // warning
49
59
  loadingColorWarning: staticOrange,
50
60
  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;