@sberbusiness/triplex-next 1.2.0 → 1.4.0

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 (407) hide show
  1. package/chunks/{AlertProcessSpoiler-B3Xzh0I2.js → AlertProcessSpoiler-BQv9QI6L.js} +10 -10
  2. package/chunks/Card.module-kTbr6OQy.js +17 -0
  3. package/chunks/Chip-G6cGXuGj.js +90 -0
  4. package/chunks/DropdownListItem-D2hzyBGc.js +57 -0
  5. package/chunks/DropdownMobile.module-Fa_t6vz1.js +21 -0
  6. package/chunks/Footer.module-B3uFxh54.js +9 -0
  7. package/chunks/FormFieldInput-CO7yZP0Q.js +62 -0
  8. package/chunks/HeaderLayoutSidebar.module-CGCy_cim.js +9 -0
  9. package/chunks/HeaderTabs.module-DMuNfILv.js +9 -0
  10. package/chunks/HeaderTitle.module-BHyH17ZI.js +11 -0
  11. package/chunks/IslandAccordion.module-7xAwgJVI.js +22 -0
  12. package/chunks/LightBoxContent-DmoszkOx.js +56 -0
  13. package/chunks/LightBoxControls.module-42gn-co3.js +16 -0
  14. package/chunks/LightBoxSideOverlayClose.module-B_oIB3rc.js +8 -0
  15. package/chunks/{ListItemControlsButton-BdtSkcyn.js → ListItemControlsButton-BoEiexyr.js} +6 -6
  16. package/chunks/ListItemTail.module-BB5TJPEc.js +12 -0
  17. package/chunks/ListMasterFooter.module-DxZ_nXDV.js +10 -0
  18. package/chunks/Notification.module-C-HCMpAz.js +21 -0
  19. package/chunks/Overlay.module-q-oPhooa.js +18 -0
  20. package/chunks/Page.module-DjGbJ-Uw.js +12 -0
  21. package/chunks/{RightBorderArrow-BA2_2Ry3.js → RightBorderArrow-BHW7rkmN.js} +15 -15
  22. package/chunks/SMSInput.module-Ci4GRnk_.js +16 -0
  23. package/chunks/StatusTracker.module-zTyojoH4.js +24 -0
  24. package/chunks/{SuggestFieldMobileDropdownHint-Dz-VDDoR.js → SuggestFieldMobileDropdownHint-CMKMF0PQ.js} +2 -2
  25. package/chunks/TableFooter.module-DrRycaTr.js +13 -0
  26. package/chunks/TabsExtended.module-Be8qpZYz.js +16 -0
  27. package/chunks/TabsLine.module-DKAp48Sx.js +23 -0
  28. package/chunks/TooltipDesktop.module-D72ObNia.js +19 -0
  29. package/chunks/{UploadZoneInput-CioKsqkV.js → UploadZoneInput-pdhICY56.js} +9 -9
  30. package/chunks/utils-B7AjUpy-.js +20 -0
  31. package/chunks/utils-C-1ATq_g.js +24 -0
  32. package/chunks/{utils-D7E_PKCe.js → utils-C8a4iCV0.js} +5 -5
  33. package/chunks/{utils-B5p23Ple.js → utils-C9-tOm2Z.js} +7 -7
  34. package/chunks/{utils-DPXynVs1.js → utils-DwX2_kEA.js} +10 -10
  35. package/chunks/{vendor-CehxOAkM.js → vendor-Ba_pyhza.js} +5132 -5003
  36. package/components/AbstractTree/AbstractTreeNode.js +50 -0
  37. package/components/AccordionBase/protected/AccordionBase.js +83 -0
  38. package/components/Alert/AlertContext/AlertContext.js +12 -12
  39. package/components/Alert/AlertProcess/AlertProcess.js +3 -3
  40. package/components/Alert/AlertProcess/components/AlertProcessSpoiler.js +2 -2
  41. package/components/Amount/Amount.js +23 -24
  42. package/components/AmountField/AmountField.js +11 -11
  43. package/components/Body/Body.js +25 -8
  44. package/components/Body/enums.js +5 -0
  45. package/components/Button/Button.js +47 -46
  46. package/components/Button/ButtonBase.js +1 -1
  47. package/components/Button/ButtonDropdown.js +13 -13
  48. package/components/Button/ButtonDropdownExtended.js +5 -5
  49. package/components/Button/ButtonIcon.js +15 -19
  50. package/components/Button/enums.js +2 -3
  51. package/components/Button/index.js +9 -10
  52. package/components/Card/CardAction.js +10 -10
  53. package/components/Card/CardStatic.js +3 -3
  54. package/components/Card/components/CardContent/CardContent.js +2 -2
  55. package/components/Card/components/CardContent/components/CardContentBody.js +2 -2
  56. package/components/Card/components/CardContent/components/CardContentFooter.js +2 -2
  57. package/components/Card/components/CardContent/components/CardContentHeader.js +2 -2
  58. package/components/Card/components/CardMedia.js +2 -2
  59. package/components/Card/utils.js +1 -1
  60. package/components/CarouselExtended/CarouselExtended.js +2 -2
  61. package/components/Checkbox/Checkbox.js +15 -15
  62. package/components/Checkbox/CheckboxXGroup.js +13 -13
  63. package/components/Checkbox/CheckboxYGroup.js +4 -4
  64. package/components/CheckboxTree/CheckboxTree.js +39 -0
  65. package/components/CheckboxTree/types.js +2 -0
  66. package/components/CheckboxTree/utils.js +22 -0
  67. package/components/CheckboxTreeExtended/CheckboxTreeExtended.js +13 -0
  68. package/components/CheckboxTreeExtended/components/CheckboxTreeExtendedArrow.js +52 -0
  69. package/components/CheckboxTreeExtended/components/CheckboxTreeExtendedCheckbox.js +39 -0
  70. package/components/CheckboxTreeExtended/components/CheckboxTreeExtendedNode.js +53 -0
  71. package/components/CheckboxTreeExtended/isStaticCheckboxTreeExtended.js +5 -0
  72. package/components/Chip/Chip.js +8 -83
  73. package/components/Chip/ChipClearButton.js +16 -24
  74. package/components/Chip/ChipDropdownArrow.js +9 -9
  75. package/components/Chip/ChipIcon.js +4 -4
  76. package/components/Chip/ChipOptions.js +6 -6
  77. package/components/Chip/ChipSelect.js +55 -0
  78. package/components/Chip/ChipSuggest/ChipSuggest.js +21 -0
  79. package/components/Chip/ChipSuggest/ChipSuggestDropdown.js +85 -0
  80. package/components/Chip/ChipSuggest/ChipSuggestTarget.js +42 -0
  81. package/components/Chip/ChipSuggest/desktop/ChipSuggestDesktopDropdownField.js +81 -0
  82. package/components/Chip/ChipSuggest/index.js +7 -0
  83. package/components/Chip/ChipSuggest/types.js +2 -0
  84. package/components/Chip/index.js +9 -5
  85. package/components/ChipGroup/ChipGroup.js +15 -15
  86. package/components/Col/Col.js +141 -141
  87. package/components/CollapsableTree/CollapsableTree.js +10 -0
  88. package/components/CollapsableTree/components/CollapsableTreeNode.js +79 -0
  89. package/components/DesignTokens/DesignTokenUtils.js +2 -2
  90. package/components/DesignTokens/DesignTokensComponents.js +61 -40
  91. package/components/DesignTokens/DesignTokensComponentsThemeDark.js +60 -34
  92. package/components/DesignTokens/components/Card.js +6 -3
  93. package/components/DesignTokens/components/Island.js +1 -1
  94. package/components/DesignTokens/components/IslandAccordion.js +9 -0
  95. package/components/DesignTokens/components/LightBox.js +11 -0
  96. package/components/DesignTokens/components/Loader.js +13 -7
  97. package/components/DesignTokens/components/LoaderScreen.js +17 -0
  98. package/components/DesignTokens/components/Marker.js +4 -4
  99. package/components/DesignTokens/components/Notification.js +15 -0
  100. package/components/DesignTokens/components/SMSInput.js +26 -0
  101. package/components/DesignTokens/components/StatusTracker.js +35 -0
  102. package/components/DesignTokens/components/Step.js +44 -0
  103. package/components/DesignTokens/components/Tag.js +9 -0
  104. package/components/DesignTokens/components/index.js +81 -63
  105. package/components/Divider/Divider.js +21 -21
  106. package/components/Dropdown/desktop/DropdownDesktop.js +18 -18
  107. package/components/Dropdown/desktop/DropdownList.js +42 -41
  108. package/components/Dropdown/desktop/DropdownListItem.js +2 -2
  109. package/components/Dropdown/desktop/index.js +1 -1
  110. package/components/Dropdown/index.js +1 -1
  111. package/components/Dropdown/mobile/DropdownMobile.js +2 -2
  112. package/components/Dropdown/mobile/DropdownMobileBody.js +2 -2
  113. package/components/Dropdown/mobile/DropdownMobileClose.js +2 -2
  114. package/components/Dropdown/mobile/DropdownMobileFooter.js +2 -2
  115. package/components/Dropdown/mobile/DropdownMobileHeader.js +2 -2
  116. package/components/Dropdown/mobile/DropdownMobileInner.js +2 -2
  117. package/components/Dropdown/mobile/DropdownMobileInput.js +6 -6
  118. package/components/Dropdown/mobile/DropdownMobileList.js +2 -2
  119. package/components/Dropdown/mobile/DropdownMobileListItem.js +2 -2
  120. package/components/Dropdown/mobile/DropdownMobileLoader.js +2 -2
  121. package/components/Ellipsis/Ellipsis.js +8 -8
  122. package/components/ExpandAnimation/ExpandAnimation.js +26 -26
  123. package/components/Footer/Footer.js +9 -20
  124. package/components/Footer/components/FooterDescription.js +2 -2
  125. package/components/Footer/components/FooterDescriptionContent.js +2 -2
  126. package/components/Footer/components/FooterDescriptionControls.js +2 -2
  127. package/components/FormField/FormField.js +21 -21
  128. package/components/FormField/components/FormFieldClear.js +9 -9
  129. package/components/FormField/components/FormFieldCounter.js +1 -1
  130. package/components/FormField/components/FormFieldDescription.js +5 -5
  131. package/components/FormField/components/FormFieldInput.js +4 -3
  132. package/components/FormField/components/FormFieldLabel.js +14 -14
  133. package/components/FormField/components/FormFieldMaskedInput.js +15 -15
  134. package/components/FormField/components/FormFieldPostfix.js +6 -6
  135. package/components/FormField/components/FormFieldPrefix.js +9 -9
  136. package/components/FormField/components/FormFieldTarget.js +22 -22
  137. package/components/FormField/components/FormFieldTextarea.js +32 -28
  138. package/components/FormField/index.js +1 -1
  139. package/components/Header/Header.js +15 -27
  140. package/components/Header/components/HeaderLayoutSidebar/HeaderLayoutSidebar.js +2 -2
  141. package/components/Header/components/HeaderLayoutSidebar/HeaderLayoutSidebarContent.js +2 -2
  142. package/components/Header/components/HeaderLayoutSidebar/HeaderLayoutSidebarSidebar.js +2 -2
  143. package/components/Header/components/HeaderSubheader/HeaderSubheader.js +2 -2
  144. package/components/Header/components/HeaderTabs/HeaderTabs.js +2 -2
  145. package/components/Header/components/HeaderTabs/HeaderTabsContent.js +2 -2
  146. package/components/Header/components/HeaderTabs/HeaderTabsControls.js +2 -2
  147. package/components/Header/components/HeaderTitle/HeaderTitle.js +2 -2
  148. package/components/Header/components/HeaderTitle/HeaderTitleContent.js +15 -7
  149. package/components/Header/components/HeaderTitle/HeaderTitleControls.js +14 -6
  150. package/components/HelpBox/HelpBox.js +13 -13
  151. package/components/Island/Island.js +12 -16
  152. package/components/Island/components/IslandBody.js +5 -5
  153. package/components/Island/components/IslandFooter.js +5 -5
  154. package/components/Island/components/IslandHeader.js +3 -3
  155. package/components/Island/components/index.js +9 -0
  156. package/components/Island/index.js +7 -1
  157. package/components/Island/utils.js +1 -3
  158. package/components/IslandAccordion/IslandAccordion.js +31 -0
  159. package/components/IslandAccordion/IslandAccordionContext.js +16 -0
  160. package/components/IslandAccordion/components/IslandAccordionContent.js +12 -0
  161. package/components/IslandAccordion/components/IslandAccordionFooter.js +13 -0
  162. package/components/IslandAccordion/components/IslandAccordionItem.js +122 -0
  163. package/components/IslandAccordion/components/IslandAccordionTitle.js +21 -0
  164. package/components/IslandAccordion/components/index.js +11 -0
  165. package/components/IslandAccordion/index.js +13 -0
  166. package/components/LightBox/LightBox.js +105 -0
  167. package/components/LightBox/LightBoxContent.js +10 -0
  168. package/components/LightBox/LightBoxControls/LightBoxClose.js +53 -0
  169. package/components/LightBox/LightBoxControls/LightBoxControls.js +15 -0
  170. package/components/LightBox/LightBoxControls/LightBoxNext.js +58 -0
  171. package/components/LightBox/LightBoxControls/LightBoxPrev.js +58 -0
  172. package/components/LightBox/LightBoxSideOverlay/LightBoxSideOverlay.js +106 -0
  173. package/components/LightBox/LightBoxSideOverlay/LightBoxSideOverlayCloseDesktop.js +35 -0
  174. package/components/LightBox/LightBoxSideOverlay/LightBoxSideOverlayCloseMobile.js +27 -0
  175. package/components/LightBox/LightBoxSideOverlay/LightBoxSideOverlayLoader.js +21 -0
  176. package/components/LightBox/LightBoxTopOverlay/LightBoxTopOverlay.js +86 -0
  177. package/components/LightBox/LightBoxViewManager/LightBoxViewManager.js +63 -0
  178. package/components/LightBox/LightBoxViewManager/LightBoxViewManagerConsts.js +28 -0
  179. package/components/LightBox/index.js +7 -0
  180. package/components/Link/Link.js +11 -11
  181. package/components/List/List.js +11 -11
  182. package/components/List/ListSortable.js +1 -1
  183. package/components/List/components/ListEmptyState.js +2 -2
  184. package/components/List/components/ListItem.js +1 -1
  185. package/components/List/components/ListItemContent.js +7 -7
  186. package/components/List/components/ListItemControls.js +6 -6
  187. package/components/List/components/ListItemControlsButton.js +2 -2
  188. package/components/List/components/ListItemControlsButtonDropdown.js +2 -2
  189. package/components/List/components/ListItemLoading.js +7 -7
  190. package/components/List/components/ListItemSelectable.js +16 -16
  191. package/components/List/components/ListItemTable.js +7 -7
  192. package/components/List/components/ListItemTailLeft.js +2 -2
  193. package/components/List/components/ListItemTailRight.js +2 -2
  194. package/components/List/components/ListSortableItem.js +6 -6
  195. package/components/List/components/ListSortableItemControls.js +5 -5
  196. package/components/List/components/ListSortableItemTarget.js +4 -4
  197. package/components/List/index.js +1 -1
  198. package/components/ListMaster/ListMaster.js +1 -1
  199. package/components/ListMaster/components/ListMasterBody.js +1 -1
  200. package/components/ListMaster/components/ListMasterChipGroup.js +2 -2
  201. package/components/ListMaster/components/ListMasterFooter.js +2 -2
  202. package/components/ListMaster/components/ListMasterFooterControls.js +2 -2
  203. package/components/ListMaster/components/ListMasterFooterDescription.js +2 -2
  204. package/components/ListMaster/components/ListMasterHeader.js +11 -11
  205. package/components/ListMaster/components/SelectionControls.js +7 -7
  206. package/components/Loader/LoaderMiddle/LoaderMiddle.js +18 -17
  207. package/components/Loader/LoaderSmall/LoaderSmall.js +5 -5
  208. package/components/LoaderScreen/LoaderScreen.js +28 -0
  209. package/components/LoaderScreen/index.js +5 -0
  210. package/components/Marker/Marker.js +2 -2
  211. package/components/Marker/utils.js +1 -1
  212. package/components/MarkerStatus/MarkerStatus.js +32 -28
  213. package/components/Notification/Notification.js +40 -0
  214. package/components/Notification/NotificationGrouped.js +12 -0
  215. package/components/Notification/components/NotificationBody.js +19 -0
  216. package/components/Notification/components/NotificationBodyContent.js +8 -0
  217. package/components/Notification/components/NotificationBodyList.js +11 -0
  218. package/components/Notification/components/NotificationClose.js +14 -0
  219. package/components/Notification/components/NotificationFooter.js +8 -0
  220. package/components/Notification/components/NotificationGroupedFooter.js +11 -0
  221. package/components/Notification/components/NotificationHeader.js +8 -0
  222. package/components/Notification/components/NotificationIcon.js +8 -0
  223. package/components/Notification/components/NotificationTime.js +8 -0
  224. package/components/NumberField/NumberField.js +8 -0
  225. package/components/NumberField/NumberFieldInput.js +38 -0
  226. package/components/NumberField/index.js +5 -0
  227. package/components/NumberField/types.js +2 -0
  228. package/components/OrderedList/OrderedList.js +6 -6
  229. package/components/OrderedList/OrderedListItem.js +11 -11
  230. package/components/Overlay/Overlay.js +2 -2
  231. package/components/Overlay/OverlayMask.js +2 -2
  232. package/components/Overlay/OverlayPanel.js +2 -2
  233. package/components/Page/Page.js +13 -13
  234. package/components/Page/components/BodyPage.js +2 -2
  235. package/components/Page/components/FooterPage.js +35 -29
  236. package/components/Page/components/HeaderPage.js +22 -28
  237. package/components/Page/components/useStickyCornerRadius.js +32 -22
  238. package/components/Pagination/components/PaginationExtended.js +6 -6
  239. package/components/Pagination/components/PaginationNavigationButton.js +7 -7
  240. package/components/Pagination/components/PaginationNavigationExtended.js +2 -2
  241. package/components/Pagination/components/PaginationPageButton.js +6 -6
  242. package/components/Pagination/components/PaginationPageEllipsis.js +3 -3
  243. package/components/Pagination/components/PaginationSelect.js +7 -7
  244. package/components/Pagination/utils/paginationUtils.js +1 -1
  245. package/components/Radio/Radio.js +10 -10
  246. package/components/Radio/RadioXGroup.js +11 -11
  247. package/components/Radio/RadioYGroup.js +9 -9
  248. package/components/Row/Row.js +5 -5
  249. package/components/SMSInput/SMSInput.js +41 -0
  250. package/components/SMSInput/SMSInputContext.js +23 -0
  251. package/components/SMSInput/components/RefreshIcon.js +35 -0
  252. package/components/SMSInput/components/SMSInputInput.js +63 -0
  253. package/components/SMSInput/components/SMSInputRefresh.js +39 -0
  254. package/components/SMSInput/components/SMSInputSubmit.js +43 -0
  255. package/components/SMSInput/components/SMSInputTooltip.js +38 -0
  256. package/components/SMSInput/components/SubmitIcon.js +19 -0
  257. package/components/SMSInput/index.js +5 -0
  258. package/components/SMSInput/types.js +2 -0
  259. package/components/SegmentedControl/SegmentedControl.js +11 -11
  260. package/components/SegmentedControl/SegmentedControlSegment.js +11 -11
  261. package/components/SelectExtendedField/SelectExtendedField.js +2 -2
  262. package/components/SelectExtendedField/components/SelectExtendedFieldDropdown.js +1 -1
  263. package/components/SelectExtendedField/components/SelectExtendedFieldTarget.js +4 -4
  264. package/components/SelectField/SelectField.js +1 -1
  265. package/components/Skeleton/Skeleton.js +10 -10
  266. package/components/Spoiler/Spoiler.js +75 -0
  267. package/components/Spoiler/index.js +5 -0
  268. package/components/StatusTracker/StatusTracker.js +45 -0
  269. package/components/StatusTracker/components/StatusTrackerAlert.js +18 -0
  270. package/components/StatusTracker/components/StatusTrackerBody.js +20 -0
  271. package/components/StatusTracker/components/StatusTrackerButton.js +16 -0
  272. package/components/StatusTracker/components/StatusTrackerDescription.js +24 -0
  273. package/components/StatusTracker/components/StatusTrackerFooter.js +28 -0
  274. package/components/StatusTracker/components/StatusTrackerHeader.js +22 -0
  275. package/components/StatusTracker/components/StatusTrackerMedia.js +11 -0
  276. package/components/StatusTracker/components/StatusTrackerStatus.js +12 -0
  277. package/components/StatusTracker/components/StatusTrackerSum.js +25 -0
  278. package/components/StatusTracker/components/StatusTrackerTitle.js +24 -0
  279. package/components/StatusTracker/enums.js +6 -0
  280. package/components/StatusTracker/index.js +5 -0
  281. package/components/Step/Step.js +49 -0
  282. package/components/Step/enums.js +6 -0
  283. package/components/Step/index.js +9 -0
  284. package/components/Stepper/RightBorderArrow.js +1 -1
  285. package/components/Stepper/Stepper.js +7 -7
  286. package/components/Stepper/StepperExtended.js +5 -5
  287. package/components/Stepper/StepperStep.js +3 -3
  288. package/components/Stepper/StepperWrapper.js +5 -5
  289. package/components/Suggest/Suggest.js +99 -0
  290. package/components/Suggest/SuggestContext.js +29 -0
  291. package/components/Suggest/SuggestMobileDropdownContent.js +96 -0
  292. package/components/Suggest/index.js +8 -0
  293. package/components/Suggest/types.js +2 -0
  294. package/components/SuggestField/SuggestField.js +11 -12
  295. package/components/SuggestField/SuggestFieldTarget.js +35 -32
  296. package/components/SuggestField/SuggestFieldTargetPostfix.js +1 -1
  297. package/components/SuggestField/desktop/SuggestFieldDesktop.js +81 -80
  298. package/components/SuggestField/desktop/SuggestFieldDesktopDropdown.js +1 -1
  299. package/components/SuggestField/index.js +1 -1
  300. package/components/SuggestField/mobile/SuggestFieldMobile.js +27 -26
  301. package/components/SuggestField/mobile/SuggestFieldMobileDropdown.js +2 -2
  302. package/components/SuggestField/mobile/SuggestFieldMobileDropdownHint.js +1 -1
  303. package/components/SuggestField/mobile/index.js +1 -1
  304. package/components/SwipeableArea/SwipeableArea.js +17 -17
  305. package/components/Table/FilterPanel.js +3 -3
  306. package/components/Table/MasterTable.js +3 -3
  307. package/components/Table/NoColumns.js +6 -6
  308. package/components/Table/PaginationPanel.js +3 -3
  309. package/components/Table/TableBasic/TableBasic.js +33 -32
  310. package/components/Table/TableBasic/components/TableBasicBody.js +2 -2
  311. package/components/Table/TableBasic/components/TableBasicHeader.js +19 -18
  312. package/components/Table/TableBasic/components/TableBasicRow.js +2 -2
  313. package/components/Table/TableBasicSettings/TableBasicSettings.js +11 -11
  314. package/components/Table/TableBasicSettings/components/ColumnSettingsSortableListItemTarget.js +6 -6
  315. package/components/Table/TableBasicSettings/components/ColumnSettingsStaticListItem.js +2 -2
  316. package/components/Table/TableBasicSettings/components/TableBasicSettingsBody.js +7 -7
  317. package/components/Table/TableBasicSettings/components/TableBasicSettingsFooter.js +2 -2
  318. package/components/Table/TableBasicSettings/components/TableBasicSettingsHeader.js +10 -10
  319. package/components/Table/TableFooter/TableFooter.js +2 -2
  320. package/components/Table/TableFooter/components/TableFooterSummary.js +1 -1
  321. package/components/Table/TableFooter/components/TableFooterSummaryAmount.js +9 -9
  322. package/components/Table/TableFooter/components/TableFooterSummarySelectAllButton.js +10 -21
  323. package/components/Table/TableFooter/components/TableFooterSummarySelectedCount.js +1 -1
  324. package/components/Table/TabsLinePanel.js +6 -6
  325. package/components/Table/TabsLinePanelLinks.js +2 -2
  326. package/components/Table/utils.js +1 -1
  327. package/components/Tabs/Tabs.js +6 -6
  328. package/components/TabsExtended/TabsExtended.js +3 -3
  329. package/components/TabsExtended/components/TabsExtendedContent.js +2 -2
  330. package/components/TabsExtended/components/TabsExtendedDropdownWrapper.js +2 -2
  331. package/components/TabsExtended/components/TabsExtendedTab.js +2 -2
  332. package/components/TabsExtended/components/TabsExtendedTabButton.js +2 -2
  333. package/components/TabsExtended/components/TabsExtendedTabsWrapper.js +2 -2
  334. package/components/TabsExtended/utils.js +1 -1
  335. package/components/TabsLine/TabsLine.js +2 -2
  336. package/components/TabsLine/components/TabsLineDesktop.js +2 -2
  337. package/components/TabsLine/components/TabsLineDropdown.js +4 -4
  338. package/components/TabsLine/components/TabsLineItem.js +2 -2
  339. package/components/TabsLine/components/TabsLineMobile.js +10 -10
  340. package/components/Tag/Tag.js +70 -0
  341. package/components/Tag/index.js +5 -0
  342. package/components/Tag/types.js +2 -0
  343. package/components/TagGroup/TagGroup.js +25 -0
  344. package/components/TagGroup/index.js +5 -0
  345. package/components/TagGroup/types.js +2 -0
  346. package/components/TextField/TextField.js +1 -1
  347. package/components/TextareaField/TextareaField.js +18 -0
  348. package/components/TextareaField/index.js +5 -0
  349. package/components/TextareaField/types.js +2 -0
  350. package/components/ThemeProvider/ThemeProvider.js +3 -3
  351. package/components/ThemeProvider/components/ThemeProviderView.js +1 -1
  352. package/components/Tooltip/components/common/TooltipBody.js +2 -2
  353. package/components/Tooltip/components/common/TooltipLink.js +16 -16
  354. package/components/Tooltip/components/common/TooltipXButton.js +1 -1
  355. package/components/Tooltip/components/desktop/components/TooltipDesktopBase.js +2 -2
  356. package/components/Tooltip/components/desktop/components/TooltipDesktopTip.js +2 -2
  357. package/components/Tooltip/components/mobile/TooltipMobile.js +7 -7
  358. package/components/TreeView/TreeView.js +88 -0
  359. package/components/TreeView/TreeViewAbstractNode.js +38 -0
  360. package/components/TreeView/TreeViewAbstractNodeUtils.js +112 -0
  361. package/components/TreeView/TreeViewContext.js +30 -0
  362. package/components/TreeView/components/TreeViewGroup.js +6 -0
  363. package/components/TreeView/components/TreeViewNode.js +81 -0
  364. package/components/Triggers/TriggerClickOnKeyDownEvent.js +15 -0
  365. package/components/Typography/Caption.js +9 -9
  366. package/components/Typography/Text.js +30 -30
  367. package/components/Typography/Title.js +15 -15
  368. package/components/Typography/index.js +15 -13
  369. package/components/Typography/utils.js +1 -1
  370. package/components/UnorderedList/UnorderedList.js +3 -3
  371. package/components/UnorderedList/UnorderedListItem.js +7 -7
  372. package/components/UploadZone/UploadZone.js +3 -3
  373. package/components/UploadZone/components/UploadZoneInput.js +2 -2
  374. package/components/WindowResizeListener/WindowResizeListener.js +18 -0
  375. package/components/index.js +418 -356
  376. package/helpers/less/z-indexes.less +3 -3
  377. package/index.d.ts +952 -88
  378. package/index.js +426 -364
  379. package/package.json +49 -5
  380. package/styles/triplex-next.css +472 -436
  381. package/utils/amountUtils.js +1 -1
  382. package/utils/focus/FocusTrapUtils.js +11 -0
  383. package/utils/scroll/scrollbar.js +14 -0
  384. package/chunks/Card.module-Dh5vP2zv.js +0 -17
  385. package/chunks/DropdownListItem-B1GkU8rn.js +0 -57
  386. package/chunks/DropdownMobile.module-CYlB98Oc.js +0 -21
  387. package/chunks/Footer.module-Bk8QkaWN.js +0 -11
  388. package/chunks/FormFieldInput-n8Ee4EcP.js +0 -63
  389. package/chunks/HeaderLayoutSidebar.module-CDNHX5_G.js +0 -9
  390. package/chunks/HeaderTabs.module-yaGpurOU.js +0 -9
  391. package/chunks/HeaderTitle.module-XzB-YndL.js +0 -9
  392. package/chunks/ListItemTail.module-D_m5pMsh.js +0 -12
  393. package/chunks/ListMasterFooter.module-DXrsYZZo.js +0 -10
  394. package/chunks/Overlay.module-BghrPKKn.js +0 -18
  395. package/chunks/Page.module-D6xCdUbr.js +0 -12
  396. package/chunks/TableFooter.module-BzfTOGS_.js +0 -13
  397. package/chunks/TabsExtended.module-B3nvdhKr.js +0 -16
  398. package/chunks/TabsLine.module-Dlj__Yjk.js +0 -23
  399. package/chunks/TooltipDesktop.module-TiWl3v5C.js +0 -19
  400. package/chunks/utils-BtcCJ4_U.js +0 -20
  401. package/chunks/utils-DjxtOr-n.js +0 -48
  402. package/components/Chip/enums.js +0 -5
  403. package/components/DesignTokens/components/LoaderWidget.js +0 -17
  404. package/components/DesignTokens/components/Page.js +0 -9
  405. package/components/LoaderWidget/LoaderWidget.js +0 -29
  406. package/components/LoaderWidget/index.js +0 -5
  407. /package/components/{Island → AccordionBase}/types.js +0 -0
