@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
@@ -365,6 +365,13 @@ export declare const paginationProps: {
365
365
  borderFocus: string;
366
366
  boxShadowFocus: string;
367
367
  loadingColor: string;
368
+ loadingColorSuccess: string;
369
+ borderSuccess: string;
370
+ borderHoverSuccess: string;
371
+ colorFocusSuccess: string;
372
+ borderFocusSuccess: string;
373
+ boxShadowFocusSuccess: string;
374
+ caretColorSuccess: string;
368
375
  loadingColorWarning: string;
369
376
  borderWarning: string;
370
377
  borderHoverWarning: string;
@@ -779,6 +786,13 @@ export declare const paginationProps: {
779
786
  borderFocus: string;
780
787
  boxShadowFocus: string;
781
788
  loadingColor: string;
789
+ loadingColorSuccess: string;
790
+ borderSuccess: string;
791
+ borderHoverSuccess: string;
792
+ colorFocusSuccess: string;
793
+ borderFocusSuccess: string;
794
+ boxShadowFocusSuccess: string;
795
+ caretColorSuccess: string;
782
796
  loadingColorWarning: string;
783
797
  borderWarning: string;
784
798
  borderHoverWarning: string;
@@ -1193,6 +1207,13 @@ export declare const paginationProps: {
1193
1207
  borderFocus: string;
1194
1208
  boxShadowFocus: string;
1195
1209
  loadingColor: string;
1210
+ loadingColorSuccess: string;
1211
+ borderSuccess: string;
1212
+ borderHoverSuccess: string;
1213
+ colorFocusSuccess: string;
1214
+ borderFocusSuccess: string;
1215
+ boxShadowFocusSuccess: string;
1216
+ caretColorSuccess: string;
1196
1217
  loadingColorWarning: string;
1197
1218
  borderWarning: string;
1198
1219
  borderHoverWarning: string;
@@ -1672,6 +1693,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1672
1693
  borderFocus: string;
1673
1694
  boxShadowFocus: string;
1674
1695
  loadingColor: string;
1696
+ loadingColorSuccess: string;
1697
+ borderSuccess: string;
1698
+ borderHoverSuccess: string;
1699
+ colorFocusSuccess: string;
1700
+ borderFocusSuccess: string;
1701
+ boxShadowFocusSuccess: string;
1702
+ caretColorSuccess: string;
1675
1703
  loadingColorWarning: string;
1676
1704
  borderWarning: string;
1677
1705
  borderHoverWarning: string;
@@ -2086,6 +2114,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2086
2114
  borderFocus: string;
2087
2115
  boxShadowFocus: string;
2088
2116
  loadingColor: string;
2117
+ loadingColorSuccess: string;
2118
+ borderSuccess: string;
2119
+ borderHoverSuccess: string;
2120
+ colorFocusSuccess: string;
2121
+ borderFocusSuccess: string;
2122
+ boxShadowFocusSuccess: string;
2123
+ caretColorSuccess: string;
2089
2124
  loadingColorWarning: string;
2090
2125
  borderWarning: string;
2091
2126
  borderHoverWarning: string;
@@ -2500,6 +2535,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2500
2535
  borderFocus: string;
2501
2536
  boxShadowFocus: string;
2502
2537
  loadingColor: string;
2538
+ loadingColorSuccess: string;
2539
+ borderSuccess: string;
2540
+ borderHoverSuccess: string;
2541
+ colorFocusSuccess: string;
2542
+ borderFocusSuccess: string;
2543
+ boxShadowFocusSuccess: string;
2544
+ caretColorSuccess: string;
2503
2545
  loadingColorWarning: string;
2504
2546
  borderWarning: string;
2505
2547
  borderHoverWarning: string;
@@ -2936,6 +2978,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2936
2978
  borderFocus: string;
2937
2979
  boxShadowFocus: string;
2938
2980
  loadingColor: string;
2981
+ loadingColorSuccess: string;
2982
+ borderSuccess: string;
2983
+ borderHoverSuccess: string;
2984
+ colorFocusSuccess: string;
2985
+ borderFocusSuccess: string;
2986
+ boxShadowFocusSuccess: string;
2987
+ caretColorSuccess: string;
2939
2988
  loadingColorWarning: string;
2940
2989
  borderWarning: string;
2941
2990
  borderHoverWarning: string;
@@ -3754,6 +3803,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
3754
3803
  borderFocus: string;
3755
3804
  boxShadowFocus: string;
3756
3805
  loadingColor: string;
3806
+ loadingColorSuccess: string;
3807
+ borderSuccess: string;
3808
+ borderHoverSuccess: string;
3809
+ colorFocusSuccess: string;
3810
+ borderFocusSuccess: string;
3811
+ boxShadowFocusSuccess: string;
3812
+ caretColorSuccess: string;
3757
3813
  loadingColorWarning: string;
3758
3814
  borderWarning: string;
3759
3815
  borderHoverWarning: string;
@@ -4168,6 +4224,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
4168
4224
  borderFocus: string;
4169
4225
  boxShadowFocus: string;
4170
4226
  loadingColor: string;
4227
+ loadingColorSuccess: string;
4228
+ borderSuccess: string;
4229
+ borderHoverSuccess: string;
4230
+ colorFocusSuccess: string;
4231
+ borderFocusSuccess: string;
4232
+ boxShadowFocusSuccess: string;
4233
+ caretColorSuccess: string;
4171
4234
  loadingColorWarning: string;
4172
4235
  borderWarning: string;
4173
4236
  borderHoverWarning: string;
@@ -4582,6 +4645,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
4582
4645
  borderFocus: string;
4583
4646
  boxShadowFocus: string;
4584
4647
  loadingColor: string;
4648
+ loadingColorSuccess: string;
4649
+ borderSuccess: string;
4650
+ borderHoverSuccess: string;
4651
+ colorFocusSuccess: string;
4652
+ borderFocusSuccess: string;
4653
+ boxShadowFocusSuccess: string;
4654
+ caretColorSuccess: string;
4585
4655
  loadingColorWarning: string;
4586
4656
  borderWarning: string;
4587
4657
  borderHoverWarning: string;
@@ -380,6 +380,13 @@ declare const paginationLight: import("../../_mixins").Theme<"Pagination", {
380
380
  borderFocus: string;
381
381
  boxShadowFocus: string;
382
382
  loadingColor: string;
383
+ loadingColorSuccess: string;
384
+ borderSuccess: string;
385
+ borderHoverSuccess: string;
386
+ colorFocusSuccess: string;
387
+ borderFocusSuccess: string;
388
+ boxShadowFocusSuccess: string;
389
+ caretColorSuccess: string;
383
390
  loadingColorWarning: string;
384
391
  borderWarning: string;
385
392
  borderHoverWarning: string;
@@ -370,6 +370,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
370
370
  borderFocus: string;
371
371
  boxShadowFocus: string;
372
372
  loadingColor: string;
373
+ loadingColorSuccess: string;
374
+ borderSuccess: string;
375
+ borderHoverSuccess: string;
376
+ colorFocusSuccess: string;
377
+ borderFocusSuccess: string;
378
+ boxShadowFocusSuccess: string;
379
+ caretColorSuccess: string;
373
380
  loadingColorWarning: string;
374
381
  borderWarning: string;
375
382
  borderHoverWarning: string;
@@ -704,6 +711,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
704
711
  borderFocus: string;
705
712
  boxShadowFocus: string;
706
713
  loadingColor: string;
714
+ loadingColorSuccess: string;
715
+ borderSuccess: string;
716
+ borderHoverSuccess: string;
717
+ colorFocusSuccess: string;
718
+ borderFocusSuccess: string;
719
+ boxShadowFocusSuccess: string;
720
+ caretColorSuccess: string;
707
721
  loadingColorWarning: string;
708
722
  borderWarning: string;
709
723
  borderHoverWarning: string;
@@ -368,6 +368,13 @@ export declare const timePickerProps: {
368
368
  borderFocus: string;
369
369
  boxShadowFocus: string;
370
370
  loadingColor: string;
371
+ loadingColorSuccess: string;
372
+ borderSuccess: string;
373
+ borderHoverSuccess: string;
374
+ colorFocusSuccess: string;
375
+ borderFocusSuccess: string;
376
+ boxShadowFocusSuccess: string;
377
+ caretColorSuccess: string;
371
378
  loadingColorWarning: string;
372
379
  borderWarning: string;
373
380
  borderHoverWarning: string;
@@ -682,6 +689,13 @@ export declare const timePickerProps: {
682
689
  borderFocus: string;
683
690
  boxShadowFocus: string;
684
691
  loadingColor: string;
692
+ loadingColorSuccess: string;
693
+ borderSuccess: string;
694
+ borderHoverSuccess: string;
695
+ colorFocusSuccess: string;
696
+ borderFocusSuccess: string;
697
+ boxShadowFocusSuccess: string;
698
+ caretColorSuccess: string;
685
699
  loadingColorWarning: string;
686
700
  borderWarning: string;
687
701
  borderHoverWarning: string;
@@ -996,6 +1010,13 @@ export declare const timePickerProps: {
996
1010
  borderFocus: string;
997
1011
  boxShadowFocus: string;
998
1012
  loadingColor: string;
1013
+ loadingColorSuccess: string;
1014
+ borderSuccess: string;
1015
+ borderHoverSuccess: string;
1016
+ colorFocusSuccess: string;
1017
+ borderFocusSuccess: string;
1018
+ boxShadowFocusSuccess: string;
1019
+ caretColorSuccess: string;
999
1020
  loadingColorWarning: string;
1000
1021
  borderWarning: string;
1001
1022
  borderHoverWarning: string;
@@ -1391,6 +1412,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1391
1412
  borderFocus: string;
1392
1413
  boxShadowFocus: string;
1393
1414
  loadingColor: string;
1415
+ loadingColorSuccess: string;
1416
+ borderSuccess: string;
1417
+ borderHoverSuccess: string;
1418
+ colorFocusSuccess: string;
1419
+ borderFocusSuccess: string;
1420
+ boxShadowFocusSuccess: string;
1421
+ caretColorSuccess: string;
1394
1422
  loadingColorWarning: string;
1395
1423
  borderWarning: string;
1396
1424
  borderHoverWarning: string;
@@ -1705,6 +1733,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1705
1733
  borderFocus: string;
1706
1734
  boxShadowFocus: string;
1707
1735
  loadingColor: string;
1736
+ loadingColorSuccess: string;
1737
+ borderSuccess: string;
1738
+ borderHoverSuccess: string;
1739
+ colorFocusSuccess: string;
1740
+ borderFocusSuccess: string;
1741
+ boxShadowFocusSuccess: string;
1742
+ caretColorSuccess: string;
1708
1743
  loadingColorWarning: string;
1709
1744
  borderWarning: string;
1710
1745
  borderHoverWarning: string;
@@ -2019,6 +2054,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2019
2054
  borderFocus: string;
2020
2055
  boxShadowFocus: string;
2021
2056
  loadingColor: string;
2057
+ loadingColorSuccess: string;
2058
+ borderSuccess: string;
2059
+ borderHoverSuccess: string;
2060
+ colorFocusSuccess: string;
2061
+ borderFocusSuccess: string;
2062
+ boxShadowFocusSuccess: string;
2063
+ caretColorSuccess: string;
2022
2064
  loadingColorWarning: string;
2023
2065
  borderWarning: string;
2024
2066
  borderHoverWarning: string;
@@ -2526,6 +2568,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2526
2568
  borderFocus: string;
2527
2569
  boxShadowFocus: string;
2528
2570
  loadingColor: string;
2571
+ loadingColorSuccess: string;
2572
+ borderSuccess: string;
2573
+ borderHoverSuccess: string;
2574
+ colorFocusSuccess: string;
2575
+ borderFocusSuccess: string;
2576
+ boxShadowFocusSuccess: string;
2577
+ caretColorSuccess: string;
2529
2578
  loadingColorWarning: string;
2530
2579
  borderWarning: string;
2531
2580
  borderHoverWarning: string;
@@ -2960,6 +3009,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2960
3009
  borderFocus: string;
2961
3010
  boxShadowFocus: string;
2962
3011
  loadingColor: string;
3012
+ loadingColorSuccess: string;
3013
+ borderSuccess: string;
3014
+ borderHoverSuccess: string;
3015
+ colorFocusSuccess: string;
3016
+ borderFocusSuccess: string;
3017
+ boxShadowFocusSuccess: string;
3018
+ caretColorSuccess: string;
2963
3019
  loadingColorWarning: string;
2964
3020
  borderWarning: string;
2965
3021
  borderHoverWarning: string;
@@ -3274,6 +3330,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
3274
3330
  borderFocus: string;
3275
3331
  boxShadowFocus: string;
3276
3332
  loadingColor: string;
3333
+ loadingColorSuccess: string;
3334
+ borderSuccess: string;
3335
+ borderHoverSuccess: string;
3336
+ colorFocusSuccess: string;
3337
+ borderFocusSuccess: string;
3338
+ boxShadowFocusSuccess: string;
3339
+ caretColorSuccess: string;
3277
3340
  loadingColorWarning: string;
3278
3341
  borderWarning: string;
3279
3342
  borderHoverWarning: string;
@@ -3588,6 +3651,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
3588
3651
  borderFocus: string;
3589
3652
  boxShadowFocus: string;
3590
3653
  loadingColor: string;
3654
+ loadingColorSuccess: string;
3655
+ borderSuccess: string;
3656
+ borderHoverSuccess: string;
3657
+ colorFocusSuccess: string;
3658
+ borderFocusSuccess: string;
3659
+ boxShadowFocusSuccess: string;
3660
+ caretColorSuccess: string;
3591
3661
  loadingColorWarning: string;
3592
3662
  borderWarning: string;
3593
3663
  borderHoverWarning: string;
@@ -307,6 +307,13 @@ declare const timePickerLight: import("../../_mixins").Theme<"TimePicker", {
307
307
  borderFocus: string;
308
308
  boxShadowFocus: string;
309
309
  loadingColor: string;
310
+ loadingColorSuccess: string;
311
+ borderSuccess: string;
312
+ borderHoverSuccess: string;
313
+ colorFocusSuccess: string;
314
+ borderFocusSuccess: string;
315
+ boxShadowFocusSuccess: string;
316
+ caretColorSuccess: string;
310
317
  loadingColorWarning: string;
311
318
  borderWarning: string;
312
319
  borderHoverWarning: string;
@@ -1,2 +1,2 @@
1
1
  export { tooltipProps, default as UTooltip } from './src/Tooltip';
2
- export type { TooltipInst, TooltipProps, TooltipSlots } from './src/Tooltip';
2
+ export type { TooltipInst, TooltipProps, TooltipSlots, TooltipVariant } from './src/Tooltip';