@uzum-tech/ui 1.13.2 → 1.14.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (188) hide show
  1. package/dist/index.js +1848 -1664
  2. package/dist/index.prod.js +3 -3
  3. package/es/_mixins/use-css-vars-class.js +5 -3
  4. package/es/_mixins/use-rtl.js +5 -2
  5. package/es/_mixins/use-style.js +4 -2
  6. package/es/_mixins/use-theme.js +4 -2
  7. package/es/auto-complete/src/AutoComplete.d.ts +70 -0
  8. package/es/auto-complete/styles/light.d.ts +7 -0
  9. package/es/chat/src/Chat.d.ts +70 -0
  10. package/es/chat/src/ChatListItems.d.ts +77 -0
  11. package/es/chat/src/ChatMessages.d.ts +77 -0
  12. package/es/chat/src/ChatParts/MainArea.js +47 -54
  13. package/es/chat/src/ChatParts/Sidebar.d.ts +7 -0
  14. package/es/chat/src/styles/index.cssr.js +12 -7
  15. package/es/chat/styles/dark.d.ts +7 -0
  16. package/es/chat/styles/light.d.ts +7 -0
  17. package/es/color-picker/src/ColorInputUnit.d.ts +7 -0
  18. package/es/color-picker/src/ColorPicker.d.ts +63 -0
  19. package/es/color-picker/styles/light.d.ts +7 -0
  20. package/es/config-provider/src/ConfigProvider.d.ts +3 -0
  21. package/es/config-provider/src/ConfigProvider.js +4 -1
  22. package/es/config-provider/src/internal-interface.d.ts +1 -0
  23. package/es/data-table/src/DataTable.d.ts +58 -0
  24. package/es/data-table/src/DataTable.js +71 -4
  25. package/es/data-table/src/HeaderButton/FilterButton.d.ts +14 -0
  26. package/es/data-table/src/HeaderButton/FilterMenu.d.ts +14 -0
  27. package/es/data-table/src/TableParts/Body.d.ts +14 -0
  28. package/es/data-table/src/TableParts/Body.js +6 -2
  29. package/es/data-table/src/TableParts/Header.d.ts +14 -0
  30. package/es/data-table/src/TableParts/Header.js +17 -5
  31. package/es/data-table/src/interface.d.ts +34 -0
  32. package/es/data-table/src/interface.js +1 -1
  33. package/es/data-table/src/use-resizable.d.ts +1 -0
  34. package/es/data-table/src/use-resizable.js +2 -1
  35. package/es/data-table/src/use-sorter.d.ts +1 -0
  36. package/es/data-table/src/use-sorter.js +2 -1
  37. package/es/data-table/src/use-table-data.d.ts +3 -2
  38. package/es/data-table/src/use-table-data.js +5 -1
  39. package/es/data-table/src/use-table-storage.d.ts +4 -0
  40. package/es/data-table/src/use-table-storage.js +43 -0
  41. package/es/data-table/src/utils.js +39 -5
  42. package/es/data-table/styles/light.d.ts +7 -0
  43. package/es/date-picker/src/DatePicker.d.ts +147 -0
  44. package/es/date-picker/src/panel/date.d.ts +21 -0
  45. package/es/date-picker/src/panel/daterange.d.ts +21 -0
  46. package/es/date-picker/src/panel/datetime.d.ts +21 -0
  47. package/es/date-picker/src/panel/datetimerange.d.ts +21 -0
  48. package/es/date-picker/src/panel/panelMonth.d.ts +42 -0
  49. package/es/date-picker/src/panel/panelMonthContent.d.ts +21 -0
  50. package/es/date-picker/src/panel/panelYear.d.ts +42 -0
  51. package/es/date-picker/src/panel/panelYearContent.d.ts +21 -0
  52. package/es/date-picker/src/panel/use-calendar.d.ts +21 -0
  53. package/es/date-picker/src/panel/use-dual-calendar.d.ts +21 -0
  54. package/es/date-picker/src/panel/use-panel-common.d.ts +21 -0
  55. package/es/date-picker/styles/light.d.ts +14 -0
  56. package/es/date-picker-v2/src/DatePickerV2.d.ts +70 -0
  57. package/es/date-picker-v2/styles/dark.d.ts +7 -0
  58. package/es/date-picker-v2/styles/light.d.ts +7 -0
  59. package/es/dynamic-input/src/DynamicInput.d.ts +70 -0
  60. package/es/dynamic-input/src/InputPreset.d.ts +7 -0
  61. package/es/dynamic-input/src/PairPreset.d.ts +7 -0
  62. package/es/dynamic-input/styles/light.d.ts +7 -0
  63. package/es/dynamic-tags/src/DynamicTags.d.ts +70 -0
  64. package/es/dynamic-tags/styles/light.d.ts +7 -0
  65. package/es/input/src/Input.d.ts +77 -0
  66. package/es/input/src/Input.js +9 -1
  67. package/es/input/src/InputGroupLabel.d.ts +63 -0
  68. package/es/input/src/styles/input.cssr.js +1 -1
  69. package/es/input/styles/light.d.ts +7 -0
  70. package/es/input/styles/light.js +11 -1
  71. package/es/input-number/src/InputNumber.d.ts +70 -0
  72. package/es/input-number/styles/light.d.ts +7 -0
  73. package/es/input-otp/src/InputOtp.d.ts +70 -0
  74. package/es/input-otp/styles/light.d.ts +7 -0
  75. package/es/legacy-transfer/src/Transfer.d.ts +70 -0
  76. package/es/legacy-transfer/src/TransferFilter.d.ts +7 -0
  77. package/es/legacy-transfer/src/TransferList.d.ts +7 -0
  78. package/es/legacy-transfer/src/TransferListItem.d.ts +7 -0
  79. package/es/legacy-transfer/styles/light.d.ts +7 -0
  80. package/es/locales/date/enUS.js +1 -1
  81. package/es/mention/src/Mention.d.ts +70 -0
  82. package/es/mention/styles/light.d.ts +7 -0
  83. package/es/pagination/src/Pagination.d.ts +70 -0
  84. package/es/pagination/styles/light.d.ts +7 -0
  85. package/es/time-picker/src/Panel.d.ts +7 -0
  86. package/es/time-picker/src/TimePicker.d.ts +70 -0
  87. package/es/time-picker/styles/light.d.ts +7 -0
  88. package/es/transfer/src/Transfer.d.ts +70 -0
  89. package/es/transfer/src/TransferFilter.d.ts +7 -0
  90. package/es/transfer/src/TransferList.d.ts +7 -0
  91. package/es/transfer/src/TransferListItem.d.ts +7 -0
  92. package/es/transfer/styles/light.d.ts +7 -0
  93. package/es/version.d.ts +1 -1
  94. package/es/version.js +1 -1
  95. package/lib/_mixins/use-css-vars-class.js +5 -3
  96. package/lib/_mixins/use-rtl.js +4 -1
  97. package/lib/_mixins/use-style.js +4 -2
  98. package/lib/_mixins/use-theme.js +4 -2
  99. package/lib/auto-complete/src/AutoComplete.d.ts +70 -0
  100. package/lib/auto-complete/styles/light.d.ts +7 -0
  101. package/lib/chat/src/Chat.d.ts +70 -0
  102. package/lib/chat/src/ChatListItems.d.ts +77 -0
  103. package/lib/chat/src/ChatMessages.d.ts +77 -0
  104. package/lib/chat/src/ChatParts/MainArea.js +47 -54
  105. package/lib/chat/src/ChatParts/Sidebar.d.ts +7 -0
  106. package/lib/chat/src/styles/index.cssr.js +12 -7
  107. package/lib/chat/styles/dark.d.ts +7 -0
  108. package/lib/chat/styles/light.d.ts +7 -0
  109. package/lib/color-picker/src/ColorInputUnit.d.ts +7 -0
  110. package/lib/color-picker/src/ColorPicker.d.ts +63 -0
  111. package/lib/color-picker/styles/light.d.ts +7 -0
  112. package/lib/config-provider/src/ConfigProvider.d.ts +3 -0
  113. package/lib/config-provider/src/ConfigProvider.js +4 -1
  114. package/lib/config-provider/src/internal-interface.d.ts +1 -0
  115. package/lib/data-table/src/DataTable.d.ts +58 -0
  116. package/lib/data-table/src/DataTable.js +70 -3
  117. package/lib/data-table/src/HeaderButton/FilterButton.d.ts +14 -0
  118. package/lib/data-table/src/HeaderButton/FilterMenu.d.ts +14 -0
  119. package/lib/data-table/src/TableParts/Body.d.ts +14 -0
  120. package/lib/data-table/src/TableParts/Body.js +6 -2
  121. package/lib/data-table/src/TableParts/Header.d.ts +14 -0
  122. package/lib/data-table/src/TableParts/Header.js +16 -4
  123. package/lib/data-table/src/interface.d.ts +34 -0
  124. package/lib/data-table/src/interface.js +1 -1
  125. package/lib/data-table/src/use-resizable.d.ts +1 -0
  126. package/lib/data-table/src/use-resizable.js +2 -1
  127. package/lib/data-table/src/use-sorter.d.ts +1 -0
  128. package/lib/data-table/src/use-sorter.js +2 -1
  129. package/lib/data-table/src/use-table-data.d.ts +3 -2
  130. package/lib/data-table/src/use-table-data.js +5 -1
  131. package/lib/data-table/src/use-table-storage.d.ts +4 -0
  132. package/lib/data-table/src/use-table-storage.js +48 -0
  133. package/lib/data-table/src/utils.js +39 -5
  134. package/lib/data-table/styles/light.d.ts +7 -0
  135. package/lib/date-picker/src/DatePicker.d.ts +147 -0
  136. package/lib/date-picker/src/panel/date.d.ts +21 -0
  137. package/lib/date-picker/src/panel/daterange.d.ts +21 -0
  138. package/lib/date-picker/src/panel/datetime.d.ts +21 -0
  139. package/lib/date-picker/src/panel/datetimerange.d.ts +21 -0
  140. package/lib/date-picker/src/panel/panelMonth.d.ts +42 -0
  141. package/lib/date-picker/src/panel/panelMonthContent.d.ts +21 -0
  142. package/lib/date-picker/src/panel/panelYear.d.ts +42 -0
  143. package/lib/date-picker/src/panel/panelYearContent.d.ts +21 -0
  144. package/lib/date-picker/src/panel/use-calendar.d.ts +21 -0
  145. package/lib/date-picker/src/panel/use-dual-calendar.d.ts +21 -0
  146. package/lib/date-picker/src/panel/use-panel-common.d.ts +21 -0
  147. package/lib/date-picker/styles/light.d.ts +14 -0
  148. package/lib/date-picker-v2/src/DatePickerV2.d.ts +70 -0
  149. package/lib/date-picker-v2/styles/dark.d.ts +7 -0
  150. package/lib/date-picker-v2/styles/light.d.ts +7 -0
  151. package/lib/dynamic-input/src/DynamicInput.d.ts +70 -0
  152. package/lib/dynamic-input/src/InputPreset.d.ts +7 -0
  153. package/lib/dynamic-input/src/PairPreset.d.ts +7 -0
  154. package/lib/dynamic-input/styles/light.d.ts +7 -0
  155. package/lib/dynamic-tags/src/DynamicTags.d.ts +70 -0
  156. package/lib/dynamic-tags/styles/light.d.ts +7 -0
  157. package/lib/input/src/Input.d.ts +77 -0
  158. package/lib/input/src/Input.js +9 -1
  159. package/lib/input/src/InputGroupLabel.d.ts +63 -0
  160. package/lib/input/src/styles/input.cssr.js +1 -1
  161. package/lib/input/styles/light.d.ts +7 -0
  162. package/lib/input/styles/light.js +11 -1
  163. package/lib/input-number/src/InputNumber.d.ts +70 -0
  164. package/lib/input-number/styles/light.d.ts +7 -0
  165. package/lib/input-otp/src/InputOtp.d.ts +70 -0
  166. package/lib/input-otp/styles/light.d.ts +7 -0
  167. package/lib/legacy-transfer/src/Transfer.d.ts +70 -0
  168. package/lib/legacy-transfer/src/TransferFilter.d.ts +7 -0
  169. package/lib/legacy-transfer/src/TransferList.d.ts +7 -0
  170. package/lib/legacy-transfer/src/TransferListItem.d.ts +7 -0
  171. package/lib/legacy-transfer/styles/light.d.ts +7 -0
  172. package/lib/locales/date/enUS.js +2 -2
  173. package/lib/mention/src/Mention.d.ts +70 -0
  174. package/lib/mention/styles/light.d.ts +7 -0
  175. package/lib/pagination/src/Pagination.d.ts +70 -0
  176. package/lib/pagination/styles/light.d.ts +7 -0
  177. package/lib/time-picker/src/Panel.d.ts +7 -0
  178. package/lib/time-picker/src/TimePicker.d.ts +70 -0
  179. package/lib/time-picker/styles/light.d.ts +7 -0
  180. package/lib/transfer/src/Transfer.d.ts +70 -0
  181. package/lib/transfer/src/TransferFilter.d.ts +7 -0
  182. package/lib/transfer/src/TransferList.d.ts +7 -0
  183. package/lib/transfer/src/TransferListItem.d.ts +7 -0
  184. package/lib/transfer/styles/light.d.ts +7 -0
  185. package/lib/version.d.ts +1 -1
  186. package/lib/version.js +1 -1
  187. package/package.json +1 -1
  188. package/web-types.json +18 -1