@@ -0,0 +1,7 @@
1
+ import { LightBox as t, lightBoxMountNodeIdDefault as a, lightBoxViewManagerNodeIdDefault as d } from "./LightBox.js";
2
+ export {
3
+ t as LightBox,
4
+ a as lightBoxMountNodeIdDefault,
5
+ d as lightBoxViewManagerNodeIdDefault
6
+ };
7
+ //# sourceMappingURL=index.js.map
@@ -1,14 +1,14 @@
1
- import { jsx as R, jsxs as t, Fragment as d } from "react/jsx-runtime";
1
+ import { jsx as R, jsxs as t, Fragment as i } from "react/jsx-runtime";
2
2
  import L from "react";
3
- import { c as a } from "../../chunks/vendor-CehxOAkM.js";
4
- const v = "link__8f03eb47", F = "wordWithContent__c110ba0e", S = "before__f054d020", T = "after__65025164", e = {
3
+ import { c as a } from "../../chunks/vendor-Ba_pyhza.js";
4
+ const v = "link__81e5301c", F = "wordWithContent__0a1c37b4", S = "before__2ff2f479", T = "after__61cfb574", e = {
5
5
  link: v,
6
6
  wordWithContent: F,
7
7
  before: S,
8
8
  after: T
9
9
  }, q = L.forwardRef(
10
- ({ children: i, className: N, onBlur: f, onMouseDown: p, contentAfter: s, contentBefore: o, ...C }, _) => {
11
- const c = () => o ? /* @__PURE__ */ t(d, { children: [
10
+ ({ children: d, className: f, onBlur: N, onMouseDown: p, contentAfter: s, contentBefore: o, ...C }, _) => {
11
+ const c = () => o ? /* @__PURE__ */ t(i, { children: [
12
12
  "​",
13
13
  o()
14
14
  ] }) : null, m = () => s ? s() : null, u = (n) => {
@@ -35,7 +35,7 @@ const v = "link__8f03eb47", F = "wordWithContent__c110ba0e", S = "before__f054d0
35
35
  h,
36
36
  m()
37
37
  ] }) : h;
38
- return /* @__PURE__ */ t(d, { children: [
38
+ return /* @__PURE__ */ t(i, { children: [
39
39
  g,
40
40
  " ",
41
41
  w,
@@ -44,21 +44,21 @@ const v = "link__8f03eb47", F = "wordWithContent__c110ba0e", S = "before__f054d0
44
44
  ] });
45
45
  }, W = (n) => {
46
46
  const r = o ? o() : null, l = s ? s() : null;
47
- return /* @__PURE__ */ t(d, { children: [
47
+ return /* @__PURE__ */ t(i, { children: [
48
48
  r,
49
49
  n,
50
50
  l
51
51
  ] });
52
- }, b = o || s ? ((n) => typeof n == "string" ? u(n) : W(n))(i) : i;
52
+ }, b = o || s ? ((n) => typeof n == "string" ? u(n) : W(n))(d) : d;
53
53
  return /* @__PURE__ */ R(
54
54
  "a",
55
55
  {
56
56
  role: "link",
57
57
  ...C,
58
- className: a(N, e.link, "hoverable"),
59
- onBlur: f,
58
+ className: a(f, e.link, "hoverable"),
59
+ onBlur: N,
60
60
  onMouseDown: p,
61
- "data-tx": "1.2.0",
61
+ "data-tx": "1.4.0",
62
62
  ref: _,
63
63
  children: b
64
64
  }
@@ -1,15 +1,15 @@
1
- import { jsxs as i, jsx as r } from "react/jsx-runtime";
2
- import e from "react";
3
- import { c as m } from "../../chunks/vendor-CehxOAkM.js";
4
- import { LoaderWidget as c } from "../LoaderWidget/LoaderWidget.js";
5
- const f = "list__4e6a3f56", d = {
6
- list: f
7
- }, p = e.forwardRef(({ children: t, className: s, loading: l, ...o }, a) => /* @__PURE__ */ i("ul", { className: m(d.list, s), ...o, "data-tx": "1.2.0", ref: a, children: [
8
- t,
9
- l ? /* @__PURE__ */ r(c, { type: "small" }) : null
1
+ import { jsxs as a, jsx as e } from "react/jsx-runtime";
2
+ import i from "react";
3
+ import { c as m } from "../../chunks/vendor-Ba_pyhza.js";
4
+ import { LoaderScreen as f } from "../LoaderScreen/LoaderScreen.js";
5
+ const c = "list__7f1f7f67", p = {
6
+ list: c
7
+ }, d = i.forwardRef(({ children: s, className: t, loading: l, ...o }, r) => /* @__PURE__ */ a("ul", { className: m(p.list, t), ...o, "data-tx": "1.4.0", ref: r, children: [
8
+ s,
9
+ l ? /* @__PURE__ */ e(f, { type: "small" }) : null
10
10
  ] }));
11
- p.displayName = "List";
11
+ d.displayName = "List";
12
12
  export {
13
- p as List
13
+ d as List
14
14
  };
15
15
  //# sourceMappingURL=List.js.map
@@ -3,7 +3,7 @@ var p = (t, e, r) => e in t ? x(t, e, { enumerable: !0, configurable: !0, writab
3
3
  var o = (t, e, r) => p(t, typeof e != "symbol" ? e + "" : e, r);
4
4
  import { jsx as d } from "react/jsx-runtime";
5
5
  import E from "react";
6
- import { b, d as f, D as M, M as T, r as D, e as L, S as w, v as y, f as I, T as C, g as H } from "../../chunks/vendor-CehxOAkM.js";
6
+ import { b, d as f, D as M, M as T, r as D, e as L, S as w, v as y, f as I, T as C, g as H } from "../../chunks/vendor-Ba_pyhza.js";
7
7
  import { List as N } from "./List.js";
8
8
  class u extends H {
9
9
  }
@@ -1,7 +1,7 @@
1
1
  import { jsx as e } from "react/jsx-runtime";
2
2
  import i from "react";
3
- import { c as o } from "../../../chunks/vendor-CehxOAkM.js";
4
- const p = "listEmptyState__c6564239", l = {
3
+ import { c as o } from "../../../chunks/vendor-Ba_pyhza.js";
4
+ const p = "listEmptyState__34268a29", l = {
5
5
  listEmptyState: p
6
6
  }, r = i.forwardRef(
7
7
  ({ children: t, className: s, ...m }, a) => /* @__PURE__ */ e("div", { className: o(l.listEmptyState, s), ...m, ref: a, children: t })
@@ -3,7 +3,7 @@ import m, { useState as d } from "react";
3
3
  import { ListItemContext as l } from "./ListItemContext.js";
4
4
  const f = m.forwardRef(({ children: e, className: r, ...o }, s) => {
5
5
  const [a, i] = d(!1);
6
- return /* @__PURE__ */ t(l.Provider, { value: { selected: a, setSelected: i }, children: /* @__PURE__ */ t("li", { className: r, ...o, "data-tx": "1.2.0", ref: s, children: e }) });
6
+ return /* @__PURE__ */ t(l.Provider, { value: { selected: a, setSelected: i }, children: /* @__PURE__ */ t("li", { className: r, ...o, "data-tx": "1.4.0", ref: s, children: e }) });
7
7
  });
8
8
  f.displayName = "ListItem";
9
9
  export {
@@ -1,19 +1,19 @@
1
1
  import { jsx as c } from "react/jsx-runtime";
2
- import l, { useContext as a } from "react";
3
- import { c as i } from "../../../chunks/vendor-CehxOAkM.js";
4
- import { ListItemContext as r } from "./ListItemContext.js";
5
- const d = "listItemContent__4a7315b2", f = "selected__5f3a650a", t = {
2
+ import l, { useContext as i } from "react";
3
+ import { c as r } from "../../../chunks/vendor-Ba_pyhza.js";
4
+ import { ListItemContext as a } from "./ListItemContext.js";
5
+ const d = "listItemContent__902fc2d6", f = "selected__4e0411a2", t = {
6
6
  listItemContent: d,
7
7
  selected: f
8
8
  }, C = l.forwardRef(
9
9
  ({ children: e, className: s, ...o }, n) => {
10
- const { selected: m } = a(r);
10
+ const { selected: m } = i(a);
11
11
  return /* @__PURE__ */ c(
12
12
  "div",
13
13
  {
14
- className: i(t.listItemContent, { [t.selected]: m }, s),
14
+ className: r(t.listItemContent, { [t.selected]: m }, s),
15
15
  ...o,
16
- "data-tx": "1.2.0",
16
+ "data-tx": "1.4.0",
17
17
  ref: n,
18
18
  children: e
19
19
  }
@@ -1,13 +1,13 @@
1
1
  import { jsx as r } from "react/jsx-runtime";
2
2
  import m from "react";
3
- import { c as e } from "../../../chunks/vendor-CehxOAkM.js";
4
- const i = "listItemControls__3c447c18", c = {
3
+ import { c as e } from "../../../chunks/vendor-Ba_pyhza.js";
4
+ const i = "listItemControls__c5d8fb05", n = {
5
5
  listItemControls: i
6
- }, n = m.forwardRef(
7
- ({ children: t, className: o, ...s }, l) => /* @__PURE__ */ r("div", { className: e(c.listItemControls, o), ...s, ref: l, children: t })
6
+ }, a = m.forwardRef(
7
+ ({ children: t, className: o, ...s }, l) => /* @__PURE__ */ r("div", { className: e(n.listItemControls, o), ...s, ref: l, children: t })
8
8
  );
9
- n.displayName = "ListItemControls";
9
+ a.displayName = "ListItemControls";
10
10
  export {
11
- n as ListItemControls
11
+ a as ListItemControls
12
12
  };
13
13
  //# sourceMappingURL=ListItemControls.js.map
@@ -1,7 +1,7 @@
1
1
  import "react/jsx-runtime";
2
2
  import "react";
3
- import "../../../chunks/vendor-CehxOAkM.js";
4
- import { L as e } from "../../../chunks/ListItemControlsButton-BdtSkcyn.js";
3
+ import "../../../chunks/vendor-Ba_pyhza.js";
4
+ import { L as e } from "../../../chunks/ListItemControlsButton-BoEiexyr.js";
5
5
  import "../../Typography/enums.js";
6
6
  import "../../Typography/Text.js";
7
7
  export {
@@ -1,6 +1,6 @@
1
1
  import { jsx as o, jsxs as w, Fragment as _ } from "react/jsx-runtime";
2
2
  import P, { useRef as m, useState as E, createElement as b } from "react";
3
- import { a as O, c as g } from "../../../chunks/vendor-CehxOAkM.js";
3
+ import { a as O, c as g } from "../../../chunks/vendor-Ba_pyhza.js";
4
4
  import { ETextSize as K } from "../../Typography/enums.js";
5
5
  import { Text as T } from "../../Typography/Text.js";
6
6
  import { ButtonDropdownExtended as R } from "../../Button/ButtonDropdownExtended.js";
@@ -18,7 +18,7 @@ import { DropdownMobileListItem as H } from "../../Dropdown/mobile/DropdownMobil
18
18
  import "../../Loader/LoaderSmall/LoaderSmall.js";
19
19
  import "../../Loader/LoaderMiddle/LoaderMiddle.js";
20
20
  import { DropdownList as h } from "../../Dropdown/desktop/DropdownList.js";
21
- import { s as y, L as V } from "../../../chunks/ListItemControlsButton-BdtSkcyn.js";
21
+ import { s as y, L as V } from "../../../chunks/ListItemControlsButton-BoEiexyr.js";
22
22
  const G = P.forwardRef(
23
23
  (C, l) => {
24
24
  const { buttonAttributes: x, children: c, className: I, icon: N, options: d, selected: n, disabled: B, ...L } = C, f = m(null), u = m(null), [p, v] = E(), D = m(O()), A = ({ opened: e, setOpened: t }) => /* @__PURE__ */ o(
@@ -1,15 +1,15 @@
1
1
  import { jsx as t } from "react/jsx-runtime";
2
2
  import m from "react";
3
- import { c as s } from "../../../chunks/vendor-CehxOAkM.js";
4
- import { LoaderWidget as a } from "../../LoaderWidget/LoaderWidget.js";
3
+ import { c as s } from "../../../chunks/vendor-Ba_pyhza.js";
4
+ import { LoaderScreen as a } from "../../LoaderScreen/LoaderScreen.js";
5
5
  import { EComponentSize as r } from "../../../enums/EComponentSize.js";
6
- const d = "listItemLoading__b8b1290e", l = {
6
+ const d = "listItemLoading__ac3cdc4e", n = {
7
7
  listItemLoading: d
8
- }, n = m.forwardRef(
9
- ({ className: o, ...i }, e) => /* @__PURE__ */ t("div", { className: s(l.listItemLoading, o), ...i, ref: e, children: /* @__PURE__ */ t(a, { type: "small", size: r.MD }) })
8
+ }, c = m.forwardRef(
9
+ ({ className: o, ...e }, i) => /* @__PURE__ */ t("div", { className: s(n.listItemLoading, o), ...e, ref: i, children: /* @__PURE__ */ t(a, { type: "small", size: r.MD }) })
10
10
  );
11
- n.displayName = "ListItemLoading";
11
+ c.displayName = "ListItemLoading";
12
12
  export {
13
- n as ListItemLoading
13
+ c as ListItemLoading
14
14
  };
15
15
  //# sourceMappingURL=ListItemLoading.js.map
@@ -1,10 +1,10 @@
1
- import { jsxs as n, jsx as a } from "react/jsx-runtime";
2
- import p, { useContext as m, useEffect as d } from "react";
3
- import { c as k } from "../../../chunks/vendor-CehxOAkM.js";
4
- import { Checkbox as x } from "../../Checkbox/Checkbox.js";
5
- import { ListItemContext as f } from "./ListItemContext.js";
6
- const _ = "listItemSelectable__fab52e2f", L = "selected__5f3a650a", C = "checkboxWrapper__d32c8eaf", W = "childrenWrapper__1c864547", I = "checkboxLabel__2ca9cc02", S = "checkboxLabelClickArea__25895ea2", e = {
7
- listItemSelectable: _,
1
+ import { jsxs as n, jsx as t } from "react/jsx-runtime";
2
+ import p, { useContext as m, useEffect as k } from "react";
3
+ import { c as x } from "../../../chunks/vendor-Ba_pyhza.js";
4
+ import { Checkbox as d } from "../../Checkbox/Checkbox.js";
5
+ import { ListItemContext as _ } from "./ListItemContext.js";
6
+ const f = "listItemSelectable__92c53029", L = "selected__4e0411a2", C = "checkboxWrapper__f923c619", W = "childrenWrapper__01a2be1b", I = "checkboxLabel__ca7c9433", S = "checkboxLabelClickArea__98905eba", e = {
7
+ listItemSelectable: f,
8
8
  selected: L,
9
9
  checkboxWrapper: C,
10
10
  childrenWrapper: W,
@@ -12,26 +12,26 @@ const _ = "listItemSelectable__fab52e2f", L = "selected__5f3a650a", C = "checkbo
12
12
  checkboxLabelClickArea: S
13
13
  }, N = p.forwardRef(
14
14
  ({ selected: c, children: l, className: r, onSelect: s, ...o }, b) => {
15
- const { setSelected: t } = m(f), i = (h) => {
15
+ const { setSelected: a } = m(_), i = (h) => {
16
16
  s(h.target.checked);
17
17
  };
18
- return d(() => {
19
- t(c);
20
- }, [c, t]), /* @__PURE__ */ n(
18
+ return k(() => {
19
+ a(c);
20
+ }, [c, a]), /* @__PURE__ */ n(
21
21
  "div",
22
22
  {
23
- className: k(e.listItemSelectable, { [e.selected]: c }, r),
23
+ className: x(e.listItemSelectable, { [e.selected]: c }, r),
24
24
  ...o,
25
25
  ref: b,
26
26
  children: [
27
- /* @__PURE__ */ a("div", { className: e.childrenWrapper, children: l }),
28
- /* @__PURE__ */ a("div", { className: e.checkboxWrapper, children: /* @__PURE__ */ a(
29
- x,
27
+ /* @__PURE__ */ t("div", { className: e.childrenWrapper, children: l }),
28
+ /* @__PURE__ */ t("div", { className: e.checkboxWrapper, children: /* @__PURE__ */ t(
29
+ d,
30
30
  {
31
31
  checked: c,
32
32
  onChange: i,
33
33
  labelAttributes: { className: e.checkboxLabel },
34
- children: /* @__PURE__ */ a("span", { className: e.checkboxLabelClickArea })
34
+ children: /* @__PURE__ */ t("span", { className: e.checkboxLabelClickArea })
35
35
  }
36
36
  ) })
37
37
  ]
@@ -1,19 +1,19 @@
1
1
  import { jsx as e, jsxs as c } from "react/jsx-runtime";
2
2
  import d from "react";
3
- import { SwipeableArea as b } from "../../SwipeableArea/SwipeableArea.js";
4
- import { ListItem as I } from "./ListItem.js";
3
+ import { SwipeableArea as I } from "../../SwipeableArea/SwipeableArea.js";
4
+ import { ListItem as b } from "./ListItem.js";
5
5
  import { ListItemContent as L } from "./ListItemContent.js";
6
6
  import { ListItemControls as T } from "./ListItemControls.js";
7
7
  import { ListItemSelectable as h } from "./ListItemSelectable.js";
8
8
  import { ListItemTailRight as x } from "./ListItemTailRight.js";
9
- import { c as y } from "../../../chunks/vendor-CehxOAkM.js";
10
- const C = "listItemTable__b0ca459d", _ = {
9
+ import { c as y } from "../../../chunks/vendor-Ba_pyhza.js";
10
+ const C = "listItemTable__72486f35", _ = {
11
11
  listItemTable: C
12
12
  }, u = d.forwardRef(
13
- ({ children: o, className: s, controlButtons: t, onClickItem: l, onSelect: i, selected: r, swipeableAreaRef: a, ...n }, f) => {
13
+ ({ children: o, className: s, controlButtons: t, onClickItem: l, onSelect: i, selected: r, swipeableAreaRef: a, ...f }, n) => {
14
14
  const p = typeof i < "u" && typeof r < "u", m = () => /* @__PURE__ */ e(L, { onClick: l, children: o });
15
- return /* @__PURE__ */ e(I, { className: y(_.listItemTable, s), ...n, ref: f, children: /* @__PURE__ */ c(
16
- b,
15
+ return /* @__PURE__ */ e(b, { className: y(_.listItemTable, s), ...f, ref: n, children: /* @__PURE__ */ c(
16
+ I,
17
17
  {
18
18
  ref: a,
19
19
  rightSwipeableArea: t ? /* @__PURE__ */ e(T, { children: t }) : void 0,
@@ -1,7 +1,7 @@
1
1
  import { jsxs as l, jsx as t } from "react/jsx-runtime";
2
2
  import m from "react";
3
- import { c as o } from "../../../chunks/vendor-CehxOAkM.js";
4
- import { s } from "../../../chunks/ListItemTail.module-D_m5pMsh.js";
3
+ import { c as o } from "../../../chunks/vendor-Ba_pyhza.js";
4
+ import { s } from "../../../chunks/ListItemTail.module-BB5TJPEc.js";
5
5
  const r = m.forwardRef(
6
6
  ({ className: a, ...e }, i) => /* @__PURE__ */ l(
7
7
  "span",
@@ -1,7 +1,7 @@
1
1
  import { jsxs as m, jsx as t } from "react/jsx-runtime";
2
2
  import e from "react";
3
- import { c as o } from "../../../chunks/vendor-CehxOAkM.js";
4
- import { s } from "../../../chunks/ListItemTail.module-D_m5pMsh.js";
3
+ import { c as o } from "../../../chunks/vendor-Ba_pyhza.js";
4
+ import { s } from "../../../chunks/ListItemTail.module-BB5TJPEc.js";
5
5
  const r = e.forwardRef(
6
6
  ({ className: a, ...i }, l) => /* @__PURE__ */ m(
7
7
  "span",
@@ -1,12 +1,12 @@
1
1
  import { jsx as b } from "react/jsx-runtime";
2
2
  import p from "react";
3
- import { t as u, C as I, c as _ } from "../../../chunks/vendor-CehxOAkM.js";
3
+ import { x as u, C as I, c as _ } from "../../../chunks/vendor-Ba_pyhza.js";
4
4
  import { ListItem as y } from "./ListItem.js";
5
5
  import { ListSortableItemTarget as L } from "./ListSortableItemTarget.js";
6
- const R = "listSortableItem__42a6b413", N = "dragging__de06a03e", i = {
6
+ const R = "listSortableItem__18c325b0", x = "dragging__382d516f", i = {
7
7
  listSortableItem: R,
8
- dragging: N
9
- }, x = Object.assign(
8
+ dragging: x
9
+ }, N = Object.assign(
10
10
  p.forwardRef(function({ children: e, className: n, style: g, disabled: r, ...s }, t) {
11
11
  const { transform: m, transition: l, listeners: f, isDragging: a, setNodeRef: c, setActivatorNodeRef: S } = u({
12
12
  disabled: r,
@@ -33,8 +33,8 @@ const R = "listSortableItem__42a6b413", N = "dragging__de06a03e", i = {
33
33
  Target: L
34
34
  }
35
35
  );
36
- x.displayName = "ListSortableItem";
36
+ N.displayName = "ListSortableItem";
37
37
  export {
38
- x as ListSortableItem
38
+ N as ListSortableItem
39
39
  };
40
40
  //# sourceMappingURL=ListSortableItem.js.map
@@ -1,13 +1,13 @@
1
1
  import { jsx as s } from "react/jsx-runtime";
2
- import l from "react";
3
- import { c as e } from "../../../chunks/vendor-CehxOAkM.js";
4
- const a = "listSortableItemControls__117a3a7f", m = {
2
+ import e from "react";
3
+ import { c as l } from "../../../chunks/vendor-Ba_pyhza.js";
4
+ const a = "listSortableItemControls__f1ae30d6", m = {
5
5
  listSortableItemControls: a
6
- }, i = l.forwardRef(
6
+ }, i = e.forwardRef(
7
7
  ({ className: t, ...o }, r) => /* @__PURE__ */ s(
8
8
  "div",
9
9
  {
10
- className: e(m.listSortableItemControls, t),
10
+ className: l(m.listSortableItemControls, t),
11
11
  "data-draggable": "false",
12
12
  ...o,
13
13
  ref: r
@@ -1,10 +1,10 @@
1
1
  import { jsxs as i, jsx as e } from "react/jsx-runtime";
2
2
  import m from "react";
3
3
  import { DragdotsStrokeSrvIcon24 as n } from "@sberbusiness/icons-next";
4
- import { c as I } from "../../../chunks/vendor-CehxOAkM.js";
5
- const b = "listSortableItemTarget__bb934592", c = "dragging__de06a03e", S = "listSortableItemTargetContent__faf3b559", d = "listSortableItemTargetIcon__87b86d85", t = {
6
- listSortableItemTarget: b,
7
- dragging: c,
4
+ import { c as I } from "../../../chunks/vendor-Ba_pyhza.js";
5
+ const c = "listSortableItemTarget__88432b5a", b = "dragging__382d516f", S = "listSortableItemTargetContent__25581799", d = "listSortableItemTargetIcon__7bb0dc8d", t = {
6
+ listSortableItemTarget: c,
7
+ dragging: b,
8
8
  listSortableItemTargetContent: S,
9
9
  listSortableItemTargetIcon: d
10
10
  }, T = m.forwardRef(
@@ -3,7 +3,7 @@ import { AdvancedMouseSensor as m, AdvancedTouchSensor as s, ListSortable as i }
3
3
  import { ListItem as p } from "./components/ListItem.js";
4
4
  import { ListItemControls as x } from "./components/ListItemControls.js";
5
5
  import { ListItemContent as n } from "./components/ListItemContent.js";
6
- import { L as I } from "../../chunks/ListItemControlsButton-BdtSkcyn.js";
6
+ import { L as I } from "../../chunks/ListItemControlsButton-BoEiexyr.js";
7
7
  import { ListItemControlsButtonDropdown as b } from "./components/ListItemControlsButtonDropdown.js";
8
8
  import { ListEmptyState as C } from "./components/ListEmptyState.js";
9
9
  import { ListItemLoading as c } from "./components/ListItemLoading.js";
@@ -6,7 +6,7 @@ import { ListMasterHeader as a } from "./components/ListMasterHeader.js";
6
6
  import { SelectionControls as n } from "./components/SelectionControls.js";
7
7
  import { ListMasterFooterControls as f } from "./components/ListMasterFooterControls.js";
8
8
  import { ListMasterFooterDescription as L } from "./components/ListMasterFooterDescription.js";
9
- const o = ({ children: t, className: r, ...e }) => /* @__PURE__ */ i("div", { className: r, ...e, "data-tx": "1.2.0", children: t });
9
+ const o = ({ children: t, className: r, ...e }) => /* @__PURE__ */ i("div", { className: r, ...e, "data-tx": "1.4.0", children: t });
10
10
  o.Body = m;
11
11
  o.ChipGroup = s;
12
12
  o.Footer = p;
@@ -6,7 +6,7 @@ const s = e.forwardRef(
6
6
  {
7
7
  className: a,
8
8
  ...o,
9
- "data-tx": "1.2.0",
9
+ "data-tx": "1.4.0",
10
10
  ref: r,
11
11
  children: t
12
12
  }
@@ -1,7 +1,7 @@
1
1
  import { jsx as o } from "react/jsx-runtime";
2
2
  import p from "react";
3
- import { c as a } from "../../../chunks/vendor-CehxOAkM.js";
4
- const e = "listMasterChipGroup__fa6d4b51", l = {
3
+ import { c as a } from "../../../chunks/vendor-Ba_pyhza.js";
4
+ const e = "listMasterChipGroup__343f9055", l = {
5
5
  listMasterChipGroup: e
6
6
  }, m = p.forwardRef(
7
7
  ({ children: s, className: t, ...r }, i) => (
@@ -1,7 +1,7 @@
1
1
  import { jsx as i } from "react/jsx-runtime";
2
2
  import m from "react";
3
- import { c as f } from "../../../chunks/vendor-CehxOAkM.js";
4
- import { s as t } from "../../../chunks/ListMasterFooter.module-DXrsYZZo.js";
3
+ import { c as f } from "../../../chunks/vendor-Ba_pyhza.js";
4
+ import { s as t } from "../../../chunks/ListMasterFooter.module-DxZ_nXDV.js";
5
5
  const c = m.forwardRef(
6
6
  ({ children: r, className: s, sticky: o = !0, ...e }, a) => /* @__PURE__ */ i(
7
7
  "div",
@@ -1,7 +1,7 @@
1
1
  import { jsx as e } from "react/jsx-runtime";
2
2
  import a from "react";
3
- import { c as m } from "../../../chunks/vendor-CehxOAkM.js";
4
- import { s as i } from "../../../chunks/ListMasterFooter.module-DXrsYZZo.js";
3
+ import { c as m } from "../../../chunks/vendor-Ba_pyhza.js";
4
+ import { s as i } from "../../../chunks/ListMasterFooter.module-DxZ_nXDV.js";
5
5
  const l = a.forwardRef(
6
6
  ({ children: o, className: t, ...r }, s) => /* @__PURE__ */ e("div", { className: m(i.listMasterFooterControls, t), ...r, ref: s, children: o })
7
7
  );
@@ -1,7 +1,7 @@
1
1
  import { jsx as e } from "react/jsx-runtime";
2
2
  import i from "react";
3
- import { c as a } from "../../../chunks/vendor-CehxOAkM.js";
4
- import { s as m } from "../../../chunks/ListMasterFooter.module-DXrsYZZo.js";
3
+ import { c as a } from "../../../chunks/vendor-Ba_pyhza.js";
4
+ import { s as m } from "../../../chunks/ListMasterFooter.module-DxZ_nXDV.js";
5
5
  const p = i.forwardRef(
6
6
  ({ children: t, className: o, ...r }, s) => /* @__PURE__ */ e("div", { className: a(m.listMasterFooterDescription, o), ...r, ref: s, children: t })
7
7
  );
@@ -1,33 +1,33 @@
1
- import { jsx as d } from "react/jsx-runtime";
2
- import f, { useRef as c, useEffect as m } from "react";
3
- import { c as w } from "../../../chunks/vendor-CehxOAkM.js";
4
- const p = "listMasterHeader__b90a85dc", y = "sticky__7598fc0c", o = {
1
+ import { jsx as f } from "react/jsx-runtime";
2
+ import u, { useRef as o, useEffect as m } from "react";
3
+ import { c as w } from "../../../chunks/vendor-Ba_pyhza.js";
4
+ const p = "listMasterHeader__2d5f3949", y = "sticky__3b68f33d", c = {
5
5
  listMasterHeader: p,
6
6
  sticky: y
7
- }, H = f.forwardRef(
7
+ }, H = u.forwardRef(
8
8
  ({ children: i, className: n, sticky: a = !0, ...l }, t) => {
9
- const e = c(null), r = c(0);
9
+ const e = o(null), r = o(0);
10
10
  m(() => {
11
11
  if (e.current)
12
12
  return r.current = e.current.getBoundingClientRect().height, window.scrollTo({ top: window.scrollY + r.current }), () => {
13
13
  window.scrollTo({ top: Math.max(window.scrollY - r.current, 0) });
14
14
  };
15
15
  }, []);
16
- const u = (s) => {
16
+ const d = (s) => {
17
17
  e.current = s, typeof t == "function" ? t(s) : t && (t.current = s);
18
18
  };
19
- return /* @__PURE__ */ d(
19
+ return /* @__PURE__ */ f(
20
20
  "div",
21
21
  {
22
22
  className: w(
23
- o.listMasterHeader,
23
+ c.listMasterHeader,
24
24
  {
25
- [o.sticky]: a
25
+ [c.sticky]: a
26
26
  },
27
27
  n
28
28
  ),
29
29
  ...l,
30
- ref: u,
30
+ ref: d,
31
31
  children: i
32
32
  }
33
33
  );
@@ -1,22 +1,22 @@
1
1
  import { jsx as l } from "react/jsx-runtime";
2
2
  import n from "react";
3
- import { c as r } from "../../../chunks/vendor-CehxOAkM.js";
4
- const c = "selectionControls__d735f1fa", a = {
3
+ import { c as r } from "../../../chunks/vendor-Ba_pyhza.js";
4
+ const c = "selectionControls__d27558dc", i = {
5
5
  selectionControls: c
6
- }, i = n.forwardRef(
6
+ }, a = n.forwardRef(
7
7
  ({ children: o, className: t, ...s }, e) => /* @__PURE__ */ l(
8
8
  "div",
9
9
  {
10
- className: r(a.selectionControls, t),
10
+ className: r(i.selectionControls, t),
11
11
  ...s,
12
- "data-tx": "1.2.0",
12
+ "data-tx": "1.4.0",
13
13
  ref: e,
14
14
  children: o
15
15
  }
16
16
  )
17
17
  );
18
- i.displayName = "SelectionControls";
18
+ a.displayName = "SelectionControls";
19
19
  export {
20
- i as SelectionControls
20
+ a as SelectionControls
21
21
  };
22
22
  //# sourceMappingURL=SelectionControls.js.map
@@ -1,22 +1,23 @@
1
- import { jsxs as a, jsx as o } from "react/jsx-runtime";
2
- import { c as t } from "../../../chunks/vendor-CehxOAkM.js";
3
- const s = "loaderMiddle__e12e4b7b", e = "dot__14b9e44b", l = "dot1__ae5b292a", c = "dot2__06fc0871", n = "dot3__2e7f713f", i = "dot4__8bacad11", r = "line__3dca93de", d = {
4
- loaderMiddle: s,
5
- dot: e,
6
- dot1: l,
7
- dot2: c,
1
+ import { jsx as o, jsxs as t } from "react/jsx-runtime";
2
+ import { c as a } from "../../../chunks/vendor-Ba_pyhza.js";
3
+ const e = "loaderMiddle__98ad058f", s = "loaderMiddleDots__032610a5", l = "dot__92555a29", c = "dot1__ef208edd", i = "dot2__c8a9a5f8", n = "dot3__c33b0654", r = "dot4__4c47aa62", _ = "line__d450e1eb", d = {
4
+ loaderMiddle: e,
5
+ loaderMiddleDots: s,
6
+ dot: l,
7
+ dot1: c,
8
+ dot2: i,
8
9
  dot3: n,
9
- dot4: i,
10
- line: r
11
- }, _ = () => /* @__PURE__ */ a("div", { role: "status", "aria-label": "loading", className: d.loaderMiddle, children: [
10
+ dot4: r,
11
+ line: _
12
+ }, m = () => /* @__PURE__ */ o("div", { role: "status", "aria-label": "loading", className: d.loaderMiddle, children: /* @__PURE__ */ t("div", { className: d.loaderMiddleDots, children: [
12
13
  /* @__PURE__ */ o("span", { className: d.line }),
13
- /* @__PURE__ */ o("span", { className: t(d.dot, d.dot1) }),
14
- /* @__PURE__ */ o("span", { className: t(d.dot, d.dot2) }),
15
- /* @__PURE__ */ o("span", { className: t(d.dot, d.dot3) }),
16
- /* @__PURE__ */ o("span", { className: t(d.dot, d.dot4) })
17
- ] });
18
- _.displayName = "LoaderMiddle";
14
+ /* @__PURE__ */ o("span", { className: a(d.dot, d.dot1) }),
15
+ /* @__PURE__ */ o("span", { className: a(d.dot, d.dot2) }),
16
+ /* @__PURE__ */ o("span", { className: a(d.dot, d.dot3) }),
17
+ /* @__PURE__ */ o("span", { className: a(d.dot, d.dot4) })
18
+ ] }) });
19
+ m.displayName = "LoaderMiddle";
19
20
  export {
20
- _ as LoaderMiddle
21
+ m as LoaderMiddle
21
22
  };
22
23
  //# sourceMappingURL=LoaderMiddle.js.map
@@ -1,14 +1,14 @@
1
1
  import { jsxs as r, jsx as t } from "react/jsx-runtime";
2
- import { c as o } from "../../../chunks/vendor-CehxOAkM.js";
2
+ import { c as o } from "../../../chunks/vendor-Ba_pyhza.js";
3
3
  import { ELoaderSmallTheme as s } from "./enum.js";
4
4
  import { createSizeToClassNameMap as n } from "../../../utils/classNameMaps.js";
5
- const c = "loaderSmall__f1cee224", _ = "sm__98acc329", p = "dot__14b9e44b", f = "md__4a0e2795", i = "lg__69fb5107", N = "neutral__93664575", b = "brand__57e6f551", S = "dot1__ae5b292a", u = "dot2__06fc0871", T = "dot3__2e7f713f", a = {
5
+ const c = "loaderSmall__64fa4e1f", _ = "sm__0acad274", p = "dot__92555a29", i = "md__ae815afc", N = "lg__0464ee2e", f = "neutral__ed963c7b", b = "brand__30995eb3", S = "dot1__ef208edd", u = "dot2__c8a9a5f8", T = "dot3__c33b0654", a = {
6
6
  loaderSmall: c,
7
7
  sm: _,
8
8
  dot: p,
9
- md: f,
10
- lg: i,
11
- neutral: N,
9
+ md: i,
10
+ lg: N,
11
+ neutral: f,
12
12
  brand: b,
13
13
  dot1: S,
14
14
  dot2: u,