@sberbusiness/triplex-next 0.1.4 → 0.1.5
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.
- package/README.md +145 -0
- package/chunks/AlertProcessSpoiler-Dz7CKApv.js +39 -0
- package/chunks/Card.module-BVAy3tJd.js +17 -0
- package/chunks/DropdownListItem-CwqothNf.js +56 -0
- package/chunks/DropdownMobile.module-zLTfuu5W.js +19 -0
- package/chunks/Footer.module-C8ediOIN.js +11 -0
- package/chunks/FormFieldInput-Cmc0beZ5.js +62 -0
- package/chunks/HeaderLayoutSidebar.module-DUesMumi.js +9 -0
- package/chunks/HeaderTabs.module-B8b_Vmmv.js +9 -0
- package/chunks/HeaderTitle.module-CS0vKAYw.js +9 -0
- package/chunks/ListItemControlsButton-Bn_onrHQ.js +43 -0
- package/chunks/ListItemTail.module-8r8-WRy-.js +12 -0
- package/chunks/ListMasterFooter.module-Bylyf04G.js +10 -0
- package/chunks/Overlay.module-BfeGcilV.js +18 -0
- package/chunks/Page.module-DI3KI2pW.js +16 -0
- package/chunks/TabsExtended.module-De1gs7fV.js +13 -0
- package/chunks/TabsExtendedUtils-CZCrojKY.js +23 -0
- package/chunks/TooltipDesktop.module-0Me4J_t3.js +19 -0
- package/chunks/index-1QUfI5kD.js +931 -0
- package/chunks/utils-DUlFnyF3.js +36 -0
- package/chunks/vendor-CF2m175I.js +5891 -0
- package/components/Alert/AlertContext/AlertContext.js +52 -0
- package/components/Alert/AlertProcess/AlertProcess.js +60 -0
- package/components/Alert/AlertProcess/AlertProcessContext.js +10 -0
- package/components/Alert/AlertProcess/components/AlertProcessSpoiler.js +11 -0
- package/components/Alert/AlertTypeUtils.js +12 -0
- package/components/Alert/EAlertType.js +5 -0
- package/components/Alert/index.js +11 -0
- package/components/Body/Body.js +12 -0
- package/components/Body/index.js +5 -0
- package/components/Button/Button.js +14 -0
- package/components/Button/ButtonBase.js +8 -0
- package/components/Button/ButtonDropdown.js +26 -0
- package/components/Button/ButtonDropdownExtended.js +9 -0
- package/components/Button/ButtonIcon.js +29 -0
- package/components/Button/enums.js +7 -0
- package/components/Button/index.js +16 -0
- package/components/Card/CardAction.js +109 -0
- package/components/Card/CardStatic.js +34 -0
- package/components/Card/components/CardContent/CardContent.js +31 -0
- package/components/Card/components/CardContent/components/CardContentBody.js +9 -0
- package/components/Card/components/CardContent/components/CardContentFooter.js +9 -0
- package/components/Card/components/CardContent/components/CardContentHeader.js +9 -0
- package/components/Card/components/CardMedia.js +12 -0
- package/components/Card/enums.js +7 -0
- package/components/Card/index.js +11 -0
- package/components/Card/types.js +2 -0
- package/components/Card/utils.js +14 -0
- package/components/Checkbox/Checkbox.js +36 -0
- package/components/Checkbox/CheckboxXGroup.js +20 -0
- package/components/Checkbox/CheckboxYGroup.js +13 -0
- package/components/Checkbox/enum.js +5 -0
- package/components/Checkbox/index.js +11 -0
- package/components/Col/Col.js +183 -0
- package/components/Col/index.js +5 -0
- package/components/DesignTokens/DesignTokenUtils.js +82 -0
- package/components/DesignTokens/DesignTokensComponents.js +111 -0
- package/components/DesignTokens/DesignTokensComponentsThemeDark.js +111 -0
- package/components/DesignTokens/DesignTokensCore.js +466 -0
- package/components/DesignTokens/DesignTokensCoreThemeDark.js +6 -0
- package/components/DesignTokens/GetTokensValueByTheme.js +11 -0
- package/components/DesignTokens/components/AlertContext.js +20 -0
- package/components/DesignTokens/components/AlertProcess.js +23 -0
- package/components/DesignTokens/components/Button.js +107 -0
- package/components/DesignTokens/components/Card.js +53 -0
- package/components/DesignTokens/components/Checkbox.js +35 -0
- package/components/DesignTokens/components/Dropdown.js +11 -0
- package/components/DesignTokens/components/DropdownList.js +20 -0
- package/components/DesignTokens/components/DropdownMobile.js +23 -0
- package/components/DesignTokens/components/DropdownMobileList.js +11 -0
- package/components/DesignTokens/components/FooterPage.js +9 -0
- package/components/DesignTokens/components/FormField.js +50 -0
- package/components/DesignTokens/components/HeaderPage.js +9 -0
- package/components/DesignTokens/components/Link.js +20 -0
- package/components/DesignTokens/components/ListItem.js +20 -0
- package/components/DesignTokens/components/ListItemControlsButton.js +11 -0
- package/components/DesignTokens/components/ListMaster.js +23 -0
- package/components/DesignTokens/components/Loader.js +11 -0
- package/components/DesignTokens/components/LoaderWidget.js +17 -0
- package/components/DesignTokens/components/Overlay.js +11 -0
- package/components/DesignTokens/components/Page.js +9 -0
- package/components/DesignTokens/components/Pagination.js +23 -0
- package/components/DesignTokens/components/Radio.js +41 -0
- package/components/DesignTokens/components/SegmentedControl.js +20 -0
- package/components/DesignTokens/components/SegmentedControlSegment.js +158 -0
- package/components/DesignTokens/components/Skeleton.js +20 -0
- package/components/DesignTokens/components/Tabs.js +26 -0
- package/components/DesignTokens/components/Tooltip.js +40 -0
- package/components/DesignTokens/components/Typography.js +41 -0
- package/components/DesignTokens/components/UploadZone.js +23 -0
- package/components/DesignTokens/components/index.js +90 -0
- package/components/DesignTokens/index.js +11 -0
- package/components/DesignTokens/types/DesignTokenTypes.js +2 -0
- package/components/DesignTokens/types/DesignTokensTypes.js +134 -0
- package/components/Dropdown/Dropdown.js +10 -0
- package/components/Dropdown/DropdownListContext.js +10 -0
- package/components/Dropdown/desktop/DropdownDesktop.js +21 -0
- package/components/Dropdown/desktop/DropdownList.js +97 -0
- package/components/Dropdown/desktop/DropdownListItem.js +9 -0
- package/components/Dropdown/enums.js +8 -0
- package/components/Dropdown/index.js +32 -0
- package/components/Dropdown/mobile/DropdownMobile.js +22 -0
- package/components/Dropdown/mobile/DropdownMobileBody.js +12 -0
- package/components/Dropdown/mobile/DropdownMobileClose.js +14 -0
- package/components/Dropdown/mobile/DropdownMobileFooter.js +12 -0
- package/components/Dropdown/mobile/DropdownMobileHeader.js +15 -0
- package/components/Dropdown/mobile/DropdownMobileInner.js +56 -0
- package/components/Dropdown/mobile/DropdownMobileInput.js +12 -0
- package/components/Dropdown/mobile/DropdownMobileList.js +21 -0
- package/components/Dropdown/mobile/DropdownMobileListItem.js +37 -0
- package/components/Dropdown/mobile/index.js +21 -0
- package/components/Footer/Footer.js +29 -0
- package/components/Footer/components/FooterDescription.js +20 -0
- package/components/Footer/components/FooterDescriptionContent.js +12 -0
- package/components/Footer/components/FooterDescriptionControls.js +12 -0
- package/components/Footer/index.js +11 -0
- package/components/FormField/FormField.js +76 -0
- package/components/FormField/FormFieldContext.js +27 -0
- package/components/FormField/FormFieldDescriptionContext.js +13 -0
- package/components/FormField/components/FormFieldClear.js +29 -0
- package/components/FormField/components/FormFieldCounter.js +16 -0
- package/components/FormField/components/FormFieldDescription.js +16 -0
- package/components/FormField/components/FormFieldInput.js +9 -0
- package/components/FormField/components/FormFieldLabel.js +42 -0
- package/components/FormField/components/FormFieldMaskedInput.js +95 -0
- package/components/FormField/components/FormFieldMaskedInputPresets.js +168 -0
- package/components/FormField/components/FormFieldPostfix.js +24 -0
- package/components/FormField/components/FormFieldPrefix.js +24 -0
- package/components/FormField/components/FormFieldTextarea.js +42 -0
- package/components/FormField/consts.js +5 -0
- package/components/FormField/enums.js +5 -0
- package/components/FormField/index.js +25 -0
- package/components/FormGroup/FormGroup.js +8 -0
- package/components/FormGroup/index.js +5 -0
- package/components/Gap/Gap.js +8 -0
- package/components/Gap/index.js +5 -0
- package/components/Header/Header.js +40 -0
- package/components/Header/components/HeaderLayoutSidebar/HeaderLayoutSidebar.js +20 -0
- package/components/Header/components/HeaderLayoutSidebar/HeaderLayoutSidebarContent.js +12 -0
- package/components/Header/components/HeaderLayoutSidebar/HeaderLayoutSidebarSidebar.js +12 -0
- package/components/Header/components/HeaderSubheader/HeaderSubheader.js +22 -0
- package/components/Header/components/HeaderTabs/HeaderTabs.js +20 -0
- package/components/Header/components/HeaderTabs/HeaderTabsContent.js +12 -0
- package/components/Header/components/HeaderTabs/HeaderTabsControls.js +12 -0
- package/components/Header/components/HeaderTitle/HeaderTitle.js +20 -0
- package/components/Header/components/HeaderTitle/HeaderTitleContent.js +12 -0
- package/components/Header/components/HeaderTitle/HeaderTitleControls.js +12 -0
- package/components/Header/index.js +25 -0
- package/components/Link/Link.js +72 -0
- package/components/Link/index.js +5 -0
- package/components/List/List.js +23 -0
- package/components/List/ListSortable.js +75 -0
- package/components/List/components/ListEmptyState.js +13 -0
- package/components/List/components/ListItem.js +21 -0
- package/components/List/components/ListItemContent.js +27 -0
- package/components/List/components/ListItemContext.js +10 -0
- package/components/List/components/ListItemControls.js +13 -0
- package/components/List/components/ListItemControlsButton.js +10 -0
- package/components/List/components/ListItemControlsButtonDropdown.js +22 -0
- package/components/List/components/ListItemLoading.js +13 -0
- package/components/List/components/ListItemSelectable.js +46 -0
- package/components/List/components/ListItemTable.js +22 -0
- package/components/List/components/ListItemTailLeft.js +24 -0
- package/components/List/components/ListItemTailRight.js +24 -0
- package/components/List/components/ListSortableItem.js +21 -0
- package/components/List/components/ListSortableItemControls.js +21 -0
- package/components/List/components/ListSortableItemTarget.js +28 -0
- package/components/List/index.js +35 -0
- package/components/ListMaster/ListMaster.js +21 -0
- package/components/ListMaster/components/ListMasterBody.js +19 -0
- package/components/ListMaster/components/ListMasterChipGroup.js +18 -0
- package/components/ListMaster/components/ListMasterFooter.js +26 -0
- package/components/ListMaster/components/ListMasterFooterControls.js +12 -0
- package/components/ListMaster/components/ListMasterFooterDescription.js +12 -0
- package/components/ListMaster/components/ListMasterHeader.js +40 -0
- package/components/ListMaster/components/SelectionControls.js +22 -0
- package/components/ListMaster/index.js +19 -0
- package/components/Loader/LoaderMiddle/LoaderMiddle.js +22 -0
- package/components/Loader/LoaderSmall/LoaderSmall.js +48 -0
- package/components/Loader/LoaderSmall/enum.js +6 -0
- package/components/Loader/index.js +10 -0
- package/components/LoaderWidget/LoaderWidget.js +28 -0
- package/components/LoaderWidget/index.js +5 -0
- package/components/MediaWidth/MediaBetweenWidth.js +9 -0
- package/components/MediaWidth/MediaMaxWidth.js +6 -0
- package/components/MediaWidth/MediaMinWidth.js +6 -0
- package/components/MediaWidth/MediaWidth.js +10 -0
- package/components/MediaWidth/index.js +13 -0
- package/components/MediaWidth/useMatchMedia.js +14 -0
- package/components/MobileView/MobileView.js +8 -0
- package/components/MobileView/index.js +5 -0
- package/components/Overlay/Overlay.js +57 -0
- package/components/Overlay/OverlayBase.js +28 -0
- package/components/Overlay/OverlayMask.js +19 -0
- package/components/Overlay/OverlayPanel.js +46 -0
- package/components/Page/Page.js +23 -0
- package/components/Page/components/BodyPage.js +11 -0
- package/components/Page/components/FooterPage.js +39 -0
- package/components/Page/components/HeaderPage.js +42 -0
- package/components/Page/components/enums.js +6 -0
- package/components/Page/index.js +8 -0
- package/components/Pagination/Pagination.js +22 -0
- package/components/Pagination/components/PaginationExtended.js +22 -0
- package/components/Pagination/components/PaginationNavigation.js +67 -0
- package/components/Pagination/components/PaginationNavigationButton.js +29 -0
- package/components/Pagination/components/PaginationNavigationExtended.js +13 -0
- package/components/Pagination/components/PaginationNavigationExtendedItem.js +10 -0
- package/components/Pagination/components/PaginationPageButton.js +29 -0
- package/components/Pagination/components/PaginationPageEllipsis.js +13 -0
- package/components/Pagination/components/PaginationSelect.js +35 -0
- package/components/Pagination/enums.js +5 -0
- package/components/Pagination/index.js +23 -0
- package/components/Pagination/utils/paginationUtils.js +34 -0
- package/components/Portal/Portal.js +6 -0
- package/components/Radio/Radio.js +30 -0
- package/components/Radio/RadioXGroup.js +20 -0
- package/components/Radio/RadioYGroup.js +13 -0
- package/components/Radio/enum.js +5 -0
- package/components/Radio/index.js +11 -0
- package/components/Row/Row.js +14 -0
- package/components/Row/index.js +5 -0
- package/components/SegmentedControl/SegmentedControl.js +10 -0
- package/components/SegmentedControl/SegmentedControlSegment.js +11 -0
- package/components/SegmentedControl/enums.js +7 -0
- package/components/SegmentedControl/index.js +11 -0
- package/components/SegmentedControl/types.js +2 -0
- package/components/Skeleton/Skeleton.js +22 -0
- package/components/Skeleton/enums.js +5 -0
- package/components/Skeleton/index.js +7 -0
- package/components/SwipeableArea/SwipeableArea.js +140 -0
- package/components/SwipeableArea/index.js +5 -0
- package/components/TabsExtended/TabsExtended.js +38 -0
- package/components/TabsExtended/TabsExtendedContext.js +17 -0
- package/components/TabsExtended/TabsExtendedUtils.js +8 -0
- package/components/TabsExtended/components/TabsExtendedContent.js +20 -0
- package/components/TabsExtended/components/TabsExtendedDropdownWrapper.js +26 -0
- package/components/TabsExtended/components/TabsExtendedTab.js +38 -0
- package/components/TabsExtended/components/TabsExtendedTabButton.js +22 -0
- package/components/TabsExtended/components/TabsExtendedTabContext.js +8 -0
- package/components/TabsExtended/components/TabsExtendedTabsWrapper.js +70 -0
- package/components/TabsExtended/enums.js +5 -0
- package/components/TabsExtended/index.js +7 -0
- package/components/TextField/MaskedField.js +92 -0
- package/components/TextField/TextField.js +92 -0
- package/components/TextField/TextFieldBase.js +92 -0
- package/components/TextField/index.js +6 -0
- package/components/ThemeProvider/ETriplexNextTheme.js +5 -0
- package/components/ThemeProvider/ThemeProvider.js +28 -0
- package/components/ThemeProvider/ThemeProviderContext.js +14 -0
- package/components/ThemeProvider/components/ThemeProviderView.js +36 -0
- package/components/ThemeProvider/index.js +11 -0
- package/components/ThemeProvider/useToken.js +10 -0
- package/components/Tooltip/Tooltip.js +68 -0
- package/components/Tooltip/TootlipContext.js +18 -0
- package/components/Tooltip/components/common/TooltipBody.js +16 -0
- package/components/Tooltip/components/common/TooltipLink.js +34 -0
- package/components/Tooltip/components/common/TooltipTarget.js +19 -0
- package/components/Tooltip/components/common/TooltipXButton.js +16 -0
- package/components/Tooltip/components/desktop/TooltipDesktop.js +69 -0
- package/components/Tooltip/components/desktop/components/TooltipDesktopBase.js +241 -0
- package/components/Tooltip/components/desktop/components/TooltipDesktopTip.js +29 -0
- package/components/Tooltip/components/mobile/TooltipMobile.js +57 -0
- package/components/Tooltip/components/mobile/components/TooltipMobileCloseButton.js +14 -0
- package/components/Tooltip/components/mobile/components/TooltipMobileHeader.js +18 -0
- package/components/Tooltip/enums.js +14 -0
- package/components/Tooltip/index.js +8 -0
- package/components/Tooltip/types.js +2 -0
- package/components/Tooltip/utils/Positioning.js +124 -0
- package/components/Tooltip/utils/useTooltipTheme.js +31 -0
- package/components/Typography/Caption.js +54 -0
- package/components/Typography/Text.js +62 -0
- package/components/Typography/Title.js +58 -0
- package/components/Typography/enums.js +11 -0
- package/components/Typography/index.js +17 -0
- package/components/Typography/types.js +2 -0
- package/components/Typography/utils.js +6 -0
- package/components/UploadZone/UploadZone.js +10 -0
- package/components/UploadZone/components/UploadZoneInput.js +143 -0
- package/components/UploadZone/index.js +6 -0
- package/components/index.js +256 -0
- package/consts/IndentConst.js +2 -0
- package/enums/EFocusSource.js +5 -0
- package/generated/refTokenTypes.js +5 -0
- package/helpers/breakpoints.js +5 -0
- package/helpers/less/breakpoints.less +9 -0
- package/helpers/less/z-indexes.less +39 -0
- package/index.d.ts +4406 -0
- package/index.js +257 -0
- package/package.json +32 -94
- package/styles/triplex-next.css +333 -0
- package/utils/keyboard.js +50 -0
|
@@ -0,0 +1,256 @@
|
|
|
1
|
+
import { AlertContext as t } from "./Alert/AlertContext/AlertContext.js";
|
|
2
|
+
import { AlertProcess as p } from "./Alert/AlertProcess/AlertProcess.js";
|
|
3
|
+
import { EAlertType as n } from "./Alert/EAlertType.js";
|
|
4
|
+
import { alertTypeToClassNameMap as x } from "./Alert/AlertTypeUtils.js";
|
|
5
|
+
import { B as d, a as l, b as s, D as S, e as T, c as E, F as C, L as g, f as F, g as L, M as b, i as u, h as D, S as h, T as M, d as c } from "../chunks/index-1QUfI5kD.js";
|
|
6
|
+
import { ButtonBase as I } from "./Button/ButtonBase.js";
|
|
7
|
+
import { ButtonIcon as B } from "./Button/ButtonIcon.js";
|
|
8
|
+
import { EButtonIconShape as z, EButtonSize as H, EButtonTheme as k } from "./Button/enums.js";
|
|
9
|
+
import { Col as A } from "./Col/Col.js";
|
|
10
|
+
import { Checkbox as R } from "./Checkbox/Checkbox.js";
|
|
11
|
+
import { ECheckboxSize as G } from "./Checkbox/enum.js";
|
|
12
|
+
import { CheckboxXGroup as Y } from "./Checkbox/CheckboxXGroup.js";
|
|
13
|
+
import { CheckboxYGroup as j } from "./Checkbox/CheckboxYGroup.js";
|
|
14
|
+
import { FormField as J } from "./FormField/FormField.js";
|
|
15
|
+
import { FormFieldDescription as O } from "./FormField/components/FormFieldDescription.js";
|
|
16
|
+
import { FormFieldCounter as U } from "./FormField/components/FormFieldCounter.js";
|
|
17
|
+
import { FormFieldLabel as _ } from "./FormField/components/FormFieldLabel.js";
|
|
18
|
+
import { FormFieldClear as oo } from "./FormField/components/FormFieldClear.js";
|
|
19
|
+
import { F as ro } from "../chunks/FormFieldInput-Cmc0beZ5.js";
|
|
20
|
+
import { FormFieldPostfix as mo } from "./FormField/components/FormFieldPostfix.js";
|
|
21
|
+
import { FormFieldPrefix as io } from "./FormField/components/FormFieldPrefix.js";
|
|
22
|
+
import { FormFieldTextarea as ao } from "./FormField/components/FormFieldTextarea.js";
|
|
23
|
+
import { EFormFieldSize as fo } from "./FormField/enums.js";
|
|
24
|
+
import { FormGroup as so } from "./FormGroup/FormGroup.js";
|
|
25
|
+
import { Gap as To } from "./Gap/Gap.js";
|
|
26
|
+
import { Link as Co } from "./Link/Link.js";
|
|
27
|
+
import { LoaderSmall as Fo } from "./Loader/LoaderSmall/LoaderSmall.js";
|
|
28
|
+
import { ELoaderSmallSize as bo, ELoaderSmallTheme as uo } from "./Loader/LoaderSmall/enum.js";
|
|
29
|
+
import { LoaderMiddle as ho } from "./Loader/LoaderMiddle/LoaderMiddle.js";
|
|
30
|
+
import { LoaderWidget as co } from "./LoaderWidget/LoaderWidget.js";
|
|
31
|
+
import { MediaWidth as Io } from "./MediaWidth/MediaWidth.js";
|
|
32
|
+
import { MediaMaxWidth as Bo } from "./MediaWidth/MediaMaxWidth.js";
|
|
33
|
+
import { MediaMinWidth as zo } from "./MediaWidth/MediaMinWidth.js";
|
|
34
|
+
import { MediaBetweenWidth as ko } from "./MediaWidth/MediaBetweenWidth.js";
|
|
35
|
+
import { useMatchMedia as Ao } from "./MediaWidth/useMatchMedia.js";
|
|
36
|
+
import { MobileView as Ro } from "./MobileView/MobileView.js";
|
|
37
|
+
import { Radio as Go } from "./Radio/Radio.js";
|
|
38
|
+
import { RadioXGroup as Yo } from "./Radio/RadioXGroup.js";
|
|
39
|
+
import { RadioYGroup as jo } from "./Radio/RadioYGroup.js";
|
|
40
|
+
import { ERadioSize as Jo } from "./Radio/enum.js";
|
|
41
|
+
import { Row as Oo } from "./Row/Row.js";
|
|
42
|
+
import { TabsExtended as Uo } from "./TabsExtended/TabsExtended.js";
|
|
43
|
+
import { ETabsExtendedTabButtonSize as _o } from "./TabsExtended/enums.js";
|
|
44
|
+
import { ThemeProvider as oe } from "./ThemeProvider/ThemeProvider.js";
|
|
45
|
+
import { ThemeProviderContext as re } from "./ThemeProvider/ThemeProviderContext.js";
|
|
46
|
+
import { ETriplexNextTheme as me } from "./ThemeProvider/ETriplexNextTheme.js";
|
|
47
|
+
import { useToken as ie } from "./ThemeProvider/useToken.js";
|
|
48
|
+
import { Title as ae } from "./Typography/Title.js";
|
|
49
|
+
import { Text as fe } from "./Typography/Text.js";
|
|
50
|
+
import { Caption as le } from "./Typography/Caption.js";
|
|
51
|
+
import { ECaptionSize as Se, EFontType as Te, EFontWeightText as Ee, EFontWeightTitle as Ce, ELineType as ge, ETextSize as Fe, ETitleSize as Le } from "./Typography/enums.js";
|
|
52
|
+
import { D as ue } from "../chunks/DropdownListItem-CwqothNf.js";
|
|
53
|
+
import { DropdownMobile as he } from "./Dropdown/mobile/DropdownMobile.js";
|
|
54
|
+
import { DropdownMobileBody as ce } from "./Dropdown/mobile/DropdownMobileBody.js";
|
|
55
|
+
import { DropdownMobileClose as Ie } from "./Dropdown/mobile/DropdownMobileClose.js";
|
|
56
|
+
import { DropdownMobileFooter as Be } from "./Dropdown/mobile/DropdownMobileFooter.js";
|
|
57
|
+
import { DropdownMobileHeader as ze } from "./Dropdown/mobile/DropdownMobileHeader.js";
|
|
58
|
+
import { DropdownMobileInner as ke } from "./Dropdown/mobile/DropdownMobileInner.js";
|
|
59
|
+
import { DropdownMobileInput as Ae } from "./Dropdown/mobile/DropdownMobileInput.js";
|
|
60
|
+
import { DropdownMobileList as Re } from "./Dropdown/mobile/DropdownMobileList.js";
|
|
61
|
+
import { DropdownMobileListItem as Ge } from "./Dropdown/mobile/DropdownMobileListItem.js";
|
|
62
|
+
import { EDropdownAlignment as Ye, EDropdownDirection as Ve, EDropdownListSize as je, EDropdownSize as qe } from "./Dropdown/enums.js";
|
|
63
|
+
import { List as Ke } from "./List/List.js";
|
|
64
|
+
import { AdvancedMouseSensor as Qe, AdvancedTouchSensor as Ue, ListSortable as Ze } from "./List/ListSortable.js";
|
|
65
|
+
import { ListItem as $e } from "./List/components/ListItem.js";
|
|
66
|
+
import { ListItemControls as er } from "./List/components/ListItemControls.js";
|
|
67
|
+
import { ListItemContent as tr } from "./List/components/ListItemContent.js";
|
|
68
|
+
import { L as pr } from "../chunks/ListItemControlsButton-Bn_onrHQ.js";
|
|
69
|
+
import { ListEmptyState as nr } from "./List/components/ListEmptyState.js";
|
|
70
|
+
import { ListItemLoading as xr } from "./List/components/ListItemLoading.js";
|
|
71
|
+
import { ListItemSelectable as dr } from "./List/components/ListItemSelectable.js";
|
|
72
|
+
import { ListItemTailLeft as sr } from "./List/components/ListItemTailLeft.js";
|
|
73
|
+
import { ListItemTailRight as Tr } from "./List/components/ListItemTailRight.js";
|
|
74
|
+
import { ListSortableItemTarget as Cr } from "./List/components/ListSortableItemTarget.js";
|
|
75
|
+
import { ListSortableItemControls as Fr } from "./List/components/ListSortableItemControls.js";
|
|
76
|
+
import { Footer as br } from "./Footer/Footer.js";
|
|
77
|
+
import { FooterDescription as Dr } from "./Footer/components/FooterDescription.js";
|
|
78
|
+
import { FooterDescriptionControls as Mr } from "./Footer/components/FooterDescriptionControls.js";
|
|
79
|
+
import { FooterDescriptionContent as wr } from "./Footer/components/FooterDescriptionContent.js";
|
|
80
|
+
import { Body as Pr } from "./Body/Body.js";
|
|
81
|
+
import { Header as yr } from "./Header/Header.js";
|
|
82
|
+
import { HeaderLayoutSidebar as Hr } from "./Header/components/HeaderLayoutSidebar/HeaderLayoutSidebar.js";
|
|
83
|
+
import { HeaderLayoutSidebarContent as vr } from "./Header/components/HeaderLayoutSidebar/HeaderLayoutSidebarContent.js";
|
|
84
|
+
import { HeaderLayoutSidebarSidebar as Nr } from "./Header/components/HeaderLayoutSidebar/HeaderLayoutSidebarSidebar.js";
|
|
85
|
+
import { HeaderSubheader as Wr } from "./Header/components/HeaderSubheader/HeaderSubheader.js";
|
|
86
|
+
import { HeaderTabs as Xr } from "./Header/components/HeaderTabs/HeaderTabs.js";
|
|
87
|
+
import { HeaderTabsContent as Vr } from "./Header/components/HeaderTabs/HeaderTabsContent.js";
|
|
88
|
+
import { HeaderTabsControls as qr } from "./Header/components/HeaderTabs/HeaderTabsControls.js";
|
|
89
|
+
import { HeaderTitle as Kr } from "./Header/components/HeaderTitle/HeaderTitle.js";
|
|
90
|
+
import { HeaderTitleContent as Qr } from "./Header/components/HeaderTitle/HeaderTitleContent.js";
|
|
91
|
+
import { HeaderTitleControls as Zr } from "./Header/components/HeaderTitle/HeaderTitleControls.js";
|
|
92
|
+
import { Page as $r } from "./Page/Page.js";
|
|
93
|
+
import { EFooterPageType as et, EHeaderPageType as rt } from "./Page/components/enums.js";
|
|
94
|
+
import { PaginationExtended as mt } from "./Pagination/components/PaginationExtended.js";
|
|
95
|
+
import { PaginationNavigation as it } from "./Pagination/components/PaginationNavigation.js";
|
|
96
|
+
import { PaginationNavigationButton as at } from "./Pagination/components/PaginationNavigationButton.js";
|
|
97
|
+
import { PaginationNavigationExtended as ft } from "./Pagination/components/PaginationNavigationExtended.js";
|
|
98
|
+
import { PaginationNavigationExtendedItem as lt } from "./Pagination/components/PaginationNavigationExtendedItem.js";
|
|
99
|
+
import { PaginationPageButton as St } from "./Pagination/components/PaginationPageButton.js";
|
|
100
|
+
import { PaginationPageEllipsis as Et } from "./Pagination/components/PaginationPageEllipsis.js";
|
|
101
|
+
import { PaginationSelect as gt } from "./Pagination/components/PaginationSelect.js";
|
|
102
|
+
import { EPaginationNavigationIconDirection as Lt } from "./Pagination/enums.js";
|
|
103
|
+
import { Pagination as ut } from "./Pagination/Pagination.js";
|
|
104
|
+
import { CardAction as ht } from "./Card/CardAction.js";
|
|
105
|
+
import { CardStatic as ct } from "./Card/CardStatic.js";
|
|
106
|
+
import { ECardContentPaddingSize as It, ECardRoundingSize as Pt, ECardTheme as Bt } from "./Card/enums.js";
|
|
107
|
+
import { Skeleton as zt } from "./Skeleton/Skeleton.js";
|
|
108
|
+
import { ESkeletonType as kt } from "./Skeleton/enums.js";
|
|
109
|
+
import { ESegmentedControlSize as At, ESegmentedControlTheme as Nt, ESegmentedControlType as Rt } from "./SegmentedControl/enums.js";
|
|
110
|
+
import "../helpers/breakpoints.js";
|
|
111
|
+
export {
|
|
112
|
+
Qe as AdvancedMouseSensor,
|
|
113
|
+
Ue as AdvancedTouchSensor,
|
|
114
|
+
t as AlertContext,
|
|
115
|
+
p as AlertProcess,
|
|
116
|
+
Pr as Body,
|
|
117
|
+
d as Button,
|
|
118
|
+
I as ButtonBase,
|
|
119
|
+
l as ButtonDropdown,
|
|
120
|
+
s as ButtonDropdownExtended,
|
|
121
|
+
B as ButtonIcon,
|
|
122
|
+
le as Caption,
|
|
123
|
+
ht as CardAction,
|
|
124
|
+
ct as CardStatic,
|
|
125
|
+
R as Checkbox,
|
|
126
|
+
Y as CheckboxXGroup,
|
|
127
|
+
j as CheckboxYGroup,
|
|
128
|
+
A as Col,
|
|
129
|
+
S as Dropdown,
|
|
130
|
+
T as DropdownDesktop,
|
|
131
|
+
E as DropdownList,
|
|
132
|
+
ue as DropdownListItem,
|
|
133
|
+
he as DropdownMobile,
|
|
134
|
+
ce as DropdownMobileBody,
|
|
135
|
+
Ie as DropdownMobileClose,
|
|
136
|
+
Be as DropdownMobileFooter,
|
|
137
|
+
ze as DropdownMobileHeader,
|
|
138
|
+
ke as DropdownMobileInner,
|
|
139
|
+
Ae as DropdownMobileInput,
|
|
140
|
+
Re as DropdownMobileList,
|
|
141
|
+
Ge as DropdownMobileListItem,
|
|
142
|
+
n as EAlertType,
|
|
143
|
+
z as EButtonIconShape,
|
|
144
|
+
H as EButtonSize,
|
|
145
|
+
k as EButtonTheme,
|
|
146
|
+
Se as ECaptionSize,
|
|
147
|
+
It as ECardContentPaddingSize,
|
|
148
|
+
Pt as ECardRoundingSize,
|
|
149
|
+
Bt as ECardTheme,
|
|
150
|
+
G as ECheckboxSize,
|
|
151
|
+
Ye as EDropdownAlignment,
|
|
152
|
+
Ve as EDropdownDirection,
|
|
153
|
+
je as EDropdownListSize,
|
|
154
|
+
qe as EDropdownSize,
|
|
155
|
+
Te as EFontType,
|
|
156
|
+
Ee as EFontWeightText,
|
|
157
|
+
Ce as EFontWeightTitle,
|
|
158
|
+
et as EFooterPageType,
|
|
159
|
+
fo as EFormFieldSize,
|
|
160
|
+
rt as EHeaderPageType,
|
|
161
|
+
ge as ELineType,
|
|
162
|
+
bo as ELoaderSmallSize,
|
|
163
|
+
uo as ELoaderSmallTheme,
|
|
164
|
+
Lt as EPaginationNavigationIconDirection,
|
|
165
|
+
Jo as ERadioSize,
|
|
166
|
+
At as ESegmentedControlSize,
|
|
167
|
+
Nt as ESegmentedControlTheme,
|
|
168
|
+
Rt as ESegmentedControlType,
|
|
169
|
+
kt as ESkeletonType,
|
|
170
|
+
_o as ETabsExtendedTabButtonSize,
|
|
171
|
+
Fe as ETextSize,
|
|
172
|
+
Le as ETitleSize,
|
|
173
|
+
me as ETriplexNextTheme,
|
|
174
|
+
br as Footer,
|
|
175
|
+
Dr as FooterDescription,
|
|
176
|
+
wr as FooterDescriptionContent,
|
|
177
|
+
Mr as FooterDescriptionControls,
|
|
178
|
+
J as FormField,
|
|
179
|
+
oo as FormFieldClear,
|
|
180
|
+
U as FormFieldCounter,
|
|
181
|
+
O as FormFieldDescription,
|
|
182
|
+
ro as FormFieldInput,
|
|
183
|
+
_ as FormFieldLabel,
|
|
184
|
+
C as FormFieldMaskedInput,
|
|
185
|
+
mo as FormFieldPostfix,
|
|
186
|
+
io as FormFieldPrefix,
|
|
187
|
+
ao as FormFieldTextarea,
|
|
188
|
+
so as FormGroup,
|
|
189
|
+
To as Gap,
|
|
190
|
+
yr as Header,
|
|
191
|
+
Hr as HeaderLayoutSidebar,
|
|
192
|
+
vr as HeaderLayoutSidebarContent,
|
|
193
|
+
Nr as HeaderLayoutSidebarSidebar,
|
|
194
|
+
Wr as HeaderSubheader,
|
|
195
|
+
Xr as HeaderTabs,
|
|
196
|
+
Vr as HeaderTabsContent,
|
|
197
|
+
qr as HeaderTabsControls,
|
|
198
|
+
Kr as HeaderTitle,
|
|
199
|
+
Qr as HeaderTitleContent,
|
|
200
|
+
Zr as HeaderTitleControls,
|
|
201
|
+
Co as Link,
|
|
202
|
+
Ke as List,
|
|
203
|
+
nr as ListEmptyState,
|
|
204
|
+
$e as ListItem,
|
|
205
|
+
tr as ListItemContent,
|
|
206
|
+
er as ListItemControls,
|
|
207
|
+
pr as ListItemControlsButton,
|
|
208
|
+
g as ListItemControlsButtonDropdown,
|
|
209
|
+
xr as ListItemLoading,
|
|
210
|
+
dr as ListItemSelectable,
|
|
211
|
+
F as ListItemTable,
|
|
212
|
+
sr as ListItemTailLeft,
|
|
213
|
+
Tr as ListItemTailRight,
|
|
214
|
+
Ze as ListSortable,
|
|
215
|
+
L as ListSortableItem,
|
|
216
|
+
Fr as ListSortableItemControls,
|
|
217
|
+
Cr as ListSortableItemTarget,
|
|
218
|
+
ho as LoaderMiddle,
|
|
219
|
+
Fo as LoaderSmall,
|
|
220
|
+
co as LoaderWidget,
|
|
221
|
+
b as MaskedField,
|
|
222
|
+
ko as MediaBetweenWidth,
|
|
223
|
+
Bo as MediaMaxWidth,
|
|
224
|
+
zo as MediaMinWidth,
|
|
225
|
+
Io as MediaWidth,
|
|
226
|
+
Ro as MobileView,
|
|
227
|
+
$r as Page,
|
|
228
|
+
ut as Pagination,
|
|
229
|
+
mt as PaginationExtended,
|
|
230
|
+
it as PaginationNavigation,
|
|
231
|
+
at as PaginationNavigationButton,
|
|
232
|
+
ft as PaginationNavigationExtended,
|
|
233
|
+
lt as PaginationNavigationExtendedItem,
|
|
234
|
+
St as PaginationPageButton,
|
|
235
|
+
Et as PaginationPageEllipsis,
|
|
236
|
+
gt as PaginationSelect,
|
|
237
|
+
Go as Radio,
|
|
238
|
+
Yo as RadioXGroup,
|
|
239
|
+
jo as RadioYGroup,
|
|
240
|
+
Oo as Row,
|
|
241
|
+
u as SegmentedControl,
|
|
242
|
+
D as SegmentedControlContext,
|
|
243
|
+
h as SegmentedControlSegment,
|
|
244
|
+
zt as Skeleton,
|
|
245
|
+
Uo as TabsExtended,
|
|
246
|
+
fe as Text,
|
|
247
|
+
M as TextField,
|
|
248
|
+
oe as ThemeProvider,
|
|
249
|
+
re as ThemeProviderContext,
|
|
250
|
+
ae as Title,
|
|
251
|
+
x as alertTypeToClassNameMap,
|
|
252
|
+
c as dotsTheme,
|
|
253
|
+
Ao as useMatchMedia,
|
|
254
|
+
ie as useToken
|
|
255
|
+
};
|
|
256
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
const o = ["ColorBrand.0", "ColorBrand.10", "ColorBrand.20", "ColorBrand.30", "ColorBrand.40", "ColorBrand.50", "ColorBrand.60", "ColorBrand.70", "ColorBrand.80", "ColorBrand.90", "ColorBrand.100", "ColorDarkNeutralAlpha.0", "ColorDarkNeutralAlpha.10", "ColorDarkNeutralAlpha.20", "ColorDarkNeutralAlpha.30", "ColorDarkNeutralAlpha.40", "ColorDarkNeutralAlpha.50", "ColorDarkNeutralAlpha.60", "ColorDarkNeutralAlpha.70", "ColorDarkNeutralAlpha.80", "ColorDarkNeutralAlpha.90", "ColorDarkNeutralAlpha.100", "ColorDarkNeutral.0", "ColorDarkNeutral.10", "ColorDarkNeutral.20", "ColorDarkNeutral.30", "ColorDarkNeutral.40", "ColorDarkNeutral.50", "ColorDarkNeutral.60", "ColorDarkNeutral.70", "ColorDarkNeutral.80", "ColorDarkNeutral.90", "ColorDarkNeutral.100", "ColorError.0", "ColorError.10", "ColorError.20", "ColorError.30", "ColorError.40", "ColorError.50", "ColorError.60", "ColorError.70", "ColorError.80", "ColorError.90", "ColorError.100", "ColorInfo.0", "ColorInfo.10", "ColorInfo.20", "ColorInfo.30", "ColorInfo.40", "ColorInfo.50", "ColorInfo.60", "ColorInfo.70", "ColorInfo.80", "ColorInfo.90", "ColorInfo.100", "ColorNeutralAlpha.0", "ColorNeutralAlpha.10", "ColorNeutralAlpha.20", "ColorNeutralAlpha.30", "ColorNeutralAlpha.40", "ColorNeutralAlpha.50", "ColorNeutralAlpha.60", "ColorNeutralAlpha.70", "ColorNeutralAlpha.80", "ColorNeutralAlpha.90", "ColorNeutralAlpha.100", "ColorNeutral.0", "ColorNeutral.10", "ColorNeutral.20", "ColorNeutral.30", "ColorNeutral.40", "ColorNeutral.50", "ColorNeutral.60", "ColorNeutral.70", "ColorNeutral.80", "ColorNeutral.90", "ColorNeutral.100", "ColorSuccess.0", "ColorSuccess.10", "ColorSuccess.20", "ColorSuccess.30", "ColorSuccess.40", "ColorSuccess.50", "ColorSuccess.60", "ColorSuccess.70", "ColorSuccess.80", "ColorSuccess.90", "ColorSuccess.100", "ColorSystem.0", "ColorSystem.10", "ColorSystem.20", "ColorSystem.30", "ColorSystem.40", "ColorSystem.50", "ColorSystem.60", "ColorSystem.70", "ColorSystem.80", "ColorSystem.90", "ColorSystem.100", "ColorWarning.0", "ColorWarning.10", "ColorWarning.20", "ColorWarning.30", "ColorWarning.40", "ColorWarning.50", "ColorWarning.60", "ColorWarning.70", "ColorWarning.80", "ColorWarning.90", "ColorWarning.100"];
|
|
2
|
+
export {
|
|
3
|
+
o as designTokensRefs
|
|
4
|
+
};
|
|
5
|
+
//# sourceMappingURL=refTokenTypes.js.map
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
var p = /* @__PURE__ */ ((M) => (M.XS_MAX = "575px", M.SM_MIN = "576px", M.SM_MAX = "767px", M.MD_MIN = "768px", M.MD_MAX = "991px", M.LG_MIN = "992px", M.LG_MAX = "1199px", M.XL_MIN = "1200px", M))(p || {});
|
|
2
|
+
export {
|
|
3
|
+
p as EScreenWidth
|
|
4
|
+
};
|
|
5
|
+
//# sourceMappingURL=breakpoints.js.map
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// Размеры экрана. (взято с https://getbootstrap.com/docs/4.1/layout/grid/)
|
|
2
|
+
@screen-xs-max: 575px; // Максимальное значение диапазона XS.
|
|
3
|
+
@screen-sm: 576px; // ≥576px
|
|
4
|
+
@screen-sm-max: 767px; // Максимальное значение диапазона SM.
|
|
5
|
+
@screen-md: 768px; // ≥768px
|
|
6
|
+
@screen-md-max: 991px; // Максимальное значение диапазона MD.
|
|
7
|
+
@screen-lg: 992px; // ≥992px
|
|
8
|
+
@screen-lg-max: 1199px; // Максимальное значение диапазона LG.
|
|
9
|
+
@screen-xl: 1200px; // ≥1200px
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
// Шаг интервалов между z-индексами элементов.
|
|
2
|
+
@z-index-step: 100;
|
|
3
|
+
|
|
4
|
+
// Большой стартовый z-индекс.
|
|
5
|
+
@z-index-super: 10000;
|
|
6
|
+
|
|
7
|
+
// DatePicker
|
|
8
|
+
@z-index-popover: 800; // 800
|
|
9
|
+
|
|
10
|
+
// LightBox
|
|
11
|
+
@z-index-lightbox: 1300; // 1300
|
|
12
|
+
// LightBoxHeader - локальный z-index внутри LightBox
|
|
13
|
+
@z-index-lightbox-header: @z-index-step; // 100
|
|
14
|
+
// LightBoxFooter - локальный z-index внутри LightBox
|
|
15
|
+
@z-index-lightbox-footer: @z-index-step; // 100
|
|
16
|
+
// LightBoxControls - локальный z-index внутри LightBox
|
|
17
|
+
@z-index-lightbox-controls: @z-index-step; // 100
|
|
18
|
+
// LightBoxTopOverlay - локальный z-index внутри LightBox
|
|
19
|
+
@z-index-lightbox-top-overlay: @z-index-lightbox-header + @z-index-step; // 200
|
|
20
|
+
|
|
21
|
+
// ModalWindow
|
|
22
|
+
@z-index-modal-window: @z-index-lightbox + @z-index-step; // 1400
|
|
23
|
+
|
|
24
|
+
// Dropdown
|
|
25
|
+
@z-index-dropdown: @z-index-modal-window + @z-index-step; // 1500
|
|
26
|
+
|
|
27
|
+
// Элементы с самым большим z-index:
|
|
28
|
+
|
|
29
|
+
// Tooltip
|
|
30
|
+
@z-index-tooltip: @z-index-super; // 10000
|
|
31
|
+
|
|
32
|
+
// SpinnerWidget
|
|
33
|
+
@z-index-spinner-widget: @z-index-tooltip + @z-index-step; //10100
|
|
34
|
+
|
|
35
|
+
// UploadZone
|
|
36
|
+
@z-index-upload-zone-fullscreen: @z-index-spinner-widget + @z-index-step; //10200
|
|
37
|
+
|
|
38
|
+
// Модальное окно с предупреждением об истечении сессии.
|
|
39
|
+
@z-index-modal-window-session-expiration: @z-index-upload-zone-fullscreen + @z-index-step; //10300
|