@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
@@ -218,6 +218,13 @@ export declare const datePickerProps: {
218
218
  borderFocus: string;
219
219
  boxShadowFocus: string;
220
220
  loadingColor: string;
221
+ loadingColorSuccess: string;
222
+ borderSuccess: string;
223
+ borderHoverSuccess: string;
224
+ colorFocusSuccess: string;
225
+ borderFocusSuccess: string;
226
+ boxShadowFocusSuccess: string;
227
+ caretColorSuccess: string;
221
228
  loadingColorWarning: string;
222
229
  borderWarning: string;
223
230
  borderHoverWarning: string;
@@ -750,6 +757,13 @@ export declare const datePickerProps: {
750
757
  borderFocus: string;
751
758
  boxShadowFocus: string;
752
759
  loadingColor: string;
760
+ loadingColorSuccess: string;
761
+ borderSuccess: string;
762
+ borderHoverSuccess: string;
763
+ colorFocusSuccess: string;
764
+ borderFocusSuccess: string;
765
+ boxShadowFocusSuccess: string;
766
+ caretColorSuccess: string;
753
767
  loadingColorWarning: string;
754
768
  borderWarning: string;
755
769
  borderHoverWarning: string;
@@ -1050,6 +1064,13 @@ export declare const datePickerProps: {
1050
1064
  borderFocus: string;
1051
1065
  boxShadowFocus: string;
1052
1066
  loadingColor: string;
1067
+ loadingColorSuccess: string;
1068
+ borderSuccess: string;
1069
+ borderHoverSuccess: string;
1070
+ colorFocusSuccess: string;
1071
+ borderFocusSuccess: string;
1072
+ boxShadowFocusSuccess: string;
1073
+ caretColorSuccess: string;
1053
1074
  loadingColorWarning: string;
1054
1075
  borderWarning: string;
1055
1076
  borderHoverWarning: string;
@@ -1582,6 +1603,13 @@ export declare const datePickerProps: {
1582
1603
  borderFocus: string;
1583
1604
  boxShadowFocus: string;
1584
1605
  loadingColor: string;
1606
+ loadingColorSuccess: string;
1607
+ borderSuccess: string;
1608
+ borderHoverSuccess: string;
1609
+ colorFocusSuccess: string;
1610
+ borderFocusSuccess: string;
1611
+ boxShadowFocusSuccess: string;
1612
+ caretColorSuccess: string;
1585
1613
  loadingColorWarning: string;
1586
1614
  borderWarning: string;
1587
1615
  borderHoverWarning: string;
@@ -1882,6 +1910,13 @@ export declare const datePickerProps: {
1882
1910
  borderFocus: string;
1883
1911
  boxShadowFocus: string;
1884
1912
  loadingColor: string;
1913
+ loadingColorSuccess: string;
1914
+ borderSuccess: string;
1915
+ borderHoverSuccess: string;
1916
+ colorFocusSuccess: string;
1917
+ borderFocusSuccess: string;
1918
+ boxShadowFocusSuccess: string;
1919
+ caretColorSuccess: string;
1885
1920
  loadingColorWarning: string;
1886
1921
  borderWarning: string;
1887
1922
  borderHoverWarning: string;
@@ -2414,6 +2449,13 @@ export declare const datePickerProps: {
2414
2449
  borderFocus: string;
2415
2450
  boxShadowFocus: string;
2416
2451
  loadingColor: string;
2452
+ loadingColorSuccess: string;
2453
+ borderSuccess: string;
2454
+ borderHoverSuccess: string;
2455
+ colorFocusSuccess: string;
2456
+ borderFocusSuccess: string;
2457
+ boxShadowFocusSuccess: string;
2458
+ caretColorSuccess: string;
2417
2459
  loadingColorWarning: string;
2418
2460
  borderWarning: string;
2419
2461
  borderHoverWarning: string;
@@ -2790,6 +2832,13 @@ declare const _default: import("vue").DefineComponent<{
2790
2832
  borderFocus: string;
2791
2833
  boxShadowFocus: string;
2792
2834
  loadingColor: string;
2835
+ loadingColorSuccess: string;
2836
+ borderSuccess: string;
2837
+ borderHoverSuccess: string;
2838
+ colorFocusSuccess: string;
2839
+ borderFocusSuccess: string;
2840
+ boxShadowFocusSuccess: string;
2841
+ caretColorSuccess: string;
2793
2842
  loadingColorWarning: string;
2794
2843
  borderWarning: string;
2795
2844
  borderHoverWarning: string;
@@ -3322,6 +3371,13 @@ declare const _default: import("vue").DefineComponent<{
3322
3371
  borderFocus: string;
3323
3372
  boxShadowFocus: string;
3324
3373
  loadingColor: string;
3374
+ loadingColorSuccess: string;
3375
+ borderSuccess: string;
3376
+ borderHoverSuccess: string;
3377
+ colorFocusSuccess: string;
3378
+ borderFocusSuccess: string;
3379
+ boxShadowFocusSuccess: string;
3380
+ caretColorSuccess: string;
3325
3381
  loadingColorWarning: string;
3326
3382
  borderWarning: string;
3327
3383
  borderHoverWarning: string;
@@ -3622,6 +3678,13 @@ declare const _default: import("vue").DefineComponent<{
3622
3678
  borderFocus: string;
3623
3679
  boxShadowFocus: string;
3624
3680
  loadingColor: string;
3681
+ loadingColorSuccess: string;
3682
+ borderSuccess: string;
3683
+ borderHoverSuccess: string;
3684
+ colorFocusSuccess: string;
3685
+ borderFocusSuccess: string;
3686
+ boxShadowFocusSuccess: string;
3687
+ caretColorSuccess: string;
3625
3688
  loadingColorWarning: string;
3626
3689
  borderWarning: string;
3627
3690
  borderHoverWarning: string;
@@ -4154,6 +4217,13 @@ declare const _default: import("vue").DefineComponent<{
4154
4217
  borderFocus: string;
4155
4218
  boxShadowFocus: string;
4156
4219
  loadingColor: string;
4220
+ loadingColorSuccess: string;
4221
+ borderSuccess: string;
4222
+ borderHoverSuccess: string;
4223
+ colorFocusSuccess: string;
4224
+ borderFocusSuccess: string;
4225
+ boxShadowFocusSuccess: string;
4226
+ caretColorSuccess: string;
4157
4227
  loadingColorWarning: string;
4158
4228
  borderWarning: string;
4159
4229
  borderHoverWarning: string;
@@ -4454,6 +4524,13 @@ declare const _default: import("vue").DefineComponent<{
4454
4524
  borderFocus: string;
4455
4525
  boxShadowFocus: string;
4456
4526
  loadingColor: string;
4527
+ loadingColorSuccess: string;
4528
+ borderSuccess: string;
4529
+ borderHoverSuccess: string;
4530
+ colorFocusSuccess: string;
4531
+ borderFocusSuccess: string;
4532
+ boxShadowFocusSuccess: string;
4533
+ caretColorSuccess: string;
4457
4534
  loadingColorWarning: string;
4458
4535
  borderWarning: string;
4459
4536
  borderHoverWarning: string;
@@ -4986,6 +5063,13 @@ declare const _default: import("vue").DefineComponent<{
4986
5063
  borderFocus: string;
4987
5064
  boxShadowFocus: string;
4988
5065
  loadingColor: string;
5066
+ loadingColorSuccess: string;
5067
+ borderSuccess: string;
5068
+ borderHoverSuccess: string;
5069
+ colorFocusSuccess: string;
5070
+ borderFocusSuccess: string;
5071
+ boxShadowFocusSuccess: string;
5072
+ caretColorSuccess: string;
4989
5073
  loadingColorWarning: string;
4990
5074
  borderWarning: string;
4991
5075
  borderHoverWarning: string;
@@ -5420,6 +5504,13 @@ declare const _default: import("vue").DefineComponent<{
5420
5504
  borderFocus: string;
5421
5505
  boxShadowFocus: string;
5422
5506
  loadingColor: string;
5507
+ loadingColorSuccess: string;
5508
+ borderSuccess: string;
5509
+ borderHoverSuccess: string;
5510
+ colorFocusSuccess: string;
5511
+ borderFocusSuccess: string;
5512
+ boxShadowFocusSuccess: string;
5513
+ caretColorSuccess: string;
5423
5514
  loadingColorWarning: string;
5424
5515
  borderWarning: string;
5425
5516
  borderHoverWarning: string;
@@ -5952,6 +6043,13 @@ declare const _default: import("vue").DefineComponent<{
5952
6043
  borderFocus: string;
5953
6044
  boxShadowFocus: string;
5954
6045
  loadingColor: string;
6046
+ loadingColorSuccess: string;
6047
+ borderSuccess: string;
6048
+ borderHoverSuccess: string;
6049
+ colorFocusSuccess: string;
6050
+ borderFocusSuccess: string;
6051
+ boxShadowFocusSuccess: string;
6052
+ caretColorSuccess: string;
5955
6053
  loadingColorWarning: string;
5956
6054
  borderWarning: string;
5957
6055
  borderHoverWarning: string;
@@ -6397,6 +6495,13 @@ declare const _default: import("vue").DefineComponent<{
6397
6495
  borderFocus: string;
6398
6496
  boxShadowFocus: string;
6399
6497
  loadingColor: string;
6498
+ loadingColorSuccess: string;
6499
+ borderSuccess: string;
6500
+ borderHoverSuccess: string;
6501
+ colorFocusSuccess: string;
6502
+ borderFocusSuccess: string;
6503
+ boxShadowFocusSuccess: string;
6504
+ caretColorSuccess: string;
6400
6505
  loadingColorWarning: string;
6401
6506
  borderWarning: string;
6402
6507
  borderHoverWarning: string;
@@ -6750,6 +6855,13 @@ declare const _default: import("vue").DefineComponent<{
6750
6855
  borderFocus: string;
6751
6856
  boxShadowFocus: string;
6752
6857
  loadingColor: string;
6858
+ loadingColorSuccess: string;
6859
+ borderSuccess: string;
6860
+ borderHoverSuccess: string;
6861
+ colorFocusSuccess: string;
6862
+ borderFocusSuccess: string;
6863
+ boxShadowFocusSuccess: string;
6864
+ caretColorSuccess: string;
6753
6865
  loadingColorWarning: string;
6754
6866
  borderWarning: string;
6755
6867
  borderHoverWarning: string;
@@ -7282,6 +7394,13 @@ declare const _default: import("vue").DefineComponent<{
7282
7394
  borderFocus: string;
7283
7395
  boxShadowFocus: string;
7284
7396
  loadingColor: string;
7397
+ loadingColorSuccess: string;
7398
+ borderSuccess: string;
7399
+ borderHoverSuccess: string;
7400
+ colorFocusSuccess: string;
7401
+ borderFocusSuccess: string;
7402
+ boxShadowFocusSuccess: string;
7403
+ caretColorSuccess: string;
7285
7404
  loadingColorWarning: string;
7286
7405
  borderWarning: string;
7287
7406
  borderHoverWarning: string;
@@ -7582,6 +7701,13 @@ declare const _default: import("vue").DefineComponent<{
7582
7701
  borderFocus: string;
7583
7702
  boxShadowFocus: string;
7584
7703
  loadingColor: string;
7704
+ loadingColorSuccess: string;
7705
+ borderSuccess: string;
7706
+ borderHoverSuccess: string;
7707
+ colorFocusSuccess: string;
7708
+ borderFocusSuccess: string;
7709
+ boxShadowFocusSuccess: string;
7710
+ caretColorSuccess: string;
7585
7711
  loadingColorWarning: string;
7586
7712
  borderWarning: string;
7587
7713
  borderHoverWarning: string;
@@ -8114,6 +8240,13 @@ declare const _default: import("vue").DefineComponent<{
8114
8240
  borderFocus: string;
8115
8241
  boxShadowFocus: string;
8116
8242
  loadingColor: string;
8243
+ loadingColorSuccess: string;
8244
+ borderSuccess: string;
8245
+ borderHoverSuccess: string;
8246
+ colorFocusSuccess: string;
8247
+ borderFocusSuccess: string;
8248
+ boxShadowFocusSuccess: string;
8249
+ caretColorSuccess: string;
8117
8250
  loadingColorWarning: string;
8118
8251
  borderWarning: string;
8119
8252
  borderHoverWarning: string;
@@ -8414,6 +8547,13 @@ declare const _default: import("vue").DefineComponent<{
8414
8547
  borderFocus: string;
8415
8548
  boxShadowFocus: string;
8416
8549
  loadingColor: string;
8550
+ loadingColorSuccess: string;
8551
+ borderSuccess: string;
8552
+ borderHoverSuccess: string;
8553
+ colorFocusSuccess: string;
8554
+ borderFocusSuccess: string;
8555
+ boxShadowFocusSuccess: string;
8556
+ caretColorSuccess: string;
8417
8557
  loadingColorWarning: string;
8418
8558
  borderWarning: string;
8419
8559
  borderHoverWarning: string;
@@ -8946,6 +9086,13 @@ declare const _default: import("vue").DefineComponent<{
8946
9086
  borderFocus: string;
8947
9087
  boxShadowFocus: string;
8948
9088
  loadingColor: string;
9089
+ loadingColorSuccess: string;
9090
+ borderSuccess: string;
9091
+ borderHoverSuccess: string;
9092
+ colorFocusSuccess: string;
9093
+ borderFocusSuccess: string;
9094
+ boxShadowFocusSuccess: string;
9095
+ caretColorSuccess: string;
8949
9096
  loadingColorWarning: string;
8950
9097
  borderWarning: string;
8951
9098
  borderHoverWarning: string;
@@ -202,6 +202,13 @@ declare const _default: import("vue").DefineComponent<{
202
202
  borderFocus: string;
203
203
  boxShadowFocus: string;
204
204
  loadingColor: string;
205
+ loadingColorSuccess: string;
206
+ borderSuccess: string;
207
+ borderHoverSuccess: string;
208
+ colorFocusSuccess: string;
209
+ borderFocusSuccess: string;
210
+ boxShadowFocusSuccess: string;
211
+ caretColorSuccess: string;
205
212
  loadingColorWarning: string;
206
213
  borderWarning: string;
207
214
  borderHoverWarning: string;
@@ -734,6 +741,13 @@ declare const _default: import("vue").DefineComponent<{
734
741
  borderFocus: string;
735
742
  boxShadowFocus: string;
736
743
  loadingColor: string;
744
+ loadingColorSuccess: string;
745
+ borderSuccess: string;
746
+ borderHoverSuccess: string;
747
+ colorFocusSuccess: string;
748
+ borderFocusSuccess: string;
749
+ boxShadowFocusSuccess: string;
750
+ caretColorSuccess: string;
737
751
  loadingColorWarning: string;
738
752
  borderWarning: string;
739
753
  borderHoverWarning: string;
@@ -1179,6 +1193,13 @@ declare const _default: import("vue").DefineComponent<{
1179
1193
  borderFocus: string;
1180
1194
  boxShadowFocus: string;
1181
1195
  loadingColor: string;
1196
+ loadingColorSuccess: string;
1197
+ borderSuccess: string;
1198
+ borderHoverSuccess: string;
1199
+ colorFocusSuccess: string;
1200
+ borderFocusSuccess: string;
1201
+ boxShadowFocusSuccess: string;
1202
+ caretColorSuccess: string;
1182
1203
  loadingColorWarning: string;
1183
1204
  borderWarning: string;
1184
1205
  borderHoverWarning: string;
@@ -230,6 +230,13 @@ declare const _default: import("vue").DefineComponent<{
230
230
  borderFocus: string;
231
231
  boxShadowFocus: string;
232
232
  loadingColor: string;
233
+ loadingColorSuccess: string;
234
+ borderSuccess: string;
235
+ borderHoverSuccess: string;
236
+ colorFocusSuccess: string;
237
+ borderFocusSuccess: string;
238
+ boxShadowFocusSuccess: string;
239
+ caretColorSuccess: string;
233
240
  loadingColorWarning: string;
234
241
  borderWarning: string;
235
242
  borderHoverWarning: string;
@@ -762,6 +769,13 @@ declare const _default: import("vue").DefineComponent<{
762
769
  borderFocus: string;
763
770
  boxShadowFocus: string;
764
771
  loadingColor: string;
772
+ loadingColorSuccess: string;
773
+ borderSuccess: string;
774
+ borderHoverSuccess: string;
775
+ colorFocusSuccess: string;
776
+ borderFocusSuccess: string;
777
+ boxShadowFocusSuccess: string;
778
+ caretColorSuccess: string;
765
779
  loadingColorWarning: string;
766
780
  borderWarning: string;
767
781
  borderHoverWarning: string;
@@ -1207,6 +1221,13 @@ declare const _default: import("vue").DefineComponent<{
1207
1221
  borderFocus: string;
1208
1222
  boxShadowFocus: string;
1209
1223
  loadingColor: string;
1224
+ loadingColorSuccess: string;
1225
+ borderSuccess: string;
1226
+ borderHoverSuccess: string;
1227
+ colorFocusSuccess: string;
1228
+ borderFocusSuccess: string;
1229
+ boxShadowFocusSuccess: string;
1230
+ caretColorSuccess: string;
1210
1231
  loadingColorWarning: string;
1211
1232
  borderWarning: string;
1212
1233
  borderHoverWarning: string;
@@ -195,6 +195,13 @@ declare const _default: import("vue").DefineComponent<{
195
195
  borderFocus: string;
196
196
  boxShadowFocus: string;
197
197
  loadingColor: string;
198
+ loadingColorSuccess: string;
199
+ borderSuccess: string;
200
+ borderHoverSuccess: string;
201
+ colorFocusSuccess: string;
202
+ borderFocusSuccess: string;
203
+ boxShadowFocusSuccess: string;
204
+ caretColorSuccess: string;
198
205
  loadingColorWarning: string;
199
206
  borderWarning: string;
200
207
  borderHoverWarning: string;
@@ -727,6 +734,13 @@ declare const _default: import("vue").DefineComponent<{
727
734
  borderFocus: string;
728
735
  boxShadowFocus: string;
729
736
  loadingColor: string;
737
+ loadingColorSuccess: string;
738
+ borderSuccess: string;
739
+ borderHoverSuccess: string;
740
+ colorFocusSuccess: string;
741
+ borderFocusSuccess: string;
742
+ boxShadowFocusSuccess: string;
743
+ caretColorSuccess: string;
730
744
  loadingColorWarning: string;
731
745
  borderWarning: string;
732
746
  borderHoverWarning: string;
@@ -1172,6 +1186,13 @@ declare const _default: import("vue").DefineComponent<{
1172
1186
  borderFocus: string;
1173
1187
  boxShadowFocus: string;
1174
1188
  loadingColor: string;
1189
+ loadingColorSuccess: string;
1190
+ borderSuccess: string;
1191
+ borderHoverSuccess: string;
1192
+ colorFocusSuccess: string;
1193
+ borderFocusSuccess: string;
1194
+ boxShadowFocusSuccess: string;
1195
+ caretColorSuccess: string;
1175
1196
  loadingColorWarning: string;
1176
1197
  borderWarning: string;
1177
1198
  borderHoverWarning: string;
@@ -221,6 +221,13 @@ declare const _default: import("vue").DefineComponent<{
221
221
  borderFocus: string;
222
222
  boxShadowFocus: string;
223
223
  loadingColor: string;
224
+ loadingColorSuccess: string;
225
+ borderSuccess: string;
226
+ borderHoverSuccess: string;
227
+ colorFocusSuccess: string;
228
+ borderFocusSuccess: string;
229
+ boxShadowFocusSuccess: string;
230
+ caretColorSuccess: string;
224
231
  loadingColorWarning: string;
225
232
  borderWarning: string;
226
233
  borderHoverWarning: string;
@@ -753,6 +760,13 @@ declare const _default: import("vue").DefineComponent<{
753
760
  borderFocus: string;
754
761
  boxShadowFocus: string;
755
762
  loadingColor: string;
763
+ loadingColorSuccess: string;
764
+ borderSuccess: string;
765
+ borderHoverSuccess: string;
766
+ colorFocusSuccess: string;
767
+ borderFocusSuccess: string;
768
+ boxShadowFocusSuccess: string;
769
+ caretColorSuccess: string;
756
770
  loadingColorWarning: string;
757
771
  borderWarning: string;
758
772
  borderHoverWarning: string;
@@ -1198,6 +1212,13 @@ declare const _default: import("vue").DefineComponent<{
1198
1212
  borderFocus: string;
1199
1213
  boxShadowFocus: string;
1200
1214
  loadingColor: string;
1215
+ loadingColorSuccess: string;
1216
+ borderSuccess: string;
1217
+ borderHoverSuccess: string;
1218
+ colorFocusSuccess: string;
1219
+ borderFocusSuccess: string;
1220
+ boxShadowFocusSuccess: string;
1221
+ caretColorSuccess: string;
1201
1222
  loadingColorWarning: string;
1202
1223
  borderWarning: string;
1203
1224
  borderHoverWarning: string;
@@ -264,6 +264,13 @@ declare const _default: import("vue").DefineComponent<{
264
264
  borderFocus: string;
265
265
  boxShadowFocus: string;
266
266
  loadingColor: string;
267
+ loadingColorSuccess: string;
268
+ borderSuccess: string;
269
+ borderHoverSuccess: string;
270
+ colorFocusSuccess: string;
271
+ borderFocusSuccess: string;
272
+ boxShadowFocusSuccess: string;
273
+ caretColorSuccess: string;
267
274
  loadingColorWarning: string;
268
275
  borderWarning: string;
269
276
  borderHoverWarning: string;
@@ -796,6 +803,13 @@ declare const _default: import("vue").DefineComponent<{
796
803
  borderFocus: string;
797
804
  boxShadowFocus: string;
798
805
  loadingColor: string;
806
+ loadingColorSuccess: string;
807
+ borderSuccess: string;
808
+ borderHoverSuccess: string;
809
+ colorFocusSuccess: string;
810
+ borderFocusSuccess: string;
811
+ boxShadowFocusSuccess: string;
812
+ caretColorSuccess: string;
799
813
  loadingColorWarning: string;
800
814
  borderWarning: string;
801
815
  borderHoverWarning: string;
@@ -1241,6 +1255,13 @@ declare const _default: import("vue").DefineComponent<{
1241
1255
  borderFocus: string;
1242
1256
  boxShadowFocus: string;
1243
1257
  loadingColor: string;
1258
+ loadingColorSuccess: string;
1259
+ borderSuccess: string;
1260
+ borderHoverSuccess: string;
1261
+ colorFocusSuccess: string;
1262
+ borderFocusSuccess: string;
1263
+ boxShadowFocusSuccess: string;
1264
+ caretColorSuccess: string;
1244
1265
  loadingColorWarning: string;
1245
1266
  borderWarning: string;
1246
1267
  borderHoverWarning: string;
@@ -1586,6 +1607,13 @@ declare const _default: import("vue").DefineComponent<{
1586
1607
  borderFocus: string;
1587
1608
  boxShadowFocus: string;
1588
1609
  loadingColor: string;
1610
+ loadingColorSuccess: string;
1611
+ borderSuccess: string;
1612
+ borderHoverSuccess: string;
1613
+ colorFocusSuccess: string;
1614
+ borderFocusSuccess: string;
1615
+ boxShadowFocusSuccess: string;
1616
+ caretColorSuccess: string;
1589
1617
  loadingColorWarning: string;
1590
1618
  borderWarning: string;
1591
1619
  borderHoverWarning: string;
@@ -2118,6 +2146,13 @@ declare const _default: import("vue").DefineComponent<{
2118
2146
  borderFocus: string;
2119
2147
  boxShadowFocus: string;
2120
2148
  loadingColor: string;
2149
+ loadingColorSuccess: string;
2150
+ borderSuccess: string;
2151
+ borderHoverSuccess: string;
2152
+ colorFocusSuccess: string;
2153
+ borderFocusSuccess: string;
2154
+ boxShadowFocusSuccess: string;
2155
+ caretColorSuccess: string;
2121
2156
  loadingColorWarning: string;
2122
2157
  borderWarning: string;
2123
2158
  borderHoverWarning: string;
@@ -2563,6 +2598,13 @@ declare const _default: import("vue").DefineComponent<{
2563
2598
  borderFocus: string;
2564
2599
  boxShadowFocus: string;
2565
2600
  loadingColor: string;
2601
+ loadingColorSuccess: string;
2602
+ borderSuccess: string;
2603
+ borderHoverSuccess: string;
2604
+ colorFocusSuccess: string;
2605
+ borderFocusSuccess: string;
2606
+ boxShadowFocusSuccess: string;
2607
+ caretColorSuccess: string;
2566
2608
  loadingColorWarning: string;
2567
2609
  borderWarning: string;
2568
2610
  borderHoverWarning: string;
@@ -199,6 +199,13 @@ declare const _default: import("vue").DefineComponent<{
199
199
  borderFocus: string;
200
200
  boxShadowFocus: string;
201
201
  loadingColor: string;
202
+ loadingColorSuccess: string;
203
+ borderSuccess: string;
204
+ borderHoverSuccess: string;
205
+ colorFocusSuccess: string;
206
+ borderFocusSuccess: string;
207
+ boxShadowFocusSuccess: string;
208
+ caretColorSuccess: string;
202
209
  loadingColorWarning: string;
203
210
  borderWarning: string;
204
211
  borderHoverWarning: string;
@@ -731,6 +738,13 @@ declare const _default: import("vue").DefineComponent<{
731
738
  borderFocus: string;
732
739
  boxShadowFocus: string;
733
740
  loadingColor: string;
741
+ loadingColorSuccess: string;
742
+ borderSuccess: string;
743
+ borderHoverSuccess: string;
744
+ colorFocusSuccess: string;
745
+ borderFocusSuccess: string;
746
+ boxShadowFocusSuccess: string;
747
+ caretColorSuccess: string;
734
748
  loadingColorWarning: string;
735
749
  borderWarning: string;
736
750
  borderHoverWarning: string;
@@ -1176,6 +1190,13 @@ declare const _default: import("vue").DefineComponent<{
1176
1190
  borderFocus: string;
1177
1191
  boxShadowFocus: string;
1178
1192
  loadingColor: string;
1193
+ loadingColorSuccess: string;
1194
+ borderSuccess: string;
1195
+ borderHoverSuccess: string;
1196
+ colorFocusSuccess: string;
1197
+ borderFocusSuccess: string;
1198
+ boxShadowFocusSuccess: string;
1199
+ caretColorSuccess: string;
1179
1200
  loadingColorWarning: string;
1180
1201
  borderWarning: string;
1181
1202
  borderHoverWarning: string;
@@ -264,6 +264,13 @@ declare const _default: import("vue").DefineComponent<{
264
264
  borderFocus: string;
265
265
  boxShadowFocus: string;
266
266
  loadingColor: string;
267
+ loadingColorSuccess: string;
268
+ borderSuccess: string;
269
+ borderHoverSuccess: string;
270
+ colorFocusSuccess: string;
271
+ borderFocusSuccess: string;
272
+ boxShadowFocusSuccess: string;
273
+ caretColorSuccess: string;
267
274
  loadingColorWarning: string;
268
275
  borderWarning: string;
269
276
  borderHoverWarning: string;
@@ -796,6 +803,13 @@ declare const _default: import("vue").DefineComponent<{
796
803
  borderFocus: string;
797
804
  boxShadowFocus: string;
798
805
  loadingColor: string;
806
+ loadingColorSuccess: string;
807
+ borderSuccess: string;
808
+ borderHoverSuccess: string;
809
+ colorFocusSuccess: string;
810
+ borderFocusSuccess: string;
811
+ boxShadowFocusSuccess: string;
812
+ caretColorSuccess: string;
799
813
  loadingColorWarning: string;
800
814
  borderWarning: string;
801
815
  borderHoverWarning: string;
@@ -1241,6 +1255,13 @@ declare const _default: import("vue").DefineComponent<{
1241
1255
  borderFocus: string;
1242
1256
  boxShadowFocus: string;
1243
1257
  loadingColor: string;
1258
+ loadingColorSuccess: string;
1259
+ borderSuccess: string;
1260
+ borderHoverSuccess: string;
1261
+ colorFocusSuccess: string;
1262
+ borderFocusSuccess: string;
1263
+ boxShadowFocusSuccess: string;
1264
+ caretColorSuccess: string;
1244
1265
  loadingColorWarning: string;
1245
1266
  borderWarning: string;
1246
1267
  borderHoverWarning: string;
@@ -1586,6 +1607,13 @@ declare const _default: import("vue").DefineComponent<{
1586
1607
  borderFocus: string;
1587
1608
  boxShadowFocus: string;
1588
1609
  loadingColor: string;
1610
+ loadingColorSuccess: string;
1611
+ borderSuccess: string;
1612
+ borderHoverSuccess: string;
1613
+ colorFocusSuccess: string;
1614
+ borderFocusSuccess: string;
1615
+ boxShadowFocusSuccess: string;
1616
+ caretColorSuccess: string;
1589
1617
  loadingColorWarning: string;
1590
1618
  borderWarning: string;
1591
1619
  borderHoverWarning: string;
@@ -2118,6 +2146,13 @@ declare const _default: import("vue").DefineComponent<{
2118
2146
  borderFocus: string;
2119
2147
  boxShadowFocus: string;
2120
2148
  loadingColor: string;
2149
+ loadingColorSuccess: string;
2150
+ borderSuccess: string;
2151
+ borderHoverSuccess: string;
2152
+ colorFocusSuccess: string;
2153
+ borderFocusSuccess: string;
2154
+ boxShadowFocusSuccess: string;
2155
+ caretColorSuccess: string;
2121
2156
  loadingColorWarning: string;
2122
2157
  borderWarning: string;
2123
2158
  borderHoverWarning: string;
@@ -2563,6 +2598,13 @@ declare const _default: import("vue").DefineComponent<{
2563
2598
  borderFocus: string;
2564
2599
  boxShadowFocus: string;
2565
2600
  loadingColor: string;
2601
+ loadingColorSuccess: string;
2602
+ borderSuccess: string;
2603
+ borderHoverSuccess: string;
2604
+ colorFocusSuccess: string;
2605
+ borderFocusSuccess: string;
2606
+ boxShadowFocusSuccess: string;
2607
+ caretColorSuccess: string;
2566
2608
  loadingColorWarning: string;
2567
2609
  borderWarning: string;
2568
2610
  borderHoverWarning: string;