@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
@@ -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;
@@ -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;
@@ -195,6 +195,13 @@ declare function useCalendar(props: ExtractPropTypes<typeof useCalendarProps>, t
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 function useCalendar(props: ExtractPropTypes<typeof useCalendarProps>, t
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 function useCalendar(props: ExtractPropTypes<typeof useCalendarProps>, t
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;
@@ -227,6 +227,13 @@ declare function useDualCalendar(props: ExtractPropTypes<typeof useDualCalendarP
227
227
  borderFocus: string;
228
228
  boxShadowFocus: string;
229
229
  loadingColor: string;
230
+ loadingColorSuccess: string;
231
+ borderSuccess: string;
232
+ borderHoverSuccess: string;
233
+ colorFocusSuccess: string;
234
+ borderFocusSuccess: string;
235
+ boxShadowFocusSuccess: string;
236
+ caretColorSuccess: string;
230
237
  loadingColorWarning: string;
231
238
  borderWarning: string;
232
239
  borderHoverWarning: string;
@@ -759,6 +766,13 @@ declare function useDualCalendar(props: ExtractPropTypes<typeof useDualCalendarP
759
766
  borderFocus: string;
760
767
  boxShadowFocus: string;
761
768
  loadingColor: string;
769
+ loadingColorSuccess: string;
770
+ borderSuccess: string;
771
+ borderHoverSuccess: string;
772
+ colorFocusSuccess: string;
773
+ borderFocusSuccess: string;
774
+ boxShadowFocusSuccess: string;
775
+ caretColorSuccess: string;
762
776
  loadingColorWarning: string;
763
777
  borderWarning: string;
764
778
  borderHoverWarning: string;
@@ -1204,6 +1218,13 @@ declare function useDualCalendar(props: ExtractPropTypes<typeof useDualCalendarP
1204
1218
  borderFocus: string;
1205
1219
  boxShadowFocus: string;
1206
1220
  loadingColor: string;
1221
+ loadingColorSuccess: string;
1222
+ borderSuccess: string;
1223
+ borderHoverSuccess: string;
1224
+ colorFocusSuccess: string;
1225
+ borderFocusSuccess: string;
1226
+ boxShadowFocusSuccess: string;
1227
+ caretColorSuccess: string;
1207
1228
  loadingColorWarning: string;
1208
1229
  borderWarning: string;
1209
1230
  borderHoverWarning: string;
@@ -171,6 +171,13 @@ declare function usePanelCommon(props: UsePanelCommonProps): {
171
171
  borderFocus: string;
172
172
  boxShadowFocus: string;
173
173
  loadingColor: string;
174
+ loadingColorSuccess: string;
175
+ borderSuccess: string;
176
+ borderHoverSuccess: string;
177
+ colorFocusSuccess: string;
178
+ borderFocusSuccess: string;
179
+ boxShadowFocusSuccess: string;
180
+ caretColorSuccess: string;
174
181
  loadingColorWarning: string;
175
182
  borderWarning: string;
176
183
  borderHoverWarning: string;
@@ -703,6 +710,13 @@ declare function usePanelCommon(props: UsePanelCommonProps): {
703
710
  borderFocus: string;
704
711
  boxShadowFocus: string;
705
712
  loadingColor: string;
713
+ loadingColorSuccess: string;
714
+ borderSuccess: string;
715
+ borderHoverSuccess: string;
716
+ colorFocusSuccess: string;
717
+ borderFocusSuccess: string;
718
+ boxShadowFocusSuccess: string;
719
+ caretColorSuccess: string;
706
720
  loadingColorWarning: string;
707
721
  borderWarning: string;
708
722
  borderHoverWarning: string;
@@ -1148,6 +1162,13 @@ declare function usePanelCommon(props: UsePanelCommonProps): {
1148
1162
  borderFocus: string;
1149
1163
  boxShadowFocus: string;
1150
1164
  loadingColor: string;
1165
+ loadingColorSuccess: string;
1166
+ borderSuccess: string;
1167
+ borderHoverSuccess: string;
1168
+ colorFocusSuccess: string;
1169
+ borderFocusSuccess: string;
1170
+ boxShadowFocusSuccess: string;
1171
+ caretColorSuccess: string;
1151
1172
  loadingColorWarning: string;
1152
1173
  borderWarning: string;
1153
1174
  borderHoverWarning: string;
@@ -238,6 +238,13 @@ declare const datePickerLight: import("../../_mixins").Theme<"DatePicker", {
238
238
  borderFocus: string;
239
239
  boxShadowFocus: string;
240
240
  loadingColor: string;
241
+ loadingColorSuccess: string;
242
+ borderSuccess: string;
243
+ borderHoverSuccess: string;
244
+ colorFocusSuccess: string;
245
+ borderFocusSuccess: string;
246
+ boxShadowFocusSuccess: string;
247
+ caretColorSuccess: string;
241
248
  loadingColorWarning: string;
242
249
  borderWarning: string;
243
250
  borderHoverWarning: string;
@@ -770,6 +777,13 @@ declare const datePickerLight: import("../../_mixins").Theme<"DatePicker", {
770
777
  borderFocus: string;
771
778
  boxShadowFocus: string;
772
779
  loadingColor: string;
780
+ loadingColorSuccess: string;
781
+ borderSuccess: string;
782
+ borderHoverSuccess: string;
783
+ colorFocusSuccess: string;
784
+ borderFocusSuccess: string;
785
+ boxShadowFocusSuccess: string;
786
+ caretColorSuccess: string;
773
787
  loadingColorWarning: string;
774
788
  borderWarning: string;
775
789
  borderHoverWarning: string;
@@ -342,6 +342,13 @@ export declare const datePickerV2Props: {
342
342
  borderFocus: string;
343
343
  boxShadowFocus: string;
344
344
  loadingColor: string;
345
+ loadingColorSuccess: string;
346
+ borderSuccess: string;
347
+ borderHoverSuccess: string;
348
+ colorFocusSuccess: string;
349
+ borderFocusSuccess: string;
350
+ boxShadowFocusSuccess: string;
351
+ caretColorSuccess: string;
345
352
  loadingColorWarning: string;
346
353
  borderWarning: string;
347
354
  borderHoverWarning: string;
@@ -788,6 +795,13 @@ export declare const datePickerV2Props: {
788
795
  borderFocus: string;
789
796
  boxShadowFocus: string;
790
797
  loadingColor: string;
798
+ loadingColorSuccess: string;
799
+ borderSuccess: string;
800
+ borderHoverSuccess: string;
801
+ colorFocusSuccess: string;
802
+ borderFocusSuccess: string;
803
+ boxShadowFocusSuccess: string;
804
+ caretColorSuccess: string;
791
805
  loadingColorWarning: string;
792
806
  borderWarning: string;
793
807
  borderHoverWarning: string;
@@ -1234,6 +1248,13 @@ export declare const datePickerV2Props: {
1234
1248
  borderFocus: string;
1235
1249
  boxShadowFocus: string;
1236
1250
  loadingColor: string;
1251
+ loadingColorSuccess: string;
1252
+ borderSuccess: string;
1253
+ borderHoverSuccess: string;
1254
+ colorFocusSuccess: string;
1255
+ borderFocusSuccess: string;
1256
+ boxShadowFocusSuccess: string;
1257
+ caretColorSuccess: string;
1237
1258
  loadingColorWarning: string;
1238
1259
  borderWarning: string;
1239
1260
  borderHoverWarning: string;
@@ -1733,6 +1754,13 @@ declare const _default: import("vue").DefineComponent<{
1733
1754
  borderFocus: string;
1734
1755
  boxShadowFocus: string;
1735
1756
  loadingColor: string;
1757
+ loadingColorSuccess: string;
1758
+ borderSuccess: string;
1759
+ borderHoverSuccess: string;
1760
+ colorFocusSuccess: string;
1761
+ borderFocusSuccess: string;
1762
+ boxShadowFocusSuccess: string;
1763
+ caretColorSuccess: string;
1736
1764
  loadingColorWarning: string;
1737
1765
  borderWarning: string;
1738
1766
  borderHoverWarning: string;
@@ -2179,6 +2207,13 @@ declare const _default: import("vue").DefineComponent<{
2179
2207
  borderFocus: string;
2180
2208
  boxShadowFocus: string;
2181
2209
  loadingColor: string;
2210
+ loadingColorSuccess: string;
2211
+ borderSuccess: string;
2212
+ borderHoverSuccess: string;
2213
+ colorFocusSuccess: string;
2214
+ borderFocusSuccess: string;
2215
+ boxShadowFocusSuccess: string;
2216
+ caretColorSuccess: string;
2182
2217
  loadingColorWarning: string;
2183
2218
  borderWarning: string;
2184
2219
  borderHoverWarning: string;
@@ -2625,6 +2660,13 @@ declare const _default: import("vue").DefineComponent<{
2625
2660
  borderFocus: string;
2626
2661
  boxShadowFocus: string;
2627
2662
  loadingColor: string;
2663
+ loadingColorSuccess: string;
2664
+ borderSuccess: string;
2665
+ borderHoverSuccess: string;
2666
+ colorFocusSuccess: string;
2667
+ borderFocusSuccess: string;
2668
+ boxShadowFocusSuccess: string;
2669
+ caretColorSuccess: string;
2628
2670
  loadingColorWarning: string;
2629
2671
  borderWarning: string;
2630
2672
  borderHoverWarning: string;
@@ -3103,6 +3145,13 @@ declare const _default: import("vue").DefineComponent<{
3103
3145
  borderFocus: string;
3104
3146
  boxShadowFocus: string;
3105
3147
  loadingColor: string;
3148
+ loadingColorSuccess: string;
3149
+ borderSuccess: string;
3150
+ borderHoverSuccess: string;
3151
+ colorFocusSuccess: string;
3152
+ borderFocusSuccess: string;
3153
+ boxShadowFocusSuccess: string;
3154
+ caretColorSuccess: string;
3106
3155
  loadingColorWarning: string;
3107
3156
  borderWarning: string;
3108
3157
  borderHoverWarning: string;
@@ -3697,6 +3746,13 @@ declare const _default: import("vue").DefineComponent<{
3697
3746
  borderFocus: string;
3698
3747
  boxShadowFocus: string;
3699
3748
  loadingColor: string;
3749
+ loadingColorSuccess: string;
3750
+ borderSuccess: string;
3751
+ borderHoverSuccess: string;
3752
+ colorFocusSuccess: string;
3753
+ borderFocusSuccess: string;
3754
+ boxShadowFocusSuccess: string;
3755
+ caretColorSuccess: string;
3700
3756
  loadingColorWarning: string;
3701
3757
  borderWarning: string;
3702
3758
  borderHoverWarning: string;
@@ -4143,6 +4199,13 @@ declare const _default: import("vue").DefineComponent<{
4143
4199
  borderFocus: string;
4144
4200
  boxShadowFocus: string;
4145
4201
  loadingColor: string;
4202
+ loadingColorSuccess: string;
4203
+ borderSuccess: string;
4204
+ borderHoverSuccess: string;
4205
+ colorFocusSuccess: string;
4206
+ borderFocusSuccess: string;
4207
+ boxShadowFocusSuccess: string;
4208
+ caretColorSuccess: string;
4146
4209
  loadingColorWarning: string;
4147
4210
  borderWarning: string;
4148
4211
  borderHoverWarning: string;
@@ -4589,6 +4652,13 @@ declare const _default: import("vue").DefineComponent<{
4589
4652
  borderFocus: string;
4590
4653
  boxShadowFocus: string;
4591
4654
  loadingColor: string;
4655
+ loadingColorSuccess: string;
4656
+ borderSuccess: string;
4657
+ borderHoverSuccess: string;
4658
+ colorFocusSuccess: string;
4659
+ borderFocusSuccess: string;
4660
+ boxShadowFocusSuccess: string;
4661
+ caretColorSuccess: string;
4592
4662
  loadingColorWarning: string;
4593
4663
  borderWarning: string;
4594
4664
  borderHoverWarning: string;
@@ -284,6 +284,13 @@ declare const datePickerV2Dark: import("../../_mixins").Theme<"DatePickerV2", {
284
284
  borderFocus: string;
285
285
  boxShadowFocus: string;
286
286
  loadingColor: string;
287
+ loadingColorSuccess: string;
288
+ borderSuccess: string;
289
+ borderHoverSuccess: string;
290
+ colorFocusSuccess: string;
291
+ borderFocusSuccess: string;
292
+ boxShadowFocusSuccess: string;
293
+ caretColorSuccess: string;
287
294
  loadingColorWarning: string;
288
295
  borderWarning: string;
289
296
  borderHoverWarning: string;
@@ -313,6 +313,13 @@ declare const datePickerV2Light: import("../../_mixins").Theme<"DatePickerV2", {
313
313
  borderFocus: string;
314
314
  boxShadowFocus: string;
315
315
  loadingColor: string;
316
+ loadingColorSuccess: string;
317
+ borderSuccess: string;
318
+ borderHoverSuccess: string;
319
+ colorFocusSuccess: string;
320
+ borderFocusSuccess: string;
321
+ boxShadowFocusSuccess: string;
322
+ caretColorSuccess: string;
316
323
  loadingColorWarning: string;
317
324
  borderWarning: string;
318
325
  borderHoverWarning: string;