@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
@@ -3,8 +3,8 @@ import { useContext as d, useEffect as i } from "react";
3
3
  import { CaretdownStrokeSrvIcon16 as _ } from "@sberbusiness/icons-next";
4
4
  import { ButtonIcon as m } from "../components/Button/ButtonIcon.js";
5
5
  import { AlertProcessContext as x } from "../components/Alert/AlertProcess/AlertProcessContext.js";
6
- import { c as n } from "./vendor-CehxOAkM.js";
7
- const y = "alertProcess__eaed78aa", f = "withSpoiler__cc19138f", u = "themeIcon__aba42451", T = "alertTypeError__24d1fca5", b = "alertTypeInfo__cb4870ca", B = "alertTypeWarning__59a7be5f", C = "alertTypeSystem__0f6e0233", S = "alertTypeFeature__f9ee473b", h = "alertProcessContentBlock__293eb300", I = "closeButton__d5892596", P = "expandableContent__d270ba23", g = "expanded__1424f687", k = "expandButton__af5dba6e", e = {
6
+ import { c as s } from "./vendor-Ba_pyhza.js";
7
+ const y = "alertProcess__96d0382e", f = "withSpoiler__1b8522a9", u = "themeIcon__9bfe5b45", T = "alertTypeError__ced7c27f", b = "alertTypeInfo__3002ea3b", B = "alertTypeWarning__732e3a96", C = "alertTypeSystem__2c54c9e2", S = "alertTypeFeature__23e4269b", h = "alertProcessContentBlock__4e11d402", I = "closeButton__2943f73b", P = "expandableContent__fdd6ee88", g = "expanded__d208d07b", k = "expandButton__5db473d1", e = {
8
8
  alertProcess: y,
9
9
  withSpoiler: f,
10
10
  themeIcon: u,
@@ -18,17 +18,17 @@ const y = "alertProcess__eaed78aa", f = "withSpoiler__cc19138f", u = "themeIcon_
18
18
  expandableContent: P,
19
19
  expanded: g,
20
20
  expandButton: k
21
- }, v = ({ children: s, open: r, onOpen: o, ...l }) => {
22
- const { setHasSpoiler: a } = d(x);
23
- i(() => (a(!0), () => {
24
- a(!1);
25
- }), [a]);
21
+ }, v = ({ children: a, open: r, onOpen: o, ...l }) => {
22
+ const { setHasSpoiler: n } = d(x);
23
+ i(() => (n(!0), () => {
24
+ n(!1);
25
+ }), [n]);
26
26
  const c = () => {
27
27
  o == null || o(!r);
28
28
  };
29
29
  return /* @__PURE__ */ p("div", { className: e.spoiler, children: [
30
- /* @__PURE__ */ t("div", { className: n(e.expandableContent, { [e.expanded]: r }), ...l, children: s }),
31
- /* @__PURE__ */ t("div", { className: n(e.expandButton, { [e.expanded]: r }), children: /* @__PURE__ */ t(m, { onClick: c, children: /* @__PURE__ */ t(_, { paletteIndex: 5 }) }) })
30
+ /* @__PURE__ */ t("div", { className: s(e.expandableContent, { [e.expanded]: r }), ...l, children: a }),
31
+ /* @__PURE__ */ t("div", { className: s(e.expandButton, { [e.expanded]: r }), children: /* @__PURE__ */ t(m, { onClick: c, children: /* @__PURE__ */ t(_, { paletteIndex: 5 }) }) })
32
32
  ] });
33
33
  };
34
34
  v.displayName = "AlertProcessSpoiler";
@@ -36,4 +36,4 @@ export {
36
36
  v as A,
37
37
  e as s
38
38
  };
39
- //# sourceMappingURL=AlertProcessSpoiler-B3Xzh0I2.js.map
39
+ //# sourceMappingURL=AlertProcessSpoiler-BQv9QI6L.js.map
@@ -0,0 +1,17 @@
1
+ const n = "card__62cefc77", d = "roundingMD__09dbba7d", a = "roundingSM__c3d0f155", c = "general__053516a7", e = "secondary__3e66922e", o = "cardMedia__ba1eebcd", r = "cardContent__7c60f32e", t = "paddingMD__1545a74b", _ = "paddingSM__a2c332a8", s = "cardContentHeader__8af7a187", g = "cardContentFooter__9303bb26", i = {
2
+ card: n,
3
+ roundingMD: d,
4
+ roundingSM: a,
5
+ general: c,
6
+ secondary: e,
7
+ cardMedia: o,
8
+ cardContent: r,
9
+ paddingMD: t,
10
+ paddingSM: _,
11
+ cardContentHeader: s,
12
+ cardContentFooter: g
13
+ };
14
+ export {
15
+ i as c
16
+ };
17
+ //# sourceMappingURL=Card.module-kTbr6OQy.js.map
@@ -0,0 +1,90 @@
1
+ import { jsxs as h, jsx as a } from "react/jsx-runtime";
2
+ import b, { useCallback as x } from "react";
3
+ import { c as n } from "./vendor-Ba_pyhza.js";
4
+ import { EComponentSize as u } from "../enums/EComponentSize.js";
5
+ import { createSizeToClassNameMap as P } from "../utils/classNameMaps.js";
6
+ import { isKey as C } from "../utils/keyboard.js";
7
+ const N = "chipGroupItem__cf23b277", w = "chip__c125ac12", I = "lg__0de9bae2", B = "prefix__7e057460", G = "postfix__d3905a5d", g = "md__22d31d53", z = "sm__bb628cd7", M = "disabled__d194d8ca", S = "selected__320abf0a", j = "withPrefix__da7b2b2b", y = "withPostfix__65282022", E = "content__51db1204", e = {
8
+ chipGroupItem: N,
9
+ chip: w,
10
+ lg: I,
11
+ prefix: B,
12
+ postfix: G,
13
+ md: g,
14
+ sm: z,
15
+ disabled: M,
16
+ selected: S,
17
+ withPrefix: j,
18
+ withPostfix: y,
19
+ content: E
20
+ }, R = P(e), T = b.forwardRef(
21
+ ({ children: l, className: d, disabled: t, postfix: o, prefix: c, selected: p, size: r = u.MD, onKeyDown: s, ...m }, f) => {
22
+ const _ = x(
23
+ (i) => {
24
+ C(i.code, "SPACE") && i.preventDefault(), s == null || s(i);
25
+ },
26
+ [s]
27
+ );
28
+ return /* @__PURE__ */ h(
29
+ "span",
30
+ {
31
+ className: n(
32
+ e.chip,
33
+ e.chipGroupItem,
34
+ R[r],
35
+ {
36
+ [e.disabled]: !!t,
37
+ [e.selected]: !!p,
38
+ [e.withPostfix]: typeof o < "u",
39
+ [e.withPrefix]: typeof c < "u"
40
+ },
41
+ d
42
+ ),
43
+ role: "button",
44
+ tabIndex: t ? -1 : 0,
45
+ onKeyDown: _,
46
+ ...m,
47
+ ref: f,
48
+ children: [
49
+ c ? /* @__PURE__ */ a(
50
+ "span",
51
+ {
52
+ className: n(
53
+ e.prefix,
54
+ "hoverable",
55
+ // Для иконок.
56
+ {
57
+ disabled: !!t
58
+ // Для иконок.
59
+ }
60
+ ),
61
+ children: c
62
+ }
63
+ ) : null,
64
+ /* @__PURE__ */ a("span", { className: e.content, children: l }),
65
+ o ? /* @__PURE__ */ a(
66
+ "span",
67
+ {
68
+ className: n(
69
+ e.postfix,
70
+ "hoverable",
71
+ // Для иконок.
72
+ {
73
+ disabled: !!t
74
+ // Для иконок.
75
+ }
76
+ ),
77
+ children: o
78
+ }
79
+ ) : null
80
+ ]
81
+ }
82
+ );
83
+ }
84
+ );
85
+ T.displayName = "Chip";
86
+ export {
87
+ T as C,
88
+ e as s
89
+ };
90
+ //# sourceMappingURL=Chip-G6cGXuGj.js.map
@@ -0,0 +1,57 @@
1
+ import { jsx as w } from "react/jsx-runtime";
2
+ import f, { useEffect as E } from "react";
3
+ import { EVENT_KEY_CODES as i } from "../utils/keyboard.js";
4
+ import { c as k } from "./vendor-Ba_pyhza.js";
5
+ const u = "dropdownDesktopList__c85160d1", v = "sm__68d529af", y = "dropdownDesktopListItem__f75c375c", I = "dropdownDesktopListLoader__c994d3c6", l = "md__d6d3e86e", N = "lg__a0bb2012", b = "active__234b14fb", g = "selected__aa469e95", n = {
6
+ dropdownDesktopList: u,
7
+ sm: v,
8
+ dropdownDesktopListItem: y,
9
+ dropdownDesktopListLoader: I,
10
+ md: l,
11
+ lg: N,
12
+ active: b,
13
+ selected: g
14
+ }, O = [i.SPACE, i.ENTER], R = f.forwardRef(
15
+ ({
16
+ active: s,
17
+ keyCodesForSelection: m = O,
18
+ children: e,
19
+ className: a,
20
+ onClick: d,
21
+ onSelect: t,
22
+ selected: p,
23
+ ..._
24
+ }, c) => {
25
+ const r = (o) => {
26
+ const { keyCode: D } = o;
27
+ m.includes(D) && (o.preventDefault(), t == null || t());
28
+ }, L = (o) => {
29
+ t == null || t(), d == null || d(o);
30
+ };
31
+ return E(() => (s ? document.addEventListener("keydown", r) : document.removeEventListener("keydown", r), () => {
32
+ document.removeEventListener("keydown", r);
33
+ }), [s]), /* @__PURE__ */ w(
34
+ "div",
35
+ {
36
+ className: k(
37
+ n.dropdownDesktopListItem,
38
+ { [n.active]: !!s, [n.selected]: !!p },
39
+ a
40
+ ),
41
+ title: typeof e == "string" ? e : void 0,
42
+ role: "option",
43
+ "aria-selected": !!p,
44
+ ..._,
45
+ onClick: L,
46
+ ref: c,
47
+ children: e
48
+ }
49
+ );
50
+ }
51
+ );
52
+ R.displayName = "DropdownListItem";
53
+ export {
54
+ R as D,
55
+ n as s
56
+ };
57
+ //# sourceMappingURL=DropdownListItem-D2hzyBGc.js.map
@@ -0,0 +1,21 @@
1
+ const o = "dropdownMobileWrapper__581dc913", d = "dropdownMobileBackdrop__0490975e", e = "closing__06e4af19", n = "opening__a1670864", r = "opened__3b4d6687", p = "dropdownMobile__f260da02", l = "dropdownMobileHeader__c581f1f0", i = "dropdownMobileContent__d68b1314", t = "dropdownMobileFooter__26d75e48", w = "dropdownMobileListItem__a84da1f3", b = "selected__aa469e95", s = "dropdownMobileLoader__d00e9eea", M = "dropdownMobileClose__38003f5a", _ = "dropdownMobileListLoader__4d096640", c = "dropdownMobileBodyOverflow__c71c8a49", a = {
2
+ dropdownMobileWrapper: o,
3
+ dropdownMobileBackdrop: d,
4
+ closing: e,
5
+ opening: n,
6
+ opened: r,
7
+ dropdownMobile: p,
8
+ dropdownMobileHeader: l,
9
+ dropdownMobileContent: i,
10
+ dropdownMobileFooter: t,
11
+ dropdownMobileListItem: w,
12
+ selected: b,
13
+ dropdownMobileLoader: s,
14
+ dropdownMobileClose: M,
15
+ dropdownMobileListLoader: _,
16
+ dropdownMobileBodyOverflow: c
17
+ };
18
+ export {
19
+ a as s
20
+ };
21
+ //# sourceMappingURL=DropdownMobile.module-Fa_t6vz1.js.map
@@ -0,0 +1,9 @@
1
+ const o = "footerDescription__8950f9ed", t = "footerDescriptionContent__14a20043", e = "footerDescriptionControls__d38102d8", n = {
2
+ footerDescription: o,
3
+ footerDescriptionContent: t,
4
+ footerDescriptionControls: e
5
+ };
6
+ export {
7
+ n as s
8
+ };
9
+ //# sourceMappingURL=Footer.module-B3uFxh54.js.map
@@ -0,0 +1,62 @@
1
+ import { jsx as g } from "react/jsx-runtime";
2
+ import z, { useContext as A, useRef as P, useEffect as m } from "react";
3
+ import { FormFieldContext as R } from "../components/FormField/FormFieldContext.js";
4
+ import { c as k, a as y } from "./vendor-Ba_pyhza.js";
5
+ import { EFormFieldStatus as D } from "../components/FormField/enums.js";
6
+ import { createSizeToClassNameMap as M } from "../utils/classNameMaps.js";
7
+ const T = "formFieldInput__3674a3e7", W = "sm__b412b02f", j = "md__c14e799d", q = "lg__96871987", x = {
8
+ formFieldInput: T,
9
+ sm: W,
10
+ md: j,
11
+ lg: q
12
+ }, w = M(x), L = z.forwardRef((c, d) => {
13
+ const { className: S, id: s, onAnimationStart: r, onBlur: n, onFocus: i, placeholder: u, value: o, ...B } = c, { render: f, ...C } = c, { focused: E, status: b, setFocused: p, setId: l, setValueExist: a, size: F } = A(R), I = k(x.formFieldInput, w[F], S), t = P(s || y("input_"));
14
+ m(() => {
15
+ l(t.current);
16
+ }, []), m(() => {
17
+ s && (t.current = s, l(t.current));
18
+ }, [s, l]), m(() => {
19
+ a(!!o);
20
+ }, [a, o]);
21
+ const _ = (e) => {
22
+ p(!1), n == null || n(e);
23
+ }, h = (e) => {
24
+ p(!0), i == null || i(e);
25
+ }, N = (e) => {
26
+ e.animationName.startsWith("autofill-applied-hook") ? a(!0) : e.animationName.startsWith("autofill-cancelled-hook") && (o || a(!1)), r == null || r(e);
27
+ };
28
+ return f ? f(
29
+ {
30
+ ...C,
31
+ className: I,
32
+ id: t.current,
33
+ onAnimationStart: N,
34
+ onBlur: _,
35
+ onFocus: h,
36
+ /* Когда элемент не в фокусе, вместо placeholder показывается Label. */
37
+ placeholder: E ? u : " ",
38
+ size: F
39
+ },
40
+ d
41
+ ) : /* @__PURE__ */ g(
42
+ "input",
43
+ {
44
+ ...B,
45
+ className: I,
46
+ disabled: b === D.DISABLED,
47
+ id: t.current,
48
+ onAnimationStart: N,
49
+ onFocus: h,
50
+ onBlur: _,
51
+ value: o,
52
+ placeholder: u,
53
+ ref: d
54
+ }
55
+ );
56
+ });
57
+ L.displayName = "FormFieldInput";
58
+ export {
59
+ L as F,
60
+ x as s
61
+ };
62
+ //# sourceMappingURL=FormFieldInput-CO7yZP0Q.js.map
@@ -0,0 +1,9 @@
1
+ const e = "headerLayoutSidebar__33126cd8", a = "headerLayoutSidebarContent__b333486e", d = "headerLayoutSidebarSidebar__75293af7", r = {
2
+ headerLayoutSidebar: e,
3
+ headerLayoutSidebarContent: a,
4
+ headerLayoutSidebarSidebar: d
5
+ };
6
+ export {
7
+ r as s
8
+ };
9
+ //# sourceMappingURL=HeaderLayoutSidebar.module-CGCy_cim.js.map
@@ -0,0 +1,9 @@
1
+ const e = "headerTabs__fa441d4a", a = "headerTabsContent__92ee5871", s = "headerTabsControls__89ae6354", t = {
2
+ headerTabs: e,
3
+ headerTabsContent: a,
4
+ headerTabsControls: s
5
+ };
6
+ export {
7
+ t as s
8
+ };
9
+ //# sourceMappingURL=HeaderTabs.module-DMuNfILv.js.map
@@ -0,0 +1,11 @@
1
+ const e = "headerTitle__a270f183", t = "headerTitleControls__5bda1b58", l = "headerTitleContent__4228665c", o = {
2
+ headerTitle: e,
3
+ headerTitleControls: t,
4
+ "global-HeaderTitleControls": "global-HeaderTitleControls",
5
+ "global-HeaderTitleContent": "global-HeaderTitleContent",
6
+ headerTitleContent: l
7
+ };
8
+ export {
9
+ o as s
10
+ };
11
+ //# sourceMappingURL=HeaderTitle.module-BHyH17ZI.js.map
@@ -0,0 +1,22 @@
1
+ const e = "islandAccordion__db6c7789", o = "island__f3f7549f", c = "item__f682bfa9", t = "disabled__a504c28d", s = "sm__dce620d6", d = "md__8550acb1", n = "lg__77de81b7", _ = "header__73324065", r = "footer__5def73b8", a = "body__2fbcd93b", p = "opened__66a65923", i = "caretWrapper__1d94e2b9", b = "caretIcon__bf7c5ca7", l = "step__75cc324f", f = "titleWrapper__fe071575", m = "remove__19bfe67f", W = {
2
+ islandAccordion: e,
3
+ island: o,
4
+ item: c,
5
+ disabled: t,
6
+ sm: s,
7
+ md: d,
8
+ lg: n,
9
+ header: _,
10
+ footer: r,
11
+ body: a,
12
+ opened: p,
13
+ caretWrapper: i,
14
+ caretIcon: b,
15
+ step: l,
16
+ titleWrapper: f,
17
+ remove: m
18
+ };
19
+ export {
20
+ W as s
21
+ };
22
+ //# sourceMappingURL=IslandAccordion.module-7xAwgJVI.js.map
@@ -0,0 +1,56 @@
1
+ import { jsx as i, jsxs as y } from "react/jsx-runtime";
2
+ import { useState as v, useRef as _, useCallback as h, useLayoutEffect as C, useEffect as O } from "react";
3
+ import { WindowResizeListener as S } from "../components/WindowResizeListener/WindowResizeListener.js";
4
+ import { u as T, c as b } from "./vendor-Ba_pyhza.js";
5
+ import { LoaderScreen as R } from "../components/LoaderScreen/LoaderScreen.js";
6
+ const z = "lightBox__da82777f", A = "lightBoxBackdrop__588a3cfe", L = "lightBoxSideOverlayActive__13153a38", W = "lightBoxTopOverlayActive__4271910e", N = "lightBoxContent__265f0120", E = "loadingContentOverlay__b4a5e5cb", k = "lightBoxContentResizeWrapper__fe389b0a", w = "tempElSafariBug__f2b1ff44", H = "bodyOverflowHidden__41ad88f6", r = {
7
+ lightBox: z,
8
+ lightBoxBackdrop: A,
9
+ lightBoxSideOverlayActive: L,
10
+ lightBoxTopOverlayActive: W,
11
+ lightBoxContent: N,
12
+ loadingContentOverlay: E,
13
+ lightBoxContentResizeWrapper: k,
14
+ tempElSafariBug: w,
15
+ bodyOverflowHidden: H
16
+ }, j = (u) => {
17
+ const { children: l, className: a, isLoading: s, loadingTitle: c, ...p } = u, [d, B] = v(0), e = _(null), o = h(() => {
18
+ let n = 0;
19
+ const f = document.querySelector('[data-lightbox-component="controls"]');
20
+ f && (n += f.offsetHeight), B((g) => Math.abs(g - n) > 1 ? n : g);
21
+ }, []), t = h(() => {
22
+ e.current && clearTimeout(e.current), e.current = setTimeout(o, 100);
23
+ }, [o]);
24
+ C(() => (o(), () => {
25
+ e.current && clearTimeout(e.current);
26
+ }), []), O(() => {
27
+ t();
28
+ }, [l, a, s, c, t]);
29
+ const { ref: x } = T({
30
+ handleWidth: !0,
31
+ onResize: t,
32
+ refreshMode: "debounce",
33
+ refreshRate: 100
34
+ }), m = {
35
+ paddingTop: d
36
+ };
37
+ return /* @__PURE__ */ i(S, { onResize: t, children: /* @__PURE__ */ y(
38
+ "div",
39
+ {
40
+ className: b(a, r.lightBoxContent),
41
+ style: d ? m : void 0,
42
+ ...p,
43
+ children: [
44
+ l,
45
+ s && /* @__PURE__ */ i(R, { className: r.loadingContentOverlay, type: "middle", children: c }),
46
+ /* @__PURE__ */ i("div", { className: r.lightBoxContentResizeWrapper, ref: x })
47
+ ]
48
+ }
49
+ ) });
50
+ };
51
+ j.displayName = "LightBoxContent";
52
+ export {
53
+ j as L,
54
+ r as s
55
+ };
56
+ //# sourceMappingURL=LightBoxContent-DmoszkOx.js.map
@@ -0,0 +1,16 @@
1
+ const t = "lightBoxControls__b0a10e69", o = "withKeyboardEvent__aaabdaa3", e = "withoutKeyboardEvent__0af55ef7", l = "lightBoxPrev__ab32793a", i = "lightBoxNext__62be21f8", n = "lightBoxControlsDesktop__e52ad2aa", x = "lightBoxControlsMobile__b6d8b46f", h = "lightBoxClose__89c8771e", s = "lightBoxPrevButton__34751374", B = "lightBoxNextButton__e7813009", g = {
2
+ lightBoxControls: t,
3
+ withKeyboardEvent: o,
4
+ withoutKeyboardEvent: e,
5
+ lightBoxPrev: l,
6
+ lightBoxNext: i,
7
+ lightBoxControlsDesktop: n,
8
+ lightBoxControlsMobile: x,
9
+ lightBoxClose: h,
10
+ lightBoxPrevButton: s,
11
+ lightBoxNextButton: B
12
+ };
13
+ export {
14
+ g as s
15
+ };
16
+ //# sourceMappingURL=LightBoxControls.module-42gn-co3.js.map
@@ -0,0 +1,8 @@
1
+ const e = "lightBoxSideOverlayCloseDesktop__b6f86166", l = "lightBoxSideOverlayCloseMobile__9fcd6fff", o = {
2
+ lightBoxSideOverlayCloseDesktop: e,
3
+ lightBoxSideOverlayCloseMobile: l
4
+ };
5
+ export {
6
+ o as s
7
+ };
8
+ //# sourceMappingURL=LightBoxSideOverlayClose.module-B_oIB3rc.js.map
@@ -1,10 +1,10 @@
1
1
  import { jsx as s, jsxs as m } from "react/jsx-runtime";
2
2
  import i from "react";
3
- import { c as I } from "./vendor-CehxOAkM.js";
3
+ import { c as I } from "./vendor-Ba_pyhza.js";
4
4
  import { ETextSize as u } from "../components/Typography/enums.js";
5
- import { Text as a } from "../components/Typography/Text.js";
6
- const c = "listItemControlsButton__ddc3f92b", B = "listItemControlsButtonLabel__482eb9f4", C = "listItemControlsButtonDropdown__d5e8eea7", d = "listItemControlsButtonIcon__52576e40", p = "withText__c1d7aeee", _ = "listItemControlsButtonInner__8d750156", f = "withIcon__a28badeb", w = "buttonDropdownMenuItem__fcfcaf38", t = {
7
- listItemControlsButton: c,
5
+ import { Text as c } from "../components/Typography/Text.js";
6
+ const a = "listItemControlsButton__b0dd3f67", B = "listItemControlsButtonLabel__bc81bce7", C = "listItemControlsButtonDropdown__443299e2", d = "listItemControlsButtonIcon__5e7f3909", p = "withText__f5363776", _ = "listItemControlsButtonInner__276d9a84", f = "withIcon__7f9afd16", w = "buttonDropdownMenuItem__6565939d", t = {
7
+ listItemControlsButton: a,
8
8
  listItemControlsButtonLabel: B,
9
9
  listItemControlsButtonDropdown: C,
10
10
  listItemControlsButtonIcon: d,
@@ -30,7 +30,7 @@ const c = "listItemControlsButton__ddc3f92b", B = "listItemControlsButtonLabel__
30
30
  ref: r,
31
31
  children: /* @__PURE__ */ m("span", { className: t.listItemControlsButtonInner, children: [
32
32
  n ? /* @__PURE__ */ s("span", { className: t.listItemControlsButtonIcon, children: n }) : null,
33
- o ? /* @__PURE__ */ s(a, { className: t.listItemControlsButtonLabel, size: u.B4, children: o }) : null
33
+ o ? /* @__PURE__ */ s(c, { className: t.listItemControlsButtonLabel, size: u.B4, children: o }) : null
34
34
  ] })
35
35
  }
36
36
  )
@@ -40,4 +40,4 @@ export {
40
40
  b as L,
41
41
  t as s
42
42
  };
43
- //# sourceMappingURL=ListItemControlsButton-BdtSkcyn.js.map
43
+ //# sourceMappingURL=ListItemControlsButton-BoEiexyr.js.map
@@ -0,0 +1,12 @@
1
+ const t = "listItemTail__10a2260e", i = "listItemTailLine__5453c08e", l = "listItemTailTop__1dd3d02b", s = "listItemTailBottom__853dbd6c", e = "listItemTailRight__a6864865", a = "listItemTailLeft__9f3c7666", m = {
2
+ listItemTail: t,
3
+ listItemTailLine: i,
4
+ listItemTailTop: l,
5
+ listItemTailBottom: s,
6
+ listItemTailRight: e,
7
+ listItemTailLeft: a
8
+ };
9
+ export {
10
+ m as s
11
+ };
12
+ //# sourceMappingURL=ListItemTail.module-BB5TJPEc.js.map
@@ -0,0 +1,10 @@
1
+ const t = "listMasterFooter__caee51f7", s = "sticky__3b68f33d", o = "listMasterFooterDescription__1f5fbc75", e = "listMasterFooterControls__81bb4124", r = {
2
+ listMasterFooter: t,
3
+ sticky: s,
4
+ listMasterFooterDescription: o,
5
+ listMasterFooterControls: e
6
+ };
7
+ export {
8
+ r as s
9
+ };
10
+ //# sourceMappingURL=ListMasterFooter.module-DxZ_nXDV.js.map
@@ -0,0 +1,21 @@
1
+ const o = "notification__1cef9dc7", t = "extraBottomPadding__a9e405f8", i = "notificationHeader__a94f689b", n = "notificationIcon__5a451425", c = "notificationBody__77d9780d", a = "notificationBodyList__cbda7d24", e = "notificationBodyContent__6005176a", f = "notificationClose__b47f1bef", d = "showCloseOnHover__237304af", s = "notificationFooter__28339400", r = "notificationTime__4559a1a5", _ = "notificationGroupedWrapper__cdefd0fd", p = "notificationGroupedFooterItem__38da2413", B = "first__7cd688f0", y = "second__a42d9b58", m = {
2
+ notification: o,
3
+ extraBottomPadding: t,
4
+ notificationHeader: i,
5
+ notificationIcon: n,
6
+ notificationBody: c,
7
+ notificationBodyList: a,
8
+ notificationBodyContent: e,
9
+ notificationClose: f,
10
+ showCloseOnHover: d,
11
+ notificationFooter: s,
12
+ notificationTime: r,
13
+ notificationGroupedWrapper: _,
14
+ notificationGroupedFooterItem: p,
15
+ first: B,
16
+ second: y
17
+ };
18
+ export {
19
+ m as s
20
+ };
21
+ //# sourceMappingURL=Notification.module-C-HCMpAz.js.map
@@ -0,0 +1,18 @@
1
+ const e = "overlay__e2e1654a", o = "fixed__cd6ddb96", t = "closing__82950f74", n = "opened__a4793aa9", a = "overlayPanel__8fa4831d", l = "bottom__3e603b61", _ = "left__822780ce", c = "right__ecc8e27c", s = "top__93e9d9f9", r = "overlayContent__cb587381", y = "overlayMask__8f489797", d = "overlayOpened__64f5adca", v = {
2
+ overlay: e,
3
+ fixed: o,
4
+ closing: t,
5
+ opened: n,
6
+ overlayPanel: a,
7
+ bottom: l,
8
+ left: _,
9
+ right: c,
10
+ top: s,
11
+ overlayContent: r,
12
+ overlayMask: y,
13
+ overlayOpened: d
14
+ };
15
+ export {
16
+ v as s
17
+ };
18
+ //# sourceMappingURL=Overlay.module-q-oPhooa.js.map
@@ -0,0 +1,12 @@
1
+ const e = "page__1f5cd968", a = "bodyPage__2d253a5b", t = "headerPageTypeFirst__7d52c77e", s = "sticky__04faacf4", o = "footerPageTypeFirst__bf239990", g = {
2
+ page: e,
3
+ "global-page": "global-page",
4
+ bodyPage: a,
5
+ headerPageTypeFirst: t,
6
+ sticky: s,
7
+ footerPageTypeFirst: o
8
+ };
9
+ export {
10
+ g as s
11
+ };
12
+ //# sourceMappingURL=Page.module-DjGbJ-Uw.js.map
@@ -1,24 +1,24 @@
1
1
  import { jsxs as t, jsx as e } from "react/jsx-runtime";
2
- import { EStepperSize as l } from "../components/Stepper/enums.js";
3
- const n = "stepperStep__2e92e81a", d = "sm__9afec5d8", c = "content__520c1f50", i = "arrow__e19422e0", L = "md__742e3b45", r = "lg__0e09cb0d", a = "active__f2157b91", p = "disabled__bde8b965", C = "error__57287859", w = "warning__52fb6046", v = "completed__867625e2", h = "inactive__d4dcd3b9", _ = "focusVisible__7b895416", u = "icon__ffc02aae", f = "nonempty__55e458a0", o = {
4
- stepperStep: n,
5
- sm: d,
2
+ import { EStepperSize as d } from "../components/Stepper/enums.js";
3
+ const s = "stepperStep__1df87ab2", n = "sm__38a06386", c = "content__52004cc2", i = "arrow__8e041fed", L = "md__bfbd0a1b", a = "lg__56d8fc57", r = "active__d2950b71", p = "disabled__6f607a9a", C = "error__07a25611", w = "warning__4abb7dfc", v = "completed__4a724d97", h = "inactive__263e6be3", _ = "focusVisible__7c191dd0", f = "icon__daa2bc47", u = "nonempty__6cfdbdc4", o = {
4
+ stepperStep: s,
5
+ sm: n,
6
6
  content: c,
7
7
  arrow: i,
8
8
  md: L,
9
- lg: r,
10
- active: a,
9
+ lg: a,
10
+ active: r,
11
11
  disabled: p,
12
12
  error: C,
13
13
  warning: w,
14
14
  completed: v,
15
15
  inactive: h,
16
16
  focusVisible: _,
17
- icon: u,
18
- nonempty: f
19
- }, R = ({ size: s }) => {
20
- switch (s) {
21
- case l.SM:
17
+ icon: f,
18
+ nonempty: u
19
+ }, b = ({ size: l }) => {
20
+ switch (l) {
21
+ case d.SM:
22
22
  return /* @__PURE__ */ t(
23
23
  "svg",
24
24
  {
@@ -48,7 +48,7 @@ const n = "stepperStep__2e92e81a", d = "sm__9afec5d8", c = "content__520c1f50",
48
48
  ]
49
49
  }
50
50
  );
51
- case l.MD:
51
+ case d.MD:
52
52
  return /* @__PURE__ */ t(
53
53
  "svg",
54
54
  {
@@ -77,7 +77,7 @@ const n = "stepperStep__2e92e81a", d = "sm__9afec5d8", c = "content__520c1f50",
77
77
  ]
78
78
  }
79
79
  );
80
- case l.LG:
80
+ case d.LG:
81
81
  return /* @__PURE__ */ t(
82
82
  "svg",
83
83
  {
@@ -140,7 +140,7 @@ const n = "stepperStep__2e92e81a", d = "sm__9afec5d8", c = "content__520c1f50",
140
140
  }
141
141
  };
142
142
  export {
143
- R,
143
+ b as R,
144
144
  o as s
145
145
  };
146
- //# sourceMappingURL=RightBorderArrow-BA2_2Ry3.js.map
146
+ //# sourceMappingURL=RightBorderArrow-BHW7rkmN.js.map
@@ -0,0 +1,16 @@
1
+ const t = "smsInput__674270f6", s = "input__31e12dd7", n = "lg__f70a1dd0", c = "md__7cec3a7b", _ = "sm__92ec863f", e = "btnRefresh__68066ffc", m = "full__9f7968c9", f = "empty__6f352186", b = "btnSubmit__bb125a85", o = "active__3ae0509c", u = {
2
+ smsInput: t,
3
+ input: s,
4
+ lg: n,
5
+ md: c,
6
+ sm: _,
7
+ btnRefresh: e,
8
+ full: m,
9
+ empty: f,
10
+ btnSubmit: b,
11
+ active: o
12
+ };
13
+ export {
14
+ u as s
15
+ };
16
+ //# sourceMappingURL=SMSInput.module-Ci4GRnk_.js.map