@uzum-tech/ui 2.0.0-beta.7 → 2.0.0-beta.9

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 (186) hide show
  1. package/dist/index.js +268 -180
  2. package/dist/index.mjs +268 -180
  3. package/dist/index.prod.js +2 -2
  4. package/dist/index.prod.mjs +2 -2
  5. package/es/_internal/select-menu/src/SelectOption.mjs +12 -4
  6. package/es/_utils/wrap-component.mjs +3 -1
  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/carousel/src/Carousel.mjs +39 -13
  10. package/es/chat/src/Chat.d.ts +70 -0
  11. package/es/chat/src/ChatListItems.d.ts +84 -0
  12. package/es/chat/src/ChatMessages.d.ts +84 -0
  13. package/es/chat/src/ChatParts/MainArea.mjs +104 -112
  14. package/es/chat/src/ChatParts/Sidebar.d.ts +14 -0
  15. package/es/chat/src/styles/index.cssr.mjs +24 -10
  16. package/es/chat/styles/dark.d.ts +7 -0
  17. package/es/chat/styles/light.d.ts +7 -0
  18. package/es/chat/styles/light.mjs +1 -0
  19. package/es/color-picker/src/ColorInputUnit.d.ts +7 -0
  20. package/es/color-picker/src/ColorPicker.d.ts +63 -0
  21. package/es/color-picker/styles/light.d.ts +7 -0
  22. package/es/components.d.ts +1042 -5
  23. package/es/data-table/src/DataTable.d.ts +56 -0
  24. package/es/data-table/src/HeaderButton/FilterButton.d.ts +28 -0
  25. package/es/data-table/src/HeaderButton/FilterMenu.d.ts +28 -0
  26. package/es/data-table/src/TableParts/Body.d.ts +28 -0
  27. package/es/data-table/src/TableParts/Header.d.ts +28 -0
  28. package/es/data-table/src/interface.d.ts +21 -0
  29. package/es/data-table/styles/light.d.ts +7 -0
  30. package/es/date-picker/src/DatePicker.d.ts +147 -0
  31. package/es/date-picker/src/panel/date.d.ts +42 -0
  32. package/es/date-picker/src/panel/daterange.d.ts +42 -0
  33. package/es/date-picker/src/panel/datetime.d.ts +42 -0
  34. package/es/date-picker/src/panel/datetimerange.d.ts +42 -0
  35. package/es/date-picker/src/panel/panelMonth.d.ts +168 -0
  36. package/es/date-picker/src/panel/panelMonthContent.d.ts +42 -0
  37. package/es/date-picker/src/panel/panelYear.d.ts +168 -0
  38. package/es/date-picker/src/panel/panelYearContent.d.ts +42 -0
  39. package/es/date-picker/src/panel/use-calendar.d.ts +42 -0
  40. package/es/date-picker/src/panel/use-dual-calendar.d.ts +42 -0
  41. package/es/date-picker/src/panel/use-panel-common.d.ts +42 -0
  42. package/es/date-picker/styles/light.d.ts +14 -0
  43. package/es/date-picker-v2/src/DatePickerV2.d.ts +70 -0
  44. package/es/date-picker-v2/styles/dark.d.ts +7 -0
  45. package/es/date-picker-v2/styles/light.d.ts +7 -0
  46. package/es/dialog/src/DialogEnvironment.mjs +1 -2
  47. package/es/dynamic-input/src/DynamicInput.d.ts +70 -0
  48. package/es/dynamic-input/src/InputPreset.d.ts +14 -0
  49. package/es/dynamic-input/src/PairPreset.d.ts +14 -0
  50. package/es/dynamic-input/styles/light.d.ts +7 -0
  51. package/es/dynamic-tags/src/DynamicTags.d.ts +70 -0
  52. package/es/dynamic-tags/styles/light.d.ts +7 -0
  53. package/es/input/src/Input.d.ts +77 -0
  54. package/es/input/src/Input.mjs +15 -0
  55. package/es/input/src/InputGroupLabel.d.ts +63 -0
  56. package/es/input/src/styles/input.cssr.mjs +1 -1
  57. package/es/input/styles/light.d.ts +7 -0
  58. package/es/input/styles/light.mjs +11 -0
  59. package/es/input-number/src/InputNumber.d.ts +70 -0
  60. package/es/input-number/styles/light.d.ts +7 -0
  61. package/es/input-otp/src/InputOtp.d.ts +70 -0
  62. package/es/input-otp/styles/light.d.ts +7 -0
  63. package/es/legacy-transfer/src/Transfer.d.ts +70 -0
  64. package/es/legacy-transfer/src/TransferFilter.d.ts +14 -0
  65. package/es/legacy-transfer/src/TransferList.d.ts +14 -0
  66. package/es/legacy-transfer/src/TransferListItem.d.ts +14 -0
  67. package/es/legacy-transfer/styles/light.d.ts +7 -0
  68. package/es/mapping-card/src/MappingCard.d.ts +9 -0
  69. package/es/mapping-card/src/MappingCardParts/Header.mjs +1 -1
  70. package/es/mapping-card/src/interface.d.ts +5 -0
  71. package/es/mapping-card/src/interface.mjs +4 -0
  72. package/es/mention/src/Mention.d.ts +70 -0
  73. package/es/mention/styles/light.d.ts +7 -0
  74. package/es/modal/src/BodyWrapper.d.ts +0 -3
  75. package/es/modal/src/Modal.d.ts +13 -7
  76. package/es/modal/src/Modal.mjs +5 -2
  77. package/es/modal/src/ModalEnvironment.d.ts +9 -5
  78. package/es/modal/src/presetProps.d.ts +1 -2
  79. package/es/modal/src/presetProps.mjs +0 -1
  80. package/es/pagination/src/Pagination.d.ts +70 -0
  81. package/es/pagination/styles/light.d.ts +7 -0
  82. package/es/time-picker/src/Panel.d.ts +14 -0
  83. package/es/time-picker/src/TimePicker.d.ts +70 -0
  84. package/es/time-picker/styles/light.d.ts +7 -0
  85. package/es/tooltip/index.d.ts +1 -1
  86. package/es/tooltip/src/Tooltip.d.ts +84 -70
  87. package/es/tooltip/src/Tooltip.mjs +18 -3
  88. package/es/transfer/src/Transfer.d.ts +70 -0
  89. package/es/transfer/src/TransferFilter.d.ts +14 -0
  90. package/es/transfer/src/TransferList.d.ts +14 -0
  91. package/es/transfer/src/TransferListItem.d.ts +14 -0
  92. package/es/transfer/styles/light.d.ts +7 -0
  93. package/es/version.d.ts +1 -1
  94. package/es/version.mjs +1 -1
  95. package/lib/_internal/select-menu/src/SelectOption.js +8 -4
  96. package/lib/_utils/wrap-component.js +3 -1
  97. package/lib/auto-complete/src/AutoComplete.d.ts +70 -0
  98. package/lib/auto-complete/styles/light.d.ts +7 -0
  99. package/lib/carousel/src/Carousel.js +26 -13
  100. package/lib/chat/src/Chat.d.ts +70 -0
  101. package/lib/chat/src/ChatListItems.d.ts +84 -0
  102. package/lib/chat/src/ChatMessages.d.ts +84 -0
  103. package/lib/chat/src/ChatParts/MainArea.js +53 -61
  104. package/lib/chat/src/ChatParts/Sidebar.d.ts +14 -0
  105. package/lib/chat/src/styles/index.cssr.js +24 -10
  106. package/lib/chat/styles/dark.d.ts +7 -0
  107. package/lib/chat/styles/light.d.ts +7 -0
  108. package/lib/chat/styles/light.js +1 -1
  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/components.d.ts +1042 -5
  113. package/lib/data-table/src/DataTable.d.ts +56 -0
  114. package/lib/data-table/src/HeaderButton/FilterButton.d.ts +28 -0
  115. package/lib/data-table/src/HeaderButton/FilterMenu.d.ts +28 -0
  116. package/lib/data-table/src/TableParts/Body.d.ts +28 -0
  117. package/lib/data-table/src/TableParts/Header.d.ts +28 -0
  118. package/lib/data-table/src/interface.d.ts +21 -0
  119. package/lib/data-table/styles/light.d.ts +7 -0
  120. package/lib/date-picker/src/DatePicker.d.ts +147 -0
  121. package/lib/date-picker/src/panel/date.d.ts +42 -0
  122. package/lib/date-picker/src/panel/daterange.d.ts +42 -0
  123. package/lib/date-picker/src/panel/datetime.d.ts +42 -0
  124. package/lib/date-picker/src/panel/datetimerange.d.ts +42 -0
  125. package/lib/date-picker/src/panel/panelMonth.d.ts +168 -0
  126. package/lib/date-picker/src/panel/panelMonthContent.d.ts +42 -0
  127. package/lib/date-picker/src/panel/panelYear.d.ts +168 -0
  128. package/lib/date-picker/src/panel/panelYearContent.d.ts +42 -0
  129. package/lib/date-picker/src/panel/use-calendar.d.ts +42 -0
  130. package/lib/date-picker/src/panel/use-dual-calendar.d.ts +42 -0
  131. package/lib/date-picker/src/panel/use-panel-common.d.ts +42 -0
  132. package/lib/date-picker/styles/light.d.ts +14 -0
  133. package/lib/date-picker-v2/src/DatePickerV2.d.ts +70 -0
  134. package/lib/date-picker-v2/styles/dark.d.ts +7 -0
  135. package/lib/date-picker-v2/styles/light.d.ts +7 -0
  136. package/lib/dialog/src/DialogEnvironment.js +1 -1
  137. package/lib/dynamic-input/src/DynamicInput.d.ts +70 -0
  138. package/lib/dynamic-input/src/InputPreset.d.ts +14 -0
  139. package/lib/dynamic-input/src/PairPreset.d.ts +14 -0
  140. package/lib/dynamic-input/styles/light.d.ts +7 -0
  141. package/lib/dynamic-tags/src/DynamicTags.d.ts +70 -0
  142. package/lib/dynamic-tags/styles/light.d.ts +7 -0
  143. package/lib/input/src/Input.d.ts +77 -0
  144. package/lib/input/src/Input.js +9 -1
  145. package/lib/input/src/InputGroupLabel.d.ts +63 -0
  146. package/lib/input/src/styles/input.cssr.js +1 -1
  147. package/lib/input/styles/light.d.ts +7 -0
  148. package/lib/input/styles/light.js +11 -1
  149. package/lib/input-number/src/InputNumber.d.ts +70 -0
  150. package/lib/input-number/styles/light.d.ts +7 -0
  151. package/lib/input-otp/src/InputOtp.d.ts +70 -0
  152. package/lib/input-otp/styles/light.d.ts +7 -0
  153. package/lib/legacy-transfer/src/Transfer.d.ts +70 -0
  154. package/lib/legacy-transfer/src/TransferFilter.d.ts +14 -0
  155. package/lib/legacy-transfer/src/TransferList.d.ts +14 -0
  156. package/lib/legacy-transfer/src/TransferListItem.d.ts +14 -0
  157. package/lib/legacy-transfer/styles/light.d.ts +7 -0
  158. package/lib/mapping-card/src/MappingCard.d.ts +9 -0
  159. package/lib/mapping-card/src/MappingCardParts/Header.js +2 -2
  160. package/lib/mapping-card/src/interface.d.ts +5 -0
  161. package/lib/mapping-card/src/interface.js +4 -0
  162. package/lib/mention/src/Mention.d.ts +70 -0
  163. package/lib/mention/styles/light.d.ts +7 -0
  164. package/lib/modal/src/BodyWrapper.d.ts +0 -3
  165. package/lib/modal/src/Modal.d.ts +13 -7
  166. package/lib/modal/src/Modal.js +5 -2
  167. package/lib/modal/src/ModalEnvironment.d.ts +9 -5
  168. package/lib/modal/src/presetProps.d.ts +1 -2
  169. package/lib/modal/src/presetProps.js +1 -1
  170. package/lib/pagination/src/Pagination.d.ts +70 -0
  171. package/lib/pagination/styles/light.d.ts +7 -0
  172. package/lib/time-picker/src/Panel.d.ts +14 -0
  173. package/lib/time-picker/src/TimePicker.d.ts +70 -0
  174. package/lib/time-picker/styles/light.d.ts +7 -0
  175. package/lib/tooltip/index.d.ts +1 -1
  176. package/lib/tooltip/src/Tooltip.d.ts +84 -70
  177. package/lib/tooltip/src/Tooltip.js +9 -3
  178. package/lib/transfer/src/Transfer.d.ts +70 -0
  179. package/lib/transfer/src/TransferFilter.d.ts +14 -0
  180. package/lib/transfer/src/TransferList.d.ts +14 -0
  181. package/lib/transfer/src/TransferListItem.d.ts +14 -0
  182. package/lib/transfer/styles/light.d.ts +7 -0
  183. package/lib/version.d.ts +1 -1
  184. package/lib/version.js +1 -1
  185. package/package.json +1 -1
  186. package/web-types.json +39 -3
@@ -1333,6 +1333,13 @@ export declare const UAutoComplete: import("vue").DefineComponent<import("vue").
1333
1333
  borderFocus: string;
1334
1334
  boxShadowFocus: string;
1335
1335
  loadingColor: string;
1336
+ loadingColorSuccess: string;
1337
+ borderSuccess: string;
1338
+ borderHoverSuccess: string;
1339
+ colorFocusSuccess: string;
1340
+ borderFocusSuccess: string;
1341
+ boxShadowFocusSuccess: string;
1342
+ caretColorSuccess: string;
1336
1343
  loadingColorWarning: string;
1337
1344
  borderWarning: string;
1338
1345
  borderHoverWarning: string;
@@ -1466,6 +1473,13 @@ export declare const UAutoComplete: import("vue").DefineComponent<import("vue").
1466
1473
  borderFocus: string;
1467
1474
  boxShadowFocus: string;
1468
1475
  loadingColor: string;
1476
+ loadingColorSuccess: string;
1477
+ borderSuccess: string;
1478
+ borderHoverSuccess: string;
1479
+ colorFocusSuccess: string;
1480
+ borderFocusSuccess: string;
1481
+ boxShadowFocusSuccess: string;
1482
+ caretColorSuccess: string;
1469
1483
  loadingColorWarning: string;
1470
1484
  borderWarning: string;
1471
1485
  borderHoverWarning: string;
@@ -1599,6 +1613,13 @@ export declare const UAutoComplete: import("vue").DefineComponent<import("vue").
1599
1613
  borderFocus: string;
1600
1614
  boxShadowFocus: string;
1601
1615
  loadingColor: string;