@@ -367,6 +367,13 @@ export declare const timePickerProps: {
367
367
  borderFocus: string;
368
368
  boxShadowFocus: string;
369
369
  loadingColor: string;
370
+ loadingColorSuccess: string;
371
+ borderSuccess: string;
372
+ borderHoverSuccess: string;
373
+ colorFocusSuccess: string;
374
+ borderFocusSuccess: string;
375
+ boxShadowFocusSuccess: string;
376
+ caretColorSuccess: string;
370
377
  loadingColorWarning: string;
371
378
  borderWarning: string;
372
379
  borderHoverWarning: string;
@@ -681,6 +688,13 @@ export declare const timePickerProps: {
681
688
  borderFocus: string;
682
689
  boxShadowFocus: string;
683
690
  loadingColor: string;
691
+ loadingColorSuccess: string;
692
+ borderSuccess: string;
693
+ borderHoverSuccess: string;
694
+ colorFocusSuccess: string;
695
+ borderFocusSuccess: string;
696
+ boxShadowFocusSuccess: string;
697
+ caretColorSuccess: string;
684
698
  loadingColorWarning: string;
685
699
  borderWarning: string;
686
700
  borderHoverWarning: string;
@@ -995,6 +1009,13 @@ export declare const timePickerProps: {
995
1009
  borderFocus: string;
996
1010
  boxShadowFocus: string;
997
1011
  loadingColor: string;
1012
+ loadingColorSuccess: string;
1013
+ borderSuccess: string;
1014
+ borderHoverSuccess: string;
1015
+ colorFocusSuccess: string;
1016
+ borderFocusSuccess: string;
1017
+ boxShadowFocusSuccess: string;
1018
+ caretColorSuccess: string;
998
1019
  loadingColorWarning: string;
999
1020
  borderWarning: string;
1000
1021
  borderHoverWarning: string;
@@ -1386,6 +1407,13 @@ declare const _default: import("vue").DefineComponent<{
1386
1407
  borderFocus: string;
1387
1408
  boxShadowFocus: string;
1388
1409
  loadingColor: string;
1410
+ loadingColorSuccess: string;
1411
+ borderSuccess: string;
1412
+ borderHoverSuccess: string;
1413
+ colorFocusSuccess: string;
1414
+ borderFocusSuccess: string;
1415
+ boxShadowFocusSuccess: string;
1416
+ caretColorSuccess: string;
1389
1417
  loadingColorWarning: string;
1390
1418
  borderWarning: string;
1391
1419
  borderHoverWarning: string;
@@ -1700,6 +1728,13 @@ declare const _default: import("vue").DefineComponent<{
1700
1728
  borderFocus: string;
1701
1729
  boxShadowFocus: string;
1702
1730
  loadingColor: string;
1731
+ loadingColorSuccess: string;
1732
+ borderSuccess: string;
1733
+ borderHoverSuccess: string;
1734
+ colorFocusSuccess: string;
1735
+ borderFocusSuccess: string;
1736
+ boxShadowFocusSuccess: string;
1737
+ caretColorSuccess: string;
1703
1738
  loadingColorWarning: string;
1704
1739
  borderWarning: string;
1705
1740
  borderHoverWarning: string;
@@ -2014,6 +2049,13 @@ declare const _default: import("vue").DefineComponent<{
2014
2049
  borderFocus: string;
2015
2050
  boxShadowFocus: string;
2016
2051
  loadingColor: string;
2052
+ loadingColorSuccess: string;
2053
+ borderSuccess: string;
2054
+ borderHoverSuccess: string;
2055
+ colorFocusSuccess: string;
2056
+ borderFocusSuccess: string;
2057
+ boxShadowFocusSuccess: string;
2058
+ caretColorSuccess: string;
2017
2059
  loadingColorWarning: string;
2018
2060
  borderWarning: string;
2019
2061
  borderHoverWarning: string;
@@ -2445,6 +2487,13 @@ declare const _default: import("vue").DefineComponent<{
2445
2487
  borderFocus: string;
2446
2488
  boxShadowFocus: string;
2447
2489
  loadingColor: string;
2490
+ loadingColorSuccess: string;
2491
+ borderSuccess: string;
2492
+ borderHoverSuccess: string;
2493
+ colorFocusSuccess: string;
2494
+ borderFocusSuccess: string;
2495
+ boxShadowFocusSuccess: string;
2496
+ caretColorSuccess: string;
2448
2497
  loadingColorWarning: string;
2449
2498
  borderWarning: string;
2450
2499
  borderHoverWarning: string;
@@ -2878,6 +2927,13 @@ declare const _default: import("vue").DefineComponent<{
2878
2927
  borderFocus: string;
2879
2928
  boxShadowFocus: string;
2880
2929
  loadingColor: string;
2930
+ loadingColorSuccess: string;
2931
+ borderSuccess: string;
2932
+ borderHoverSuccess: string;
2933
+ colorFocusSuccess: string;
2934
+ borderFocusSuccess: string;
2935
+ boxShadowFocusSuccess: string;
2936
+ caretColorSuccess: string;
2881
2937
  loadingColorWarning: string;
2882
2938
  borderWarning: string;
2883
2939
  borderHoverWarning: string;
@@ -3192,6 +3248,13 @@ declare const _default: import("vue").DefineComponent<{
3192
3248
  borderFocus: string;
3193
3249
  boxShadowFocus: string;
3194
3250
  loadingColor: string;
3251
+ loadingColorSuccess: string;
3252
+ borderSuccess: string;
3253
+ borderHoverSuccess: string;
3254
+ colorFocusSuccess: string;
3255
+ borderFocusSuccess: string;
3256
+ boxShadowFocusSuccess: string;
3257
+ caretColorSuccess: string;
3195
3258
  loadingColorWarning: string;
3196
3259
  borderWarning: string;
3197
3260
  borderHoverWarning: string;
@@ -3506,6 +3569,13 @@ declare const _default: import("vue").DefineComponent<{
3506
3569
  borderFocus: string;
3507
3570
  boxShadowFocus: string;
3508
3571
  loadingColor: string;
3572
+ loadingColorSuccess: string;
3573
+ borderSuccess: string;
3574
+ borderHoverSuccess: string;
3575
+ colorFocusSuccess: string;
3576
+ borderFocusSuccess: string;
3577
+ boxShadowFocusSuccess: string;
3578
+ caretColorSuccess: string;
3509
3579
  loadingColorWarning: string;
3510
3580
  borderWarning: string;
3511
3581
  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;
@@ -185,6 +185,13 @@ export declare const transferProps: {
185
185
  borderFocus: string;
186
186
  boxShadowFocus: string;
187
187
  loadingColor: string;
188
+ loadingColorSuccess: string;
189
+ borderSuccess: string;
190
+ borderHoverSuccess: string;
191
+ colorFocusSuccess: string;
192
+ borderFocusSuccess: string;
193
+ boxShadowFocusSuccess: string;
194
+ caretColorSuccess: string;
188
195
  loadingColorWarning: string;
189
196
  borderWarning: string;
190
197
  borderHoverWarning: string;
@@ -589,6 +596,13 @@ export declare const transferProps: {
589
596
  borderFocus: string;
590
597
  boxShadowFocus: string;
591
598
  loadingColor: string;
599
+ loadingColorSuccess: string;
600
+ borderSuccess: string;
601
+ borderHoverSuccess: string;
602
+ colorFocusSuccess: string;
603
+ borderFocusSuccess: string;
604
+ boxShadowFocusSuccess: string;
605
+ caretColorSuccess: string;
592
606
  loadingColorWarning: string;
593
607
  borderWarning: string;
594
608
  borderHoverWarning: string;
@@ -993,6 +1007,13 @@ export declare const transferProps: {
993
1007
  borderFocus: string;
994
1008
  boxShadowFocus: string;
995
1009
  loadingColor: string;
1010
+ loadingColorSuccess: string;
1011
+ borderSuccess: string;
1012
+ borderHoverSuccess: string;
1013
+ colorFocusSuccess: string;
1014
+ borderFocusSuccess: string;
1015
+ boxShadowFocusSuccess: string;
1016
+ caretColorSuccess: string;
996
1017
  loadingColorWarning: string;
997
1018
  borderWarning: string;
998
1019
  borderHoverWarning: string;
@@ -1442,6 +1463,13 @@ declare const _default: import("vue").DefineComponent<{
1442
1463
  borderFocus: string;
1443
1464
  boxShadowFocus: string;
1444
1465
  loadingColor: string;
1466
+ loadingColorSuccess: string;
1467
+ borderSuccess: string;
1468
+ borderHoverSuccess: string;
1469
+ colorFocusSuccess: string;
1470
+ borderFocusSuccess: string;
1471
+ boxShadowFocusSuccess: string;
1472
+ caretColorSuccess: string;
1445
1473
  loadingColorWarning: string;
1446
1474
  borderWarning: string;
1447
1475
  borderHoverWarning: string;
@@ -1846,6 +1874,13 @@ declare const _default: import("vue").DefineComponent<{
1846
1874
  borderFocus: string;
1847
1875
  boxShadowFocus: string;
1848
1876
  loadingColor: string;
1877
+ loadingColorSuccess: string;
1878
+ borderSuccess: string;
1879
+ borderHoverSuccess: string;
1880
+ colorFocusSuccess: string;
1881
+ borderFocusSuccess: string;
1882
+ boxShadowFocusSuccess: string;
1883
+ caretColorSuccess: string;
1849
1884
  loadingColorWarning: string;
1850
1885
  borderWarning: string;
1851
1886
  borderHoverWarning: string;
@@ -2250,6 +2285,13 @@ declare const _default: import("vue").DefineComponent<{
2250
2285
  borderFocus: string;
2251
2286
  boxShadowFocus: string;
2252
2287
  loadingColor: string;
2288
+ loadingColorSuccess: string;
2289
+ borderSuccess: string;
2290
+ borderHoverSuccess: string;
2291
+ colorFocusSuccess: string;
2292
+ borderFocusSuccess: string;
2293
+ boxShadowFocusSuccess: string;
2294
+ caretColorSuccess: string;
2253
2295
  loadingColorWarning: string;
2254
2296
  borderWarning: string;
2255
2297
  borderHoverWarning: string;
@@ -2662,6 +2704,13 @@ declare const _default: import("vue").DefineComponent<{
2662
2704
  borderFocus: string;
2663
2705
  boxShadowFocus: string;
2664
2706
  loadingColor: string;
2707
+ loadingColorSuccess: string;
2708
+ borderSuccess: string;
2709
+ borderHoverSuccess: string;
2710
+ colorFocusSuccess: string;
2711
+ borderFocusSuccess: string;
2712
+ boxShadowFocusSuccess: string;
2713
+ caretColorSuccess: string;
2665
2714
  loadingColorWarning: string;
2666
2715
  borderWarning: string;
2667
2716
  borderHoverWarning: string;
@@ -3177,6 +3226,13 @@ declare const _default: import("vue").DefineComponent<{
3177
3226
  borderFocus: string;
3178
3227
  boxShadowFocus: string;
3179
3228
  loadingColor: string;
3229
+ loadingColorSuccess: string;
3230
+ borderSuccess: string;
3231
+ borderHoverSuccess: string;
3232
+ colorFocusSuccess: string;
3233
+ borderFocusSuccess: string;
3234
+ boxShadowFocusSuccess: string;
3235
+ caretColorSuccess: string;
3180
3236
  loadingColorWarning: string;
3181
3237
  borderWarning: string;
3182
3238
  borderHoverWarning: string;
@@ -3581,6 +3637,13 @@ declare const _default: import("vue").DefineComponent<{
3581
3637
  borderFocus: string;
3582
3638
  boxShadowFocus: string;
3583
3639
  loadingColor: string;
3640
+ loadingColorSuccess: string;
3641
+ borderSuccess: string;
3642
+ borderHoverSuccess: string;
3643
+ colorFocusSuccess: string;
3644
+ borderFocusSuccess: string;
3645
+ boxShadowFocusSuccess: string;
3646
+ caretColorSuccess: string;
3584
3647
  loadingColorWarning: string;
3585
3648
  borderWarning: string;
3586
3649
  borderHoverWarning: string;
@@ -3985,6 +4048,13 @@ declare const _default: import("vue").DefineComponent<{
3985
4048
  borderFocus: string;
3986
4049
  boxShadowFocus: string;
3987
4050
  loadingColor: string;
4051
+ loadingColorSuccess: string;
4052
+ borderSuccess: string;
4053
+ borderHoverSuccess: string;
4054
+ colorFocusSuccess: string;
4055
+ borderFocusSuccess: string;
4056
+ boxShadowFocusSuccess: string;
4057
+ caretColorSuccess: string;
3988
4058
  loadingColorWarning: string;
3989
4059
  borderWarning: string;
3990
4060
  borderHoverWarning: string;
@@ -153,6 +153,13 @@ declare const _default: import("vue").DefineComponent<{
153
153
  borderFocus: string;
154
154
  boxShadowFocus: string;
155
155
  loadingColor: string;
156
+ loadingColorSuccess: string;
157
+ borderSuccess: string;
158
+ borderHoverSuccess: string;
159
+ colorFocusSuccess: string;
160
+ borderFocusSuccess: string;
161
+ boxShadowFocusSuccess: string;
162
+ caretColorSuccess: string;
156
163
  loadingColorWarning: string;
157
164
  borderWarning: string;
158
165
  borderHoverWarning: string;
@@ -163,6 +163,13 @@ declare const _default: import("vue").DefineComponent<{
163
163
  borderFocus: string;
164
164
  boxShadowFocus: string;
165
165
  loadingColor: string;
166
+ loadingColorSuccess: string;
167
+ borderSuccess: string;
168
+ borderHoverSuccess: string;
169
+ colorFocusSuccess: string;
170
+ borderFocusSuccess: string;
171
+ boxShadowFocusSuccess: string;
172
+ caretColorSuccess: string;
166
173
  loadingColorWarning: string;
167
174
  borderWarning: string;
168
175
  borderHoverWarning: string;
@@ -161,6 +161,13 @@ declare const _default: import("vue").DefineComponent<{
161
161
  borderFocus: string;
162
162
  boxShadowFocus: string;
163
163
  loadingColor: string;
164
+ loadingColorSuccess: string;
165
+ borderSuccess: string;
166
+ borderHoverSuccess: string;
167
+ colorFocusSuccess: string;
168
+ borderFocusSuccess: string;
169
+ boxShadowFocusSuccess: string;
170
+ caretColorSuccess: string;
164
171
  loadingColorWarning: string;
165
172
  borderWarning: string;
166
173
  borderHoverWarning: string;
@@ -178,6 +178,13 @@ declare const transferLight: import("../../_mixins").Theme<"Transfer", {
178
178
  borderFocus: string;
179
179
  boxShadowFocus: string;
180
180
  loadingColor: string;
181
+ loadingColorSuccess: string;
182
+ borderSuccess: string;
183
+ borderHoverSuccess: string;
184
+ colorFocusSuccess: string;
185
+ borderFocusSuccess: string;
186
+ boxShadowFocusSuccess: string;
187
+ caretColorSuccess: string;
181
188
  loadingColorWarning: string;
182
189
  borderWarning: string;
183
190
  borderHoverWarning: string;
package/lib/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "1.13.2";
1
+ declare const _default: "1.14.1";
2
2
  export default _default;
package/lib/version.js CHANGED
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.default = '1.13.2';
3
+ exports.default = '1.14.1';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uzum-tech/ui",
3
- "version": "1.13.2",
3
+ "version": "1.14.1",
4
4
  "description": "A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
package/web-types.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
3
3
  "framework": "vue",
4
4
  "name": "@uzum-tech/ui",
5
- "version": "1.13.2",
5
+ "version": "1.14.1",
6
6
  "js-types-syntax": "typescript",
7
7
  "contributions": {
8
8
  "html": {
@@ -3725,6 +3725,11 @@
3725
3725
  "since": "2.29.0"
3726
3726
  }
3727
3727
  },
3728
+ {
3729
+ "name": "style-mount-target",
3730
+ "doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/config-provider",
3731
+ "type": "object"
3732
+ },
3728
3733
  {
3729
3734
  "name": "inline-theme-disabled",
3730
3735
  "doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/config-provider",
@@ -4229,6 +4234,11 @@
4229
4234
  "description": "See [Scrollbar props](scrollbar#Scrollbar-Props)",
4230
4235
  "default": "undefined"
4231
4236
  },
4237
+ {
4238
+ "name": "local-storage-key",
4239
+ "doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/data-table",
4240
+ "type": "string"
4241
+ },
4232
4242
  {
4233
4243
  "name": "render-cell",
4234
4244
  "doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/data-table",
@@ -4272,6 +4282,13 @@
4272
4282
  "type": "Partial<EmptyProps>",
4273
4283
  "description": "Props passed to the Empty component when data is empty.",
4274
4284
  "default": "undefined"
4285
+ },
4286
+ {
4287
+ "name": "localStorage-key",
4288
+ "doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/data-table",
4289
+ "type": "string",
4290
+ "description": "Key for localStorage to persist table state (column widths, page, pageSize, filters, sort, checkedRowKeys, expandedRowKeys). When set, state is restored on mount and saved on change.",
4291
+ "default": "undefined"
4275
4292
  }
4276
4293
  ],
4277
4294
  "js": {