@sberbusiness/triplex-next 1.0.0 → 1.1.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 (210) hide show
  1. package/chunks/{AlertProcessSpoiler-JRcPtVtX.js → AlertProcessSpoiler-Dp7FRT9y.js} +11 -11
  2. package/chunks/Card.module-Ddt7TQ9Z.js +17 -0
  3. package/chunks/{DropdownListItem-Be_BBAWh.js → DropdownListItem-y6Rvj_dd.js} +14 -14
  4. package/chunks/DropdownMobile.module-DrQkghxs.js +19 -0
  5. package/chunks/Footer.module-CKfl241m.js +11 -0
  6. package/chunks/FormFieldInput-apk1b0w6.js +63 -0
  7. package/chunks/HeaderLayoutSidebar.module-DTXnksBK.js +9 -0
  8. package/chunks/HeaderTabs.module-DVh6MotJ.js +9 -0
  9. package/chunks/HeaderTitle.module-DOeVL9zC.js +9 -0
  10. package/chunks/{ListItemControlsButton-DWU_FtH8.js → ListItemControlsButton-Cn3Vmrsn.js} +10 -10
  11. package/chunks/ListItemTail.module-BnbT61OM.js +12 -0
  12. package/chunks/ListMasterFooter.module-C6QFamKQ.js +10 -0
  13. package/chunks/Overlay.module-BTSQ5G6t.js +18 -0
  14. package/chunks/Page.module-DfMBQJob.js +16 -0
  15. package/chunks/TabsExtended.module-okOlTNQG.js +13 -0
  16. package/chunks/{TabsExtendedUtils-BLpZL63j.js → TabsExtendedUtils-NCwWiX7O.js} +4 -4
  17. package/chunks/TooltipDesktop.module-DTbnIWo1.js +19 -0
  18. package/chunks/UploadZoneInput-R9729LZY.js +33 -0
  19. package/chunks/utils-B0khB-Lq.js +36 -0
  20. package/chunks/{vendor-CF2m175I.js → vendor-D-uL_icH.js} +38 -34
  21. package/components/Alert/AlertContext/AlertContext.js +8 -8
  22. package/components/Alert/AlertProcess/AlertProcess.js +3 -3
  23. package/components/Alert/AlertProcess/components/AlertProcessSpoiler.js +2 -2
  24. package/components/Body/Body.js +6 -6
  25. package/components/Button/Button.js +95 -10
  26. package/components/Button/ButtonBase.js +1 -1
  27. package/components/Button/ButtonDropdown.js +184 -23
  28. package/components/Button/ButtonDropdownExtended.js +50 -6
  29. package/components/Button/ButtonIcon.js +5 -5
  30. package/components/Button/enums.js +5 -4
  31. package/components/Button/index.js +14 -12
  32. package/components/Card/CardAction.js +14 -14
  33. package/components/Card/CardStatic.js +3 -3
  34. package/components/Card/components/CardContent/CardContent.js +2 -2
  35. package/components/Card/components/CardContent/components/CardContentBody.js +2 -2
  36. package/components/Card/components/CardContent/components/CardContentFooter.js +2 -2
  37. package/components/Card/components/CardContent/components/CardContentHeader.js +2 -2
  38. package/components/Card/components/CardMedia.js +2 -2
  39. package/components/Card/utils.js +1 -1
  40. package/components/Checkbox/Checkbox.js +10 -10
  41. package/components/Checkbox/CheckboxXGroup.js +14 -14
  42. package/components/Checkbox/CheckboxYGroup.js +2 -2
  43. package/components/Col/Col.js +142 -142
  44. package/components/DesignTokens/DesignTokenUtils.js +2 -2
  45. package/components/DesignTokens/DesignTokensComponents.js +9 -7
  46. package/components/DesignTokens/DesignTokensComponentsThemeDark.js +15 -13
  47. package/components/DesignTokens/components/Button.js +27 -0
  48. package/components/DesignTokens/components/FormField.js +22 -4
  49. package/components/DesignTokens/components/Island.js +26 -0
  50. package/components/DesignTokens/components/index.js +17 -14
  51. package/components/Dropdown/Dropdown.js +22 -7
  52. package/components/Dropdown/desktop/DropdownDesktop.js +94 -18
  53. package/components/Dropdown/desktop/DropdownList.js +65 -94
  54. package/components/Dropdown/desktop/DropdownListItem.js +2 -2
  55. package/components/Dropdown/index.js +27 -25
  56. package/components/Dropdown/mobile/DropdownMobile.js +2 -2
  57. package/components/Dropdown/mobile/DropdownMobileBody.js +2 -2
  58. package/components/Dropdown/mobile/DropdownMobileClose.js +2 -2
  59. package/components/Dropdown/mobile/DropdownMobileFooter.js +2 -2
  60. package/components/Dropdown/mobile/DropdownMobileHeader.js +2 -2
  61. package/components/Dropdown/mobile/DropdownMobileInner.js +2 -2
  62. package/components/Dropdown/mobile/DropdownMobileInput.js +2 -2
  63. package/components/Dropdown/mobile/DropdownMobileList.js +2 -2
  64. package/components/Dropdown/mobile/DropdownMobileListItem.js +2 -2
  65. package/components/Footer/Footer.js +3 -3
  66. package/components/Footer/components/FooterDescription.js +2 -2
  67. package/components/Footer/components/FooterDescriptionContent.js +2 -2
  68. package/components/Footer/components/FooterDescriptionControls.js +2 -2
  69. package/components/FormField/FormField.js +52 -51
  70. package/components/FormField/FormFieldContext.js +8 -8
  71. package/components/FormField/components/FormFieldClear.js +13 -12
  72. package/components/FormField/components/FormFieldCounter.js +5 -5
  73. package/components/FormField/components/FormFieldDescription.js +2 -2
  74. package/components/FormField/components/FormFieldInput.js +4 -3
  75. package/components/FormField/components/FormFieldLabel.js +32 -31
  76. package/components/FormField/components/FormFieldMaskedInput.js +102 -92
  77. package/components/FormField/components/FormFieldPostfix.js +9 -9
  78. package/components/FormField/components/FormFieldPrefix.js +10 -10
  79. package/components/FormField/components/FormFieldTarget.js +49 -0
  80. package/components/FormField/components/FormFieldTextarea.js +25 -24
  81. package/components/FormField/enums.js +3 -2
  82. package/components/FormField/index.js +19 -16
  83. package/components/FormField/types.js +2 -0
  84. package/components/Header/Header.js +12 -12
  85. package/components/Header/components/HeaderLayoutSidebar/HeaderLayoutSidebar.js +2 -2
  86. package/components/Header/components/HeaderLayoutSidebar/HeaderLayoutSidebarContent.js +2 -2
  87. package/components/Header/components/HeaderLayoutSidebar/HeaderLayoutSidebarSidebar.js +2 -2
  88. package/components/Header/components/HeaderSubheader/HeaderSubheader.js +9 -9
  89. package/components/Header/components/HeaderTabs/HeaderTabs.js +2 -2
  90. package/components/Header/components/HeaderTabs/HeaderTabsContent.js +2 -2
  91. package/components/Header/components/HeaderTabs/HeaderTabsControls.js +2 -2
  92. package/components/Header/components/HeaderTitle/HeaderTitle.js +2 -2
  93. package/components/Header/components/HeaderTitle/HeaderTitleContent.js +2 -2
  94. package/components/Header/components/HeaderTitle/HeaderTitleControls.js +2 -2
  95. package/components/Island/Island.js +78 -0
  96. package/components/Island/components/IslandBody.js +10 -0
  97. package/components/Island/components/IslandFooter.js +10 -0
  98. package/components/Island/components/IslandHeader.js +10 -0
  99. package/components/Island/enums.js +7 -0
  100. package/components/Island/index.js +9 -0
  101. package/components/KeyDownListener/ComposedKeyDownListener.js +13 -0
  102. package/components/KeyDownListener/KeyDownListener.js +27 -0
  103. package/components/KeyDownListener/index.js +7 -0
  104. package/components/Link/Link.js +34 -34
  105. package/components/List/List.js +7 -7
  106. package/components/List/ListSortable.js +1 -1
  107. package/components/List/components/ListEmptyState.js +6 -6
  108. package/components/List/components/ListItem.js +1 -1
  109. package/components/List/components/ListItemContent.js +3 -3
  110. package/components/List/components/ListItemControls.js +2 -2
  111. package/components/List/components/ListItemControlsButton.js +2 -2
  112. package/components/List/components/ListItemControlsButtonDropdown.js +98 -15
  113. package/components/List/components/ListItemLoading.js +2 -2
  114. package/components/List/components/ListItemSelectable.js +9 -9
  115. package/components/List/components/ListItemTable.js +29 -19
  116. package/components/List/components/ListItemTailLeft.js +2 -2
  117. package/components/List/components/ListItemTailRight.js +2 -2
  118. package/components/List/components/ListSortableItem.js +37 -18
  119. package/components/List/components/ListSortableItemControls.js +2 -2
  120. package/components/List/components/ListSortableItemTarget.js +4 -4
  121. package/components/List/index.js +22 -20
  122. package/components/ListMaster/ListMaster.js +1 -1
  123. package/components/ListMaster/components/ListMasterBody.js +1 -1
  124. package/components/ListMaster/components/ListMasterChipGroup.js +6 -6
  125. package/components/ListMaster/components/ListMasterFooter.js +2 -2
  126. package/components/ListMaster/components/ListMasterFooterControls.js +2 -2
  127. package/components/ListMaster/components/ListMasterFooterDescription.js +2 -2
  128. package/components/ListMaster/components/ListMasterHeader.js +9 -9
  129. package/components/ListMaster/components/SelectionControls.js +3 -3
  130. package/components/Loader/LoaderMiddle/LoaderMiddle.js +2 -2
  131. package/components/Loader/LoaderSmall/LoaderSmall.js +11 -11
  132. package/components/LoaderWidget/LoaderWidget.js +9 -9
  133. package/components/Overlay/Overlay.js +2 -2
  134. package/components/Overlay/OverlayMask.js +2 -2
  135. package/components/Overlay/OverlayPanel.js +2 -2
  136. package/components/Page/Page.js +2 -2
  137. package/components/Page/components/BodyPage.js +2 -2
  138. package/components/Page/components/FooterPage.js +2 -2
  139. package/components/Page/components/HeaderPage.js +2 -2
  140. package/components/Pagination/components/PaginationExtended.js +3 -3
  141. package/components/Pagination/components/PaginationNavigationButton.js +4 -4
  142. package/components/Pagination/components/PaginationNavigationExtended.js +2 -2
  143. package/components/Pagination/components/PaginationPageButton.js +2 -2
  144. package/components/Pagination/components/PaginationPageEllipsis.js +3 -3
  145. package/components/Pagination/components/PaginationSelect.js +12 -12
  146. package/components/Pagination/utils/paginationUtils.js +10 -10
  147. package/components/Radio/Radio.js +3 -3
  148. package/components/Radio/RadioXGroup.js +13 -13
  149. package/components/Radio/RadioYGroup.js +5 -5
  150. package/components/Row/Row.js +6 -6
  151. package/components/SegmentedControl/SegmentedControl.js +64 -7
  152. package/components/SegmentedControl/SegmentedControlContext.js +13 -0
  153. package/components/SegmentedControl/SegmentedControlSegment.js +68 -8
  154. package/components/SegmentedControl/index.js +6 -6
  155. package/components/SelectExtendedField/SelectExtendedField.js +57 -0
  156. package/components/SelectExtendedField/components/SelectExtendedFieldDropdown.js +25 -0
  157. package/components/SelectExtendedField/components/SelectExtendedFieldDropdownDefault.js +86 -0
  158. package/components/SelectExtendedField/components/SelectExtendedFieldTarget.js +101 -0
  159. package/components/SelectExtendedField/index.js +9 -0
  160. package/components/Skeleton/Skeleton.js +10 -10
  161. package/components/SwipeableArea/SwipeableArea.js +11 -11
  162. package/components/TabsExtended/TabsExtended.js +7 -7
  163. package/components/TabsExtended/TabsExtendedUtils.js +1 -1
  164. package/components/TabsExtended/components/TabsExtendedContent.js +11 -11
  165. package/components/TabsExtended/components/TabsExtendedDropdownWrapper.js +2 -2
  166. package/components/TabsExtended/components/TabsExtendedTab.js +2 -2
  167. package/components/TabsExtended/components/TabsExtendedTabButton.js +2 -2
  168. package/components/TabsExtended/components/TabsExtendedTabsWrapper.js +7 -7
  169. package/components/TabsExtended/types.js +2 -0
  170. package/components/TextField/MaskedField.js +6 -89
  171. package/components/TextField/TextField.js +6 -89
  172. package/components/TextField/TextFieldBase.js +30 -89
  173. package/components/TextField/index.js +4 -3
  174. package/components/ThemeProvider/ThemeProvider.js +8 -8
  175. package/components/ThemeProvider/components/ThemeProviderView.js +8 -8
  176. package/components/Tooltip/components/common/TooltipBody.js +7 -7
  177. package/components/Tooltip/components/common/TooltipLink.js +17 -17
  178. package/components/Tooltip/components/common/TooltipXButton.js +1 -1
  179. package/components/Tooltip/components/desktop/components/TooltipDesktopBase.js +2 -2
  180. package/components/Tooltip/components/desktop/components/TooltipDesktopTip.js +2 -2
  181. package/components/Tooltip/components/mobile/TooltipMobile.js +9 -9
  182. package/components/Typography/Caption.js +14 -14
  183. package/components/Typography/Text.js +24 -24
  184. package/components/Typography/Title.js +24 -24
  185. package/components/Typography/utils.js +1 -1
  186. package/components/UploadZone/UploadZone.js +109 -7
  187. package/components/UploadZone/UploadZoneContext.js +11 -0
  188. package/components/UploadZone/components/UploadZoneInput.js +5 -140
  189. package/components/UploadZone/index.js +2 -3
  190. package/components/UploadZone/types.js +2 -0
  191. package/components/index.js +279 -248
  192. package/index.d.ts +212 -27
  193. package/index.js +277 -246
  194. package/package.json +13 -1
  195. package/styles/triplex-next.css +354 -333
  196. package/chunks/Card.module-Cr47sRot.js +0 -17
  197. package/chunks/DropdownMobile.module-PWShExJh.js +0 -19
  198. package/chunks/Footer.module-Gh9uBYjc.js +0 -11
  199. package/chunks/FormFieldInput-H-fZrt84.js +0 -62
  200. package/chunks/HeaderLayoutSidebar.module-MHb8aSSn.js +0 -9
  201. package/chunks/HeaderTabs.module-Bfiwon3k.js +0 -9
  202. package/chunks/HeaderTitle.module-xLu0Kmjc.js +0 -9
  203. package/chunks/ListItemTail.module-DZnDKE1u.js +0 -12
  204. package/chunks/ListMasterFooter.module-DVmdCqc9.js +0 -10
  205. package/chunks/Overlay.module-C1GsZR5Z.js +0 -18
  206. package/chunks/Page.module-kOw5fybr.js +0 -16
  207. package/chunks/TabsExtended.module-lHzNgwBX.js +0 -13
  208. package/chunks/TooltipDesktop.module-HNPcWO41.js +0 -19
  209. package/chunks/index-CgNJLkzr.js +0 -931
  210. package/chunks/utils-Ck6y6vsC.js +0 -36