1616
+ loadingColorSuccess: string;
1617
+ borderSuccess: string;
1618
+ borderHoverSuccess: string;
1619
+ colorFocusSuccess: string;
1620
+ borderFocusSuccess: string;
1621
+ boxShadowFocusSuccess: string;
1622
+ caretColorSuccess: string;
1602
1623
  loadingColorWarning: string;
1603
1624
  borderWarning: string;
1604
1625
  borderHoverWarning: string;
@@ -1811,6 +1832,13 @@ export declare const UAutoComplete: import("vue").DefineComponent<import("vue").
1811
1832
  borderFocus: string;
1812
1833
  boxShadowFocus: string;
1813
1834
  loadingColor: string;
1835
+ loadingColorSuccess: string;
1836
+ borderSuccess: string;
1837
+ borderHoverSuccess: string;
1838
+ colorFocusSuccess: string;
1839
+ borderFocusSuccess: string;
1840
+ boxShadowFocusSuccess: string;
1841
+ caretColorSuccess: string;
1814
1842
  loadingColorWarning: string;
1815
1843
  borderWarning: string;
1816
1844
  borderHoverWarning: string;
@@ -2055,6 +2083,13 @@ export declare const UAutoComplete: import("vue").DefineComponent<import("vue").
2055
2083
  borderFocus: string;
2056
2084
  boxShadowFocus: string;
2057
2085
  loadingColor: string;
2086
+ loadingColorSuccess: string;
2087
+ borderSuccess: string;
2088
+ borderHoverSuccess: string;
2089
+ colorFocusSuccess: string;
2090
+ borderFocusSuccess: string;
2091
+ boxShadowFocusSuccess: string;
2092
+ caretColorSuccess: string;
2058
2093
  loadingColorWarning: string;
2059
2094
  borderWarning: string;
2060
2095
  borderHoverWarning: string;
@@ -2188,6 +2223,13 @@ export declare const UAutoComplete: import("vue").DefineComponent<import("vue").
2188
2223
  borderFocus: string;
2189
2224
  boxShadowFocus: string;
2190
2225
  loadingColor: string;
2226
+ loadingColorSuccess: string;
2227
+ borderSuccess: string;
2228
+ borderHoverSuccess: string;
2229
+ colorFocusSuccess: string;
2230
+ borderFocusSuccess: string;
2231
+ boxShadowFocusSuccess: string;
2232
+ caretColorSuccess: string;
2191
2233
  loadingColorWarning: string;
2192
2234
  borderWarning: string;
2193
2235
  borderHoverWarning: string;
@@ -2321,6 +2363,13 @@ export declare const UAutoComplete: import("vue").DefineComponent<import("vue").
2321
2363
  borderFocus: string;
2322
2364
  boxShadowFocus: string;
2323
2365
  loadingColor: string;
2366
+ loadingColorSuccess: string;
2367
+ borderSuccess: string;
2368
+ borderHoverSuccess: string;
2369
+ colorFocusSuccess: string;
2370
+ borderFocusSuccess: string;
2371
+ boxShadowFocusSuccess: string;
2372
+ caretColorSuccess: string;
2324
2373
  loadingColorWarning: string;
2325
2374
  borderWarning: string;
2326
2375
  borderHoverWarning: string;
@@ -11001,6 +11050,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
11001
11050
  borderFocus: string;
11002
11051
  boxShadowFocus: string;
11003
11052
  loadingColor: string;
11053
+ loadingColorSuccess: string;
11054
+ borderSuccess: string;
11055
+ borderHoverSuccess: string;
11056
+ colorFocusSuccess: string;
11057
+ borderFocusSuccess: string;
11058
+ boxShadowFocusSuccess: string;
11059
+ caretColorSuccess: string;
11004
11060
  loadingColorWarning: string;
11005
11061
  borderWarning: string;
11006
11062
  borderHoverWarning: string;
@@ -11699,6 +11755,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
11699
11755
  borderFocus: string;
11700
11756
  boxShadowFocus: string;
11701
11757
  loadingColor: string;
11758
+ loadingColorSuccess: string;
11759
+ borderSuccess: string;
11760
+ borderHoverSuccess: string;
11761
+ colorFocusSuccess: string;
11762
+ borderFocusSuccess: string;
11763
+ boxShadowFocusSuccess: string;
11764
+ caretColorSuccess: string;
11702
11765
  loadingColorWarning: string;
11703
11766
  borderWarning: string;
11704
11767
  borderHoverWarning: string;
@@ -12397,6 +12460,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
12397
12460
  borderFocus: string;
12398
12461
  boxShadowFocus: string;
12399
12462
  loadingColor: string;
12463
+ loadingColorSuccess: string;
12464
+ borderSuccess: string;
12465
+ borderHoverSuccess: string;
12466
+ colorFocusSuccess: string;
12467
+ borderFocusSuccess: string;
12468
+ boxShadowFocusSuccess: string;
12469
+ caretColorSuccess: string;
12400
12470
  loadingColorWarning: string;
12401
12471
  borderWarning: string;
12402
12472
  borderHoverWarning: string;
@@ -13100,6 +13170,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
13100
13170
  borderFocus: string;
13101
13171
  boxShadowFocus: string;
13102
13172
  loadingColor: string;
13173
+ loadingColorSuccess: string;
13174
+ borderSuccess: string;
13175
+ borderHoverSuccess: string;
13176
+ colorFocusSuccess: string;
13177
+ borderFocusSuccess: string;
13178
+ boxShadowFocusSuccess: string;
13179
+ caretColorSuccess: string;
13103
13180
  loadingColorWarning: string;
13104
13181
  borderWarning: string;
13105
13182
  borderHoverWarning: string;
@@ -14409,6 +14486,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
14409
14486
  borderFocus: string;
14410
14487
  boxShadowFocus: string;
14411
14488
  loadingColor: string;
14489
+ loadingColorSuccess: string;
14490
+ borderSuccess: string;
14491
+ borderHoverSuccess: string;
14492
+ colorFocusSuccess: string;
14493
+ borderFocusSuccess: string;
14494
+ boxShadowFocusSuccess: string;
14495
+ caretColorSuccess: string;
14412
14496
  loadingColorWarning: string;
14413
14497
  borderWarning: string;
14414
14498
  borderHoverWarning: string;
@@ -15107,6 +15191,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
15107
15191
  borderFocus: string;
15108
15192
  boxShadowFocus: string;
15109
15193
  loadingColor: string;
15194
+ loadingColorSuccess: string;
15195
+ borderSuccess: string;
15196
+ borderHoverSuccess: string;
15197
+ colorFocusSuccess: string;
15198
+ borderFocusSuccess: string;
15199
+ boxShadowFocusSuccess: string;
15200
+ caretColorSuccess: string;
15110
15201
  loadingColorWarning: string;
15111
15202
  borderWarning: string;
15112
15203
  borderHoverWarning: string;
@@ -15805,6 +15896,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
15805
15896
  borderFocus: string;
15806
15897
  boxShadowFocus: string;
15807
15898
  loadingColor: string;
15899
+ loadingColorSuccess: string;
15900
+ borderSuccess: string;
15901
+ borderHoverSuccess: string;
15902
+ colorFocusSuccess: string;
15903
+ borderFocusSuccess: string;
15904
+ boxShadowFocusSuccess: string;
15905
+ caretColorSuccess: string;
15808
15906
  loadingColorWarning: string;
15809
15907
  borderWarning: string;
15810
15908
  borderHoverWarning: string;
@@ -16624,6 +16722,13 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
16624
16722
  borderFocus: string;
16625
16723
  boxShadowFocus: string;
16626
16724
  loadingColor: string;
16725
+ loadingColorSuccess: string;
16726
+ borderSuccess: string;
16727
+ borderHoverSuccess: string;
16728
+ colorFocusSuccess: string;
16729
+ borderFocusSuccess: string;
16730
+ boxShadowFocusSuccess: string;
16731
+ caretColorSuccess: string;
16627
16732
  loadingColorWarning: string;
16628
16733
  borderWarning: string;
16629
16734
  borderHoverWarning: string;
@@ -17322,6 +17427,13 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
17322
17427
  borderFocus: string;
17323
17428
  boxShadowFocus: string;
17324
17429
  loadingColor: string;
17430
+ loadingColorSuccess: string;
17431
+ borderSuccess: string;
17432
+ borderHoverSuccess: string;
17433
+ colorFocusSuccess: string;
17434
+ borderFocusSuccess: string;
17435
+ boxShadowFocusSuccess: string;
17436
+ caretColorSuccess: string;
17325
17437
  loadingColorWarning: string;
17326
17438
  borderWarning: string;
17327
17439
  borderHoverWarning: string;
@@ -18020,6 +18132,13 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
18020
18132
  borderFocus: string;
18021
18133
  boxShadowFocus: string;
18022
18134
  loadingColor: string;
18135
+ loadingColorSuccess: string;
18136
+ borderSuccess: string;
18137
+ borderHoverSuccess: string;
18138
+ colorFocusSuccess: string;
18139
+ borderFocusSuccess: string;
18140
+ boxShadowFocusSuccess: string;
18141
+ caretColorSuccess: string;
18023
18142
  loadingColorWarning: string;
18024
18143
  borderWarning: string;
18025
18144
  borderHoverWarning: string;
@@ -18723,6 +18842,13 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
18723
18842
  borderFocus: string;
18724
18843
  boxShadowFocus: string;
18725
18844
  loadingColor: string;
18845
+ loadingColorSuccess: string;
18846
+ borderSuccess: string;
18847
+ borderHoverSuccess: string;
18848
+ colorFocusSuccess: string;
18849
+ borderFocusSuccess: string;
18850
+ boxShadowFocusSuccess: string;
18851
+ caretColorSuccess: string;
18726
18852
  loadingColorWarning: string;
18727
18853
  borderWarning: string;
18728
18854
  borderHoverWarning: string;
@@ -19678,6 +19804,13 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
19678
19804
  borderFocus: string;
19679
19805
  boxShadowFocus: string;
19680
19806
  loadingColor: string;
19807
+ loadingColorSuccess: string;
19808
+ borderSuccess: string;
19809
+ borderHoverSuccess: string;
19810
+ colorFocusSuccess: string;
19811
+ borderFocusSuccess: string;
19812
+ boxShadowFocusSuccess: string;
19813
+ caretColorSuccess: string;
19681
19814
  loadingColorWarning: string;
19682
19815
  borderWarning: string;
19683
19816
  borderHoverWarning: string;
@@ -20633,6 +20766,13 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
20633
20766
  borderFocus: string;
20634
20767
  boxShadowFocus: string;
20635
20768
  loadingColor: string;
20769
+ loadingColorSuccess: string;
20770
+ borderSuccess: string;
20771
+ borderHoverSuccess: string;
20772
+ colorFocusSuccess: string;
20773
+ borderFocusSuccess: string;
20774
+ boxShadowFocusSuccess: string;
20775
+ caretColorSuccess: string;
20636
20776
  loadingColorWarning: string;
20637
20777
  borderWarning: string;
20638
20778
  borderHoverWarning: string;
@@ -21656,6 +21796,13 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
21656
21796
  borderFocus: string;
21657
21797
  boxShadowFocus: string;
21658
21798
  loadingColor: string;
21799
+ loadingColorSuccess: string;
21800
+ borderSuccess: string;
21801
+ borderHoverSuccess: string;
21802
+ colorFocusSuccess: string;
21803
+ borderFocusSuccess: string;
21804
+ boxShadowFocusSuccess: string;
21805
+ caretColorSuccess: string;
21659
21806
  loadingColorWarning: string;
21660
21807
  borderWarning: string;
21661
21808
  borderHoverWarning: string;
@@ -22354,6 +22501,13 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
22354
22501
  borderFocus: string;
22355
22502
  boxShadowFocus: string;
22356
22503
  loadingColor: string;
22504
+ loadingColorSuccess: string;
22505
+ borderSuccess: string;
22506
+ borderHoverSuccess: string;
22507
+ colorFocusSuccess: string;
22508
+ borderFocusSuccess: string;
22509
+ boxShadowFocusSuccess: string;
22510
+ caretColorSuccess: string;
22357
22511
  loadingColorWarning: string;
22358
22512
  borderWarning: string;
22359
22513
  borderHoverWarning: string;
@@ -23052,6 +23206,13 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
23052
23206
  borderFocus: string;
23053
23207
  boxShadowFocus: string;
23054
23208
  loadingColor: string;
23209
+ loadingColorSuccess: string;
23210
+ borderSuccess: string;
23211
+ borderHoverSuccess: string;
23212
+ colorFocusSuccess: string;
23213
+ borderFocusSuccess: string;
23214
+ boxShadowFocusSuccess: string;
23215
+ caretColorSuccess: string;
23055
23216
  loadingColorWarning: string;
23056
23217
  borderWarning: string;
23057
23218
  borderHoverWarning: string;
@@ -23812,6 +23973,13 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
23812
23973
  borderFocus: string;
23813
23974
  boxShadowFocus: string;
23814
23975
  loadingColor: string;
23976
+ loadingColorSuccess: string;
23977
+ borderSuccess: string;
23978
+ borderHoverSuccess: string;
23979
+ colorFocusSuccess: string;
23980
+ borderFocusSuccess: string;
23981
+ boxShadowFocusSuccess: string;
23982
+ caretColorSuccess: string;
23815
23983
  loadingColorWarning: string;
23816
23984
  borderWarning: string;
23817
23985
  borderHoverWarning: string;
@@ -24510,6 +24678,13 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
24510
24678
  borderFocus: string;
24511
24679
  boxShadowFocus: string;
24512
24680
  loadingColor: string;
24681
+ loadingColorSuccess: string;
24682
+ borderSuccess: string;
24683
+ borderHoverSuccess: string;
24684
+ colorFocusSuccess: string;
24685
+ borderFocusSuccess: string;
24686
+ boxShadowFocusSuccess: string;
24687
+ caretColorSuccess: string;
24513
24688
  loadingColorWarning: string;
24514
24689
  borderWarning: string;
24515
24690
  borderHoverWarning: string;
@@ -25208,6 +25383,13 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
25208
25383
  borderFocus: string;
25209
25384
  boxShadowFocus: string;
25210
25385
  loadingColor: string;
25386
+ loadingColorSuccess: string;
25387
+ borderSuccess: string;
25388
+ borderHoverSuccess: string;
25389
+ colorFocusSuccess: string;
25390
+ borderFocusSuccess: string;
25391
+ boxShadowFocusSuccess: string;
25392
+ caretColorSuccess: string;
25211
25393
  loadingColorWarning: string;
25212
25394
  borderWarning: string;
25213
25395
  borderHoverWarning: string;
@@ -25911,6 +26093,13 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
25911
26093
  borderFocus: string;
