@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
@@ -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;
@@ -157,6 +157,13 @@ export declare const transferProps: {
157
157
  borderFocus: string;
158
158
  boxShadowFocus: string;
159
159
  loadingColor: string;
160
+ loadingColorSuccess: string;
161
+ borderSuccess: string;
162
+ borderHoverSuccess: string;
163
+ colorFocusSuccess: string;
164
+ borderFocusSuccess: string;
165
+ boxShadowFocusSuccess: string;
166
+ caretColorSuccess: string;
160
167
  loadingColorWarning: string;
161
168
  borderWarning: string;
162
169
  borderHoverWarning: string;
@@ -548,6 +555,13 @@ export declare const transferProps: {
548
555
  borderFocus: string;
549
556
  boxShadowFocus: string;
550
557
  loadingColor: string;
558
+ loadingColorSuccess: string;
559
+ borderSuccess: string;
560
+ borderHoverSuccess: string;
561
+ colorFocusSuccess: string;
562
+ borderFocusSuccess: string;
563
+ boxShadowFocusSuccess: string;
564
+ caretColorSuccess: string;
551
565
  loadingColorWarning: string;
552
566
  borderWarning: string;
553
567
  borderHoverWarning: string;
@@ -939,6 +953,13 @@ export declare const transferProps: {
939
953
  borderFocus: string;
940
954
  boxShadowFocus: string;
941
955
  loadingColor: string;
956
+ loadingColorSuccess: string;
957
+ borderSuccess: string;
958
+ borderHoverSuccess: string;
959
+ colorFocusSuccess: string;
960
+ borderFocusSuccess: string;
961
+ boxShadowFocusSuccess: string;
962
+ caretColorSuccess: string;
942
963
  loadingColorWarning: string;
943
964
  borderWarning: string;
944
965
  borderHoverWarning: string;
@@ -1360,6 +1381,13 @@ declare const _default: import("vue").DefineComponent<{
1360
1381
  borderFocus: string;
1361
1382
  boxShadowFocus: string;
1362
1383
  loadingColor: string;
1384
+ loadingColorSuccess: string;
1385
+ borderSuccess: string;
1386
+ borderHoverSuccess: string;
1387
+ colorFocusSuccess: string;
1388
+ borderFocusSuccess: string;
1389
+ boxShadowFocusSuccess: string;
1390
+ caretColorSuccess: string;
1363
1391
  loadingColorWarning: string;
1364
1392
  borderWarning: string;
1365
1393
  borderHoverWarning: string;
@@ -1751,6 +1779,13 @@ declare const _default: import("vue").DefineComponent<{
1751
1779
  borderFocus: string;
1752
1780
  boxShadowFocus: string;
1753
1781
  loadingColor: string;
1782
+ loadingColorSuccess: string;
1783
+ borderSuccess: string;
1784
+ borderHoverSuccess: string;
1785
+ colorFocusSuccess: string;
1786
+ borderFocusSuccess: string;
1787
+ boxShadowFocusSuccess: string;
1788
+ caretColorSuccess: string;
1754
1789
  loadingColorWarning: string;
1755
1790
  borderWarning: string;
1756
1791
  borderHoverWarning: string;
@@ -2142,6 +2177,13 @@ declare const _default: import("vue").DefineComponent<{
2142
2177
  borderFocus: string;
2143
2178
  boxShadowFocus: string;
2144
2179
  loadingColor: string;
2180
+ loadingColorSuccess: string;
2181
+ borderSuccess: string;
2182
+ borderHoverSuccess: string;
2183
+ colorFocusSuccess: string;
2184
+ borderFocusSuccess: string;
2185
+ boxShadowFocusSuccess: string;
2186
+ caretColorSuccess: string;
2145
2187
  loadingColorWarning: string;
2146
2188
  borderWarning: string;
2147
2189
  borderHoverWarning: string;
@@ -2546,6 +2588,13 @@ declare const _default: import("vue").DefineComponent<{
2546
2588
  borderFocus: string;
2547
2589
  boxShadowFocus: string;
2548
2590
  loadingColor: string;
2591
+ loadingColorSuccess: string;
2592
+ borderSuccess: string;
2593
+ borderHoverSuccess: string;
2594
+ colorFocusSuccess: string;
2595
+ borderFocusSuccess: string;
2596
+ boxShadowFocusSuccess: string;
2597
+ caretColorSuccess: string;
2549
2598
  loadingColorWarning: string;
2550
2599
  borderWarning: string;
2551
2600
  borderHoverWarning: string;
@@ -3030,6 +3079,13 @@ declare const _default: import("vue").DefineComponent<{
3030
3079
  borderFocus: string;
3031
3080
  boxShadowFocus: string;
3032
3081
  loadingColor: string;
3082
+ loadingColorSuccess: string;
3083
+ borderSuccess: string;
3084
+ borderHoverSuccess: string;
3085
+ colorFocusSuccess: string;
3086
+ borderFocusSuccess: string;
3087
+ boxShadowFocusSuccess: string;
3088
+ caretColorSuccess: string;
3033
3089
  loadingColorWarning: string;
3034
3090
  borderWarning: string;
3035
3091
  borderHoverWarning: string;
@@ -3421,6 +3477,13 @@ declare const _default: import("vue").DefineComponent<{
3421
3477
  borderFocus: string;
3422
3478
  boxShadowFocus: string;
3423
3479
  loadingColor: string;
3480
+ loadingColorSuccess: string;
3481
+ borderSuccess: string;
3482
+ borderHoverSuccess: string;
3483
+ colorFocusSuccess: string;
3484
+ borderFocusSuccess: string;
3485
+ boxShadowFocusSuccess: string;
3486
+ caretColorSuccess: string;
3424
3487
  loadingColorWarning: string;
3425
3488
  borderWarning: string;
3426
3489
  borderHoverWarning: string;
@@ -3812,6 +3875,13 @@ declare const _default: import("vue").DefineComponent<{
3812
3875
  borderFocus: string;
3813
3876
  boxShadowFocus: string;
3814
3877
  loadingColor: string;
3878
+ loadingColorSuccess: string;
3879
+ borderSuccess: string;
3880
+ borderHoverSuccess: string;
3881
+ colorFocusSuccess: string;
3882
+ borderFocusSuccess: string;
3883
+ boxShadowFocusSuccess: string;
3884
+ caretColorSuccess: string;
3815
3885
  loadingColorWarning: string;
3816
3886
  borderWarning: string;
3817
3887
  borderHoverWarning: string;
@@ -148,6 +148,13 @@ declare const _default: import("vue").DefineComponent<{
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;
@@ -161,6 +161,13 @@ declare const _default: import("vue").DefineComponent<{
161
161
  borderFocus: string;
162
162
  boxShadowFocus: string;
163
163
  loadingColor: string;
164
+ loadingColorSuccess: string;
165
+ borderSuccess: string;
166
+ borderHoverSuccess: string;
167
+ colorFocusSuccess: string;
168
+ borderFocusSuccess: string;
169
+ boxShadowFocusSuccess: string;
170
+ caretColorSuccess: string;
164
171
  loadingColorWarning: string;
165
172
  borderWarning: string;
166
173
  borderHoverWarning: string;
@@ -148,6 +148,13 @@ declare const _default: import("vue").DefineComponent<{
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;
@@ -152,6 +152,13 @@ declare const transferLight: import("../../_mixins").Theme<"Transfer", {
152
152
  borderFocus: string;
153
153
  boxShadowFocus: string;
154
154
  loadingColor: string;
155
+ loadingColorSuccess: string;
156
+ borderSuccess: string;
157
+ borderHoverSuccess: string;
158
+ colorFocusSuccess: string;
159
+ borderFocusSuccess: string;
160
+ boxShadowFocusSuccess: string;
161
+ caretColorSuccess: string;
155
162
  loadingColorWarning: string;
156
163
  borderWarning: string;
157
164
  borderHoverWarning: string;
@@ -3,9 +3,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- const en_US_1 = __importDefault(require("date-fns/locale/en-US")); //
6
+ const index_js_1 = __importDefault(require("date-fns/locale/en-US/index.js"));
7
7
  const dateEnUs = {
8
8
  name: 'en-US',
9
- locale: en_US_1.default
9
+ locale: index_js_1.default
10
10
  };
11
11
  exports.default = dateEnUs;
@@ -172,6 +172,13 @@ export declare const mentionProps: {
172
172
  borderFocus: string;
173
173
  boxShadowFocus: string;
174
174
  loadingColor: string;
175
+ loadingColorSuccess: string;
176
+ borderSuccess: string;
177
+ borderHoverSuccess: string;
178
+ colorFocusSuccess: string;
179
+ borderFocusSuccess: string;
180
+ boxShadowFocusSuccess: string;
181
+ caretColorSuccess: string;
175
182
  loadingColorWarning: string;
176
183
  borderWarning: string;
177
184
  borderHoverWarning: string;
@@ -305,6 +312,13 @@ export declare const mentionProps: {
305
312
  borderFocus: string;
306
313
  boxShadowFocus: string;
307
314
  loadingColor: string;
315
+ loadingColorSuccess: string;
316
+ borderSuccess: string;
317
+ borderHoverSuccess: string;
318
+ colorFocusSuccess: string;
319
+ borderFocusSuccess: string;
320
+ boxShadowFocusSuccess: string;
321
+ caretColorSuccess: string;
308
322
  loadingColorWarning: string;
309
323
  borderWarning: string;
310
324
  borderHoverWarning: string;
@@ -438,6 +452,13 @@ export declare const mentionProps: {
438
452
  borderFocus: string;
439
453
  boxShadowFocus: string;
440
454
  loadingColor: string;
455
+ loadingColorSuccess: string;
456
+ borderSuccess: string;
457
+ borderHoverSuccess: string;
458
+ colorFocusSuccess: string;
459
+ borderFocusSuccess: string;
460
+ boxShadowFocusSuccess: string;
461
+ caretColorSuccess: string;
441
462
  loadingColorWarning: string;
442
463
  borderWarning: string;
443
464
  borderHoverWarning: string;
@@ -630,6 +651,13 @@ declare const _default: import("vue").DefineComponent<{
630
651
  borderFocus: string;
631
652
  boxShadowFocus: string;
632
653
  loadingColor: string;
654
+ loadingColorSuccess: string;
655
+ borderSuccess: string;
656
+ borderHoverSuccess: string;
657
+ colorFocusSuccess: string;
658
+ borderFocusSuccess: string;
659
+ boxShadowFocusSuccess: string;
660
+ caretColorSuccess: string;
633
661
  loadingColorWarning: string;
634
662
  borderWarning: string;
635
663
  borderHoverWarning: string;
@@ -763,6 +791,13 @@ declare const _default: import("vue").DefineComponent<{
763
791
  borderFocus: string;
764
792
  boxShadowFocus: string;
765
793
  loadingColor: string;
794
+ loadingColorSuccess: string;
795
+ borderSuccess: string;
796
+ borderHoverSuccess: string;
797
+ colorFocusSuccess: string;
798
+ borderFocusSuccess: string;
799
+ boxShadowFocusSuccess: string;
800
+ caretColorSuccess: string;
766
801
  loadingColorWarning: string;
767
802
  borderWarning: string;
768
803
  borderHoverWarning: string;
@@ -896,6 +931,13 @@ declare const _default: import("vue").DefineComponent<{
896
931
  borderFocus: string;
897
932
  boxShadowFocus: string;
898
933
  loadingColor: string;
934
+ loadingColorSuccess: string;
935
+ borderSuccess: string;
936
+ borderHoverSuccess: string;
937
+ colorFocusSuccess: string;
938
+ borderFocusSuccess: string;
939
+ boxShadowFocusSuccess: string;
940
+ caretColorSuccess: string;
899
941
  loadingColorWarning: string;
900
942
  borderWarning: string;
901
943
  borderHoverWarning: string;
@@ -1038,6 +1080,13 @@ declare const _default: import("vue").DefineComponent<{
1038
1080
  borderFocus: string;
1039
1081
  boxShadowFocus: string;
1040
1082
  loadingColor: string;
1083
+ loadingColorSuccess: string;
1084
+ borderSuccess: string;
1085
+ borderHoverSuccess: string;
1086
+ colorFocusSuccess: string;
1087
+ borderFocusSuccess: string;
1088
+ boxShadowFocusSuccess: string;
1089
+ caretColorSuccess: string;
1041
1090
  loadingColorWarning: string;
1042
1091
  borderWarning: string;
1043
1092
  borderHoverWarning: string;
@@ -1311,6 +1360,13 @@ declare const _default: import("vue").DefineComponent<{
1311
1360
  borderFocus: string;
1312
1361
  boxShadowFocus: string;
1313
1362
  loadingColor: string;
1363
+ loadingColorSuccess: string;
1364
+ borderSuccess: string;
1365
+ borderHoverSuccess: string;
1366
+ colorFocusSuccess: string;
1367
+ borderFocusSuccess: string;
1368
+ boxShadowFocusSuccess: string;
1369
+ caretColorSuccess: string;
1314
1370
  loadingColorWarning: string;
1315
1371
  borderWarning: string;
1316
1372
  borderHoverWarning: string;
@@ -1444,6 +1500,13 @@ declare const _default: import("vue").DefineComponent<{
1444
1500
  borderFocus: string;
1445
1501
  boxShadowFocus: string;
1446
1502
  loadingColor: string;
1503
+ loadingColorSuccess: string;
1504
+ borderSuccess: string;
1505
+ borderHoverSuccess: string;
1506
+ colorFocusSuccess: string;
1507
+ borderFocusSuccess: string;
1508
+ boxShadowFocusSuccess: string;
1509
+ caretColorSuccess: string;
1447
1510
  loadingColorWarning: string;
1448
1511
  borderWarning: string;
1449
1512
  borderHoverWarning: string;
@@ -1577,6 +1640,13 @@ declare const _default: import("vue").DefineComponent<{
1577
1640
  borderFocus: string;
1578
1641
  boxShadowFocus: string;
1579
1642
  loadingColor: string;
1643
+ loadingColorSuccess: string;
1644
+ borderSuccess: string;
1645
+ borderHoverSuccess: string;
1646
+ colorFocusSuccess: string;
1647
+ borderFocusSuccess: string;
1648
+ boxShadowFocusSuccess: string;
1649
+ caretColorSuccess: string;
1580
1650
  loadingColorWarning: string;
1581
1651
  borderWarning: string;
1582
1652
  borderHoverWarning: string;
@@ -110,6 +110,13 @@ declare const mentionLight: import("../../_mixins").Theme<"Mention", {
110
110
  borderFocus: string;
111
111
  boxShadowFocus: string;
112
112
  loadingColor: string;
113
+ loadingColorSuccess: string;
114
+ borderSuccess: string;
115
+ borderHoverSuccess: string;
116
+ colorFocusSuccess: string;
117
+ borderFocusSuccess: string;
118
+ boxShadowFocusSuccess: string;
119
+ caretColorSuccess: string;
113
120
  loadingColorWarning: string;
114
121
  borderWarning: string;
115
122
  borderHoverWarning: string;
@@ -365,6 +365,13 @@ export declare const paginationProps: {
365
365
  borderFocus: string;
366
366
  boxShadowFocus: string;
367
367
  loadingColor: string;
368
+ loadingColorSuccess: string;
369
+ borderSuccess: string;
370
+ borderHoverSuccess: string;
371
+ colorFocusSuccess: string;
372
+ borderFocusSuccess: string;
373
+ boxShadowFocusSuccess: string;
374
+ caretColorSuccess: string;
368
375
  loadingColorWarning: string;
369
376
  borderWarning: string;
370
377
  borderHoverWarning: string;
@@ -779,6 +786,13 @@ export declare const paginationProps: {
779
786
  borderFocus: string;
780
787
  boxShadowFocus: string;
781
788
  loadingColor: string;
789
+ loadingColorSuccess: string;
790
+ borderSuccess: string;
791
+ borderHoverSuccess: string;
792
+ colorFocusSuccess: string;
793
+ borderFocusSuccess: string;
794
+ boxShadowFocusSuccess: string;
795
+ caretColorSuccess: string;
782
796
  loadingColorWarning: string;
783
797
  borderWarning: string;
784
798
  borderHoverWarning: string;
@@ -1193,6 +1207,13 @@ export declare const paginationProps: {
1193
1207
  borderFocus: string;
1194
1208
  boxShadowFocus: string;
1195
1209
  loadingColor: string;
1210
+ loadingColorSuccess: string;
1211
+ borderSuccess: string;
1212
+ borderHoverSuccess: string;
1213
+ colorFocusSuccess: string;
1214
+ borderFocusSuccess: string;
1215
+ boxShadowFocusSuccess: string;
1216
+ caretColorSuccess: string;
1196
1217
  loadingColorWarning: string;
1197
1218
  borderWarning: string;
1198
1219
  borderHoverWarning: string;
@@ -1663,6 +1684,13 @@ declare const _default: import("vue").DefineComponent<{
1663
1684
  borderFocus: string;
1664
1685
  boxShadowFocus: string;
1665
1686
  loadingColor: string;
1687
+ loadingColorSuccess: string;
1688
+ borderSuccess: string;
1689
+ borderHoverSuccess: string;
1690
+ colorFocusSuccess: string;
1691
+ borderFocusSuccess: string;
1692
+ boxShadowFocusSuccess: string;
1693
+ caretColorSuccess: string;
1666
1694
  loadingColorWarning: string;
1667
1695
  borderWarning: string;
1668
1696
  borderHoverWarning: string;
@@ -2077,6 +2105,13 @@ declare const _default: import("vue").DefineComponent<{
2077
2105
  borderFocus: string;
2078
2106
  boxShadowFocus: string;
2079
2107
  loadingColor: string;
2108
+ loadingColorSuccess: string;
2109
+ borderSuccess: string;
2110
+ borderHoverSuccess: string;
2111
+ colorFocusSuccess: string;
2112
+ borderFocusSuccess: string;
2113
+ boxShadowFocusSuccess: string;
2114
+ caretColorSuccess: string;
2080
2115
  loadingColorWarning: string;
2081
2116
  borderWarning: string;
2082
2117
  borderHoverWarning: string;
@@ -2491,6 +2526,13 @@ declare const _default: import("vue").DefineComponent<{
2491
2526
  borderFocus: string;
2492
2527
  boxShadowFocus: string;
2493
2528
  loadingColor: string;
2529
+ loadingColorSuccess: string;
2530
+ borderSuccess: string;
2531
+ borderHoverSuccess: string;
2532
+ colorFocusSuccess: string;
2533
+ borderFocusSuccess: string;
2534
+ boxShadowFocusSuccess: string;
2535
+ caretColorSuccess: string;
2494
2536
  loadingColorWarning: string;
2495
2537
  borderWarning: string;
2496
2538
  borderHoverWarning: string;
@@ -2924,6 +2966,13 @@ declare const _default: import("vue").DefineComponent<{
2924
2966
  borderFocus: string;
2925
2967
  boxShadowFocus: string;
2926
2968
  loadingColor: string;
2969
+ loadingColorSuccess: string;
2970
+ borderSuccess: string;
2971
+ borderHoverSuccess: string;
2972
+ colorFocusSuccess: string;
2973
+ borderFocusSuccess: string;
2974
+ boxShadowFocusSuccess: string;
2975
+ caretColorSuccess: string;
2927
2976
  loadingColorWarning: string;
2928
2977
  borderWarning: string;
2929
2978
  borderHoverWarning: string;
@@ -3742,6 +3791,13 @@ declare const _default: import("vue").DefineComponent<{
3742
3791
  borderFocus: string;
3743
3792
  boxShadowFocus: string;
3744
3793
  loadingColor: string;
3794
+ loadingColorSuccess: string;
3795
+ borderSuccess: string;
3796
+ borderHoverSuccess: string;
3797
+ colorFocusSuccess: string;
3798
+ borderFocusSuccess: string;
3799
+ boxShadowFocusSuccess: string;
3800
+ caretColorSuccess: string;
3745
3801
  loadingColorWarning: string;
3746
3802
  borderWarning: string;
3747
3803
  borderHoverWarning: string;
@@ -4156,6 +4212,13 @@ declare const _default: import("vue").DefineComponent<{
4156
4212
  borderFocus: string;
4157
4213
  boxShadowFocus: string;
4158
4214
  loadingColor: string;
4215
+ loadingColorSuccess: string;
4216
+ borderSuccess: string;
4217
+ borderHoverSuccess: string;
4218
+ colorFocusSuccess: string;
4219
+ borderFocusSuccess: string;
4220
+ boxShadowFocusSuccess: string;
4221
+ caretColorSuccess: string;
4159
4222
  loadingColorWarning: string;
4160
4223
  borderWarning: string;
4161
4224
  borderHoverWarning: string;
@@ -4570,6 +4633,13 @@ declare const _default: import("vue").DefineComponent<{
4570
4633
  borderFocus: string;
4571
4634
  boxShadowFocus: string;
4572
4635
  loadingColor: string;
4636
+ loadingColorSuccess: string;
4637
+ borderSuccess: string;
4638
+ borderHoverSuccess: string;
4639
+ colorFocusSuccess: string;
4640
+ borderFocusSuccess: string;
4641
+ boxShadowFocusSuccess: string;
4642
+ caretColorSuccess: string;
4573
4643
  loadingColorWarning: string;
4574
4644
  borderWarning: string;
4575
4645
  borderHoverWarning: string;
@@ -380,6 +380,13 @@ declare const paginationLight: import("../../_mixins").Theme<"Pagination", {
380
380
  borderFocus: string;
381
381
  boxShadowFocus: string;
382
382
  loadingColor: string;
383
+ loadingColorSuccess: string;
384
+ borderSuccess: string;
385
+ borderHoverSuccess: string;
386
+ colorFocusSuccess: string;
387
+ borderFocusSuccess: string;
388
+ boxShadowFocusSuccess: string;
389
+ caretColorSuccess: string;
383
390
  loadingColorWarning: string;
384
391
  borderWarning: string;
385
392
  borderHoverWarning: string;
@@ -368,6 +368,13 @@ declare const _default: import("vue").DefineComponent<{
368
368
  borderFocus: string;
369
369
  boxShadowFocus: string;
370
370
  loadingColor: string;
371
+ loadingColorSuccess: string;
372
+ borderSuccess: string;
373
+ borderHoverSuccess: string;
374
+ colorFocusSuccess: string;
375
+ borderFocusSuccess: string;
376
+ boxShadowFocusSuccess: string;
377
+ caretColorSuccess: string;
371
378
  loadingColorWarning: string;
372
379
  borderWarning: string;
373
380
  borderHoverWarning: string;