@@ -2,24 +2,24 @@ import { jsxs as p, jsx as t } from "react/jsx-runtime";
2
2
  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
- import { AlertProcessContext as f } from "../components/Alert/AlertProcess/AlertProcessContext.js";
6
- import { c as a } from "./vendor-CF2m175I.js";
7
- const x = "alertProcess__f88103b0", y = "withSpoiler__ab0ce9cd", u = "themeIcon__c287e7b9", T = "alertTypeError__a57913b9", b = "alertTypeInfo__bcf3fa2f", B = "alertTypeWarning__7846f64c", C = "alertTypeSystem__364b23d1", S = "alertTypeFeature__2faedd73", h = "alertProcessContentBlock__6b826206", I = "closeButton__f71840d6", P = "expandableContent__9d4398a2", g = "expanded__1f7e5fe1", k = "expandButton__eb7c8c34", e = {
8
- alertProcess: x,
9
- withSpoiler: y,
5
+ import { AlertProcessContext as x } from "../components/Alert/AlertProcess/AlertProcessContext.js";
6
+ import { c as a } from "./vendor-D-uL_icH.js";
7
+ const y = "alertProcess__8e64c532", f = "withSpoiler__410d9bfa", u = "themeIcon__400809fe", T = "alertTypeError__21ee01db", B = "alertTypeInfo__562cff29", C = "alertTypeWarning__cc78b22b", S = "alertTypeSystem__686ce089", b = "alertTypeFeature__bec6165d", h = "alertProcessContentBlock__edb939a3", I = "closeButton__867687a3", P = "expandableContent__3e24f529", g = "expanded__8612010f", k = "expandButton__fae2a366", e = {
8
+ alertProcess: y,
9
+ withSpoiler: f,
10
10
  themeIcon: u,
11
11
  alertTypeError: T,
12
- alertTypeInfo: b,
13
- alertTypeWarning: B,
14
- alertTypeSystem: C,
15
- alertTypeFeature: S,
12
+ alertTypeInfo: B,
13
+ alertTypeWarning: C,
14
+ alertTypeSystem: S,
15
+ alertTypeFeature: b,
16
16
  alertProcessContentBlock: h,
17
17
  closeButton: I,
18
18
  expandableContent: P,
19
19
  expanded: g,
20
20
  expandButton: k
21
21
  }, v = ({ children: s, open: r, onOpen: o, ...l }) => {
22
- const { setHasSpoiler: n } = d(f);
22
+ const { setHasSpoiler: n } = d(x);
23
23
  i(() => (n(!0), () => {
24
24
  n(!1);
25
25
  }), [n]);
@@ -36,4 +36,4 @@ export {
36
36
  v as A,
37
37
  e as s
38
38
  };
39
- //# sourceMappingURL=AlertProcessSpoiler-JRcPtVtX.js.map
39
+ //# sourceMappingURL=AlertProcessSpoiler-Dp7FRT9y.js.map
@@ -0,0 +1,17 @@
1
+ const n = "card__39c1fb26", d = "roundingMD__092c6922", a = "roundingSM__a137511a", c = "general__d3a83765", o = "secondary__2b7000a4", r = "cardMedia__c1f9c663", t = "cardContent__a10eda82", e = "paddingMD__410c54bc", _ = "paddingSM__20b0be20", s = "cardContentHeader__9227bfad", g = "cardContentFooter__f33b6c31", i = {
2
+ card: n,
3
+ roundingMD: d,
4
+ roundingSM: a,
5
+ general: c,
6
+ secondary: o,
7
+ cardMedia: r,
8
+ cardContent: t,
9
+ paddingMD: e,
10
+ paddingSM: _,
11
+ cardContentHeader: s,
12
+ cardContentFooter: g
13
+ };
14
+ export {
15
+ i as c
16
+ };
17
+ //# sourceMappingURL=Card.module-Ddt7TQ9Z.js.map
@@ -1,16 +1,16 @@
1
- import { jsx as f } from "react/jsx-runtime";
2
- import E, { useEffect as u } from "react";
1
+ import { jsx as E } from "react/jsx-runtime";
2
+ import c, { useEffect as u } from "react";
3
3
  import { EVENT_KEY_CODES as m } from "../utils/keyboard.js";
4
- import { c as v } from "./vendor-CF2m175I.js";
5
- const D = "dropdownList__af69ba32", y = "dropdownListItem__3d1329e8", I = "active__8b03b7be", l = "selected__c4e3c9dc", n = {
4
+ import { c as v } from "./vendor-D-uL_icH.js";
5
+ const D = "dropdownList__817388c8", y = "dropdownListItem__31a65fb6", I = "active__89255bda", l = "selected__8d99569f", n = {
6
6
  dropdownList: D,
7
7
  dropdownListItem: y,
8
8
  active: I,
9
9
  selected: l,
10
- "dropdownList-sm": "dropdownList-sm__52fc8626",
11
- "dropdownList-md": "dropdownList-md__707fe405",
12
- "dropdownList-lg": "dropdownList-lg__a22ae7c7"
13
- }, N = [m.SPACE, m.ENTER], b = E.forwardRef(
10
+ "dropdownList-sm": "dropdownList-sm__8dc4ab26",
11
+ "dropdownList-md": "dropdownList-md__7a4175ee",
12
+ "dropdownList-lg": "dropdownList-lg__fa5c2095"
13
+ }, N = [m.SPACE, m.ENTER], O = c.forwardRef(
14
14
  ({
15
15
  active: d,
16
16
  keyCodesForSelection: p = N,
@@ -22,14 +22,14 @@ const D = "dropdownList__af69ba32", y = "dropdownListItem__3d1329e8", I = "activ
22
22
  ..._
23
23
  }, w) => {
24
24
  const r = (t) => {
25
- const { keyCode: c } = t;
26
- p.includes(c) && (t.preventDefault(), o == null || o());
25
+ const { keyCode: f } = t;
26
+ p.includes(f) && (t.preventDefault(), o == null || o());
27
27
  }, L = (t) => {
28
28
  o == null || o(), e == null || e(t);
29
29
  };
30
30
  return u(() => (d ? document.addEventListener("keydown", r) : document.removeEventListener("keydown", r), () => {
31
31
  document.removeEventListener("keydown", r);
32
- }), [d]), /* @__PURE__ */ f(
32
+ }), [d]), /* @__PURE__ */ E(
33
33
  "div",
34
34
  {
35
35
  className: v(
@@ -48,9 +48,9 @@ const D = "dropdownList__af69ba32", y = "dropdownListItem__3d1329e8", I = "activ
48
48
  );
49
49
  }
50
50
  );
51
- b.displayName = "DropdownListItem";
51
+ O.displayName = "DropdownListItem";
52
52
  export {
53
- b as D,
53
+ O as D,
54
54
  n as s
55
55
  };
56
- //# sourceMappingURL=DropdownListItem-Be_BBAWh.js.map
56
+ //# sourceMappingURL=DropdownListItem-y6Rvj_dd.js.map
@@ -0,0 +1,19 @@
1
+ const o = "dropdownMobileWrapper__678bfe69", e = "dropdownMobileBackdrop__7d99504e", d = "closing__f06243ca", n = "opening__f89f7b5d", r = "opened__75bbd4ce", p = "dropdownMobile__6bed7d81", l = "dropdownMobileHeader__184224e0", i = "dropdownMobileContent__a437c079", t = "dropdownMobileFooter__cf899081", b = "dropdownMobileListItem__d18d9da2", s = "selected__8d99569f", w = "dropdownMobileClose__33e1c9f9", c = "dropdownMobileBodyOverflow__ce8eb451", M = {
2
+ dropdownMobileWrapper: o,
3
+ dropdownMobileBackdrop: e,
4
+ closing: d,
5
+ opening: n,
6
+ opened: r,
7
+ dropdownMobile: p,
8
+ dropdownMobileHeader: l,
9
+ dropdownMobileContent: i,
10
+ dropdownMobileFooter: t,
11
+ dropdownMobileListItem: b,
12
+ selected: s,
13
+ dropdownMobileClose: w,
14
+ dropdownMobileBodyOverflow: c
15
+ };
16
+ export {
17
+ M as s
18
+ };
19
+ //# sourceMappingURL=DropdownMobile.module-DrQkghxs.js.map
@@ -0,0 +1,11 @@
1
+ const o = "footer__bf2ab7aa", t = "sticky__9eafa932", e = "footerDescription__39648b61", r = "footerDescriptionContent__19a2d759", s = "footerDescriptionControls__2419c078", n = {
2
+ footer: o,
3
+ sticky: t,
4
+ footerDescription: e,
5
+ footerDescriptionContent: r,
6
+ footerDescriptionControls: s
7
+ };
8
+ export {
9
+ n as s
10
+ };
11
+ //# sourceMappingURL=Footer.module-CKfl241m.js.map
@@ -0,0 +1,63 @@
1
+ import { jsx as S } from "react/jsx-runtime";
2
+ import A, { useContext as P, useRef as R, useEffect as u } from "react";
3
+ import { FormFieldContext as g } from "../components/FormField/FormFieldContext.js";
4
+ import { c as y, f as C } from "./vendor-D-uL_icH.js";
5
+ import { EFormFieldStatus as D } from "../components/FormField/enums.js";
6
+ const W = "formFieldInput__bb5e3b5a", b = {
7
+ formFieldInput: W,
8
+ "autofill-applied-hook": "autofill-applied-hook__7eaa7b01",
9
+ "autofill-cancelled-hook": "autofill-cancelled-hook__50e3428d",
10
+ "size-sm": "size-sm__eb9869a4",
11
+ "size-md": "size-md__450c5a48",
12
+ "size-lg": "size-lg__96a2c9be"
13
+ }, j = A.forwardRef((c, d) => {
14
+ const { className: N, id: o, onAnimationStart: l, onBlur: i, onFocus: r, placeholder: m, value: s, ...k } = c, { render: f, ...x } = c, { focused: B, status: E, setFocused: p, setId: n, setValueExist: a, size: F } = P(g), _ = y(b.formFieldInput, N, b[`size-${F}`]), t = R(o || C("input_"));
15
+ u(() => {
16
+ n(t.current);
17
+ }, []), u(() => {
18
+ o && (t.current = o, n(t.current));
19
+ }, [o, n]), u(() => {
20
+ a(!!s);
21
+ }, [a, s]);
22
+ const h = (e) => {
23
+ p(!1), i == null || i(e);
24
+ }, I = (e) => {
25
+ p(!0), r == null || r(e);
26
+ }, z = (e) => {
27
+ e.animationName.startsWith("autofill-applied-hook") ? a(!0) : e.animationName.startsWith("autofill-cancelled-hook") && !s && a(!1), l == null || l(e);
28
+ };
29
+ return f ? f(
30
+ {
31
+ ...x,
32
+ className: _,
33
+ id: t.current,
34
+ onAnimationStart: z,
35
+ onBlur: h,
36
+ onFocus: I,
37
+ /* Когда элемент не в фокусе, вместо placeholder показывается Label. */
38
+ placeholder: B ? m : " ",
39
+ size: F
40
+ },
41
+ d
42
+ ) : /* @__PURE__ */ S(
43
+ "input",
44
+ {
45
+ ...k,
46
+ className: _,
47
+ disabled: E === D.DISABLED,
48
+ id: t.current,
49
+ onAnimationStart: z,
50
+ onFocus: I,
51
+ onBlur: h,
52
+ value: s,
53
+ placeholder: m,
54
+ ref: d
55
+ }
56
+ );
57
+ });
58
+ j.displayName = "FormFieldInput";
59
+ export {
60
+ j as F,
61
+ b as s
62
+ };
63
+ //# sourceMappingURL=FormFieldInput-apk1b0w6.js.map
@@ -0,0 +1,9 @@
1
+ const e = "headerLayoutSidebar__b8c618af", a = "headerLayoutSidebarContent__7c268fdc", d = "headerLayoutSidebarSidebar__239bb135", r = {
2
+ headerLayoutSidebar: e,
3
+ headerLayoutSidebarContent: a,
4
+ headerLayoutSidebarSidebar: d
5
+ };
6
+ export {
7
+ r as s
8
+ };
9
+ //# sourceMappingURL=HeaderLayoutSidebar.module-DTXnksBK.js.map
@@ -0,0 +1,9 @@
1
+ const e = "headerTabs__a36edc06", a = "headerTabsContent__14317d3b", s = "headerTabsControls__b31b2182", t = {
2
+ headerTabs: e,
3
+ headerTabsContent: a,
4
+ headerTabsControls: s
5
+ };
6
+ export {
7
+ t as s
8
+ };
9
+ //# sourceMappingURL=HeaderTabs.module-DVh6MotJ.js.map
@@ -0,0 +1,9 @@
1
+ const e = "headerTitle__50e86bb7", t = "headerTitleControls__ab00cf26", o = "headerTitleContent__aedeb78e", l = {
2
+ headerTitle: e,
3
+ headerTitleControls: t,
4
+ headerTitleContent: o
5
+ };
6
+ export {
7
+ l as s
8
+ };
9
+ //# sourceMappingURL=HeaderTitle.module-DOeVL9zC.js.map
@@ -1,18 +1,18 @@
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-CF2m175I.js";
3
+ import { c as I } from "./vendor-D-uL_icH.js";
4
4
  import { ETextSize as u } from "../components/Typography/enums.js";
5
5
  import { Text as c } from "../components/Typography/Text.js";
6
- const a = "listItemControlsButton__6b9018a5", B = "listItemControlsButtonDropdown__87827c54", C = "listItemControlsButtonIcon__4c983c54", p = "withText__691bb910", _ = "listItemControlsButtonLabel__9bf1b59a", d = "listItemControlsButtonInner__258e8293", b = "withIcon__ec1d0d91", w = "buttonDropdownMenuItem__e57f55db", t = {
6
+ const a = "listItemControlsButton__36c16ab0", B = "listItemControlsButtonDropdown__5f40e124", C = "listItemControlsButtonIcon__d7be783f", d = "withText__8d59dcad", p = "listItemControlsButtonLabel__fcc92360", _ = "listItemControlsButtonInner__c242fb57", f = "withIcon__f870c5b0", w = "buttonDropdownMenuItem__19c7ea25", t = {
7
7
  listItemControlsButton: a,
8
8
  listItemControlsButtonDropdown: B,
9
9
  listItemControlsButtonIcon: C,
10
- withText: p,
11
- listItemControlsButtonLabel: _,
12
- listItemControlsButtonInner: d,
13
- withIcon: b,
10
+ withText: d,
11
+ listItemControlsButtonLabel: p,
12
+ listItemControlsButtonInner: _,
13
+ withIcon: f,
14
14
  buttonDropdownMenuItem: w
15
- }, f = i.forwardRef(
15
+ }, b = i.forwardRef(
16
16
  ({ children: o, className: e, icon: n, ...l }, r) => /* @__PURE__ */ s(
17
17
  "button",
18
18
  {
@@ -35,9 +35,9 @@ const a = "listItemControlsButton__6b9018a5", B = "listItemControlsButtonDropdow
35
35
  }
36
36
  )
37
37
  );
38
- f.displayName = "ListItemControlsButton";
38
+ b.displayName = "ListItemControlsButton";
39
39
  export {
40
- f as L,
40
+ b as L,
41
41
  t as s
42
42
  };
43
- //# sourceMappingURL=ListItemControlsButton-DWU_FtH8.js.map
43
+ //# sourceMappingURL=ListItemControlsButton-Cn3Vmrsn.js.map
@@ -0,0 +1,12 @@
1
+ const t = "listItemTail__d93df2ab", i = "listItemTailLine__aedb86ee", l = "listItemTailTop__932876fc", e = "listItemTailBottom__48b3ea77", s = "listItemTailRight__70229f90", a = "listItemTailLeft__c9dc0872", m = {
2
+ listItemTail: t,
3
+ listItemTailLine: i,
4
+ listItemTailTop: l,
5
+ listItemTailBottom: e,
6
+ listItemTailRight: s,
7
+ listItemTailLeft: a
8
+ };
9
+ export {
10
+ m as s
11
+ };
12
+ //# sourceMappingURL=ListItemTail.module-BnbT61OM.js.map
@@ -0,0 +1,10 @@
1
+ const t = "listMasterFooter__7aeea717", s = "sticky__23534040", o = "listMasterFooterDescription__a09cd7bc", e = "listMasterFooterControls__710275e6", 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-C6QFamKQ.js.map
@@ -0,0 +1,18 @@
1
+ const o = "overlay__3c48d3e6", e = "fixed__a0d9dc48", t = "closing__040635ba", a = "opened__498bbc1a", n = "overlayPanel__c52a54d9", l = "bottom__fcdec415", _ = "left__7a67d9c4", c = "right__140450a4", s = "top__3dd51b7a", r = "overlayContent__0d3e9a27", d = "overlayMask__b5a8fb36", y = "overlayOpened__7085715f", v = {
2
+ overlay: o,
3
+ fixed: e,
4
+ closing: t,
5
+ opened: a,
6
+ overlayPanel: n,
7
+ bottom: l,
8
+ left: _,
9
+ right: c,
10
+ top: s,
11
+ overlayContent: r,
12
+ overlayMask: d,
13
+ overlayOpened: y
14
+ };
15
+ export {
16
+ v as s
17
+ };
18
+ //# sourceMappingURL=Overlay.module-BTSQ5G6t.js.map
@@ -0,0 +1,16 @@
1
+ const e = "page__b2d8d5e9", a = "headerPageBackground__5ff7e097", o = "footerPageBackground__4f961f2f", r = "headerPageSticky__7c1a09df", t = "footerPageSticky__c6bd7124", g = "headerPageStuck__29b30583", c = "footerPageStuck__3a6eddc6", d = "observerTarget__71b4d10d", P = "headerPage__a957ec72", _ = "bodyPage__dedc7826", k = {
2
+ page: e,
3
+ headerPageBackground: a,
4
+ footerPageBackground: o,
5
+ headerPageSticky: r,
6
+ footerPageSticky: t,
7
+ headerPageStuck: g,
8
+ footerPageStuck: c,
9
+ observerTarget: d,
10
+ headerPage: P,
11
+ bodyPage: _
12
+ };
13
+ export {
14
+ k as s
15
+ };
16
+ //# sourceMappingURL=Page.module-DfMBQJob.js.map
@@ -0,0 +1,13 @@
1
+ const t = "tabsExtended__684cf259", d = "tabsExtendedContent__5c27ffbb", e = "tabsExtendedTab__e71498e8", n = "tabsExtendedDropdown__ddd6fda6", a = "tabsReal__00b3527a", s = "tabsFake__d85bf3ff", b = "hidden__4d9d4166", o = {
2
+ tabsExtended: t,
3
+ tabsExtendedContent: d,
4
+ tabsExtendedTab: e,
5
+ tabsExtendedDropdown: n,
6
+ tabsReal: a,
7
+ tabsFake: s,
8
+ hidden: b
9
+ };
10
+ export {
11
+ o as s
12
+ };
13
+ //# sourceMappingURL=TabsExtended.module-okOlTNQG.js.map
@@ -1,8 +1,8 @@
1
1
  import { ETabsExtendedTabButtonSize as t } from "../components/TabsExtended/enums.js";
2
2
  import { ETextSize as e } from "../components/Typography/enums.js";
3
- const d = "tabsExtendedTabButton__3fdcd910", a = "lg__aa45a580", o = "md__50d0f7b6", n = "sm__6500f9e7", c = "selected__518572e3", s = {
4
- tabsExtendedTabButton: d,
5
- lg: a,
3
+ const a = "tabsExtendedTabButton__699df4a7", d = "lg__5ac6590c", o = "md__e073d814", n = "sm__aec1686c", c = "selected__06c3a67b", s = {
4
+ tabsExtendedTabButton: a,
5
+ lg: d,
6
6
  md: o,
7
7
  sm: n,
8
8
  selected: c
@@ -20,4 +20,4 @@ export {
20
20
  s,
21
21
  _ as t
22
22
  };
23
- //# sourceMappingURL=TabsExtendedUtils-BLpZL63j.js.map
23
+ //# sourceMappingURL=TabsExtendedUtils-NCwWiX7O.js.map
@@ -0,0 +1,19 @@
1
+ const t = "tooltipDesktop__af6baa69", o = "tooltipBody__46422487", p = "tooltipXButton__5ccd4e98", l = "tooltipDesktopContent__5b0d5293", i = "closable__20e3c88b", s = "tooltipSM__876ecfcc", e = "tooltipLG__9267197c", c = "tooltipOverlay__1bd5cdbf", n = "tooltipDesktopTip__871ab998", _ = "down__521823e5", a = "up__8048226c", b = "left__bb76289f", d = "right__ec6887f3", k = {
2
+ tooltipDesktop: t,
3
+ tooltipBody: o,
4
+ tooltipXButton: p,
5
+ tooltipDesktopContent: l,
6
+ closable: i,
7
+ tooltipSM: s,
8
+ tooltipLG: e,
9
+ tooltipOverlay: c,
10
+ tooltipDesktopTip: n,
11
+ down: _,
12
+ up: a,
13
+ left: b,
14
+ right: d
15
+ };
16
+ export {
17
+ k as s
18
+ };
19
+ //# sourceMappingURL=TooltipDesktop.module-DTbnIWo1.js.map
@@ -0,0 +1,33 @@
1
+ import l, { createElement as r } from "react";
2
+ import { UploadZoneContext as u } from "../components/UploadZone/UploadZoneContext.js";
3
+ import { c as d } from "./vendor-D-uL_icH.js";
4
+ const s = "uploadZone__7ef466bf", c = "uploadZoneDragArea__6231c055", Z = "uploadZoneContainerDragArea__a8a3ff63", i = "uploadZoneInput__0b13730b", f = {
5
+ uploadZone: s,
6
+ uploadZoneDragArea: c,
7
+ uploadZoneContainerDragArea: Z,
8
+ uploadZoneInput: i
9
+ }, g = ({ className: n, ...a }) => {
10
+ const e = l.useContext(u), t = (o) => {
11
+ e.onChange(o.target.files, o);
12
+ }, p = (o) => {
13
+ o.currentTarget.value = "";
14
+ };
15
+ return /* @__PURE__ */ r(
16
+ "input",
17
+ {
18
+ ...a,
19
+ type: "file",
20
+ className: d(n, f.uploadZoneInput),
21
+ onChange: t,
22
+ onClick: p,
23
+ ref: e.setInputNode,
24
+ key: "uploadZoneInput"
25
+ }
26
+ );
27
+ };
28
+ g.displayName = "UploadZone";
29
+ export {
30
+ g as U,
31
+ f as s
32
+ };
33
+ //# sourceMappingURL=UploadZoneInput-R9729LZY.js.map
@@ -0,0 +1,36 @@
1
+ import { EFontType as r } from "../components/Typography/enums.js";
2
+ const e = "underline__f2a38d82", n = "strikethrough__1df3bc6b", s = "underlineStrikethrough__1beb1767", o = "typography__cbd2707b", a = "primary__05b50598", c = "complementary__030527d3", i = "secondary__3e82148a", _ = "tertiary__127ba3d8", y = "disabled__1f871a58", d = "brand__a39d762b", p = "info__71095f44", m = "success__dc30835a", b = "error__68f78401", h = "warning__c3f794a7", l = "system__8496bb25", u = "compact__c3239e1e", t = {
3
+ underline: e,
4
+ strikethrough: n,
5
+ underlineStrikethrough: s,
6
+ typography: o,
7
+ primary: a,
8
+ complementary: c,
9
+ secondary: i,
10
+ tertiary: _,
11
+ disabled: y,
12
+ brand: d,
13
+ info: p,
14
+ success: m,
15
+ error: b,
16
+ warning: h,
17
+ system: l,
18
+ compact: u
19
+ }, f = {
20
+ [r.PRIMARY]: t.primary,
21
+ [r.COMPLEMENTARY]: t.complementary,
22
+ [r.SECONDARY]: t.secondary,
23
+ [r.TERTIARY]: t.tertiary,
24
+ [r.DISABLED]: t.disabled,
25
+ [r.BRAND]: t.brand,
26
+ [r.INFO]: t.info,
27
+ [r.SUCCESS]: t.success,
28
+ [r.ERROR]: t.error,
29
+ [r.WARNING]: t.warning,
30
+ [r.SYSTEM]: t.system
31
+ };
32
+ export {
33
+ f as m,
34
+ t
35
+ };
36
+ //# sourceMappingURL=utils-B0khB-Lq.js.map
@@ -807,6 +807,9 @@ var Ph = Zl(function(e, r, t, n) {
807
807
  function dy(e, r) {
808
808
  return Uu(e, r);
809
809
  }
810
+ function hy(e) {
811
+ return e === void 0;
812
+ }
810
813
  var Dh = Math.ceil, Ih = Math.max;
811
814
  function qh(e, r, t, n) {
812
815
  for (var i = -1, a = Ih(Dh((r - e) / (t || 1)), 0), o = Array(a); a--; )
@@ -818,8 +821,8 @@ function Eh(e) {
818
821
  return n && typeof n != "number" && Mu(r, t, n) && (t = n = void 0), r = ot(r), t === void 0 ? (t = r, r = 0) : t = ot(t), n = n === void 0 ? r < t ? 1 : -1 : ot(n), qh(r, t, n);
819
822
  };
820
823
  }
821
- var hy = Eh(), Mh = 0;
822
- function vy(e) {
824
+ var vy = Eh(), Mh = 0;
825
+ function py(e) {
823
826
  var r = ++Mh;
824
827
  return yd(e) + r;
825
828
  }
@@ -1159,7 +1162,7 @@ function jh() {
1159
1162
  })(Mr)), Mr.exports;
1160
1163
  }
1161
1164
  var Lh = jh();
1162
- const py = /* @__PURE__ */ Xu(Lh);
1165
+ const gy = /* @__PURE__ */ Xu(Lh);
1163
1166
  function $h(e, r, { signal: t, edges: n } = {}) {
1164
1167
  let i, a = null;
1165
1168
  const o = n != null && n.includes("leading"), s = n == null || n.includes("trailing"), u = () => {
@@ -1258,7 +1261,7 @@ const Kh = (e, r, t, n) => {
1258
1261
  height: e.contentRect.height
1259
1262
  };
1260
1263
  };
1261
- function gy({ skipOnMount: e = !1, refreshMode: r, refreshRate: t = 1e3, refreshOptions: n, handleWidth: i = !0, handleHeight: a = !0, targetRef: o, observerOptions: s, onResize: u, disableRerender: c = !1 } = {}) {
1264
+ function yy({ skipOnMount: e = !1, refreshMode: r, refreshRate: t = 1e3, refreshOptions: n, handleWidth: i = !0, handleHeight: a = !0, targetRef: o, observerOptions: s, onResize: u, disableRerender: c = !1 } = {}) {
1262
1265
  const f = N(e), l = zh(u), [d, v] = de({
1263
1266
  width: void 0,
1264
1267
  height: void 0
@@ -2859,7 +2862,7 @@ function _p() {
2859
2862
  return xi = i, xi;
2860
2863
  }
2861
2864
  var mp = _p();
2862
- const yy = /* @__PURE__ */ Xu(mp);
2865
+ const by = /* @__PURE__ */ Xu(mp);
2863
2866
  function wp() {
2864
2867
  return !!(typeof window < "u" && window.document && window.document.createElement);
2865
2868
  }
@@ -2974,7 +2977,7 @@ function bc(e) {
2974
2977
  return n.getAttribute(gc(r)) === e;
2975
2978
  });
2976
2979
  }
2977
- function by(e) {
2980
+ function _y(e) {
2978
2981
  var r = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, t = bc(e, r);
2979
2982
  if (t) {
2980
2983
  var n = et(r);
@@ -2988,7 +2991,7 @@ function Rp(e, r) {
2988
2991
  $i.set(e, i), e.removeChild(n);
2989
2992
  }
2990
2993
  }
2991
- function _y(e, r) {
2994
+ function my(e, r) {
2992
2995
  var t = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {}, n = et(t), i = na(n), a = lu(lu({}, t), {}, {
2993
2996
  styles: i
2994
2997
  });
@@ -3397,7 +3400,7 @@ var Z;
3397
3400
  })(Z || (Z = {}));
3398
3401
  function Gr() {
3399
3402
  }
3400
- function my(e, r) {
3403
+ function wy(e, r) {
3401
3404
  return L(
3402
3405
  () => ({
3403
3406
  sensor: e,
@@ -3407,7 +3410,7 @@ function my(e, r) {
3407
3410
  [e, r]
3408
3411
  );
3409
3412
  }
3410
- function wy() {
3413
+ function Sy() {
3411
3414
  for (var e = arguments.length, r = new Array(e), t = 0; t < e; t++)
3412
3415
  r[t] = arguments[t];
3413
3416
  return L(
@@ -4967,7 +4970,7 @@ var je;
4967
4970
  (function(e) {
4968
4971
  e[e.Uninitialized = 0] = "Uninitialized", e[e.Initializing = 1] = "Initializing", e[e.Initialized = 2] = "Initialized";
4969
4972
  })(je || (je = {}));
4970
- const Sy = /* @__PURE__ */ Yc(function(r) {
4973
+ const Ty = /* @__PURE__ */ Yc(function(r) {
4971
4974
  var t, n, i, a;
4972
4975
  let {
4973
4976
  id: o,
@@ -5490,14 +5493,14 @@ function Yg(e, r, t) {
5490
5493
  };
5491
5494
  return r.top + e.y <= t.top ? n.y = t.top - r.top : r.bottom + e.y >= t.top + t.height && (n.y = t.top + t.height - r.bottom), r.left + e.x <= t.left ? n.x = t.left - r.left : r.right + e.x >= t.left + t.width && (n.x = t.left + t.width - r.right), n;
5492
5495
  }
5493
- const Ty = (e) => {
5496
+ const Cy = (e) => {
5494
5497
  let {
5495
5498
  containerNodeRect: r,
5496
5499
  draggingNodeRect: t,
5497
5500
  transform: n
5498
5501
  } = e;
5499
5502
  return !t || !r ? n : Yg(n, t, r);
5500
- }, Cy = (e) => {
5503
+ }, Oy = (e) => {
5501
5504
  let {
5502
5505
  transform: r
5503
5506
  } = e;
@@ -5552,7 +5555,7 @@ const Lc = (e) => {
5552
5555
  }, Er = {
5553
5556
  scaleX: 1,
5554
5557
  scaleY: 1
5555
- }, Oy = (e) => {
5558
+ }, xy = (e) => {
5556
5559
  var r;
5557
5560
  let {
5558
5561
  activeIndex: t,
@@ -5605,7 +5608,7 @@ const $c = "Sortable", Bc = /* @__PURE__ */ ue.createContext({
5605
5608
  droppable: !1
5606
5609
  }
5607
5610
  });
5608
- function xy(e) {
5611
+ function Ay(e) {
5609
5612
  let {
5610
5613
  children: r,
5611
5614
  id: t,
@@ -5703,7 +5706,7 @@ function oy(e) {
5703
5706
  a && o(null);
5704
5707
  }, [a]), a;
5705
5708
  }
5706
- function Ay(e) {
5709
+ function Ry(e) {
5707
5710
  let {
5708
5711
  animateLayoutChanges: r = ty,
5709
5712
  attributes: t,
@@ -5863,29 +5866,30 @@ function sy(e, r) {
5863
5866
  q.Down, q.Right, q.Up, q.Left;
5864
5867
  export {
5865
5868
  Fr as C,
5866
- Sy as D,
5869
+ Ty as D,
5867
5870
  yr as M,
5868
- xy as S,
5871
+ Ay as S,
5869
5872
  pg as T,
5870
- my as a,
5871
- Cy as b,
5873
+ wy as a,
5874
+ Oy as b,
5872
5875
  ly as c,
5873
5876
  jc as d,
5874
5877
  vg as e,
5875
- fy as f,
5876
- hy as g,
5877
- gy as h,
5878
+ py as f,
5879
+ fy as g,
5880
+ vy as h,
5878
5881
  dy as i,
5879
- vy as j,
5880
- wp as k,
5881
- _y as l,
5882
- by as m,
5883
- py as n,
5884
- Lh as o,
5885
- yy as p,
5886
- Ay as q,
5887
- Ty as r,
5888
- wy as u,
5889
- Oy as v
5882
+ yy as j,
5883
+ hy as k,
5884
+ gy as l,
5885
+ Lh as m,
5886
+ wp as n,
5887
+ my as o,
5888
+ by as p,
5889
+ _y as q,
5890
+ Cy as r,
5891
+ Ry as s,
5892
+ Sy as u,
5893
+ xy as v
5890
5894
  };
5891
- //# sourceMappingURL=vendor-CF2m175I.js.map
5895
+ //# sourceMappingURL=vendor-D-uL_icH.js.map