25912
26094
  boxShadowFocus: string;
25913
26095
  loadingColor: string;
26096
+ loadingColorSuccess: string;
26097
+ borderSuccess: string;
26098
+ borderHoverSuccess: string;
26099
+ colorFocusSuccess: string;
26100
+ borderFocusSuccess: string;
26101
+ boxShadowFocusSuccess: string;
26102
+ caretColorSuccess: string;
25914
26103
  loadingColorWarning: string;
25915
26104
  borderWarning: string;
25916
26105
  borderHoverWarning: string;
@@ -26866,6 +27055,13 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
26866
27055
  borderFocus: string;
26867
27056
  boxShadowFocus: string;
26868
27057
  loadingColor: string;
27058
+ loadingColorSuccess: string;
27059
+ borderSuccess: string;
27060
+ borderHoverSuccess: string;
27061
+ colorFocusSuccess: string;
27062
+ borderFocusSuccess: string;
27063
+ boxShadowFocusSuccess: string;
27064
+ caretColorSuccess: string;
26869
27065
  loadingColorWarning: string;
26870
27066
  borderWarning: string;
26871
27067
  borderHoverWarning: string;
@@ -27821,6 +28017,13 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
27821
28017
  borderFocus: string;
27822
28018
  boxShadowFocus: string;
27823
28019
  loadingColor: string;
28020
+ loadingColorSuccess: string;
28021
+ borderSuccess: string;
28022
+ borderHoverSuccess: string;
28023
+ colorFocusSuccess: string;
28024
+ borderFocusSuccess: string;
28025
+ boxShadowFocusSuccess: string;
28026
+ caretColorSuccess: string;
27824
28027
  loadingColorWarning: string;
27825
28028
  borderWarning: string;
27826
28029
  borderHoverWarning: string;
@@ -28863,6 +29066,13 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
28863
29066
  borderFocus: string;
28864
29067
  boxShadowFocus: string;
28865
29068
  loadingColor: string;
29069
+ loadingColorSuccess: string;
29070
+ borderSuccess: string;
29071
+ borderHoverSuccess: string;
29072
+ colorFocusSuccess: string;
29073
+ borderFocusSuccess: string;
29074
+ boxShadowFocusSuccess: string;
29075
+ caretColorSuccess: string;
28866
29076
  loadingColorWarning: string;
28867
29077
  borderWarning: string;
28868
29078
  borderHoverWarning: string;
@@ -29561,6 +29771,13 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
29561
29771
  borderFocus: string;
29562
29772
  boxShadowFocus: string;
29563
29773
  loadingColor: string;
29774
+ loadingColorSuccess: string;
29775
+ borderSuccess: string;
29776
+ borderHoverSuccess: string;
29777
+ colorFocusSuccess: string;
29778
+ borderFocusSuccess: string;
29779
+ boxShadowFocusSuccess: string;
29780
+ caretColorSuccess: string;
29564
29781
  loadingColorWarning: string;
29565
29782
  borderWarning: string;
29566
29783
  borderHoverWarning: string;
@@ -30259,6 +30476,13 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
30259
30476
  borderFocus: string;
30260
30477
  boxShadowFocus: string;
30261
30478
  loadingColor: string;
30479
+ loadingColorSuccess: string;
30480
+ borderSuccess: string;
30481
+ borderHoverSuccess: string;
30482
+ colorFocusSuccess: string;
30483
+ borderFocusSuccess: string;
30484
+ boxShadowFocusSuccess: string;
30485
+ caretColorSuccess: string;
30262
30486
  loadingColorWarning: string;
30263
30487
  borderWarning: string;
30264
30488
  borderHoverWarning: string;
@@ -32068,6 +32292,13 @@ export declare const UColorPicker: import("vue").DefineComponent<import("vue").E
32068
32292
  borderFocus: string;
32069
32293
  boxShadowFocus: string;
32070
32294
  loadingColor: string;
32295
+ loadingColorSuccess: string;
32296
+ borderSuccess: string;
32297
+ borderHoverSuccess: string;
32298
+ colorFocusSuccess: string;
32299
+ borderFocusSuccess: string;
32300
+ boxShadowFocusSuccess: string;
32301
+ caretColorSuccess: string;
32071
32302
  loadingColorWarning: string;
32072
32303
  borderWarning: string;
32073
32304
  borderHoverWarning: string;
@@ -32372,6 +32603,13 @@ export declare const UColorPicker: import("vue").DefineComponent<import("vue").E
32372
32603
  borderFocus: string;
32373
32604
  boxShadowFocus: string;
32374
32605
  loadingColor: string;
32606
+ loadingColorSuccess: string;
32607
+ borderSuccess: string;
32608
+ borderHoverSuccess: string;
32609
+ colorFocusSuccess: string;
32610
+ borderFocusSuccess: string;
32611
+ boxShadowFocusSuccess: string;
32612
+ caretColorSuccess: string;
32375
32613
  loadingColorWarning: string;
32376
32614
  borderWarning: string;
32377
32615
  borderHoverWarning: string;
@@ -32676,6 +32914,13 @@ export declare const UColorPicker: import("vue").DefineComponent<import("vue").E
32676
32914
  borderFocus: string;
32677
32915
  boxShadowFocus: string;
32678
32916
  loadingColor: string;
32917
+ loadingColorSuccess: string;
32918
+ borderSuccess: string;
32919
+ borderHoverSuccess: string;
32920
+ colorFocusSuccess: string;
32921
+ borderFocusSuccess: string;
32922
+ boxShadowFocusSuccess: string;
32923
+ caretColorSuccess: string;
32679
32924
  loadingColorWarning: string;
32680
32925
  borderWarning: string;
32681
32926
  borderHoverWarning: string;
@@ -33056,6 +33301,13 @@ export declare const UColorPicker: import("vue").DefineComponent<import("vue").E
33056
33301
  borderFocus: string;
33057
33302
  boxShadowFocus: string;
33058
33303
  loadingColor: string;
33304
+ loadingColorSuccess: string;
33305
+ borderSuccess: string;
33306
+ borderHoverSuccess: string;
33307
+ colorFocusSuccess: string;
33308
+ borderFocusSuccess: string;
33309
+ boxShadowFocusSuccess: string;
33310
+ caretColorSuccess: string;
33059
33311
  loadingColorWarning: string;
33060
33312
  borderWarning: string;
33061
33313
  borderHoverWarning: string;
@@ -33360,6 +33612,13 @@ export declare const UColorPicker: import("vue").DefineComponent<import("vue").E
33360
33612
  borderFocus: string;
33361
33613
  boxShadowFocus: string;
33362
33614
  loadingColor: string;
33615
+ loadingColorSuccess: string;
33616
+ borderSuccess: string;
33617
+ borderHoverSuccess: string;
33618
+ colorFocusSuccess: string;
33619
+ borderFocusSuccess: string;
33620
+ boxShadowFocusSuccess: string;
33621
+ caretColorSuccess: string;
33363
33622
  loadingColorWarning: string;
33364
33623
  borderWarning: string;
33365
33624
  borderHoverWarning: string;
@@ -33664,6 +33923,13 @@ export declare const UColorPicker: import("vue").DefineComponent<import("vue").E
33664
33923
  borderFocus: string;
33665
33924
  boxShadowFocus: string;
33666
33925
  loadingColor: string;
33926
+ loadingColorSuccess: string;
33927
+ borderSuccess: string;
33928
+ borderHoverSuccess: string;
33929
+ colorFocusSuccess: string;
33930
+ borderFocusSuccess: string;
33931
+ boxShadowFocusSuccess: string;
33932
+ caretColorSuccess: string;
33667
33933
  loadingColorWarning: string;
33668
33934
  borderWarning: string;
33669
33935
  borderHoverWarning: string;
@@ -35037,6 +35303,13 @@ export declare const UDataTable: import("vue").DefineComponent<import("vue").Ext
35037
35303
  borderFocus: string;
35038
35304
  boxShadowFocus: string;
35039
35305
  loadingColor: string;
35306
+ loadingColorSuccess: string;
35307
+ borderSuccess: string;
35308
+ borderHoverSuccess: string;
35309
+ colorFocusSuccess: string;
35310
+ borderFocusSuccess: string;
35311
+ boxShadowFocusSuccess: string;
35312
+ caretColorSuccess: string;
35040
35313
  loadingColorWarning: string;
35041
35314
  borderWarning: string;
35042
35315
  borderHoverWarning: string;
@@ -35985,6 +36258,13 @@ export declare const UDataTable: import("vue").DefineComponent<import("vue").Ext
35985
36258
  borderFocus: string;
35986
36259
  boxShadowFocus: string;
35987
36260
  loadingColor: string;
36261
+ loadingColorSuccess: string;
36262
+ borderSuccess: string;
36263
+ borderHoverSuccess: string;
36264
+ colorFocusSuccess: string;
36265
+ borderFocusSuccess: string;
36266
+ boxShadowFocusSuccess: string;
36267
+ caretColorSuccess: string;
35988
36268
  loadingColorWarning: string;
35989
36269
  borderWarning: string;
35990
36270
  borderHoverWarning: string;
@@ -36933,6 +37213,13 @@ export declare const UDataTable: import("vue").DefineComponent<import("vue").Ext
36933
37213
  borderFocus: string;
36934
37214
  boxShadowFocus: string;
36935
37215
  loadingColor: string;
37216
+ loadingColorSuccess: string;
37217
+ borderSuccess: string;
37218
+ borderHoverSuccess: string;
37219
+ colorFocusSuccess: string;
37220
+ borderFocusSuccess: string;
37221
+ boxShadowFocusSuccess: string;
37222
+ caretColorSuccess: string;
36936
37223
  loadingColorWarning: string;
36937
37224
  borderWarning: string;
36938
37225
  borderHoverWarning: string;
@@ -37909,6 +38196,13 @@ export declare const UDataTable: import("vue").DefineComponent<import("vue").Ext
37909
38196
  borderFocus: string;
37910
38197
  boxShadowFocus: string;
37911
38198
  loadingColor: string;
38199
+ loadingColorSuccess: string;
38200
+ borderSuccess: string;
38201
+ borderHoverSuccess: string;
38202
+ colorFocusSuccess: string;
38203
+ borderFocusSuccess: string;
38204
+ boxShadowFocusSuccess: string;
38205
+ caretColorSuccess: string;
37912
38206
  loadingColorWarning: string;
37913
38207
  borderWarning: string;
37914
38208
  borderHoverWarning: string;
@@ -38418,6 +38712,13 @@ export declare const UDataTable: import("vue").DefineComponent<import("vue").Ext
38418
38712
  borderFocus: string;
38419
38713
  boxShadowFocus: string;
38420
38714
  loadingColor: string;
38715
+ loadingColorSuccess: string;
38716
+ borderSuccess: string;
38717
+ borderHoverSuccess: string;
38718
+ colorFocusSuccess: string;
38719
+ borderFocusSuccess: string;
38720
+ boxShadowFocusSuccess: string;
38721
+ caretColorSuccess: string;
38421
38722
  loadingColorWarning: string;
38422
38723
  borderWarning: string;
38423
38724
  borderHoverWarning: string;
@@ -39467,6 +39768,13 @@ export declare const UDataTable: import("vue").DefineComponent<import("vue").Ext
39467
39768
  borderFocus: string;
39468
39769
  boxShadowFocus: string;
39469
39770
  loadingColor: string;
39771
+ loadingColorSuccess: string;
39772
+ borderSuccess: string;
39773
+ borderHoverSuccess: string;
39774
+ colorFocusSuccess: string;
39775
+ borderFocusSuccess: string;
39776
+ boxShadowFocusSuccess: string;
39777
+ caretColorSuccess: string;
39470
39778
  loadingColorWarning: string;
39471
39779
  borderWarning: string;
39472
39780
  borderHoverWarning: string;
@@ -40415,6 +40723,13 @@ export declare const UDataTable: import("vue").DefineComponent<import("vue").Ext
40415
40723
  borderFocus: string;
40416
40724
  boxShadowFocus: string;
40417
40725
  loadingColor: string;
40726
+ loadingColorSuccess: string;
40727
+ borderSuccess: string;
40728
+ borderHoverSuccess: string;
40729
+ colorFocusSuccess: string;
40730
+ borderFocusSuccess: string;
40731
+ boxShadowFocusSuccess: string;
40732
+ caretColorSuccess: string;
40418
40733
  loadingColorWarning: string;
40419
40734
  borderWarning: string;
40420
40735
  borderHoverWarning: string;
@@ -41363,6 +41678,13 @@ export declare const UDataTable: import("vue").DefineComponent<import("vue").Ext
41363
41678
  borderFocus: string;
41364
41679
  boxShadowFocus: string;
41365
41680
  loadingColor: string;
41681
+ loadingColorSuccess: string;
41682
+ borderSuccess: string;
41683
+ borderHoverSuccess: string;
41684
+ colorFocusSuccess: string;
41685
+ borderFocusSuccess: string;
41686
+ boxShadowFocusSuccess: string;
41687
+ caretColorSuccess: string;
41366
41688
  loadingColorWarning: string;
41367
41689
  borderWarning: string;
41368
41690
  borderHoverWarning: string;
@@ -41870,6 +42192,13 @@ export declare const UDatePicker: import("vue").DefineComponent<import("vue").Ex
41870
42192
  borderFocus: string;
41871
42193
  boxShadowFocus: string;
41872
42194
  loadingColor: string;
42195
+ loadingColorSuccess: string;
42196
+ borderSuccess: string;
42197
+ borderHoverSuccess: string;
42198
+ colorFocusSuccess: string;
42199
+ borderFocusSuccess: string;
42200
+ boxShadowFocusSuccess: string;
42201
+ caretColorSuccess: string;
41873
42202
  loadingColorWarning: string;
41874
42203
  borderWarning: string;
41875
42204
  borderHoverWarning: string;
@@ -42402,6 +42731,13 @@ export declare const UDatePicker: import("vue").DefineComponent<import("vue").Ex
42402
42731
  borderFocus: string;
42403
42732
  boxShadowFocus: string;
42404
42733
  loadingColor: string;
42734
+ loadingColorSuccess: string;
42735
+ borderSuccess: string;
42736
+ borderHoverSuccess: string;
42737
+ colorFocusSuccess: string;
42738
+ borderFocusSuccess: string;
42739
+ boxShadowFocusSuccess: string;
42740
+ caretColorSuccess: string;
42405
42741
  loadingColorWarning: string;
42406
42742
  borderWarning: string;
42407
42743
  borderHoverWarning: string;
@@ -42702,6 +43038,13 @@ export declare const UDatePicker: import("vue").DefineComponent<import("vue").Ex
42702
43038
  borderFocus: string;
