@pantheon-systems/pds-toolkit-react 1.0.0-dev.99 → 1.0.0-dev.9999
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/_dist/components/Avatar/Avatar.d.ts +36 -0
- package/_dist/components/BranchDiff/BranchDiff.d.ts +43 -0
- package/_dist/components/CTALink/CTALink.d.ts +20 -0
- package/_dist/components/CTASlice/CTASlice.d.ts +43 -0
- package/_dist/components/Callout/Callout.d.ts +31 -0
- package/_dist/components/Callout/sample-callout-content.d.ts +2 -0
- package/_dist/components/CodeBlock/CodeBlock.d.ts +85 -0
- package/_dist/components/CodeBlock/code-examples.d.ts +6 -0
- package/_dist/components/CodeBlock/themes/index.d.ts +2 -0
- package/_dist/components/CodeBlock/themes/pdsDark.d.ts +2 -0
- package/_dist/components/CodeBlock/themes/pdsLight.d.ts +2 -0
- package/_dist/components/ComparisonList/ComparisonList.d.ts +42 -0
- package/_dist/components/DashboardStat/DashboardStat.d.ts +28 -0
- package/_dist/components/FileDiff/FileDiff.d.ts +35 -0
- package/_dist/components/FlowSteps/FlowSteps.d.ts +37 -0
- package/_dist/components/FlowSteps/example-steps.d.ts +15 -0
- package/_dist/components/LinkNewWindow/LinkNewWindow.d.ts +35 -0
- package/_dist/components/Modal/Modal.d.ts +54 -0
- package/_dist/components/Pagination/Pagination.d.ts +54 -0
- package/_dist/components/Pagination/usePagination.d.ts +7 -0
- package/_dist/components/PantheonLogo/PantheonLogo.d.ts +32 -0
- package/_dist/components/PantheonLogo/pantheon-logo-data.d.ts +4 -0
- package/_dist/components/Picture/Picture.d.ts +37 -0
- package/_dist/components/Popover/Popover.d.ts +66 -0
- package/_dist/components/PullQuote/PullQuote.d.ts +34 -0
- package/_dist/components/RefreshChecker/RefreshChecker.d.ts +54 -0
- package/_dist/components/SiteDashboardHeading/SiteDashboardHeading.d.ts +57 -0
- package/_dist/components/Skiplink/Skiplink.d.ts +21 -0
- package/_dist/components/SocialLinks/SocialLinks.d.ts +23 -0
- package/_dist/components/StatusIndicator/StatusIndicator.d.ts +24 -0
- package/_dist/components/Table/Table.d.ts +27 -0
- package/_dist/components/TableOfContents/TableOfContents.d.ts +45 -0
- package/_dist/components/Tabs/Tabs.d.ts +63 -0
- package/_dist/components/Tag/Tag.d.ts +39 -0
- package/_dist/components/ThemeSwitcher/ThemeSwitcher.d.ts +32 -0
- package/_dist/components/Tooltip/Tooltip.d.ts +51 -0
- package/_dist/components/VideoEmbed/VideoEmbed.d.ts +28 -0
- package/_dist/components/badges/IndicatorBadge/IndicatorBadge.d.ts +27 -0
- package/_dist/components/badges/StatusBadge/StatusBadge.d.ts +35 -0
- package/_dist/components/badges/Tally/Tally.d.ts +38 -0
- package/_dist/components/buttons/Button/Button.d.ts +66 -0
- package/_dist/components/buttons/ButtonLink/ButtonLink.d.ts +48 -0
- package/_dist/components/buttons/ClipboardButton/ClipboardButton.d.ts +31 -0
- package/_dist/components/buttons/CloseButton/CloseButton.d.ts +27 -0
- package/_dist/components/buttons/IconButton/IconButton.d.ts +50 -0
- package/_dist/components/buttons/MenuButton/MenuButton.d.ts +75 -0
- package/_dist/components/buttons/SegmentedButton/SegmentedButton.d.ts +63 -0
- package/_dist/components/buttons/SplitButton/SplitButton.d.ts +41 -0
- package/_dist/components/buttons/SplitButton/split-button-sample-data.d.ts +17 -0
- package/_dist/components/buttons/UtilityButton/UtilityButton.d.ts +56 -0
- package/_dist/components/cards/Card/Card.d.ts +29 -0
- package/_dist/components/cards/CardHeading/CardHeading.d.ts +32 -0
- package/_dist/components/cards/CardSelectGroup/CardSelectGroup.d.ts +60 -0
- package/_dist/components/cards/EmptyStateCard/EmptyStateCard.d.ts +36 -0
- package/_dist/components/cards/LinksCard/LinksCard.d.ts +29 -0
- package/_dist/components/cards/LinksCard/links-card-sample-data.d.ts +2 -0
- package/_dist/components/cards/NewSiteCard/NewSiteCard.d.ts +57 -0
- package/_dist/components/cards/PaymentCard/PaymentCard.d.ts +47 -0
- package/_dist/components/cards/PricingCard/PricingCard.d.ts +90 -0
- package/_dist/components/cards/SiteCard/SiteCard.d.ts +45 -0
- package/_dist/components/empty-states/CompactEmptyState/CompactEmptyState.d.ts +37 -0
- package/_dist/components/empty-states/HorizontalEmptyState/HorizontalEmptyState.d.ts +69 -0
- package/_dist/components/empty-states/VerticalEmptyState/VerticalEmptyState.d.ts +47 -0
- package/_dist/components/footer/FooterHeading/FooterHeading.d.ts +22 -0
- package/_dist/components/footer/FooterLinks/FooterLinks.d.ts +26 -0
- package/_dist/components/footer/SiteFooter/SiteFooter.d.ts +30 -0
- package/_dist/components/footer/SiteFooter/footer-content.d.ts +2 -0
- package/_dist/components/icons/Icon/Icon.d.ts +732 -0
- package/_dist/components/icons/PaymentIcon/PaymentIcon.d.ts +21 -0
- package/_dist/components/icons/PaymentIcon/svgData.d.ts +8 -0
- package/_dist/components/icons/PlatformIcon/PlatformIcon.d.ts +12 -0
- package/_dist/components/inputs/Checkbox/Checkbox.d.ts +96 -0
- package/_dist/components/inputs/CheckboxFieldset/CheckboxFieldset.d.ts +64 -0
- package/_dist/components/inputs/CheckboxGroup/CheckboxGroup.d.ts +80 -0
- package/_dist/components/inputs/Combobox/Combobox.d.ts +138 -0
- package/_dist/components/inputs/ComboboxMultiselect/ComboboxMultiselect.d.ts +83 -0
- package/_dist/components/inputs/FileUpload/FileUpload.d.ts +93 -0
- package/_dist/components/inputs/InputGroup/InputGroup.d.ts +19 -0
- package/_dist/components/inputs/RadioGroup/RadioGroup.d.ts +104 -0
- package/_dist/components/inputs/Select/Select.d.ts +122 -0
- package/_dist/components/inputs/Switch/Switch.d.ts +74 -0
- package/_dist/components/inputs/TextInput/TextInput.d.ts +139 -0
- package/_dist/components/inputs/Textarea/Textarea.d.ts +110 -0
- package/_dist/components/inputs/input-types.d.ts +1 -0
- package/_dist/components/inputs/input-utilities.d.ts +96 -0
- package/_dist/components/loading-indicators/Skeleton/Skeleton.d.ts +62 -0
- package/_dist/components/loading-indicators/Spinner/Spinner.d.ts +32 -0
- package/_dist/components/navigation/Breadcrumb/Breadcrumb.d.ts +23 -0
- package/_dist/components/navigation/ButtonNav/ButtonNav.d.ts +29 -0
- package/_dist/components/navigation/DashboardNav/DashboardNav.d.ts +35 -0
- package/_dist/components/navigation/DashboardNav/DashboardNavItem.d.ts +25 -0
- package/_dist/components/navigation/DashboardSearch/DashboardSearch.d.ts +70 -0
- package/_dist/components/navigation/DashboardSearch/SiteOptionDisplay.d.ts +39 -0
- package/_dist/components/navigation/DropdownMenu/DropdownMenu.d.ts +28 -0
- package/_dist/components/navigation/NavMenu/NavMenu.d.ts +43 -0
- package/_dist/components/navigation/NavMenu/NavMenuDropdown.d.ts +24 -0
- package/_dist/components/navigation/Navbar/Navbar.d.ts +60 -0
- package/_dist/components/navigation/SideNav/SideNav.d.ts +39 -0
- package/_dist/components/navigation/SideNavCompact/SideNavCompact.d.ts +53 -0
- package/_dist/components/navigation/SideNavGlobal/SideNavGlobal.d.ts +50 -0
- package/_dist/components/navigation/SideNavGlobal/SideNavGlobalItem.d.ts +25 -0
- package/_dist/components/navigation/TabMenu/TabMenu.d.ts +43 -0
- package/_dist/components/navigation/TabMenu/TabMenuDropdown.d.ts +33 -0
- package/_dist/components/navigation/UserMenu/UserMenu.d.ts +69 -0
- package/_dist/components/navigation/WorkspaceSelector/WorkspaceSelector.d.ts +89 -0
- package/_dist/components/navigation/navigation-types.d.ts +29 -0
- package/_dist/components/navigation/navigation-utilities.d.ts +90 -0
- package/_dist/components/notifications/Banner/Banner.d.ts +47 -0
- package/_dist/components/notifications/InlineMessage/InlineMessage.d.ts +37 -0
- package/_dist/components/notifications/SectionMessage/SectionMessage.d.ts +53 -0
- package/_dist/components/notifications/Toaster/Toast.d.ts +46 -0
- package/_dist/components/notifications/Toaster/Toaster.d.ts +29 -0
- package/_dist/components/notifications/Toaster/useToast.d.ts +10 -0
- package/_dist/components/panels/ExpansionPanel/ExpansionPanel.d.ts +32 -0
- package/_dist/components/panels/ExpansionPanelGroup/ExpansionPanelGroup.d.ts +24 -0
- package/_dist/components/panels/Panel/Panel.d.ts +35 -0
- package/_dist/components/panels/PanelList/PanelList.d.ts +28 -0
- package/_dist/components/panels/PanelList/PanelRow.d.ts +27 -0
- package/_dist/components/progress-indicators/ProgressBar/ProgressBar.d.ts +53 -0
- package/_dist/components/progress-indicators/ProgressRing/ProgressRing.d.ts +41 -0
- package/_dist/components/steppers/Stepper/Stepper.d.ts +54 -0
- package/_dist/components/steppers/VerticalStepper/VerticalStep.d.ts +52 -0
- package/_dist/components/steppers/VerticalStepper/VerticalStepper.d.ts +28 -0
- package/_dist/components/steppers/VerticalStepper/vertical-stepper-sample-data.d.ts +27 -0
- package/_dist/components/tiles/AvatarTileList/AvatarTileList.d.ts +28 -0
- package/_dist/components/tiles/Tile/Tile.d.ts +42 -0
- package/_dist/components/tiles/TileGrid/TileGrid.d.ts +29 -0
- package/_dist/css/component-css/pds-avatar-tile-list.css +1 -1
- package/_dist/css/component-css/pds-avatar.css +1 -1
- package/_dist/css/component-css/pds-banner.css +1 -1
- package/_dist/css/component-css/pds-branch-diff.css +1 -0
- package/_dist/css/component-css/pds-breadcrumb.css +1 -0
- package/_dist/css/component-css/pds-button-link.css +1 -1
- package/_dist/css/component-css/pds-button-nav.css +1 -0
- package/_dist/css/component-css/pds-button.css +33 -69
- package/_dist/css/component-css/pds-callout.css +1 -1
- package/_dist/css/component-css/pds-card-heading.css +1 -0
- package/_dist/css/component-css/pds-card-select-group.css +1 -1
- package/_dist/css/component-css/pds-card.css +1 -1
- package/_dist/css/component-css/pds-checkbox-group.css +1 -1
- package/_dist/css/component-css/pds-checkbox.css +1 -1
- package/_dist/css/component-css/pds-clipboard-button.css +0 -0
- package/_dist/css/component-css/pds-close-button.css +1 -0
- package/_dist/css/component-css/pds-code-block-legacy.css +1 -0
- package/_dist/css/component-css/pds-code-block.css +1 -0
- package/_dist/css/component-css/pds-combobox-multiselect.css +2 -0
- package/_dist/css/component-css/pds-combobox.css +1 -0
- package/_dist/css/component-css/pds-compact-empty-state.css +1 -0
- package/_dist/css/component-css/pds-comparison-list.css +1 -1
- package/_dist/css/component-css/pds-cta-link.css +1 -1
- package/_dist/css/component-css/pds-cta-slice.css +1 -1
- package/_dist/css/component-css/pds-dashboard-nav.css +5 -0
- package/_dist/css/component-css/pds-dashboard-search.css +1 -0
- package/_dist/css/component-css/pds-dashboard-stat.css +1 -0
- package/_dist/css/component-css/pds-dropdown-menu.css +2 -0
- package/_dist/css/component-css/pds-empty-state-card.css +1 -0
- package/_dist/css/component-css/pds-expansion-panel-group.css +1 -1
- package/_dist/css/component-css/pds-expansion-panel.css +1 -1
- package/_dist/css/component-css/pds-file-diff.css +1 -0
- package/_dist/css/component-css/pds-file-upload.css +7 -0
- package/_dist/css/component-css/pds-flow-steps.css +1 -0
- package/_dist/css/component-css/pds-footer-heading.css +1 -1
- package/_dist/css/component-css/pds-footer-links.css +1 -1
- package/_dist/css/component-css/pds-horizontal-empty-state.css +1 -0
- package/_dist/css/component-css/pds-icon-button.css +13 -5
- package/_dist/css/component-css/pds-icon-story-only.css +1 -1
- package/_dist/css/component-css/pds-index.css +83 -118
- package/_dist/css/component-css/pds-indicator-badge.css +15 -21
- package/_dist/css/component-css/pds-inline-message.css +1 -0
- package/_dist/css/component-css/pds-input-group.css +1 -1
- package/_dist/css/component-css/pds-input-utilities.css +1 -0
- package/_dist/css/component-css/pds-link-new-window.css +1 -0
- package/_dist/css/component-css/pds-links-card.css +1 -1
- package/_dist/css/component-css/pds-menu-button.css +2 -2
- package/_dist/css/component-css/pds-modal.css +1 -1
- package/_dist/css/component-css/pds-nav-menu.css +5 -1
- package/_dist/css/component-css/pds-navbar.css +1 -5
- package/_dist/css/component-css/pds-new-site-card.css +1 -1
- package/_dist/css/component-css/pds-pagination.css +1 -0
- package/_dist/css/component-css/pds-panel-list.css +1 -0
- package/_dist/css/component-css/pds-panel.css +1 -1
- package/_dist/css/component-css/pds-pantheon-logo.css +1 -1
- package/_dist/css/component-css/pds-payment-card.css +1 -0
- package/_dist/css/component-css/pds-payment-icon.css +1 -0
- package/_dist/css/component-css/pds-picture.css +1 -0
- package/_dist/css/component-css/pds-popover.css +1 -1
- package/_dist/css/component-css/pds-pricing-card.css +1 -1
- package/_dist/css/component-css/pds-progress-bar.css +1 -1
- package/_dist/css/component-css/pds-progress-ring.css +1 -1
- package/_dist/css/component-css/pds-pull-quote.css +1 -1
- package/_dist/css/component-css/pds-radio-group.css +1 -1
- package/_dist/css/component-css/pds-refresh-checker.css +1 -0
- package/_dist/css/component-css/pds-section-message.css +1 -1
- package/_dist/css/component-css/pds-segmented-button.css +1 -0
- package/_dist/css/component-css/pds-select.css +1 -4
- package/_dist/css/component-css/pds-side-nav-compact.css +1 -0
- package/_dist/css/component-css/pds-side-nav-global.css +5 -0
- package/_dist/css/component-css/pds-side-nav.css +2 -1
- package/_dist/css/component-css/pds-site-card.css +1 -1
- package/_dist/css/component-css/pds-site-dashboard-heading.css +1 -0
- package/_dist/css/component-css/pds-site-footer.css +1 -1
- package/_dist/css/component-css/pds-skeleton.css +1 -0
- package/_dist/css/component-css/pds-skiplink.css +1 -0
- package/_dist/css/component-css/pds-social-links.css +1 -1
- package/_dist/css/component-css/pds-spinner.css +1 -1
- package/_dist/css/component-css/pds-split-button.css +1 -1
- package/_dist/css/component-css/pds-status-badge.css +1 -9
- package/_dist/css/component-css/pds-status-indicator.css +1 -1
- package/_dist/css/component-css/pds-stepper.css +1 -1
- package/_dist/css/component-css/pds-switch.css +1 -0
- package/_dist/css/component-css/pds-tab-menu.css +2 -0
- package/_dist/css/component-css/pds-table-of-contents.css +1 -1
- package/_dist/css/component-css/pds-table.css +1 -1
- package/_dist/css/component-css/pds-tabs.css +1 -1
- package/_dist/css/component-css/pds-tag.css +1 -1
- package/_dist/css/component-css/pds-tally.css +1 -0
- package/_dist/css/component-css/pds-text-input.css +1 -0
- package/_dist/css/component-css/pds-textarea.css +1 -1
- package/_dist/css/component-css/pds-theme-switcher.css +1 -0
- package/_dist/css/component-css/pds-tile.css +1 -1
- package/_dist/css/component-css/pds-tiles-common.css +1 -1
- package/_dist/css/component-css/pds-toaster.css +1 -1
- package/_dist/css/component-css/pds-tooltip.css +1 -1
- package/_dist/css/component-css/pds-user-menu-story-only.css +1 -0
- package/_dist/css/component-css/pds-user-menu.css +1 -0
- package/_dist/css/component-css/pds-utility-button.css +1 -0
- package/_dist/css/component-css/pds-vertical-empty-state.css +1 -0
- package/_dist/css/component-css/pds-vertical-stepper.css +1 -0
- package/_dist/css/component-css/pds-video-embed.css +1 -0
- package/_dist/css/component-css/pds-workspace-selector.css +1 -1
- package/_dist/css/design-tokens/pds-design-tokens-dark-mode.css +219 -0
- package/_dist/css/design-tokens/pds-design-tokens-light-mode.css +328 -0
- package/_dist/css/design-tokens/pds-design-tokens.css +130 -0
- package/_dist/css/pds-components.css +83 -118
- package/_dist/css/pds-core.css +4 -4
- package/_dist/css/pds-layouts.css +9 -1
- package/_dist/index.css +1 -0
- package/_dist/index.d.ts +124 -0
- package/_dist/index.js +12518 -0
- package/_dist/index.js.map +1 -0
- package/_dist/layouts/AppLayout/AppLayout.d.ts +73 -0
- package/_dist/layouts/Container/Container.d.ts +25 -0
- package/_dist/layouts/DashboardGlobal/DashboardGlobal.d.ts +57 -0
- package/_dist/layouts/DashboardInner/DashboardInner.d.ts +29 -0
- package/_dist/layouts/DocsLayout/DocsLayout.d.ts +30 -0
- package/_dist/layouts/FlexContainer/FlexContainer.d.ts +72 -0
- package/_dist/layouts/GlobalWrapper/GlobalWrapper.d.ts +19 -0
- package/_dist/layouts/SidebarLayout/SidebarLayout.d.ts +36 -0
- package/_dist/layouts/StepperLayout/StepperLayout.d.ts +20 -0
- package/_dist/layouts/ThreeItemLayout/ThreeItemLayout.d.ts +30 -0
- package/_dist/layouts/TwoItemLayout/TwoItemLayout.d.ts +34 -0
- package/_dist/layouts/layout-types.d.ts +2 -0
- package/_dist/libs/components/sb-docs-toc-layout.d.ts +4 -0
- package/_dist/libs/components/utility-components.d.ts +15 -0
- package/_dist/libs/components/utils.d.ts +7 -0
- package/_dist/libs/types/custom-types.d.ts +107 -0
- package/_dist/mocks/data/navigation-items.d.ts +367 -0
- package/_dist/mocks/data/pagination-items.d.ts +16 -0
- package/_dist/mocks/markup/dashboard-main-content.d.ts +10 -0
- package/_dist/mocks/markup/dashboard-navigation.d.ts +11 -0
- package/_dist/mocks/markup/inputs.d.ts +2 -0
- package/_dist/mocks/markup/modal.d.ts +2 -0
- package/_dist/mocks/markup/panel-row-content.d.ts +16 -0
- package/_dist/utilities/color/color-preview-swatches.d.ts +13 -0
- package/_dist/utilities/context-providers/ResponsiveContext/ResponsiveContext.d.ts +6 -0
- package/_dist/utilities/hooks/useClipboard.d.ts +6 -0
- package/_dist/utilities/hooks/useKeyPress.d.ts +1 -0
- package/_dist/utilities/hooks/useWindowWidth.d.ts +1 -0
- package/_dist/vars/animation.d.ts +5 -0
- package/_dist/vars/spacing.d.ts +36 -0
- package/_dist/vars/type-scale.d.ts +28 -0
- package/_dist/vars/z-index.d.ts +16 -0
- package/package.json +83 -44
- package/_dist/cjs/index.js +0 -93
- package/_dist/cjs/index.js.map +0 -1
- package/_dist/css/component-css/pds-animated-button.css +0 -7
- package/_dist/css/component-css/pds-breadcrumbs.css +0 -1
- package/_dist/css/component-css/pds-heading.css +0 -1
- package/_dist/css/component-css/pds-inputs-common.css +0 -1
- package/_dist/css/component-css/pds-pager.css +0 -1
- package/_dist/css/component-css/pds-stats-tile-list.css +0 -1
- package/_dist/css/component-css/pds-toast.css +0 -1
- package/_dist/css/component-css/pds-toggle-button.css +0 -1
- package/_dist/css/component-css/pds-toggle-switch.css +0 -3
- package/_dist/esm/index.js +0 -93
- package/_dist/esm/index.js.map +0 -1
|
@@ -0,0 +1,367 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SideNavGlobalItemProps } from '@components/navigation/SideNavGlobal/SideNavGlobalItem';
|
|
3
|
+
export declare const dialogMsgBase = "Activated menu item => ";
|
|
4
|
+
import { UserMenuItem } from '@components/navigation/UserMenu/UserMenu';
|
|
5
|
+
export declare const buttonNavSampleMenuItems: ({
|
|
6
|
+
linkContent: React.JSX.Element;
|
|
7
|
+
isActive: boolean;
|
|
8
|
+
} | {
|
|
9
|
+
linkContent: React.JSX.Element;
|
|
10
|
+
isActive?: undefined;
|
|
11
|
+
})[];
|
|
12
|
+
export declare const buttonNavSampleMenuItemsRR: {
|
|
13
|
+
linkContent: React.JSX.Element;
|
|
14
|
+
}[];
|
|
15
|
+
export declare const blogMenuItems: {
|
|
16
|
+
linkContent: React.JSX.Element;
|
|
17
|
+
}[];
|
|
18
|
+
export declare const dashboardNavSampleMenuItems: SideNavGlobalItemProps[];
|
|
19
|
+
export declare const dashboardNavSampleMenuItemsRR: SideNavGlobalItemProps[];
|
|
20
|
+
export declare const documentationMenuItems: ({
|
|
21
|
+
label: string;
|
|
22
|
+
links: {
|
|
23
|
+
linkContent: React.JSX.Element;
|
|
24
|
+
}[];
|
|
25
|
+
linkContent?: undefined;
|
|
26
|
+
} | {
|
|
27
|
+
linkContent: React.JSX.Element;
|
|
28
|
+
label?: undefined;
|
|
29
|
+
links?: undefined;
|
|
30
|
+
})[];
|
|
31
|
+
export declare const helpMenuItems: ({
|
|
32
|
+
label: string;
|
|
33
|
+
callback: (item: any) => void;
|
|
34
|
+
isSeparator?: undefined;
|
|
35
|
+
isHeading?: undefined;
|
|
36
|
+
} | {
|
|
37
|
+
isSeparator: boolean;
|
|
38
|
+
label?: undefined;
|
|
39
|
+
callback?: undefined;
|
|
40
|
+
isHeading?: undefined;
|
|
41
|
+
} | {
|
|
42
|
+
label: string;
|
|
43
|
+
isHeading: boolean;
|
|
44
|
+
callback?: undefined;
|
|
45
|
+
isSeparator?: undefined;
|
|
46
|
+
})[];
|
|
47
|
+
export declare const micrositeMenuItems: ({
|
|
48
|
+
label: string;
|
|
49
|
+
links: {
|
|
50
|
+
linkContent: React.JSX.Element;
|
|
51
|
+
}[];
|
|
52
|
+
linkContent?: undefined;
|
|
53
|
+
} | {
|
|
54
|
+
linkContent: React.JSX.Element;
|
|
55
|
+
label?: undefined;
|
|
56
|
+
links?: undefined;
|
|
57
|
+
})[];
|
|
58
|
+
export declare const navMenuSampleMenuItems: ({
|
|
59
|
+
label: string;
|
|
60
|
+
links: ({
|
|
61
|
+
linkContent: React.JSX.Element;
|
|
62
|
+
isSeparator?: undefined;
|
|
63
|
+
} | {
|
|
64
|
+
isSeparator: boolean;
|
|
65
|
+
linkContent?: undefined;
|
|
66
|
+
})[];
|
|
67
|
+
linkContent?: undefined;
|
|
68
|
+
isActive?: undefined;
|
|
69
|
+
} | {
|
|
70
|
+
linkContent: React.JSX.Element;
|
|
71
|
+
isActive: boolean;
|
|
72
|
+
label?: undefined;
|
|
73
|
+
links?: undefined;
|
|
74
|
+
} | {
|
|
75
|
+
linkContent: React.JSX.Element;
|
|
76
|
+
label?: undefined;
|
|
77
|
+
links?: undefined;
|
|
78
|
+
isActive?: undefined;
|
|
79
|
+
})[];
|
|
80
|
+
export declare const navMenuSampleMenuItemsRR: ({
|
|
81
|
+
label: string;
|
|
82
|
+
links: ({
|
|
83
|
+
linkContent: React.JSX.Element;
|
|
84
|
+
isSeparator?: undefined;
|
|
85
|
+
} | {
|
|
86
|
+
isSeparator: boolean;
|
|
87
|
+
linkContent?: undefined;
|
|
88
|
+
})[];
|
|
89
|
+
linkContent?: undefined;
|
|
90
|
+
} | {
|
|
91
|
+
linkContent: React.JSX.Element;
|
|
92
|
+
label?: undefined;
|
|
93
|
+
links?: undefined;
|
|
94
|
+
})[];
|
|
95
|
+
export declare const sampleSites: ({
|
|
96
|
+
id: string;
|
|
97
|
+
machineName: string;
|
|
98
|
+
name: string;
|
|
99
|
+
status: string;
|
|
100
|
+
type: string;
|
|
101
|
+
} | {
|
|
102
|
+
id: string;
|
|
103
|
+
name: string;
|
|
104
|
+
status: string;
|
|
105
|
+
type: string;
|
|
106
|
+
machineName?: undefined;
|
|
107
|
+
} | {
|
|
108
|
+
id: string;
|
|
109
|
+
machineName: string;
|
|
110
|
+
name: string;
|
|
111
|
+
status: string;
|
|
112
|
+
type?: undefined;
|
|
113
|
+
})[];
|
|
114
|
+
export declare const sideNavSampleMenuItems: ({
|
|
115
|
+
linkContent: React.JSX.Element;
|
|
116
|
+
links?: undefined;
|
|
117
|
+
} | {
|
|
118
|
+
linkContent: React.JSX.Element;
|
|
119
|
+
links: {
|
|
120
|
+
linkContent: React.JSX.Element;
|
|
121
|
+
}[];
|
|
122
|
+
} | {
|
|
123
|
+
linkContent: string;
|
|
124
|
+
links: ({
|
|
125
|
+
linkContent: React.JSX.Element;
|
|
126
|
+
isActive?: undefined;
|
|
127
|
+
} | {
|
|
128
|
+
linkContent: React.JSX.Element;
|
|
129
|
+
isActive: boolean;
|
|
130
|
+
})[];
|
|
131
|
+
})[];
|
|
132
|
+
export declare const sideNavSampleMenuItemsWithTallies: ({
|
|
133
|
+
linkContent: React.JSX.Element;
|
|
134
|
+
links?: undefined;
|
|
135
|
+
} | {
|
|
136
|
+
linkContent: React.JSX.Element;
|
|
137
|
+
links: {
|
|
138
|
+
linkContent: React.JSX.Element;
|
|
139
|
+
}[];
|
|
140
|
+
} | {
|
|
141
|
+
linkContent: string;
|
|
142
|
+
links: ({
|
|
143
|
+
linkContent: React.JSX.Element;
|
|
144
|
+
isActive?: undefined;
|
|
145
|
+
} | {
|
|
146
|
+
linkContent: React.JSX.Element;
|
|
147
|
+
isActive: boolean;
|
|
148
|
+
})[];
|
|
149
|
+
})[];
|
|
150
|
+
export declare const sideNavSampleMenuItemsRR: ({
|
|
151
|
+
linkContent: React.JSX.Element;
|
|
152
|
+
links?: undefined;
|
|
153
|
+
} | {
|
|
154
|
+
linkContent: string;
|
|
155
|
+
links: {
|
|
156
|
+
linkContent: React.JSX.Element;
|
|
157
|
+
}[];
|
|
158
|
+
})[];
|
|
159
|
+
export declare const sideNavSampleMenuItemsMultidev: ({
|
|
160
|
+
linkContent: React.JSX.Element;
|
|
161
|
+
isActive: boolean;
|
|
162
|
+
} | {
|
|
163
|
+
linkContent: React.JSX.Element;
|
|
164
|
+
isActive?: undefined;
|
|
165
|
+
})[];
|
|
166
|
+
export declare const sideNavSampleMenuItemsCode: ({
|
|
167
|
+
linkContent: React.JSX.Element;
|
|
168
|
+
isActive: boolean;
|
|
169
|
+
} | {
|
|
170
|
+
linkContent: React.JSX.Element;
|
|
171
|
+
isActive?: undefined;
|
|
172
|
+
})[];
|
|
173
|
+
export declare const sideNavCompactSampleMenuItems: ({
|
|
174
|
+
linkContent: React.JSX.Element;
|
|
175
|
+
links?: undefined;
|
|
176
|
+
} | {
|
|
177
|
+
linkContent: string;
|
|
178
|
+
links: {
|
|
179
|
+
linkContent: React.JSX.Element;
|
|
180
|
+
}[];
|
|
181
|
+
} | {
|
|
182
|
+
linkContent: React.JSX.Element;
|
|
183
|
+
links: ({
|
|
184
|
+
linkContent: string;
|
|
185
|
+
links: ({
|
|
186
|
+
linkContent: React.JSX.Element;
|
|
187
|
+
links: ({
|
|
188
|
+
linkContent: React.JSX.Element;
|
|
189
|
+
isActive: boolean;
|
|
190
|
+
} | {
|
|
191
|
+
linkContent: React.JSX.Element;
|
|
192
|
+
isActive?: undefined;
|
|
193
|
+
})[];
|
|
194
|
+
} | {
|
|
195
|
+
linkContent: React.JSX.Element;
|
|
196
|
+
links?: undefined;
|
|
197
|
+
})[];
|
|
198
|
+
} | {
|
|
199
|
+
linkContent: React.JSX.Element;
|
|
200
|
+
links?: undefined;
|
|
201
|
+
})[];
|
|
202
|
+
})[];
|
|
203
|
+
export declare const sideNavCompactSampleMenuItemsRR: ({
|
|
204
|
+
linkContent: React.JSX.Element;
|
|
205
|
+
links?: undefined;
|
|
206
|
+
} | {
|
|
207
|
+
linkContent: string;
|
|
208
|
+
links: {
|
|
209
|
+
linkContent: React.JSX.Element;
|
|
210
|
+
}[];
|
|
211
|
+
} | {
|
|
212
|
+
linkContent: React.JSX.Element;
|
|
213
|
+
links: ({
|
|
214
|
+
linkContent: string;
|
|
215
|
+
links: {
|
|
216
|
+
linkContent: React.JSX.Element;
|
|
217
|
+
}[];
|
|
218
|
+
} | {
|
|
219
|
+
linkContent: React.JSX.Element;
|
|
220
|
+
links?: undefined;
|
|
221
|
+
})[];
|
|
222
|
+
})[];
|
|
223
|
+
export declare const tabMenuSampleMenuItems: ({
|
|
224
|
+
dropdownSettings: {
|
|
225
|
+
buttonLabel: string;
|
|
226
|
+
filterLabel: string;
|
|
227
|
+
filterPlaceholder: string;
|
|
228
|
+
minFilterItems: number;
|
|
229
|
+
noResultsText: string;
|
|
230
|
+
};
|
|
231
|
+
icon: string;
|
|
232
|
+
linkContent: React.JSX.Element;
|
|
233
|
+
links: {
|
|
234
|
+
linkContent: React.JSX.Element;
|
|
235
|
+
}[];
|
|
236
|
+
isActive?: undefined;
|
|
237
|
+
} | {
|
|
238
|
+
icon: string;
|
|
239
|
+
linkContent: React.JSX.Element;
|
|
240
|
+
isActive: boolean;
|
|
241
|
+
dropdownSettings?: undefined;
|
|
242
|
+
links?: undefined;
|
|
243
|
+
} | {
|
|
244
|
+
icon: string;
|
|
245
|
+
linkContent: React.JSX.Element;
|
|
246
|
+
dropdownSettings?: undefined;
|
|
247
|
+
links?: undefined;
|
|
248
|
+
isActive?: undefined;
|
|
249
|
+
})[];
|
|
250
|
+
export declare const tabMenuSampleMenuItemsMultidev: ({
|
|
251
|
+
dropdownSettings: {
|
|
252
|
+
buttonLabel: string;
|
|
253
|
+
filterLabel: string;
|
|
254
|
+
filterPlaceholder: string;
|
|
255
|
+
minFilterItems: number;
|
|
256
|
+
noResultsText: string;
|
|
257
|
+
};
|
|
258
|
+
icon: string;
|
|
259
|
+
linkContent: React.JSX.Element;
|
|
260
|
+
links: ({
|
|
261
|
+
linkContent: React.JSX.Element;
|
|
262
|
+
isActive?: undefined;
|
|
263
|
+
} | {
|
|
264
|
+
linkContent: React.JSX.Element;
|
|
265
|
+
isActive: boolean;
|
|
266
|
+
})[];
|
|
267
|
+
promoteActiveChildLink: boolean;
|
|
268
|
+
} | {
|
|
269
|
+
icon: string;
|
|
270
|
+
linkContent: React.JSX.Element;
|
|
271
|
+
dropdownSettings?: undefined;
|
|
272
|
+
links?: undefined;
|
|
273
|
+
promoteActiveChildLink?: undefined;
|
|
274
|
+
})[];
|
|
275
|
+
export declare const userMenuSampleItems: UserMenuItem[];
|
|
276
|
+
export declare const workspaceItemsSimple: ({
|
|
277
|
+
displayName: string;
|
|
278
|
+
workspaceId: string;
|
|
279
|
+
workspaceLink: React.JSX.Element;
|
|
280
|
+
imageSrc?: undefined;
|
|
281
|
+
planTier?: undefined;
|
|
282
|
+
isUnprivileged?: undefined;
|
|
283
|
+
isActive?: undefined;
|
|
284
|
+
} | {
|
|
285
|
+
displayName: string;
|
|
286
|
+
imageSrc: string;
|
|
287
|
+
planTier: string;
|
|
288
|
+
workspaceId: string;
|
|
289
|
+
workspaceLink: React.JSX.Element;
|
|
290
|
+
isUnprivileged?: undefined;
|
|
291
|
+
isActive?: undefined;
|
|
292
|
+
} | {
|
|
293
|
+
displayName: string;
|
|
294
|
+
imageSrc: string;
|
|
295
|
+
planTier: string;
|
|
296
|
+
workspaceId: string;
|
|
297
|
+
workspaceLink: React.JSX.Element;
|
|
298
|
+
isUnprivileged: boolean;
|
|
299
|
+
isActive?: undefined;
|
|
300
|
+
} | {
|
|
301
|
+
displayName: string;
|
|
302
|
+
planTier: string;
|
|
303
|
+
workspaceId: string;
|
|
304
|
+
workspaceLink: React.JSX.Element;
|
|
305
|
+
isActive: boolean;
|
|
306
|
+
imageSrc?: undefined;
|
|
307
|
+
isUnprivileged?: undefined;
|
|
308
|
+
} | {
|
|
309
|
+
displayName: string;
|
|
310
|
+
planTier: string;
|
|
311
|
+
workspaceId: string;
|
|
312
|
+
workspaceLink: React.JSX.Element;
|
|
313
|
+
imageSrc?: undefined;
|
|
314
|
+
isUnprivileged?: undefined;
|
|
315
|
+
isActive?: undefined;
|
|
316
|
+
})[];
|
|
317
|
+
export declare const workspaceItemsPersonal: ({
|
|
318
|
+
displayName: string;
|
|
319
|
+
workspaceId: string;
|
|
320
|
+
workspaceLink: React.JSX.Element;
|
|
321
|
+
isActive: boolean;
|
|
322
|
+
imageSrc?: undefined;
|
|
323
|
+
planTier?: undefined;
|
|
324
|
+
} | {
|
|
325
|
+
displayName: string;
|
|
326
|
+
imageSrc: string;
|
|
327
|
+
planTier: string;
|
|
328
|
+
workspaceId: string;
|
|
329
|
+
workspaceLink: React.JSX.Element;
|
|
330
|
+
isActive?: undefined;
|
|
331
|
+
} | {
|
|
332
|
+
displayName: string;
|
|
333
|
+
planTier: string;
|
|
334
|
+
workspaceId: string;
|
|
335
|
+
workspaceLink: React.JSX.Element;
|
|
336
|
+
isActive?: undefined;
|
|
337
|
+
imageSrc?: undefined;
|
|
338
|
+
})[];
|
|
339
|
+
export declare const workspaceItemsLonger: ({
|
|
340
|
+
displayName: string;
|
|
341
|
+
workspaceId: string;
|
|
342
|
+
workspaceLink: React.JSX.Element;
|
|
343
|
+
imageSrc?: undefined;
|
|
344
|
+
planTier?: undefined;
|
|
345
|
+
isActive?: undefined;
|
|
346
|
+
} | {
|
|
347
|
+
displayName: string;
|
|
348
|
+
imageSrc: string;
|
|
349
|
+
planTier: string;
|
|
350
|
+
workspaceId: string;
|
|
351
|
+
workspaceLink: React.JSX.Element;
|
|
352
|
+
isActive?: undefined;
|
|
353
|
+
} | {
|
|
354
|
+
displayName: string;
|
|
355
|
+
planTier: string;
|
|
356
|
+
workspaceId: string;
|
|
357
|
+
workspaceLink: React.JSX.Element;
|
|
358
|
+
imageSrc?: undefined;
|
|
359
|
+
isActive?: undefined;
|
|
360
|
+
} | {
|
|
361
|
+
displayName: string;
|
|
362
|
+
planTier: string;
|
|
363
|
+
workspaceId: string;
|
|
364
|
+
workspaceLink: React.JSX.Element;
|
|
365
|
+
isActive: boolean;
|
|
366
|
+
imageSrc?: undefined;
|
|
367
|
+
})[];
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare const paginationItemsSites: {
|
|
2
|
+
sitename: string;
|
|
3
|
+
dateCreated: string;
|
|
4
|
+
user: string;
|
|
5
|
+
upstream: string;
|
|
6
|
+
plan: string;
|
|
7
|
+
status: string;
|
|
8
|
+
}[];
|
|
9
|
+
export declare const paginationItemsUsers: {
|
|
10
|
+
id: number;
|
|
11
|
+
first_name: string;
|
|
12
|
+
last_name: string;
|
|
13
|
+
job_title: string;
|
|
14
|
+
email: string;
|
|
15
|
+
phone: string;
|
|
16
|
+
}[];
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const DemoDashboardInnerHeaderLeft: ({ slot: _slot, }: {
|
|
3
|
+
slot?: string;
|
|
4
|
+
}) => React.JSX.Element;
|
|
5
|
+
export declare const DemoDashboardInnerHeaderRight: ({ slot: _slot, }: {
|
|
6
|
+
slot?: string;
|
|
7
|
+
}) => React.JSX.Element;
|
|
8
|
+
export declare const DemoDashboardContent: ({ slot: _slot }: {
|
|
9
|
+
slot?: string;
|
|
10
|
+
}) => React.JSX.Element;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const DemoDashboardSidebarNav: ({ slot: _slot }: {
|
|
3
|
+
slot?: string;
|
|
4
|
+
}) => React.JSX.Element;
|
|
5
|
+
export declare const DemoDashboardFooter: ({ slot: _slot }: {
|
|
6
|
+
slot?: string;
|
|
7
|
+
}) => React.JSX.Element;
|
|
8
|
+
export declare const DemoDashboardNavbar: ({ isAdmin, slot: _slot, }: {
|
|
9
|
+
isAdmin?: boolean;
|
|
10
|
+
slot?: string;
|
|
11
|
+
}) => React.JSX.Element;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const PanelRowDemoItemsLeft: ({ slot: _slot }: {
|
|
3
|
+
slot?: string;
|
|
4
|
+
}) => React.JSX.Element;
|
|
5
|
+
export declare const PanelRowDemoItemsLeftList: ({ slot: _slot, }: {
|
|
6
|
+
slot?: string;
|
|
7
|
+
}) => React.JSX.Element;
|
|
8
|
+
export declare const PanelRowDemoItemsRight: ({ slot: _slot }: {
|
|
9
|
+
slot?: string;
|
|
10
|
+
}) => React.JSX.Element;
|
|
11
|
+
export declare const PanelRowDemoItemsDropdown: ({ slot: _slot, }: {
|
|
12
|
+
slot?: string;
|
|
13
|
+
}) => React.JSX.Element;
|
|
14
|
+
export declare const PanelRowDemoItemsBelow: ({ slot: _slot }: {
|
|
15
|
+
slot?: string;
|
|
16
|
+
}) => React.JSX.Element;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import './color-preview-swatches.css';
|
|
3
|
+
export declare const SwatchButton: ({ clipboardText, color, type, }: {
|
|
4
|
+
color: string;
|
|
5
|
+
clipboardText: string;
|
|
6
|
+
type: "background" | "foreground" | "border";
|
|
7
|
+
}) => React.JSX.Element;
|
|
8
|
+
interface ColorPreviewSwatchesProps {
|
|
9
|
+
colors: string[];
|
|
10
|
+
type: 'background' | 'foreground' | 'border';
|
|
11
|
+
}
|
|
12
|
+
export declare const ColorPreviewSwatches: ({ colors, type, }: ColorPreviewSwatchesProps) => React.JSX.Element;
|
|
13
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const useKeyPress: (targetKey: string, callback?: (event: KeyboardEvent) => void) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const useWindowWidth: () => number;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export const ANIMATION_TRANSITION_DEFAULT_DURATION: 200;
|
|
2
|
+
export const ANIMATION_TRANSITION_DEFAULT_DELAY: 0;
|
|
3
|
+
export const ANIMATION_TRANSITION_DEFAULT_TIMING_FUNCTION: "ease-in-out";
|
|
4
|
+
export const ANIMATION_TRANSITION_REVEAL_DURATION: 300;
|
|
5
|
+
export const ANIMATION_TRANSITION_REVEAL_TIMING_FUNCTION: "ease-out";
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export const SPACING_6XS: 0.125;
|
|
2
|
+
export const SPACING_5XS: 0.25;
|
|
3
|
+
export const SPACING_4XS: 0.328;
|
|
4
|
+
export const SPACING_3XS: 0.41;
|
|
5
|
+
export const SPACING_2XS: 0.512;
|
|
6
|
+
export const SPACING_XS: 0.64;
|
|
7
|
+
export const SPACING_S: 0.8;
|
|
8
|
+
export const SPACING_M: 1;
|
|
9
|
+
export const SPACING_L: 1.25;
|
|
10
|
+
export const SPACING_XL: 1.563;
|
|
11
|
+
export const SPACING_2XL: 1.953;
|
|
12
|
+
export const SPACING_3XL: 2.441;
|
|
13
|
+
export const SPACING_4XL: 3.052;
|
|
14
|
+
export const SPACING_5XL: 3.815;
|
|
15
|
+
export const SPACING_6XL: 4.678;
|
|
16
|
+
export const SPACING_7XL: 5.96;
|
|
17
|
+
export const SPACING_8XL: 7.451;
|
|
18
|
+
export namespace SPACING {
|
|
19
|
+
export { SPACING_6XS };
|
|
20
|
+
export { SPACING_5XS };
|
|
21
|
+
export { SPACING_4XS };
|
|
22
|
+
export { SPACING_3XS };
|
|
23
|
+
export { SPACING_2XS };
|
|
24
|
+
export { SPACING_XS };
|
|
25
|
+
export { SPACING_S };
|
|
26
|
+
export { SPACING_M };
|
|
27
|
+
export { SPACING_L };
|
|
28
|
+
export { SPACING_XL };
|
|
29
|
+
export { SPACING_2XL };
|
|
30
|
+
export { SPACING_3XL };
|
|
31
|
+
export { SPACING_4XL };
|
|
32
|
+
export { SPACING_5XL };
|
|
33
|
+
export { SPACING_6XL };
|
|
34
|
+
export { SPACING_7XL };
|
|
35
|
+
export { SPACING_8XL };
|
|
36
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export const TYPE_SCALE_XS: 0.64;
|
|
2
|
+
export const TYPE_SCALE_S: 0.8;
|
|
3
|
+
export const TYPE_SCALE_M: 1;
|
|
4
|
+
export const TYPE_SCALE_L: 1.25;
|
|
5
|
+
export const TYPE_SCALE_XL: 1.563;
|
|
6
|
+
export const TYPE_SCALE_2XL: 1.953;
|
|
7
|
+
export const TYPE_SCALE_3XL: 2.441;
|
|
8
|
+
export const TYPE_SCALE_4XL: 3.052;
|
|
9
|
+
export const TYPE_SCALE_5XL: 3.815;
|
|
10
|
+
export const TYPE_SCALE_6XL: 4.678;
|
|
11
|
+
export const TYPE_SCALE_7XL: 5.96;
|
|
12
|
+
export const TYPE_SCALE_8XL: 7.451;
|
|
13
|
+
export const TYPE_SCALE_9XL: 6.192;
|
|
14
|
+
export namespace TYPE_SCALE {
|
|
15
|
+
export { TYPE_SCALE_XS };
|
|
16
|
+
export { TYPE_SCALE_S };
|
|
17
|
+
export { TYPE_SCALE_M };
|
|
18
|
+
export { TYPE_SCALE_L };
|
|
19
|
+
export { TYPE_SCALE_XL };
|
|
20
|
+
export { TYPE_SCALE_2XL };
|
|
21
|
+
export { TYPE_SCALE_3XL };
|
|
22
|
+
export { TYPE_SCALE_4XL };
|
|
23
|
+
export { TYPE_SCALE_5XL };
|
|
24
|
+
export { TYPE_SCALE_6XL };
|
|
25
|
+
export { TYPE_SCALE_7XL };
|
|
26
|
+
export { TYPE_SCALE_8XL };
|
|
27
|
+
export { TYPE_SCALE_9XL };
|
|
28
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export const Z_INDEX_NAVIGATION: 100;
|
|
2
|
+
export const Z_INDEX_DROPDOWN: 300;
|
|
3
|
+
export const Z_INDEX_NOTIFICATIONS: 500;
|
|
4
|
+
export const Z_INDEX_OVERLAY: 700;
|
|
5
|
+
export const Z_INDEX_MODAL: 900;
|
|
6
|
+
export const Z_INDEX_MAX: 9999;
|
|
7
|
+
export const Z_INDEX_RESET: 0;
|
|
8
|
+
export namespace Z_INDEX {
|
|
9
|
+
export { Z_INDEX_NAVIGATION };
|
|
10
|
+
export { Z_INDEX_DROPDOWN };
|
|
11
|
+
export { Z_INDEX_NOTIFICATIONS };
|
|
12
|
+
export { Z_INDEX_OVERLAY };
|
|
13
|
+
export { Z_INDEX_MODAL };
|
|
14
|
+
export { Z_INDEX_MAX };
|
|
15
|
+
export { Z_INDEX_RESET };
|
|
16
|
+
}
|