@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
@@ -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: "2.0.0-beta.7";
1
+ declare const _default: "2.0.0-beta.9";
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 = '2.0.0-beta.7';
3
+ exports.default = '2.0.0-beta.9';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uzum-tech/ui",
3
- "version": "2.0.0-beta.7",
3
+ "version": "2.0.0-beta.9",
4
4
  "description": "A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast",
5
5
  "author": {
6
6
  "name": "KapitalLab",
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": "2.0.0-beta.7",
5
+ "version": "2.0.0-beta.9",
6
6
  "js-types-syntax": "typescript",
7
7
  "contributions": {
8
8
  "html": {
@@ -9218,6 +9218,13 @@
9218
9218
  "description": "Hide the copy button in the header.",
9219
9219
  "default": "false"
9220
9220
  },
9221
+ {
9222
+ "name": "hide-header-actions",
9223
+ "doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/mapping-card",
9224
+ "type": "boolean",
9225
+ "description": "Hide the entire header actions group (switch, edit, delete buttons).",
9226
+ "default": "false"
9227
+ },
9221
9228
  {
9222
9229
  "name": "copy",
9223
9230
  "doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/mapping-card",
@@ -14662,9 +14669,38 @@
14662
14669
  "source": {
14663
14670
  "symbol": "UTooltip"
14664
14671
  },
14665
- "slots": [],
14672
+ "slots": [
14673
+ {
14674
+ "name": "trigger",
14675
+ "doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/tooltip",
14676
+ "description": "Trigger element."
14677
+ },
14678
+ {
14679
+ "name": "default",
14680
+ "doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/tooltip",
14681
+ "description": "Tooltip content / title."
14682
+ },
14683
+ {
14684
+ "name": "footer",
14685
+ "doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/tooltip",
14686
+ "description": "Subtitle below the title. Only available in `default` variant."
14687
+ },
14688
+ {
14689
+ "name": "icon",
14690
+ "doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/tooltip",
14691
+ "description": "Icon shown before the content. Only available in `default` variant."
14692
+ }
14693
+ ],
14666
14694
  "attributes": [],
14667
- "props": [],
14695
+ "props": [
14696
+ {
14697
+ "name": "variant",
14698
+ "doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/tooltip",
14699
+ "type": "'default' | 'plain'",
14700
+ "description": "Tooltip variant. `default` renders rich content with icon, title, and footer slots. `plain` is a thin wrapper around Popover with no extra markup or styles.",
14701
+ "default": "'default'"
14702
+ }
14703
+ ],
14668
14704
  "js": {
14669
14705
  "events": []
14670
14706
  }