42703
43039
  boxShadowFocus: string;
42704
43040
  loadingColor: string;
43041
+ loadingColorSuccess: string;
43042
+ borderSuccess: string;
43043
+ borderHoverSuccess: string;
43044
+ colorFocusSuccess: string;
43045
+ borderFocusSuccess: string;
43046
+ boxShadowFocusSuccess: string;
43047
+ caretColorSuccess: string;
42705
43048
  loadingColorWarning: string;
42706
43049
  borderWarning: string;
42707
43050
  borderHoverWarning: string;
@@ -43234,6 +43577,13 @@ export declare const UDatePicker: import("vue").DefineComponent<import("vue").Ex
43234
43577
  borderFocus: string;
43235
43578
  boxShadowFocus: string;
43236
43579
  loadingColor: string;
43580
+ loadingColorSuccess: string;
43581
+ borderSuccess: string;
43582
+ borderHoverSuccess: string;
43583
+ colorFocusSuccess: string;
43584
+ borderFocusSuccess: string;
43585
+ boxShadowFocusSuccess: string;
43586
+ caretColorSuccess: string;
43237
43587
  loadingColorWarning: string;
43238
43588
  borderWarning: string;
43239
43589
  borderHoverWarning: string;
@@ -43534,6 +43884,13 @@ export declare const UDatePicker: import("vue").DefineComponent<import("vue").Ex
43534
43884
  borderFocus: string;
43535
43885
  boxShadowFocus: string;
43536
43886
  loadingColor: string;
43887
+ loadingColorSuccess: string;
43888
+ borderSuccess: string;
43889
+ borderHoverSuccess: string;
43890
+ colorFocusSuccess: string;
43891
+ borderFocusSuccess: string;
43892
+ boxShadowFocusSuccess: string;
43893
+ caretColorSuccess: string;
43537
43894
  loadingColorWarning: string;
43538
43895
  borderWarning: string;
43539
43896
  borderHoverWarning: string;
@@ -44066,6 +44423,13 @@ export declare const UDatePicker: import("vue").DefineComponent<import("vue").Ex
44066
44423
  borderFocus: string;
44067
44424
  boxShadowFocus: string;
44068
44425
  loadingColor: string;
44426
+ loadingColorSuccess: string;
44427
+ borderSuccess: string;
44428
+ borderHoverSuccess: string;
44429
+ colorFocusSuccess: string;
44430
+ borderFocusSuccess: string;
44431
+ boxShadowFocusSuccess: string;
44432
+ caretColorSuccess: string;
44069
44433
  loadingColorWarning: string;
44070
44434
  borderWarning: string;
44071
44435
  borderHoverWarning: string;
@@ -44602,6 +44966,13 @@ export declare const UDatePicker: import("vue").DefineComponent<import("vue").Ex
44602
44966
  borderFocus: string;
44603
44967
  boxShadowFocus: string;
44604
44968
  loadingColor: string;
44969
+ loadingColorSuccess: string;
44970
+ borderSuccess: string;
44971
+ borderHoverSuccess: string;
44972
+ colorFocusSuccess: string;
44973
+ borderFocusSuccess: string;
44974
+ boxShadowFocusSuccess: string;
44975
+ caretColorSuccess: string;
44605
44976
  loadingColorWarning: string;
44606
44977
  borderWarning: string;
44607
44978
  borderHoverWarning: string;
@@ -45134,6 +45505,13 @@ export declare const UDatePicker: import("vue").DefineComponent<import("vue").Ex
45134
45505
  borderFocus: string;
45135
45506
  boxShadowFocus: string;
45136
45507
  loadingColor: string;
45508
+ loadingColorSuccess: string;
45509
+ borderSuccess: string;
45510
+ borderHoverSuccess: string;
45511
+ colorFocusSuccess: string;
45512
+ borderFocusSuccess: string;
45513
+ boxShadowFocusSuccess: string;
45514
+ caretColorSuccess: string;
45137
45515
  loadingColorWarning: string;
45138
45516
  borderWarning: string;
45139
45517
  borderHoverWarning: string;
@@ -45579,6 +45957,13 @@ export declare const UDatePicker: import("vue").DefineComponent<import("vue").Ex
45579
45957
  borderFocus: string;
45580
45958
  boxShadowFocus: string;
45581
45959
  loadingColor: string;
45960
+ loadingColorSuccess: string;
45961
+ borderSuccess: string;
45962
+ borderHoverSuccess: string;
45963
+ colorFocusSuccess: string;
45964
+ borderFocusSuccess: string;
45965
+ boxShadowFocusSuccess: string;
45966
+ caretColorSuccess: string;
45582
45967
  loadingColorWarning: string;
45583
45968
  borderWarning: string;
45584
45969
  borderHoverWarning: string;
@@ -45933,6 +46318,13 @@ export declare const UDatePicker: import("vue").DefineComponent<import("vue").Ex
45933
46318
  borderFocus: string;
45934
46319
  boxShadowFocus: string;
45935
46320
  loadingColor: string;
46321
+ loadingColorSuccess: string;
46322
+ borderSuccess: string;
46323
+ borderHoverSuccess: string;
46324
+ colorFocusSuccess: string;
46325
+ borderFocusSuccess: string;
46326
+ boxShadowFocusSuccess: string;
46327
+ caretColorSuccess: string;
45936
46328
  loadingColorWarning: string;
45937
46329
  borderWarning: string;
45938
46330
  borderHoverWarning: string;
@@ -46465,6 +46857,13 @@ export declare const UDatePicker: import("vue").DefineComponent<import("vue").Ex
46465
46857
  borderFocus: string;
46466
46858
  boxShadowFocus: string;
46467
46859
  loadingColor: string;
46860
+ loadingColorSuccess: string;
46861
+ borderSuccess: string;
46862
+ borderHoverSuccess: string;
46863
+ colorFocusSuccess: string;
46864
+ borderFocusSuccess: string;
46865
+ boxShadowFocusSuccess: string;
46866
+ caretColorSuccess: string;
46468
46867
  loadingColorWarning: string;
46469
46868
  borderWarning: string;
46470
46869
  borderHoverWarning: string;
@@ -46765,6 +47164,13 @@ export declare const UDatePicker: import("vue").DefineComponent<import("vue").Ex
46765
47164
  borderFocus: string;
46766
47165
  boxShadowFocus: string;
46767
47166
  loadingColor: string;
47167
+ loadingColorSuccess: string;
47168
+ borderSuccess: string;
47169
+ borderHoverSuccess: string;
47170
+ colorFocusSuccess: string;
47171
+ borderFocusSuccess: string;
47172
+ boxShadowFocusSuccess: string;
47173
+ caretColorSuccess: string;
46768
47174
  loadingColorWarning: string;
46769
47175
  borderWarning: string;
46770
47176
  borderHoverWarning: string;
@@ -47297,6 +47703,13 @@ export declare const UDatePicker: import("vue").DefineComponent<import("vue").Ex
47297
47703
  borderFocus: string;
47298
47704
  boxShadowFocus: string;
47299
47705
  loadingColor: string;
47706
+ loadingColorSuccess: string;
47707
+ borderSuccess: string;
47708
+ borderHoverSuccess: string;
47709
+ colorFocusSuccess: string;
47710
+ borderFocusSuccess: string;
47711
+ boxShadowFocusSuccess: string;
47712
+ caretColorSuccess: string;
47300
47713
  loadingColorWarning: string;
47301
47714
  borderWarning: string;
47302
47715
  borderHoverWarning: string;
@@ -47597,6 +48010,13 @@ export declare const UDatePicker: import("vue").DefineComponent<import("vue").Ex
47597
48010
  borderFocus: string;
47598
48011
  boxShadowFocus: string;
47599
48012
  loadingColor: string;
48013
+ loadingColorSuccess: string;
48014
+ borderSuccess: string;
48015
+ borderHoverSuccess: string;
48016
+ colorFocusSuccess: string;
48017
+ borderFocusSuccess: string;
48018
+ boxShadowFocusSuccess: string;
48019
+ caretColorSuccess: string;
47600
48020
  loadingColorWarning: string;
47601
48021
  borderWarning: string;
47602
48022
  borderHoverWarning: string;
@@ -48129,6 +48549,13 @@ export declare const UDatePicker: import("vue").DefineComponent<import("vue").Ex
48129
48549
  borderFocus: string;
48130
48550
  boxShadowFocus: string;
48131
48551
  loadingColor: string;
48552
+ loadingColorSuccess: string;
48553
+ borderSuccess: string;
48554
+ borderHoverSuccess: string;
48555
+ colorFocusSuccess: string;
48556
+ borderFocusSuccess: string;
48557
+ boxShadowFocusSuccess: string;
48558
+ caretColorSuccess: string;
48132
48559
  loadingColorWarning: string;
48133
48560
  borderWarning: string;
48134
48561
  borderHoverWarning: string;
@@ -48646,6 +49073,13 @@ export declare const UDatePickerV2: import("vue").DefineComponent<import("vue").
48646
49073
  borderFocus: string;
48647
49074
  boxShadowFocus: string;
48648
49075
  loadingColor: string;
49076
+ loadingColorSuccess: string;
49077
+ borderSuccess: string;
49078
+ borderHoverSuccess: string;
49079
+ colorFocusSuccess: string;
49080
+ borderFocusSuccess: string;
49081
+ boxShadowFocusSuccess: string;
49082
+ caretColorSuccess: string;
48649
49083
  loadingColorWarning: string;
48650
49084
  borderWarning: string;
48651
49085
  borderHoverWarning: string;
@@ -49092,6 +49526,13 @@ export declare const UDatePickerV2: import("vue").DefineComponent<import("vue").
49092
49526
  borderFocus: string;
49093
49527
  boxShadowFocus: string;
49094
49528
  loadingColor: string;
49529
+ loadingColorSuccess: string;
49530
+ borderSuccess: string;
49531
+ borderHoverSuccess: string;
49532
+ colorFocusSuccess: string;
49533
+ borderFocusSuccess: string;
49534
+ boxShadowFocusSuccess: string;
49535
+ caretColorSuccess: string;
49095
49536
  loadingColorWarning: string;
49096
49537
  borderWarning: string;
49097
49538
  borderHoverWarning: string;
@@ -49538,6 +49979,13 @@ export declare const UDatePickerV2: import("vue").DefineComponent<import("vue").
49538
49979
  borderFocus: string;
49539
49980
  boxShadowFocus: string;
49540
49981
  loadingColor: string;
49982
+ loadingColorSuccess: string;
49983
+ borderSuccess: string;
49984
+ borderHoverSuccess: string;
49985
+ colorFocusSuccess: string;
49986
+ borderFocusSuccess: string;
49987
+ boxShadowFocusSuccess: string;
49988
+ caretColorSuccess: string;
49541
49989
  loadingColorWarning: string;
49542
49990
  borderWarning: string;
49543
49991
  borderHoverWarning: string;
@@ -50041,6 +50489,13 @@ export declare const UDatePickerV2: import("vue").DefineComponent<import("vue").
50041
50489
  borderFocus: string;
50042
50490
  boxShadowFocus: string;
50043
50491
  loadingColor: string;
50492
+ loadingColorSuccess: string;
50493
+ borderSuccess: string;
50494
+ borderHoverSuccess: string;
50495
+ colorFocusSuccess: string;
50496
+ borderFocusSuccess: string;
50497
+ boxShadowFocusSuccess: string;
50498
+ caretColorSuccess: string;
50044
50499
  loadingColorWarning: string;
50045
50500
  borderWarning: string;
50046
50501
  borderHoverWarning: string;
@@ -50635,6 +51090,13 @@ export declare const UDatePickerV2: import("vue").DefineComponent<import("vue").
50635
51090
  borderFocus: string;
50636
51091
  boxShadowFocus: string;
50637
51092
  loadingColor: string;
51093
+ loadingColorSuccess: string;
51094
+ borderSuccess: string;
51095
+ borderHoverSuccess: string;
51096
+ colorFocusSuccess: string;
51097
+ borderFocusSuccess: string;
51098
+ boxShadowFocusSuccess: string;
51099
+ caretColorSuccess: string;
50638
51100
  loadingColorWarning: string;
50639
51101
  borderWarning: string;
50640
51102
  borderHoverWarning: string;
@@ -51081,6 +51543,13 @@ export declare const UDatePickerV2: import("vue").DefineComponent<import("vue").
51081
51543
  borderFocus: string;
51082
51544
  boxShadowFocus: string;
51083
51545
  loadingColor: string;
51546
+ loadingColorSuccess: string;
51547
+ borderSuccess: string;
51548
+ borderHoverSuccess: string;
51549
+ colorFocusSuccess: string;
51550
+ borderFocusSuccess: string;
51551
+ boxShadowFocusSuccess: string;
51552
+ caretColorSuccess: string;
51084
51553
  loadingColorWarning: string;
51085
51554
  borderWarning: string;
51086
51555
  borderHoverWarning: string;
@@ -51527,6 +51996,13 @@ export declare const UDatePickerV2: import("vue").DefineComponent<import("vue").
51527
51996
  borderFocus: string;
51528
51997
  boxShadowFocus: string;
51529
51998
  loadingColor: string;
51999
+ loadingColorSuccess: string;
52000
+ borderSuccess: string;
52001
+ borderHoverSuccess: string;
52002
+ colorFocusSuccess: string;
52003
+ borderFocusSuccess: string;
52004
+ boxShadowFocusSuccess: string;
52005
+ caretColorSuccess: string;
51530
52006
  loadingColorWarning: string;
51531
52007
  borderWarning: string;
51532
52008
  borderHoverWarning: string;
@@ -55593,6 +56069,13 @@ export declare const UDynamicInput: import("vue").DefineComponent<import("vue").
55593
56069
  borderFocus: string;
55594
56070
  boxShadowFocus: string;
55595
56071
  loadingColor: string;
56072
+ loadingColorSuccess: string;
56073
+ borderSuccess: string;
56074
+ borderHoverSuccess: string;
56075
+ colorFocusSuccess: string;
56076
+ borderFocusSuccess: string;
56077
+ boxShadowFocusSuccess: string;
56078
+ caretColorSuccess: string;
55596
56079
  loadingColorWarning: string;
55597
56080
  borderWarning: string;
55598
56081
  borderHoverWarning: string;
@@ -55881,6 +56364,13 @@ export declare const UDynamicInput: import("vue").DefineComponent<import("vue").
55881
56364
  borderFocus: string;
55882
56365
  boxShadowFocus: string;
55883
56366
  loadingColor: string;
56367
+ loadingColorSuccess: string;
56368
+ borderSuccess: string;
56369
+ borderHoverSuccess: string;
56370
+ colorFocusSuccess: string;
56371
+ borderFocusSuccess: string;
56372
+ boxShadowFocusSuccess: string;
56373
+ caretColorSuccess: string;
55884
56374
  loadingColorWarning: string;
55885
56375
  borderWarning: string;
55886
56376
  borderHoverWarning: string;
@@ -56169,6 +56659,13 @@ export declare const UDynamicInput: import("vue").DefineComponent<import("vue").
56169
56659
  borderFocus: string;
56170
56660
  boxShadowFocus: string;
56171
56661
  loadingColor: string;
56662
+ loadingColorSuccess: string;
56663
+ borderSuccess: string;
56664
+ borderHoverSuccess: string;
56665
+ colorFocusSuccess: string;
56666
+ borderFocusSuccess: string;
56667
+ boxShadowFocusSuccess: string;
56668
+ caretColorSuccess: string;
56172
56669
  loadingColorWarning: string;
56173
56670
  borderWarning: string;
56174
56671
  borderHoverWarning: string;
@@ -56480,6 +56977,13 @@ export declare const UDynamicInput: import("vue").DefineComponent<import("vue").
56480
56977
  borderFocus: string;
56481
56978
  boxShadowFocus: string;
56482
56979
  loadingColor: string;
56980
+ loadingColorSuccess: string;
56981
+ borderSuccess: string;
56982
+ borderHoverSuccess: string;
56983
+ colorFocusSuccess: string;
56984
+ borderFocusSuccess: string;
56985
+ boxShadowFocusSuccess: string;
56986
+ caretColorSuccess: string;
56483
56987
  loadingColorWarning: string;
56484
56988
  borderWarning: string;
56485
56989
  borderHoverWarning: string;
@@ -56825,6 +57329,13 @@ export declare const UDynamicInput: import("vue").DefineComponent<import("vue").
56825
57329
  borderFocus: string;
56826
57330
  boxShadowFocus: string;
56827
57331
  loadingColor: string;
57332
+ loadingColorSuccess: string;
57333
+ borderSuccess: string;
57334
+ borderHoverSuccess: string;
57335
+ colorFocusSuccess: string;
57336
+ borderFocusSuccess: string;
57337
+ boxShadowFocusSuccess: string;
57338
+ caretColorSuccess: string;
56828
57339
  loadingColorWarning: string;
56829
57340
  borderWarning: string;
56830
57341
  borderHoverWarning: string;
@@ -57113,6 +57624,13 @@ export declare const UDynamicInput: import("vue").DefineComponent<import("vue").
57113
57624
  borderFocus: string;
57114
57625
  boxShadowFocus: string;
57115
57626
  loadingColor: string;
57627
+ loadingColorSuccess: string;
57628
+ borderSuccess: string;
57629
+ borderHoverSuccess: string;
57630
+ colorFocusSuccess: string;
57631
+ borderFocusSuccess: string;
57632
+ boxShadowFocusSuccess: string;
57633
+ caretColorSuccess: string;
57116
57634
  loadingColorWarning: string;
57117
57635
  borderWarning: string;
57118
57636
  borderHoverWarning: string;
@@ -57401,6 +57919,13 @@ export declare const UDynamicInput: import("vue").DefineComponent<import("vue").
57401
57919
  borderFocus: string;
57402
57920
  boxShadowFocus: string;
57403
57921
  loadingColor: string;
57922
+ loadingColorSuccess: string;
57923
+ borderSuccess: string;
57924
+ borderHoverSuccess: string;
57925
+ colorFocusSuccess: string;
57926
+ borderFocusSuccess: string;
57927
+ boxShadowFocusSuccess: string;
57928
+ caretColorSuccess: string;
57404
57929
  loadingColorWarning: string;
57405
57930
  borderWarning: string;
57406
57931
  borderHoverWarning: string;
@@ -57736,6 +58261,13 @@ export declare const UDynamicTags: import("vue").DefineComponent<import("vue").E
57736
58261
  borderFocus: string;
57737
58262
  boxShadowFocus: string;
57738
58263
  loadingColor: string;
58264
+ loadingColorSuccess: string;
58265
+ borderSuccess: string;
58266
+ borderHoverSuccess: string;
58267
+ colorFocusSuccess: string;
58268
+ borderFocusSuccess: string;
58269
+ boxShadowFocusSuccess: string;
58270
+ caretColorSuccess: string;
57739
58271
  loadingColorWarning: string;
57740
58272
  borderWarning: string;
57741
58273
  borderHoverWarning: string;
@@ -58090,6 +58622,13 @@ export declare const UDynamicTags: import("vue").DefineComponent<import("vue").E
58090
58622
  borderFocus: string;
58091
58623
  boxShadowFocus: string;
58092
58624
  loadingColor: string;
58625
+ loadingColorSuccess: string;
58626
+ borderSuccess: string;
58627
+ borderHoverSuccess: string;
58628
+ colorFocusSuccess: string;
58629
+ borderFocusSuccess: string;
58630
+ boxShadowFocusSuccess: string;
58631
+ caretColorSuccess: string;
58093
58632
  loadingColorWarning: string;
58094
58633
  borderWarning: string;
58095
58634
  borderHoverWarning: string;
@@ -58444,6 +58983,13 @@ export declare const UDynamicTags: import("vue").DefineComponent<import("vue").E
58444
58983
  borderFocus: string;
58445
58984
  boxShadowFocus: string;
58446
58985
  loadingColor: string;
58986
+ loadingColorSuccess: string;
58987
+ borderSuccess: string;
58988
+ borderHoverSuccess: string;
58989
+ colorFocusSuccess: string;
58990
+ borderFocusSuccess: string;
58991
+ boxShadowFocusSuccess: string;
58992
+ caretColorSuccess: string;
58447
58993
  loadingColorWarning: string;
58448
58994
  borderWarning: string;
58449
58995
  borderHoverWarning: string;
@@ -58856,6 +59402,13 @@ export declare const UDynamicTags: import("vue").DefineComponent<import("vue").E
58856
59402
  borderFocus: string;
58857
59403
  boxShadowFocus: string;
58858
59404
  loadingColor: string;
59405
+ loadingColorSuccess: string;
59406
+ borderSuccess: string;
59407
+ borderHoverSuccess: string;
59408
+ colorFocusSuccess: string;
59409
+ borderFocusSuccess: string;
59410
+ boxShadowFocusSuccess: string;
59411
+ caretColorSuccess: string;
58859
59412
  loadingColorWarning: string;
58860
59413
  borderWarning: string;
58861
59414
  borderHoverWarning: string;
@@ -59275,6 +59828,13 @@ export declare const UDynamicTags: import("vue").DefineComponent<import("vue").E
59275
59828
  borderFocus: string;
59276
59829
  boxShadowFocus: string;
59277
59830
  loadingColor: string;
59831
+ loadingColorSuccess: string;
59832
+ borderSuccess: string;
59833
+ borderHoverSuccess: string;
59834
+ colorFocusSuccess: string;
59835
+ borderFocusSuccess: string;
59836
+ boxShadowFocusSuccess: string;
59837
+ caretColorSuccess: string;
59278
59838
  loadingColorWarning: string;
59279
59839
  borderWarning: string;
59280
59840
  borderHoverWarning: string;
@@ -59629,6 +60189,13 @@ export declare const UDynamicTags: import("vue").DefineComponent<import("vue").E
59629
60189
  borderFocus: string;
59630
60190
  boxShadowFocus: string;
59631
60191
  loadingColor: string;
60192
+ loadingColorSuccess: string;
60193
+ borderSuccess: string;
60194
+ borderHoverSuccess: string;
60195
+ colorFocusSuccess: string;
60196
+ borderFocusSuccess: string;
60197
+ boxShadowFocusSuccess: string;
60198
+ caretColorSuccess: string;
59632
60199
  loadingColorWarning: string;
59633
60200
  borderWarning: string;
59634
60201
  borderHoverWarning: string;
@@ -59983,6 +60550,13 @@ export declare const UDynamicTags: import("vue").DefineComponent<import("vue").E
59983
60550
  borderFocus: string;
59984
60551
  boxShadowFocus: string;
59985
60552
  loadingColor: string;
60553
+ loadingColorSuccess: string;
60554
+ borderSuccess: string;
60555
+ borderHoverSuccess: string;
60556
+ colorFocusSuccess: string;
60557
+ borderFocusSuccess: string;
60558
+ boxShadowFocusSuccess: string;
60559
+ caretColorSuccess: string;
59986
60560
  loadingColorWarning: string;
59987
60561
  borderWarning: string;
59988
60562
  borderHoverWarning: string;
@@ -66487,6 +67061,13 @@ export declare const UInput: import("vue").DefineComponent<import("vue").Extract
66487
67061
  borderFocus: string;
66488
67062
  boxShadowFocus: string;
66489
67063
  loadingColor: string;
67064
+ loadingColorSuccess: string;
67065
+ borderSuccess: string;
67066
+ borderHoverSuccess: string;
67067
+ colorFocusSuccess: string;
67068
+ borderFocusSuccess: string;
67069
+ boxShadowFocusSuccess: string;
67070
+ caretColorSuccess: string;
66490
67071
  loadingColorWarning: string;
66491
67072
  borderWarning: string;
66492
67073
  borderHoverWarning: string;
@@ -66551,6 +67132,13 @@ export declare const UInput: import("vue").DefineComponent<import("vue").Extract
66551
67132
  borderFocus: string;
66552
67133
  boxShadowFocus: string;
66553
67134
  loadingColor: string;
67135
+ loadingColorSuccess: string;
67136
+ borderSuccess: string;
67137
+ borderHoverSuccess: string;
67138
+ colorFocusSuccess: string;
67139
+ borderFocusSuccess: string;
67140
+ boxShadowFocusSuccess: string;
67141
+ caretColorSuccess: string;
66554
67142
  loadingColorWarning: string;
66555
67143
  borderWarning: string;
66556
67144
  borderHoverWarning: string;
@@ -66615,6 +67203,13 @@ export declare const UInput: import("vue").DefineComponent<import("vue").Extract
66615
67203
  borderFocus: string;
66616
67204
  boxShadowFocus: string;
66617
67205
  loadingColor: string;
67206
+ loadingColorSuccess: string;
67207
+ borderSuccess: string;
67208
+ borderHoverSuccess: string;
67209
+ colorFocusSuccess: string;
67210
+ borderFocusSuccess: string;
67211
+ boxShadowFocusSuccess: string;
67212
+ caretColorSuccess: string;
66618
67213
  loadingColorWarning: string;
66619
67214
  borderWarning: string;
66620
67215
  borderHoverWarning: string;
@@ -66761,6 +67356,13 @@ export declare const UInput: import("vue").DefineComponent<import("vue").Extract
66761
67356
  borderFocus: string;
66762
67357
  boxShadowFocus: string;
66763
67358
  loadingColor: string;
67359
+ loadingColorSuccess: string;
67360
+ borderSuccess: string;
67361
+ borderHoverSuccess: string;
67362
+ colorFocusSuccess: string;
67363
+ borderFocusSuccess: string;
67364
+ boxShadowFocusSuccess: string;
67365
+ caretColorSuccess: string;
66764
67366
  loadingColorWarning: string;
66765
67367
  borderWarning: string;
66766
67368
  borderHoverWarning: string;
@@ -66819,6 +67421,13 @@ export declare const UInput: import("vue").DefineComponent<import("vue").Extract
66819
67421
  '--u-text-color-disabled': string;
66820
67422
  '--u-box-shadow-focus': string;
66821
67423
  '--u-loading-color': string;
67424
+ '--u-caret-color-success': string;
67425
+ '--u-color-focus-success': string;
67426
+ '--u-box-shadow-focus-success': string;
67427
+ '--u-border-success': string;
67428
+ '--u-border-focus-success': string;
67429
+ '--u-border-hover-success': string;
67430
+ '--u-loading-color-success': string;
66822
67431
  '--u-caret-color-warning': string;
66823
67432
  '--u-color-focus-warning': string;
66824
67433
  '--u-box-shadow-focus-warning': string;
@@ -66997,6 +67606,13 @@ export declare const UInput: import("vue").DefineComponent<import("vue").Extract
66997
67606
  borderFocus: string;
66998
67607
  boxShadowFocus: string;
66999
67608
  loadingColor: string;
67609
+ loadingColorSuccess: string;
67610
+ borderSuccess: string;
67611
+ borderHoverSuccess: string;
67612
+ colorFocusSuccess: string;
67613
+ borderFocusSuccess: string;
67614
+ boxShadowFocusSuccess: string;
67615
+ caretColorSuccess: string;
67000
67616
  loadingColorWarning: string;
67001
67617
  borderWarning: string;
67002
67618
  borderHoverWarning: string;
@@ -67061,6 +67677,13 @@ export declare const UInput: import("vue").DefineComponent<import("vue").Extract
67061
67677
  borderFocus: string;
67062
67678
  boxShadowFocus: string;
67063
67679
  loadingColor: string;
67680
+ loadingColorSuccess: string;
67681
+ borderSuccess: string;
67682
+ borderHoverSuccess: string;
67683
+ colorFocusSuccess: string;
67684
+ borderFocusSuccess: string;
67685
+ boxShadowFocusSuccess: string;
67686
+ caretColorSuccess: string;
67064
67687
  loadingColorWarning: string;
67065
67688
  borderWarning: string;
67066
67689
  borderHoverWarning: string;
@@ -67125,6 +67748,13 @@ export declare const UInput: import("vue").DefineComponent<import("vue").Extract
67125
67748
  borderFocus: string;
67126
67749
  boxShadowFocus: string;
67127
67750
  loadingColor: string;
67751
+ loadingColorSuccess: string;
67752
+ borderSuccess: string;
67753
+ borderHoverSuccess: string;
67754
+ colorFocusSuccess: string;
67755
+ borderFocusSuccess: string;
67756
+ boxShadowFocusSuccess: string;
67757
+ caretColorSuccess: string;
67128
67758
  loadingColorWarning: string;
67129
67759
  borderWarning: string;
67130
67760
  borderHoverWarning: string;
@@ -67228,6 +67858,13 @@ export declare const UInputGroupLabel: import("vue").DefineComponent<import("vue
67228
67858
  borderFocus: string;
67229
67859
  boxShadowFocus: string;
67230
67860
  loadingColor: string;
67861
+ loadingColorSuccess: string;
67862
+ borderSuccess: string;
67863
+ borderHoverSuccess: string;
67864
+ colorFocusSuccess: string;
67865
+ borderFocusSuccess: string;
67866
+ boxShadowFocusSuccess: string;
67867
+ caretColorSuccess: string;
67231
67868
  loadingColorWarning: string;
67232
67869
  borderWarning: string;
67233
67870
  borderHoverWarning: string;
@@ -67292,6 +67929,13 @@ export declare const UInputGroupLabel: import("vue").DefineComponent<import("vue
67292
67929
  borderFocus: string;
67293
67930
  boxShadowFocus: string;
67294
67931
  loadingColor: string;
67932
+ loadingColorSuccess: string;
67933
+ borderSuccess: string;
67934
+ borderHoverSuccess: string;
67935
+ colorFocusSuccess: string;
67936
+ borderFocusSuccess: string;
67937
+ boxShadowFocusSuccess: string;
67938
+ caretColorSuccess: string;
67295
67939
  loadingColorWarning: string;
67296
67940
  borderWarning: string;
67297
67941
  borderHoverWarning: string;
@@ -67356,6 +68000,13 @@ export declare const UInputGroupLabel: import("vue").DefineComponent<import("vue
67356
68000
  borderFocus: string;
67357
68001
  boxShadowFocus: string;
67358
68002
  loadingColor: string;
68003
+ loadingColorSuccess: string;
68004
+ borderSuccess: string;
68005
+ borderHoverSuccess: string;
68006
+ colorFocusSuccess: string;
68007
+ borderFocusSuccess: string;
68008
+ boxShadowFocusSuccess: string;
68009
+ caretColorSuccess: string;
67359
68010
  loadingColorWarning: string;
67360
68011
  borderWarning: string;
67361
68012
  borderHoverWarning: string;
@@ -67442,6 +68093,13 @@ export declare const UInputGroupLabel: import("vue").DefineComponent<import("vue
67442
68093
  borderFocus: string;
67443
68094
  boxShadowFocus: string;
67444
68095
  loadingColor: string;
68096
+ loadingColorSuccess: string;
68097
+ borderSuccess: string;
68098
+ borderHoverSuccess: string;
68099
+ colorFocusSuccess: string;
68100
+ borderFocusSuccess: string;
68101
+ boxShadowFocusSuccess: string;
68102
+ caretColorSuccess: string;
67445
68103
  loadingColorWarning: string;
67446
68104
  borderWarning: string;
67447
68105
  borderHoverWarning: string;
@@ -67506,6 +68164,13 @@ export declare const UInputGroupLabel: import("vue").DefineComponent<import("vue
67506
68164
  borderFocus: string;
67507
68165
  boxShadowFocus: string;
67508
68166
  loadingColor: string;
68167
+ loadingColorSuccess: string;
68168
+ borderSuccess: string;
68169
+ borderHoverSuccess: string;
68170
+ colorFocusSuccess: string;
68171
+ borderFocusSuccess: string;
68172
+ boxShadowFocusSuccess: string;
68173
+ caretColorSuccess: string;
67509
68174
  loadingColorWarning: string;
67510
68175
  borderWarning: string;
67511
68176
  borderHoverWarning: string;
@@ -67570,6 +68235,13 @@ export declare const UInputGroupLabel: import("vue").DefineComponent<import("vue
67570
68235
  borderFocus: string;
67571
68236
  boxShadowFocus: string;
67572
68237
  loadingColor: string;
68238
+ loadingColorSuccess: string;
68239
+ borderSuccess: string;
68240
+ borderHoverSuccess: string;
68241
+ colorFocusSuccess: string;
68242
+ borderFocusSuccess: string;
68243
+ boxShadowFocusSuccess: string;
68244
+ caretColorSuccess: string;
67573
68245
  loadingColorWarning: string;
67574
68246
  borderWarning: string;
67575
68247
  borderHoverWarning: string;
@@ -67920,6 +68592,13 @@ export declare const UInputNumber: import("vue").DefineComponent<import("vue").E
67920
68592
  borderFocus: string;
67921
68593
  boxShadowFocus: string;
67922
68594
  loadingColor: string;
68595
+ loadingColorSuccess: string;
68596
+ borderSuccess: string;
68597
+ borderHoverSuccess: string;
68598
+ colorFocusSuccess: string;
68599
+ borderFocusSuccess: string;
68600
+ boxShadowFocusSuccess: string;
68601
+ caretColorSuccess: string;
67923
68602
  loadingColorWarning: string;
67924
68603
  borderWarning: string;
67925
68604
  borderHoverWarning: string;
@@ -68207,6 +68886,13 @@ export declare const UInputNumber: import("vue").DefineComponent<import("vue").E
68207
68886
  borderFocus: string;
68208
68887
  boxShadowFocus: string;
68209
68888
  loadingColor: string;
68889
+ loadingColorSuccess: string;
68890
+ borderSuccess: string;
68891
+ borderHoverSuccess: string;
68892
+ colorFocusSuccess: string;
68893
+ borderFocusSuccess: string;
68894
+ boxShadowFocusSuccess: string;
68895
+ caretColorSuccess: string;
68210
68896
  loadingColorWarning: string;
68211
68897
  borderWarning: string;
68212
68898
  borderHoverWarning: string;
@@ -68494,6 +69180,13 @@ export declare const UInputNumber: import("vue").DefineComponent<import("vue").E
68494
69180
  borderFocus: string;
68495
69181
  boxShadowFocus: string;
68496
69182
  loadingColor: string;
69183
+ loadingColorSuccess: string;
69184
+ borderSuccess: string;
69185
+ borderHoverSuccess: string;
69186
+ colorFocusSuccess: string;
69187
+ borderFocusSuccess: string;
69188
+ boxShadowFocusSuccess: string;
69189
+ caretColorSuccess: string;
68497
69190
  loadingColorWarning: string;
68498
69191
  borderWarning: string;
68499
69192
  borderHoverWarning: string;
@@ -68859,6 +69552,13 @@ export declare const UInputNumber: import("vue").DefineComponent<import("vue").E
68859
69552
  borderFocus: string;
68860
69553
  boxShadowFocus: string;
68861
69554
  loadingColor: string;
69555
+ loadingColorSuccess: string;
69556
+ borderSuccess: string;
69557
+ borderHoverSuccess: string;
69558
+ colorFocusSuccess: string;
69559
+ borderFocusSuccess: string;
69560
+ boxShadowFocusSuccess: string;
69561
+ caretColorSuccess: string;
68862
69562
  loadingColorWarning: string;
68863
69563
  borderWarning: string;
68864
69564
  borderHoverWarning: string;
@@ -69226,6 +69926,13 @@ export declare const UInputNumber: import("vue").DefineComponent<import("vue").E
69226
69926
  borderFocus: string;
69227
69927
  boxShadowFocus: string;
69228
69928
  loadingColor: string;
69929
+ loadingColorSuccess: string;
69930
+ borderSuccess: string;
69931
+ borderHoverSuccess: string;
69932
+ colorFocusSuccess: string;
69933
+ borderFocusSuccess: string;
69934
+ boxShadowFocusSuccess: string;
69935
+ caretColorSuccess: string;
69229
69936
  loadingColorWarning: string;
69230
69937
  borderWarning: string;
69231
69938
  borderHoverWarning: string;
@@ -69513,6 +70220,13 @@ export declare const UInputNumber: import("vue").DefineComponent<import("vue").E
69513
70220
  borderFocus: string;
69514
70221
  boxShadowFocus: string;
69515
70222
  loadingColor: string;
70223
+ loadingColorSuccess: string;
70224
+ borderSuccess: string;
70225
+ borderHoverSuccess: string;
70226
+ colorFocusSuccess: string;
70227
+ borderFocusSuccess: string;
70228
+ boxShadowFocusSuccess: string;
70229
+ caretColorSuccess: string;
69516
70230
  loadingColorWarning: string;
69517
70231
  borderWarning: string;
69518
70232
  borderHoverWarning: string;
@@ -69800,6 +70514,13 @@ export declare const UInputNumber: import("vue").DefineComponent<import("vue").E
69800
70514
  borderFocus: string;
69801
70515
  boxShadowFocus: string;
69802
70516
  loadingColor: string;
70517
+ loadingColorSuccess: string;
70518
+ borderSuccess: string;
70519
+ borderHoverSuccess: string;
70520
+ colorFocusSuccess: string;
70521
+ borderFocusSuccess: string;
70522
+ boxShadowFocusSuccess: string;
70523
+ caretColorSuccess: string;
69803
70524
  loadingColorWarning: string;
69804
70525
  borderWarning: string;
69805
70526
  borderHoverWarning: string;
@@ -69919,6 +70640,13 @@ export declare const UInputOtp: import("vue").DefineComponent<import("vue").Extr
69919
70640
  borderFocus: string;
69920
70641
  boxShadowFocus: string;
69921
70642
  loadingColor: string;
70643
+ loadingColorSuccess: string;
70644
+ borderSuccess: string;
70645
+ borderHoverSuccess: string;
70646
+ colorFocusSuccess: string;
70647
+ borderFocusSuccess: string;
70648
+ boxShadowFocusSuccess: string;
70649
+ caretColorSuccess: string;
69922
70650
  loadingColorWarning: string;
69923
70651
  borderWarning: string;
69924
70652
  borderHoverWarning: string;
@@ -69992,6 +70720,13 @@ export declare const UInputOtp: import("vue").DefineComponent<import("vue").Extr
69992
70720
  borderFocus: string;
69993
70721
  boxShadowFocus: string;
69994
70722
  loadingColor: string;
70723
+ loadingColorSuccess: string;
70724
+ borderSuccess: string;
70725
+ borderHoverSuccess: string;
70726
+ colorFocusSuccess: string;
70727
+ borderFocusSuccess: string;
70728
+ boxShadowFocusSuccess: string;
70729
+ caretColorSuccess: string;
69995
70730
  loadingColorWarning: string;
69996
70731
  borderWarning: string;
69997
70732
  borderHoverWarning: string;
@@ -70065,6 +70800,13 @@ export declare const UInputOtp: import("vue").DefineComponent<import("vue").Extr
70065
70800
  borderFocus: string;
70066
70801
  boxShadowFocus: string;
70067
70802
  loadingColor: string;
70803
+ loadingColorSuccess: string;
70804
+ borderSuccess: string;
70805
+ borderHoverSuccess: string;
70806
+ colorFocusSuccess: string;
70807
+ borderFocusSuccess: string;
70808
+ boxShadowFocusSuccess: string;
70809
+ caretColorSuccess: string;
70068
70810
  loadingColorWarning: string;
70069
70811
  borderWarning: string;
70070
70812
  borderHoverWarning: string;
@@ -70143,6 +70885,13 @@ export declare const UInputOtp: import("vue").DefineComponent<import("vue").Extr
70143
70885
  borderFocus: string;
70144
70886
  boxShadowFocus: string;
70145
70887
  loadingColor: string;
70888
+ loadingColorSuccess: string;
70889
+ borderSuccess: string;
70890
+ borderHoverSuccess: string;
70891
+ colorFocusSuccess: string;
70892
+ borderFocusSuccess: string;
70893
+ boxShadowFocusSuccess: string;
70894
+ caretColorSuccess: string;
70146
70895
  loadingColorWarning: string;
70147
70896
  borderWarning: string;
70148
70897
  borderHoverWarning: string;
@@ -70307,6 +71056,13 @@ export declare const UInputOtp: import("vue").DefineComponent<import("vue").Extr
70307
71056
  borderFocus: string;
70308
71057
  boxShadowFocus: string;
70309
71058
  loadingColor: string;
71059
+ loadingColorSuccess: string;
71060
+ borderSuccess: string;
71061
+ borderHoverSuccess: string;
71062
+ colorFocusSuccess: string;
71063
+ borderFocusSuccess: string;
71064
+ boxShadowFocusSuccess: string;
71065
+ caretColorSuccess: string;
70310
71066
  loadingColorWarning: string;
70311
71067
  borderWarning: string;
70312
71068
  borderHoverWarning: string;
@@ -70380,6 +71136,13 @@ export declare const UInputOtp: import("vue").DefineComponent<import("vue").Extr
70380
71136
  borderFocus: string;
70381
71137
  boxShadowFocus: string;
70382
71138
  loadingColor: string;
71139
+ loadingColorSuccess: string;
71140
+ borderSuccess: string;
71141
+ borderHoverSuccess: string;
71142
+ colorFocusSuccess: string;
71143
+ borderFocusSuccess: string;
71144
+ boxShadowFocusSuccess: string;
71145
+ caretColorSuccess: string;
70383
71146
  loadingColorWarning: string;
70384
71147
  borderWarning: string;
70385
71148
  borderHoverWarning: string;
@@ -70453,6 +71216,13 @@ export declare const UInputOtp: import("vue").DefineComponent<import("vue").Extr
70453
71216
  borderFocus: string;
70454
71217
  boxShadowFocus: string;
70455
71218
  loadingColor: string;
71219
+ loadingColorSuccess: string;
71220
+ borderSuccess: string;
71221
+ borderHoverSuccess: string;
71222
+ colorFocusSuccess: string;
71223
+ borderFocusSuccess: string;
71224
+ boxShadowFocusSuccess: string;
71225
+ caretColorSuccess: string;
70456
71226
  loadingColorWarning: string;
70457
71227
  borderWarning: string;
70458
71228
  borderHoverWarning: string;
@@ -72461,6 +73231,13 @@ export declare const ULegacyTransfer: import("vue").DefineComponent<import("vue"
72461
73231
  borderFocus: string;
72462
73232
  boxShadowFocus: string;
72463
73233
  loadingColor: string;
73234
+ loadingColorSuccess: string;
73235
+ borderSuccess: string;
73236
+ borderHoverSuccess: string;
73237
+ colorFocusSuccess: string;
73238
+ borderFocusSuccess: string;
73239
+ boxShadowFocusSuccess: string;
73240
+ caretColorSuccess: string;
72464
73241
  loadingColorWarning: string;
72465
73242
  borderWarning: string;
72466
73243
  borderHoverWarning: string;
@@ -72852,6 +73629,13 @@ export declare const ULegacyTransfer: import("vue").DefineComponent<import("vue"
72852
73629
  borderFocus: string;
72853
73630
  boxShadowFocus: string;
72854
73631
  loadingColor: string;
73632
+ loadingColorSuccess: string;
73633
+ borderSuccess: string;
73634
+ borderHoverSuccess: string;
73635
+ colorFocusSuccess: string;
73636
+ borderFocusSuccess: string;
73637
+ boxShadowFocusSuccess: string;
73638
+ caretColorSuccess: string;
72855
73639
  loadingColorWarning: string;
72856
73640
  borderWarning: string;
72857
73641
  borderHoverWarning: string;
@@ -73243,6 +74027,13 @@ export declare const ULegacyTransfer: import("vue").DefineComponent<import("vue"
73243
74027
  borderFocus: string;
73244
74028
  boxShadowFocus: string;
73245
74029
  loadingColor: string;
74030
+ loadingColorSuccess: string;
74031
+ borderSuccess: string;
74032
+ borderHoverSuccess: string;
74033
+ colorFocusSuccess: string;
74034
+ borderFocusSuccess: string;
74035
+ boxShadowFocusSuccess: string;
74036
+ caretColorSuccess: string;
73246
74037
  loadingColorWarning: string;
73247
74038
  borderWarning: string;
73248
74039
  borderHoverWarning: string;
@@ -73650,6 +74441,13 @@ export declare const ULegacyTransfer: import("vue").DefineComponent<import("vue"
73650
74441
  borderFocus: string;
73651
74442
  boxShadowFocus: string;
73652
74443
  loadingColor: string;
74444
+ loadingColorSuccess: string;
74445
+ borderSuccess: string;
74446
+ borderHoverSuccess: string;
74447
+ colorFocusSuccess: string;
74448
+ borderFocusSuccess: string;
74449
+ boxShadowFocusSuccess: string;
74450
+ caretColorSuccess: string;
73653
74451
  loadingColorWarning: string;
73654
74452
  borderWarning: string;
73655
74453
  borderHoverWarning: string;
@@ -74134,6 +74932,13 @@ export declare const ULegacyTransfer: import("vue").DefineComponent<import("vue"
74134
74932
  borderFocus: string;
74135
74933
  boxShadowFocus: string;
74136
74934
  loadingColor: string;
74935
+ loadingColorSuccess: string;
74936
+ borderSuccess: string;
74937
+ borderHoverSuccess: string;
74938
+ colorFocusSuccess: string;
74939
+ borderFocusSuccess: string;
74940
+ boxShadowFocusSuccess: string;
74941
+ caretColorSuccess: string;
74137
74942
  loadingColorWarning: string;
74138
74943
  borderWarning: string;
74139
74944
  borderHoverWarning: string;
@@ -74525,6 +75330,13 @@ export declare const ULegacyTransfer: import("vue").DefineComponent<import("vue"
74525
75330
  borderFocus: string;
74526
75331
  boxShadowFocus: string;
74527
75332
  loadingColor: string;
75333
+ loadingColorSuccess: string;
75334
+ borderSuccess: string;
75335
+ borderHoverSuccess: string;
75336
+ colorFocusSuccess: string;
75337
+ borderFocusSuccess: string;
75338
+ boxShadowFocusSuccess: string;
75339
+ caretColorSuccess: string;
74528
75340
  loadingColorWarning: string;
74529
75341
  borderWarning: string;
74530
75342
  borderHoverWarning: string;
@@ -74916,6 +75728,13 @@ export declare const ULegacyTransfer: import("vue").DefineComponent<import("vue"
74916
75728
  borderFocus: string;
74917
75729
  boxShadowFocus: string;
74918
75730
  loadingColor: string;
75731
+ loadingColorSuccess: string;
75732
+ borderSuccess: string;
75733
+ borderHoverSuccess: string;
75734
+ colorFocusSuccess: string;
75735
+ borderFocusSuccess: string;
75736
+ boxShadowFocusSuccess: string;
75737
+ caretColorSuccess: string;
74919
75738
  loadingColorWarning: string;
74920
75739
  borderWarning: string;
74921
75740
  borderHoverWarning: string;
@@ -76163,6 +76982,10 @@ export declare const UMappingCard: import("vue").DefineComponent<import("vue").E
76163
76982
  readonly type: import("vue").PropType<import("./mapping-card/src/interface").MappingCardInterface["hideCopy"]>;
76164
76983
  readonly default: false;
76165
76984
  };
76985
+ hideHeaderActions: {
76986
+ readonly type: import("vue").PropType<import("./mapping-card/src/interface").MappingCardInterface["hideHeaderActions"]>;
76987
+ readonly default: false;
76988
+ };
76166
76989
  copyButtonProps: import("vue").PropType<import("./mapping-card/src/interface").MappingCardInterface["copyButtonProps"]>;
76167
76990
  copyIconProps: import("vue").PropType<import("./mapping-card/src/interface").MappingCardInterface["copyIconProps"]>;
76168
76991
  headerEditButtonProps: import("vue").PropType<import("./mapping-card/src/interface").MappingCardInterface["headerEditButtonProps"]>;
@@ -77213,6 +78036,10 @@ export declare const UMappingCard: import("vue").DefineComponent<import("vue").E
77213
78036
  readonly type: import("vue").PropType<import("./mapping-card/src/interface").MappingCardInterface["hideCopy"]>;
77214
78037
  readonly default: false;
77215
78038
  };
78039
+ hideHeaderActions: {
78040
+ readonly type: import("vue").PropType<import("./mapping-card/src/interface").MappingCardInterface["hideHeaderActions"]>;
78041
+ readonly default: false;
78042
+ };
77216
78043
  copyButtonProps: import("vue").PropType<import("./mapping-card/src/interface").MappingCardInterface["copyButtonProps"]>;
77217
78044
  copyIconProps: import("vue").PropType<import("./mapping-card/src/interface").MappingCardInterface["copyIconProps"]>;
77218
78045
  headerEditButtonProps: import("vue").PropType<import("./mapping-card/src/interface").MappingCardInterface["headerEditButtonProps"]>;
@@ -78235,6 +79062,7 @@ export declare const UMappingCard: import("vue").DefineComponent<import("vue").E
78235
79062
  cols: number | undefined;
78236
79063
  defaultSpan: number | undefined;
78237
79064
  hideCopy: boolean | undefined;
79065
+ hideHeaderActions: boolean | undefined;
78238
79066
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
78239
79067
  export declare const UMappingCardList: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
78240
79068
  readonly items: {
@@ -78480,6 +79308,13 @@ export declare const UMention: import("vue").DefineComponent<import("vue").Extra
78480
79308
  borderFocus: string;
78481
79309
  boxShadowFocus: string;
78482
79310
  loadingColor: string;
79311
+ loadingColorSuccess: string;
79312
+ borderSuccess: string;
79313
+ borderHoverSuccess: string;
79314
+ colorFocusSuccess: string;
79315
+ borderFocusSuccess: string;
79316
+ boxShadowFocusSuccess: string;
79317
+ caretColorSuccess: string;
78483
79318
  loadingColorWarning: string;
78484
79319
  borderWarning: string;
78485
79320
  borderHoverWarning: string;
@@ -78613,6 +79448,13 @@ export declare const UMention: import("vue").DefineComponent<import("vue").Extra
78613
79448
  borderFocus: string;
78614
79449
  boxShadowFocus: string;
78615
79450
  loadingColor: string;
79451
+ loadingColorSuccess: string;
79452
+ borderSuccess: string;
79453
+ borderHoverSuccess: string;
79454
+ colorFocusSuccess: string;
79455
+ borderFocusSuccess: string;
79456
+ boxShadowFocusSuccess: string;
79457
+ caretColorSuccess: string;
78616
79458
  loadingColorWarning: string;
78617
79459
  borderWarning: string;
78618
79460
  borderHoverWarning: string;
@@ -78746,6 +79588,13 @@ export declare const UMention: import("vue").DefineComponent<import("vue").Extra
78746
79588
  borderFocus: string;
78747
79589
  boxShadowFocus: string;
78748
79590
  loadingColor: string;
79591
+ loadingColorSuccess: string;
79592
+ borderSuccess: string;
79593
+ borderHoverSuccess: string;
79594
+ colorFocusSuccess: string;
79595
+ borderFocusSuccess: string;
79596
+ boxShadowFocusSuccess: string;
79597
+ caretColorSuccess: string;
78749
79598
  loadingColorWarning: string;
78750
79599
  borderWarning: string;
78751
79600
  borderHoverWarning: string;
@@ -78888,6 +79737,13 @@ export declare const UMention: import("vue").DefineComponent<import("vue").Extra
78888
79737
  borderFocus: string;
78889
79738
  boxShadowFocus: string;
78890
79739
  loadingColor: string;
79740
+ loadingColorSuccess: string;
79741
+ borderSuccess: string;
79742
+ borderHoverSuccess: string;
79743
+ colorFocusSuccess: string;
79744
+ borderFocusSuccess: string;
79745
+ boxShadowFocusSuccess: string;
79746
+ caretColorSuccess: string;
78891
79747
  loadingColorWarning: string;
78892
79748
  borderWarning: string;
78893
79749
  borderHoverWarning: string;
@@ -79203,6 +80059,13 @@ export declare const UMention: import("vue").DefineComponent<import("vue").Extra
79203
80059
  borderFocus: string;
79204
80060
  boxShadowFocus: string;
79205
80061
  loadingColor: string;
80062
+ loadingColorSuccess: string;
80063
+ borderSuccess: string;
80064
+ borderHoverSuccess: string;
80065
+ colorFocusSuccess: string;
80066
+ borderFocusSuccess: string;
80067
+ boxShadowFocusSuccess: string;
80068
+ caretColorSuccess: string;
79206
80069
  loadingColorWarning: string;
79207
80070
  borderWarning: string;
79208
80071
  borderHoverWarning: string;
@@ -79336,6 +80199,13 @@ export declare const UMention: import("vue").DefineComponent<import("vue").Extra
79336
80199
  borderFocus: string;
79337
80200
  boxShadowFocus: string;
79338
80201
  loadingColor: string;
80202
+ loadingColorSuccess: string;
80203
+ borderSuccess: string;
80204
+ borderHoverSuccess: string;
80205
+ colorFocusSuccess: string;
80206
+ borderFocusSuccess: string;
80207
+ boxShadowFocusSuccess: string;
80208
+ caretColorSuccess: string;
79339
80209
  loadingColorWarning: string;
79340
80210
  borderWarning: string;
79341
80211
  borderHoverWarning: string;
@@ -79469,6 +80339,13 @@ export declare const UMention: import("vue").DefineComponent<import("vue").Extra
79469
80339
  borderFocus: string;
79470
80340
  boxShadowFocus: string;
79471
80341
  loadingColor: string;
80342
+ loadingColorSuccess: string;
80343
+ borderSuccess: string;
80344
+ borderHoverSuccess: string;
80345
+ colorFocusSuccess: string;
80346
+ borderFocusSuccess: string;
80347
+ boxShadowFocusSuccess: string;
80348
+ caretColorSuccess: string;
79472
80349
  loadingColorWarning: string;
79473
80350
  borderWarning: string;
79474
80351
  borderHoverWarning: string;
@@ -81098,7 +81975,6 @@ export declare const UModal: import("vue").DefineComponent<import("vue").Extract
81098
81975
  onBeforeHide: import("vue").PropType<() => void>;
81099
81976
  onAfterHide: import("vue").PropType<() => void>;
81100
81977
  onHide: import("vue").PropType<(value: false) => void>;
81101
- presetDisabled: BooleanConstructor;
81102
81978
  size: {
81103
81979
  type: import("vue").PropType<"small" | "medium" | "large">;
81104
81980
  default: string;
@@ -81136,7 +82012,10 @@ export declare const UModal: import("vue").DefineComponent<import("vue").Extract
81136
82012
  type: BooleanConstructor;
81137
82013
  default: boolean;
81138
82014
  };
81139
- preset: import("vue").PropType<"confirm" | "dialog" | "card">;
82015
+ preset: {
82016
+ type: import("vue").PropType<"confirm" | "dialog" | "card">;
82017
+ default: string;
82018
+ };
81140
82019
  to: import("vue").PropType<string | HTMLElement>;
81141
82020
  displayDirective: {
81142
82021
  type: import("vue").PropType<"if" | "show">;
@@ -82158,7 +83037,6 @@ export declare const UModal: import("vue").DefineComponent<import("vue").Extract
82158
83037
  onBeforeHide: import("vue").PropType<() => void>;
82159
83038
  onAfterHide: import("vue").PropType<() => void>;
82160
83039
  onHide: import("vue").PropType<(value: false) => void>;
82161
- presetDisabled: BooleanConstructor;
82162
83040
  size: {
82163
83041
  type: import("vue").PropType<"small" | "medium" | "large">;
82164
83042
  default: string;
@@ -82196,7 +83074,10 @@ export declare const UModal: import("vue").DefineComponent<import("vue").Extract
82196
83074
  type: BooleanConstructor;
82197
83075
  default: boolean;
82198
83076
  };
82199
- preset: import("vue").PropType<"confirm" | "dialog" | "card">;
83077
+ preset: {
83078
+ type: import("vue").PropType<"confirm" | "dialog" | "card">;
83079
+ default: string;
83080
+ };
82200
83081
  to: import("vue").PropType<string | HTMLElement>;
82201
83082
  displayDirective: {
82202
83083
  type: import("vue").PropType<"if" | "show">;
@@ -83189,9 +84070,9 @@ export declare const UModal: import("vue").DefineComponent<import("vue").Extract
83189
84070
  autoFocus: boolean;
83190
84071
  closeOnEsc: boolean;
83191
84072
  blockScroll: boolean;
84073
+ preset: "card" | "dialog" | "confirm";
83192
84074
  internalDialog: boolean;
83193
84075
  internalAppear: boolean | undefined;
83194
- presetDisabled: boolean;
83195
84076
  unstableShowMask: boolean;
83196
84077
  transformOrigin: "mouse" | "center";
83197
84078
  }, import("vue").SlotsType<import("./modal/src/Modal").ModalSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -84416,6 +85297,13 @@ export declare const UPagination: import("vue").DefineComponent<import("vue").Ex
84416
85297
  borderFocus: string;
84417
85298
  boxShadowFocus: string;
84418
85299
  loadingColor: string;
85300
+ loadingColorSuccess: string;
85301
+ borderSuccess: string;
85302
+ borderHoverSuccess: string;
85303
+ colorFocusSuccess: string;
85304
+ borderFocusSuccess: string;
85305
+ boxShadowFocusSuccess: string;
85306
+ caretColorSuccess: string;
84419
85307
  loadingColorWarning: string;
84420
85308
  borderWarning: string;
84421
85309
  borderHoverWarning: string;
@@ -84830,6 +85718,13 @@ export declare const UPagination: import("vue").DefineComponent<import("vue").Ex
84830
85718
  borderFocus: string;
84831
85719
  boxShadowFocus: string;
84832
85720
  loadingColor: string;
85721
+ loadingColorSuccess: string;
85722
+ borderSuccess: string;
85723
+ borderHoverSuccess: string;
85724
+ colorFocusSuccess: string;
85725
+ borderFocusSuccess: string;
85726
+ boxShadowFocusSuccess: string;
85727
+ caretColorSuccess: string;
84833
85728
  loadingColorWarning: string;
84834
85729
  borderWarning: string;
84835
85730
  borderHoverWarning: string;
@@ -85244,6 +86139,13 @@ export declare const UPagination: import("vue").DefineComponent<import("vue").Ex
85244
86139
  borderFocus: string;
85245
86140
  boxShadowFocus: string;
85246
86141
  loadingColor: string;
86142
+ loadingColorSuccess: string;
86143
+ borderSuccess: string;
86144
+ borderHoverSuccess: string;
86145
+ colorFocusSuccess: string;
86146
+ borderFocusSuccess: string;
86147
+ boxShadowFocusSuccess: string;
86148
+ caretColorSuccess: string;
85247
86149
  loadingColorWarning: string;
85248
86150
  borderWarning: string;
85249
86151
  borderHoverWarning: string;
@@ -85680,6 +86582,13 @@ export declare const UPagination: import("vue").DefineComponent<import("vue").Ex
85680
86582
  borderFocus: string;
85681
86583
  boxShadowFocus: string;
85682
86584
  loadingColor: string;
86585
+ loadingColorSuccess: string;
86586
+ borderSuccess: string;
86587
+ borderHoverSuccess: string;
86588
+ colorFocusSuccess: string;
86589
+ borderFocusSuccess: string;
86590
+ boxShadowFocusSuccess: string;
86591
+ caretColorSuccess: string;
85683
86592
  loadingColorWarning: string;
85684
86593
  borderWarning: string;
85685
86594
  borderHoverWarning: string;
@@ -86496,6 +87405,13 @@ export declare const UPagination: import("vue").DefineComponent<import("vue").Ex
86496
87405
  borderFocus: string;
86497
87406
  boxShadowFocus: string;
86498
87407
  loadingColor: string;
87408
+ loadingColorSuccess: string;
87409
+ borderSuccess: string;
87410
+ borderHoverSuccess: string;
87411
+ colorFocusSuccess: string;
87412
+ borderFocusSuccess: string;
87413
+ boxShadowFocusSuccess: string;
87414
+ caretColorSuccess: string;
86499
87415
  loadingColorWarning: string;
86500
87416
  borderWarning: string;
86501
87417
  borderHoverWarning: string;
@@ -86910,6 +87826,13 @@ export declare const UPagination: import("vue").DefineComponent<import("vue").Ex
86910
87826
  borderFocus: string;
86911
87827
  boxShadowFocus: string;
86912
87828
  loadingColor: string;
87829
+ loadingColorSuccess: string;
87830
+ borderSuccess: string;
87831
+ borderHoverSuccess: string;
87832
+ colorFocusSuccess: string;
87833
+ borderFocusSuccess: string;
87834
+ boxShadowFocusSuccess: string;
87835
+ caretColorSuccess: string;
86913
87836
  loadingColorWarning: string;
86914
87837
  borderWarning: string;
86915
87838
  borderHoverWarning: string;
@@ -87324,6 +88247,13 @@ export declare const UPagination: import("vue").DefineComponent<import("vue").Ex
87324
88247
  borderFocus: string;
87325
88248
  boxShadowFocus: string;
87326
88249
  loadingColor: string;
88250
+ loadingColorSuccess: string;
88251
+ borderSuccess: string;
88252
+ borderHoverSuccess: string;
88253
+ colorFocusSuccess: string;
88254
+ borderFocusSuccess: string;
88255
+ boxShadowFocusSuccess: string;
88256
+ caretColorSuccess: string;
87327
88257
  loadingColorWarning: string;
87328
88258
  borderWarning: string;
87329
88259
  borderHoverWarning: string;
@@ -98584,6 +99514,13 @@ export declare const UTimePicker: import("vue").DefineComponent<import("vue").Ex
98584
99514
  borderFocus: string;
98585
99515
  boxShadowFocus: string;
98586
99516
  loadingColor: string;
99517
+ loadingColorSuccess: string;
99518
+ borderSuccess: string;
99519
+ borderHoverSuccess: string;
99520
+ colorFocusSuccess: string;
99521
+ borderFocusSuccess: string;
99522
+ boxShadowFocusSuccess: string;
99523
+ caretColorSuccess: string;
98587
99524
  loadingColorWarning: string;
98588
99525
  borderWarning: string;
98589
99526
  borderHoverWarning: string;
@@ -98898,6 +99835,13 @@ export declare const UTimePicker: import("vue").DefineComponent<import("vue").Ex
98898
99835
  borderFocus: string;
98899
99836
  boxShadowFocus: string;
98900
99837
  loadingColor: string;
99838
+ loadingColorSuccess: string;
99839
+ borderSuccess: string;
99840
+ borderHoverSuccess: string;
99841
+ colorFocusSuccess: string;
99842
+ borderFocusSuccess: string;
99843
+ boxShadowFocusSuccess: string;
99844
+ caretColorSuccess: string;
98901
99845
  loadingColorWarning: string;
98902
99846
  borderWarning: string;
98903
99847
  borderHoverWarning: string;
@@ -99212,6 +100156,13 @@ export declare const UTimePicker: import("vue").DefineComponent<import("vue").Ex
99212
100156
  borderFocus: string;
99213
100157
  boxShadowFocus: string;
99214
100158
  loadingColor: string;
100159
+ loadingColorSuccess: string;
100160
+ borderSuccess: string;
100161
+ borderHoverSuccess: string;
100162
+ colorFocusSuccess: string;
100163
+ borderFocusSuccess: string;
100164
+ boxShadowFocusSuccess: string;
100165
+ caretColorSuccess: string;
99215
100166
  loadingColorWarning: string;
99216
100167
  borderWarning: string;
99217
100168
  borderHoverWarning: string;
@@ -99719,6 +100670,13 @@ export declare const UTimePicker: import("vue").DefineComponent<import("vue").Ex
99719
100670
  borderFocus: string;
99720
100671
  boxShadowFocus: string;
99721
100672
  loadingColor: string;
100673
+ loadingColorSuccess: string;
100674
+ borderSuccess: string;
100675
+ borderHoverSuccess: string;
100676
+ colorFocusSuccess: string;
100677
+ borderFocusSuccess: string;
100678
+ boxShadowFocusSuccess: string;
100679
+ caretColorSuccess: string;
99722
100680
  loadingColorWarning: string;
99723
100681
  borderWarning: string;
99724
100682
  borderHoverWarning: string;
@@ -100153,6 +101111,13 @@ export declare const UTimePicker: import("vue").DefineComponent<import("vue").Ex
100153
101111
  borderFocus: string;
100154
101112
  boxShadowFocus: string;
100155
101113
  loadingColor: string;
101114
+ loadingColorSuccess: string;
101115
+ borderSuccess: string;
101116
+ borderHoverSuccess: string;
101117
+ colorFocusSuccess: string;
101118
+ borderFocusSuccess: string;
101119
+ boxShadowFocusSuccess: string;
101120
+ caretColorSuccess: string;
100156
101121
  loadingColorWarning: string;
100157
101122
  borderWarning: string;
100158
101123
  borderHoverWarning: string;
@@ -100467,6 +101432,13 @@ export declare const UTimePicker: import("vue").DefineComponent<import("vue").Ex
100467
101432
  borderFocus: string;
100468
101433
  boxShadowFocus: string;
100469
101434
  loadingColor: string;
101435
+ loadingColorSuccess: string;
101436
+ borderSuccess: string;
101437
+ borderHoverSuccess: string;
101438
+ colorFocusSuccess: string;
101439
+ borderFocusSuccess: string;
101440
+ boxShadowFocusSuccess: string;
101441
+ caretColorSuccess: string;
100470
101442
  loadingColorWarning: string;
100471
101443
  borderWarning: string;
100472
101444
  borderHoverWarning: string;
@@ -100781,6 +101753,13 @@ export declare const UTimePicker: import("vue").DefineComponent<import("vue").Ex
100781
101753
  borderFocus: string;
100782
101754
  boxShadowFocus: string;
100783
101755
  loadingColor: string;
101756
+ loadingColorSuccess: string;
101757
+ borderSuccess: string;
101758
+ borderHoverSuccess: string;
101759
+ colorFocusSuccess: string;
101760
+ borderFocusSuccess: string;
101761
+ boxShadowFocusSuccess: string;
101762
+ caretColorSuccess: string;
100784
101763
  loadingColorWarning: string;
100785
101764
  borderWarning: string;
100786
101765
  borderHoverWarning: string;
@@ -101437,6 +102416,10 @@ export declare const UToggleButton: import("vue").DefineComponent<import("vue").
101437
102416
  export type * from './tooltip';
101438
102417
  export { tooltipProps } from './tooltip';
101439
102418
  export declare const UTooltip: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
102419
+ variant: {
102420
+ type: import("vue").PropType<import("./tooltip").TooltipVariant>;
102421
+ default: string;
102422
+ };
101440
102423
  theme: import("vue").PropType<import("./_mixins").Theme<"Tooltip", {
101441
102424
  padding: string;
101442
102425
  textPadding: string;
@@ -101707,6 +102690,10 @@ export declare const UTooltip: import("vue").DefineComponent<import("vue").Extra
101707
102690
  syncPosition: () => void;
101708
102691
  setShow: (value: boolean) => void;
101709
102692
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
102693
+ variant: {
102694
+ type: import("vue").PropType<import("./tooltip").TooltipVariant>;
102695
+ default: string;
102696
+ };
101710
102697
  theme: import("vue").PropType<import("./_mixins").Theme<"Tooltip", {
101711
102698
  padding: string;
101712
102699
  textPadding: string;
@@ -101918,6 +102905,7 @@ export declare const UTooltip: import("vue").DefineComponent<import("vue").Extra
101918
102905
  internalInheritedEventHandlers: import("./popover/src/Popover").TriggerEventHandlers[];
101919
102906
  internalTrapFocus: boolean;
101920
102907
  internalExtraClass: string[];
102908
+ variant: import("./tooltip").TooltipVariant;
101921
102909
  }, import("vue").SlotsType<import("./tooltip").TooltipSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
101922
102910
  export type * from './transfer';
101923
102911
  export { transferProps } from './transfer';
@@ -102105,6 +103093,13 @@ export declare const UTransfer: import("vue").DefineComponent<import("vue").Extr
102105
103093
  borderFocus: string;
102106
103094
  boxShadowFocus: string;
102107
103095
  loadingColor: string;
103096
+ loadingColorSuccess: string;
103097
+ borderSuccess: string;
103098
+ borderHoverSuccess: string;
103099
+ colorFocusSuccess: string;
103100
+ borderFocusSuccess: string;
103101
+ boxShadowFocusSuccess: string;
103102
+ caretColorSuccess: string;
102108
103103
  loadingColorWarning: string;
102109
103104
  borderWarning: string;
102110
103105
  borderHoverWarning: string;
@@ -102509,6 +103504,13 @@ export declare const UTransfer: import("vue").DefineComponent<import("vue").Extr
102509
103504
  borderFocus: string;
102510
103505
  boxShadowFocus: string;
102511
103506
  loadingColor: string;
103507
+ loadingColorSuccess: string;
103508
+ borderSuccess: string;
103509
+ borderHoverSuccess: string;
103510
+ colorFocusSuccess: string;
103511
+ borderFocusSuccess: string;
103512
+ boxShadowFocusSuccess: string;
103513
+ caretColorSuccess: string;
102512
103514
  loadingColorWarning: string;
102513
103515
  borderWarning: string;
102514
103516
  borderHoverWarning: string;
@@ -102913,6 +103915,13 @@ export declare const UTransfer: import("vue").DefineComponent<import("vue").Extr
102913
103915
  borderFocus: string;
102914
103916
  boxShadowFocus: string;
102915
103917
  loadingColor: string;
103918
+ loadingColorSuccess: string;
103919
+ borderSuccess: string;
103920
+ borderHoverSuccess: string;
103921
+ colorFocusSuccess: string;
103922
+ borderFocusSuccess: string;
103923
+ boxShadowFocusSuccess: string;
103924
+ caretColorSuccess: string;
102916
103925
  loadingColorWarning: string;
102917
103926
  borderWarning: string;
102918
103927
  borderHoverWarning: string;
@@ -103325,6 +104334,13 @@ export declare const UTransfer: import("vue").DefineComponent<import("vue").Extr
103325
104334
  borderFocus: string;
103326
104335
  boxShadowFocus: string;
103327
104336
  loadingColor: string;
104337
+ loadingColorSuccess: string;
104338
+ borderSuccess: string;
104339
+ borderHoverSuccess: string;
104340
+ colorFocusSuccess: string;
104341
+ borderFocusSuccess: string;
104342
+ boxShadowFocusSuccess: string;
104343
+ caretColorSuccess: string;
103328
104344
  loadingColorWarning: string;
103329
104345
  borderWarning: string;
103330
104346
  borderHoverWarning: string;
@@ -103840,6 +104856,13 @@ export declare const UTransfer: import("vue").DefineComponent<import("vue").Extr
103840
104856
  borderFocus: string;
103841
104857
  boxShadowFocus: string;
103842
104858
  loadingColor: string;
104859
+ loadingColorSuccess: string;
104860
+ borderSuccess: string;
104861
+ borderHoverSuccess: string;
104862
+ colorFocusSuccess: string;
104863
+ borderFocusSuccess: string;
104864
+ boxShadowFocusSuccess: string;
104865
+ caretColorSuccess: string;
103843
104866
  loadingColorWarning: string;
103844
104867
  borderWarning: string;
103845
104868
  borderHoverWarning: string;
@@ -104244,6 +105267,13 @@ export declare const UTransfer: import("vue").DefineComponent<import("vue").Extr
104244
105267
  borderFocus: string;
104245
105268
  boxShadowFocus: string;
104246
105269
  loadingColor: string;
105270
+ loadingColorSuccess: string;
105271
+ borderSuccess: string;
105272
+ borderHoverSuccess: string;
105273
+ colorFocusSuccess: string;
105274
+ borderFocusSuccess: string;
105275
+ boxShadowFocusSuccess: string;
105276
+ caretColorSuccess: string;
104247
105277
  loadingColorWarning: string;
104248
105278
  borderWarning: string;
104249
105279
  borderHoverWarning: string;
@@ -104648,6 +105678,13 @@ export declare const UTransfer: import("vue").DefineComponent<import("vue").Extr
104648
105678
  borderFocus: string;
104649
105679
  boxShadowFocus: string;
104650
105680
  loadingColor: string;
105681
+ loadingColorSuccess: string;
105682
+ borderSuccess: string;
105683
+ borderHoverSuccess: string;
105684
+ colorFocusSuccess: string;
105685
+ borderFocusSuccess: string;
105686
+ boxShadowFocusSuccess: string;
105687
+ caretColorSuccess: string;
104651
105688
  loadingColorWarning: string;
104652
105689
  borderWarning: string;
104653
105690
  borderHoverWarning: string;