@pantheon-systems/pds-toolkit-react 2.0.0-alpha.8 → 2.0.0-alpha.80
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/bin/pds-codemod.cjs +58 -0
- package/codemods/v1-to-v2/css-token-renames.js +186 -0
- package/codemods/v1-to-v2/mappings.json +1787 -0
- package/codemods/v1-to-v2/transforms/__testfixtures__/component-renames/basic.input.tsx +33 -0
- package/codemods/v1-to-v2/transforms/__testfixtures__/component-renames/basic.output.tsx +33 -0
- package/codemods/v1-to-v2/transforms/__testfixtures__/component-renames/only.input.tsx +8 -0
- package/codemods/v1-to-v2/transforms/__testfixtures__/component-renames/only.output.tsx +8 -0
- package/codemods/v1-to-v2/transforms/__testfixtures__/css-class-removals/basic.input.tsx +55 -0
- package/codemods/v1-to-v2/transforms/__testfixtures__/css-class-removals/basic.output.tsx +55 -0
- package/codemods/v1-to-v2/transforms/__testfixtures__/css-class-renames/basic.input.tsx +60 -0
- package/codemods/v1-to-v2/transforms/__testfixtures__/css-class-renames/basic.output.tsx +60 -0
- package/codemods/v1-to-v2/transforms/__testfixtures__/icon-name-updates/basic.input.tsx +35 -0
- package/codemods/v1-to-v2/transforms/__testfixtures__/icon-name-updates/basic.output.tsx +35 -0
- package/codemods/v1-to-v2/transforms/__testfixtures__/icon-name-updates/only.input.tsx +8 -0
- package/codemods/v1-to-v2/transforms/__testfixtures__/icon-name-updates/only.output.tsx +8 -0
- package/codemods/v1-to-v2/transforms/__testfixtures__/prop-renames/basic.input.tsx +28 -0
- package/codemods/v1-to-v2/transforms/__testfixtures__/prop-renames/basic.output.tsx +28 -0
- package/codemods/v1-to-v2/transforms/__testfixtures__/prop-renames/only.input.tsx +8 -0
- package/codemods/v1-to-v2/transforms/__testfixtures__/prop-renames/only.output.tsx +8 -0
- package/codemods/v1-to-v2/transforms/__testfixtures__/prop-value-standardization/basic.input.tsx +37 -0
- package/codemods/v1-to-v2/transforms/__testfixtures__/prop-value-standardization/basic.output.tsx +37 -0
- package/codemods/v1-to-v2/transforms/__testfixtures__/prop-value-standardization/only.input.tsx +21 -0
- package/codemods/v1-to-v2/transforms/__testfixtures__/prop-value-standardization/only.output.tsx +21 -0
- package/codemods/v1-to-v2/transforms/__testfixtures__/removed-prop-values/basic.input.tsx +60 -0
- package/codemods/v1-to-v2/transforms/__testfixtures__/removed-prop-values/basic.output.tsx +51 -0
- package/codemods/v1-to-v2/transforms/__testfixtures__/removed-prop-values/only.input.tsx +8 -0
- package/codemods/v1-to-v2/transforms/__testfixtures__/removed-prop-values/only.output.tsx +8 -0
- package/codemods/v1-to-v2/transforms/__tests__/component-renames.test.js +15 -0
- package/codemods/v1-to-v2/transforms/__tests__/css-class-removals.test.js +6 -0
- package/codemods/v1-to-v2/transforms/__tests__/css-class-renames.test.js +6 -0
- package/codemods/v1-to-v2/transforms/__tests__/icon-name-updates.test.js +15 -0
- package/codemods/v1-to-v2/transforms/__tests__/prop-renames.test.js +15 -0
- package/codemods/v1-to-v2/transforms/__tests__/prop-value-standardization.test.js +16 -0
- package/codemods/v1-to-v2/transforms/__tests__/removed-prop-values.test.js +15 -0
- package/codemods/v1-to-v2/transforms/component-renames.js +166 -0
- package/codemods/v1-to-v2/transforms/css-class-removals.js +262 -0
- package/codemods/v1-to-v2/transforms/css-class-renames.js +178 -0
- package/codemods/v1-to-v2/transforms/icon-name-updates.js +124 -0
- package/codemods/v1-to-v2/transforms/prop-renames.js +109 -0
- package/codemods/v1-to-v2/transforms/prop-value-standardization.js +143 -0
- package/codemods/v1-to-v2/transforms/removed-prop-values.js +206 -0
- package/dist/components/Avatar/Avatar.d.ts +5 -1
- package/dist/components/Callout/Callout.d.ts +6 -2
- package/dist/components/CodeBlock/CodeBlock.d.ts +10 -5
- package/dist/components/CodeBlock/code-examples.d.ts +2 -1
- package/dist/components/CodeBlock/prism-setup.d.ts +2 -0
- package/dist/components/CodeBlock/themes/index.d.ts +1 -2
- package/dist/components/CodeBlock/themes/{pdsDark.d.ts → pds.d.ts} +1 -1
- package/dist/components/ComparisonList/ComparisonList.d.ts +6 -1
- package/dist/components/Dropdown/Dropdown.d.ts +257 -0
- package/dist/components/Dropdown/DropdownSelectedIcon.d.ts +7 -0
- package/dist/components/FileDiff/FileDiff.d.ts +2 -2
- package/dist/components/IdentityBlock/IdentityBlock.d.ts +37 -0
- package/dist/components/PantheonLogo/PantheonLogo.d.ts +5 -4
- package/dist/components/Popover/Popover.d.ts +5 -1
- package/dist/components/ResultCount/ResultCount.d.ts +53 -0
- package/dist/components/RowActionsMenu/RowActionsMenu.d.ts +46 -0
- package/dist/components/SiteFooter/SiteFooter.d.ts +45 -0
- package/dist/components/{navigation/DashboardSearch/DashboardSearch.d.ts → SiteSearch/SiteSearch.d.ts} +6 -11
- package/dist/components/SortableList/SortableList.d.ts +8 -0
- package/dist/components/SortableList/SortableListHeader.d.ts +7 -0
- package/dist/components/SortableList/SortableRow.d.ts +16 -0
- package/dist/components/SortableList/sortable-utils.d.ts +19 -0
- package/dist/components/SortableList/types.d.ts +142 -0
- package/dist/components/SortableList/useSortableTree.d.ts +18 -0
- package/dist/components/StatPanel/StatPanel.d.ts +70 -0
- package/dist/components/{RefreshChecker/RefreshChecker.d.ts → StatusChecker/StatusChecker.d.ts} +6 -19
- package/dist/components/StatusIndicator/StatusIndicator.d.ts +7 -4
- package/dist/components/Table/Table.d.ts +356 -17
- package/dist/components/TableOfContents/TableOfContents.d.ts +1 -5
- package/dist/components/Tag/Tag.d.ts +21 -3
- package/dist/components/ThemeSwitcher/ThemeSwitcher.d.ts +29 -8
- package/dist/components/Tooltip/Tooltip.d.ts +6 -2
- package/dist/components/UtilityBar/UtilityBar.d.ts +26 -0
- package/dist/components/badges/Badge/Badge.d.ts +10 -3
- package/dist/components/badges/StatusBadge/StatusBadge.d.ts +2 -1
- package/dist/components/buttons/Button/Button.d.ts +15 -0
- package/dist/components/buttons/ButtonLink/ButtonLink.d.ts +1 -3
- package/dist/components/buttons/ClipboardButton/ClipboardButton.d.ts +5 -1
- package/dist/components/buttons/CloseButton/CloseButton.d.ts +2 -2
- package/dist/components/buttons/FilterButton/FilterButton.d.ts +92 -0
- package/dist/components/buttons/IconButton/IconButton.d.ts +13 -1
- package/dist/components/buttons/MenuButton/MenuButton.d.ts +53 -19
- package/dist/components/buttons/SSOButton/SSOButton.d.ts +9 -1
- package/dist/components/buttons/SegmentedButton/SegmentedButton.d.ts +44 -8
- package/dist/components/buttons/SelectButton/SelectButton.d.ts +81 -0
- package/dist/components/buttons/SplitButton/SplitButton.d.ts +7 -1
- package/dist/components/cards/ActionCard/ActionCard.d.ts +64 -0
- package/dist/components/cards/Card/Card.d.ts +10 -4
- package/dist/components/cards/CardSelect/CardSelect.d.ts +100 -0
- package/dist/components/charts/BarChart/BarChart.d.ts +21 -0
- package/dist/components/charts/LineChart/LineChart.d.ts +22 -0
- package/dist/components/charts/PieChart/PieChart.d.ts +59 -0
- package/dist/components/charts/ProportionBar/ProportionBar.d.ts +57 -0
- package/dist/components/charts/shared/ChartAccessibleTable.d.ts +17 -0
- package/dist/components/charts/shared/ChartLegend.d.ts +31 -0
- package/dist/components/charts/shared/ChartSkeleton.d.ts +11 -0
- package/dist/components/charts/shared/chart-colors.d.ts +30 -0
- package/dist/components/charts/shared/chart-styles.d.ts +24 -0
- package/dist/components/charts/shared/formatters.d.ts +12 -0
- package/dist/components/charts/shared/types.d.ts +128 -0
- package/dist/components/empty-states/HorizontalEmptyState/HorizontalEmptyState.d.ts +13 -8
- package/dist/components/empty-states/VerticalEmptyState/VerticalEmptyState.d.ts +3 -2
- package/dist/components/icons/Icon/Icon.d.ts +2 -2
- package/dist/components/icons/Icon/custom-icons.d.ts +1 -1
- package/dist/components/icons/Icon/generated-icon-data.d.ts +226 -16
- package/dist/components/icons/PaymentIcon/PaymentIcon.d.ts +7 -3
- package/dist/components/icons/PlatformIcon/PlatformIcon.d.ts +6 -6
- package/dist/components/inputs/Checkbox/Checkbox.d.ts +3 -3
- package/dist/components/inputs/CheckboxFieldset/CheckboxFieldset.d.ts +9 -1
- package/dist/components/inputs/CheckboxGroup/CheckboxGroup.d.ts +9 -1
- package/dist/components/inputs/Combobox/Combobox.d.ts +17 -7
- package/dist/components/inputs/ComboboxMultiselect/ComboboxMultiselect.d.ts +10 -5
- package/dist/components/inputs/Datepicker/Datepicker.d.ts +217 -14
- package/dist/components/inputs/FileUpload/FileUpload.d.ts +6 -1
- package/dist/components/inputs/RadioGroup/RadioGroup.d.ts +10 -2
- package/dist/components/inputs/Select/Select.d.ts +11 -2
- package/dist/components/inputs/Switch/Switch.d.ts +5 -5
- package/dist/components/inputs/TagsInput/TagsInput.d.ts +6 -1
- package/dist/components/inputs/TextInput/TextInput.d.ts +4 -4
- package/dist/components/inputs/Textarea/Textarea.d.ts +2 -2
- package/dist/components/inputs/Timepicker/Timepicker.d.ts +94 -0
- package/dist/components/inputs/input-utilities.d.ts +12 -2
- package/dist/components/{CTALink → links/CTALink}/CTALink.d.ts +2 -2
- package/dist/components/{LinkNewWindow → links/LinkNewWindow}/LinkNewWindow.d.ts +1 -1
- package/dist/components/loading-indicators/Spinner/Spinner.d.ts +5 -4
- package/dist/components/navigation/ButtonNav/ButtonNav.d.ts +11 -5
- package/dist/components/navigation/DropdownMenu/DropdownMenu.d.ts +1 -0
- package/dist/components/navigation/Navbar/Navbar.d.ts +9 -21
- package/dist/components/navigation/SideNav/SideNav.d.ts +7 -1
- package/dist/components/navigation/SideNavGlobal/SideNavGlobal.d.ts +5 -15
- package/dist/components/navigation/SideNavGlobal/SideNavGlobalItem.d.ts +15 -1
- package/dist/components/navigation/SiteMenu/SiteMenu.d.ts +26 -0
- package/dist/components/navigation/SiteMenu/SiteMenuDropdown.d.ts +23 -0
- package/dist/components/navigation/TreeNav/TreeNav.d.ts +48 -0
- package/dist/components/navigation/UserMenu/UserMenu.d.ts +31 -5
- package/dist/components/navigation/WorkspaceSelector/WorkspaceSelector.d.ts +13 -16
- package/dist/components/navigation/navigation-utilities.d.ts +15 -2
- package/dist/components/notifications/SectionMessage/SectionMessage.d.ts +12 -4
- package/dist/components/notifications/Toaster/Toast.d.ts +12 -1
- package/dist/components/notifications/Toaster/Toaster.d.ts +16 -7
- package/dist/components/notifications/Toaster/useToast.d.ts +2 -0
- package/dist/components/overlays/BottomSheet/BottomSheet.d.ts +66 -0
- package/dist/components/overlays/BulkActionBar/BulkActionBar.d.ts +48 -0
- package/dist/components/overlays/Drawer/Drawer.d.ts +58 -0
- package/dist/components/overlays/FullScreenOverlay/FullScreenOverlay.d.ts +45 -0
- package/dist/components/{Modal → overlays/Modal}/Modal.d.ts +1 -1
- package/dist/components/{Pagination → pagination/Pagination}/Pagination.d.ts +7 -2
- package/dist/components/pagination/PaginationChapter/PaginationChapter.d.ts +55 -0
- package/dist/components/pagination/PaginationCompact/PaginationCompact.d.ts +67 -0
- package/dist/components/panels/ExpansionPanel/ExpansionPanel.d.ts +1 -2
- package/dist/components/panels/ExpansionPanelGroup/ExpansionPanelGroup.d.ts +1 -2
- package/dist/components/panels/FeaturePanel/FeaturePanel.d.ts +72 -0
- package/dist/components/panels/Panel/Panel.d.ts +4 -21
- package/dist/components/panels/PanelList/PanelList.d.ts +1 -1
- package/dist/components/panels/PanelStack/PanelStack.d.ts +19 -0
- package/dist/components/panels/WidgetPanel/WidgetPanel.d.ts +39 -0
- package/dist/components/progress-indicators/ProgressBar/ProgressBar.d.ts +4 -5
- package/dist/components/progress-indicators/ProgressRing/ProgressRing.d.ts +12 -4
- package/dist/components/{FlowSteps/FlowSteps.d.ts → steppers/StepList/StepList.d.ts} +7 -7
- package/dist/css/component-css/pds-action-card.css +1 -0
- package/dist/css/component-css/pds-avatar.css +1 -1
- package/dist/css/component-css/pds-badge.css +1 -1
- package/dist/css/component-css/pds-banner.css +1 -1
- package/dist/css/component-css/pds-bar-chart.css +1 -0
- package/dist/css/component-css/pds-bottom-sheet.css +1 -0
- package/dist/css/component-css/pds-branch-diff.css +1 -1
- package/dist/css/component-css/pds-breadcrumb.css +1 -1
- package/dist/css/component-css/pds-bulk-action-bar.css +1 -0
- package/dist/css/component-css/pds-button-link.css +1 -1
- package/dist/css/component-css/pds-button-nav.css +1 -1
- package/dist/css/component-css/pds-button.css +46 -14
- package/dist/css/component-css/pds-callout.css +1 -1
- package/dist/css/component-css/pds-card-select.css +2 -0
- package/dist/css/component-css/pds-card.css +1 -1
- package/dist/css/component-css/pds-chart-legend.css +1 -0
- package/dist/css/component-css/pds-chart-wrapper.css +1 -0
- 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-close-button.css +1 -1
- package/dist/css/component-css/pds-code-block-legacy.css +1 -1
- package/dist/css/component-css/pds-code-block.css +1 -1
- package/dist/css/component-css/pds-combobox-multiselect.css +3 -2
- package/dist/css/component-css/pds-combobox.css +1 -1
- package/dist/css/component-css/pds-compact-empty-state.css +1 -1
- 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-datepicker.css +1 -3
- package/dist/css/component-css/pds-drawer.css +1 -0
- package/dist/css/component-css/pds-dropdown-menu.css +2 -2
- package/dist/css/component-css/pds-dropdown.css +3 -0
- package/dist/css/component-css/pds-expansion-panel-group.css +1 -1
- package/dist/css/component-css/pds-expansion-panel.css +2 -1
- package/dist/css/component-css/pds-feature-panel.css +15 -0
- package/dist/css/component-css/pds-file-diff.css +1 -1
- package/dist/css/component-css/pds-file-upload.css +3 -3
- package/dist/css/component-css/pds-filter-button.css +1 -0
- package/dist/css/component-css/pds-full-screen-overlay.css +1 -0
- package/dist/css/component-css/pds-horizontal-empty-state.css +1 -1
- package/dist/css/component-css/pds-icon-button.css +22 -14
- package/dist/css/component-css/pds-icon-story-only.css +1 -1
- package/dist/css/component-css/pds-icon.css +1 -1
- package/dist/css/component-css/pds-identity-block.css +1 -0
- package/dist/css/component-css/pds-index.css +187 -57
- package/dist/css/component-css/pds-inline-message.css +1 -1
- package/dist/css/component-css/pds-input-group.css +1 -1
- package/dist/css/component-css/pds-input-utilities.css +1 -1
- package/dist/css/component-css/pds-line-chart.css +1 -0
- package/dist/css/component-css/pds-link-new-window.css +1 -1
- package/dist/css/component-css/pds-menu-button.css +7 -1
- package/dist/css/component-css/pds-modal.css +1 -1
- package/dist/css/component-css/pds-nav-menu.css +1 -5
- package/dist/css/component-css/pds-navbar.css +4 -1
- package/dist/css/component-css/pds-pagination-chapter.css +3 -0
- package/dist/css/component-css/pds-pagination-compact.css +1 -0
- package/dist/css/component-css/pds-pagination.css +1 -1
- package/dist/css/component-css/pds-panel-list.css +1 -1
- package/dist/css/component-css/pds-panel-stack.css +1 -0
- package/dist/css/component-css/pds-panel.css +2 -1
- package/dist/css/component-css/pds-pantheon-logo.css +1 -1
- package/dist/css/component-css/pds-payment-icon.css +1 -1
- package/dist/css/component-css/pds-picture.css +1 -1
- package/dist/css/component-css/pds-pie-chart.css +1 -0
- package/dist/css/component-css/pds-platform-icon.css +1 -1
- package/dist/css/component-css/pds-popover.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-proportion-bar.css +1 -0
- package/dist/css/component-css/pds-radio-group.css +1 -1
- package/dist/css/component-css/pds-result-count.css +1 -0
- package/dist/css/component-css/pds-row-actions-menu.css +2 -0
- package/dist/css/component-css/pds-section-message.css +1 -1
- package/dist/css/component-css/pds-segmented-button.css +2 -1
- package/dist/css/component-css/pds-select-button.css +1 -0
- package/dist/css/component-css/pds-select.css +1 -1
- package/dist/css/component-css/pds-side-nav-global.css +3 -5
- package/dist/css/component-css/pds-side-nav.css +3 -1
- package/dist/css/component-css/pds-site-footer.css +1 -1
- package/dist/css/component-css/pds-site-search.css +1 -0
- package/dist/css/component-css/pds-skeleton.css +1 -1
- package/dist/css/component-css/pds-skiplink.css +1 -1
- package/dist/css/component-css/pds-sortable-list.css +8 -0
- 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-sso-button.css +2 -2
- package/dist/css/component-css/pds-stat-panel.css +1 -0
- package/dist/css/component-css/pds-status-badge.css +1 -1
- package/dist/css/component-css/pds-status-checker.css +1 -0
- package/dist/css/component-css/pds-status-indicator.css +1 -1
- package/dist/css/component-css/pds-step-list.css +1 -0
- package/dist/css/component-css/pds-stepper.css +5 -1
- package/dist/css/component-css/pds-switch.css +6 -11
- package/dist/css/component-css/pds-tab-menu.css +2 -2
- package/dist/css/component-css/pds-table-of-contents.css +1 -1
- package/dist/css/component-css/pds-table.css +7 -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-tags-input.css +1 -1
- package/dist/css/component-css/pds-tally.css +1 -1
- package/dist/css/component-css/pds-text-input.css +1 -1
- package/dist/css/component-css/pds-textarea.css +1 -1
- package/dist/css/component-css/pds-theme-switcher.css +1 -1
- package/dist/css/component-css/pds-timepicker.css +1 -0
- 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-tree-nav.css +1 -0
- package/dist/css/component-css/pds-user-menu-story-only.css +1 -1
- package/dist/css/component-css/pds-user-menu.css +32 -1
- package/dist/css/component-css/pds-utility-bar.css +1 -0
- package/dist/css/component-css/pds-utility-button.css +3 -1
- package/dist/css/component-css/pds-vertical-empty-state.css +1 -1
- package/dist/css/component-css/pds-vertical-stepper.css +1 -1
- package/dist/css/component-css/pds-video-embed.css +1 -1
- package/dist/css/component-css/pds-widget-panel.css +1 -0
- package/dist/css/component-css/pds-workspace-selector.css +23 -1
- package/dist/css/design-tokens/variables.dark.css +371 -340
- package/dist/css/design-tokens/variables.global.css +10 -19
- package/dist/css/design-tokens/variables.light.css +367 -316
- package/dist/css/design-tokens/variables.typography.css +1 -2
- package/dist/css/layout-css/pds-app-layout.css +3 -2
- package/dist/css/layout-css/pds-docs-layout.css +1 -1
- package/dist/css/layout-css/pds-index.css +3 -9
- package/dist/css/layout-css/pds-sidebar-layout.css +13 -0
- package/dist/css/layout-css/pds-stat-panel-group.css +1 -0
- package/dist/css/layout-css/pds-stepper-layout.css +1 -1
- package/dist/css/layout-css/pds-three-item-layout.css +1 -1
- package/dist/css/layout-css/pds-two-item-layout.css +1 -1
- package/dist/css/pds-components.css +187 -57
- package/dist/css/pds-core.css +3 -2
- package/dist/css/pds-layouts.css +3 -9
- package/dist/index.css +5 -1
- package/dist/index.d.ts +103 -7
- package/dist/index.js +13227 -4807
- package/dist/index.js.map +1 -1
- package/dist/index.source.d.ts +53 -41
- package/dist/layouts/AppLayout/AppLayout.d.ts +85 -10
- package/dist/layouts/DocsLayout/DocsLayout.d.ts +9 -7
- package/dist/layouts/SidebarLayout/SidebarLayout.d.ts +36 -7
- package/dist/layouts/StatPanelGroup/StatPanelGroup.d.ts +32 -0
- package/dist/layouts/StepperLayout/StepperLayout.d.ts +13 -1
- package/dist/layouts/ThreeItemLayout/ThreeItemLayout.d.ts +3 -3
- package/dist/layouts/TwoItemLayout/TwoItemLayout.d.ts +3 -3
- package/dist/libs/components/NavAccordion/NavAccordion.d.ts +27 -0
- package/dist/libs/components/NestedOverlayContext.d.ts +14 -0
- package/dist/libs/components/StatusDot/StatusDot.d.ts +15 -0
- package/dist/libs/components/useOverlayZIndex.d.ts +16 -0
- package/dist/libs/components/utils.d.ts +1 -1
- package/dist/libs/types/custom-types.d.ts +11 -5
- package/dist/libs/types/layout-types.d.ts +5 -1
- package/dist/libs/types/navigation-types.d.ts +17 -1
- package/dist/svg/anglesDown.svg +3 -0
- package/dist/svg/anglesUp.svg +3 -0
- package/dist/svg/arrowDownWideShort.svg +3 -0
- package/dist/svg/arrowUpShortWide.svg +3 -0
- package/dist/svg/barsStaggered.svg +3 -0
- package/dist/svg/bookmark.svg +3 -0
- package/dist/svg/bookmarkSolid.svg +3 -0
- package/dist/svg/box.svg +3 -0
- package/dist/svg/circleExclamationSolid.svg +3 -0
- package/dist/svg/circleHalfStroke.svg +3 -0
- package/dist/svg/circleInfoSolid.svg +3 -0
- package/dist/svg/circleQuestionSolid.svg +3 -0
- package/dist/svg/claude.svg +3 -0
- package/dist/svg/clock.svg +3 -0
- package/dist/svg/collapseToCenter.svg +3 -0
- package/dist/svg/compress.svg +3 -0
- package/dist/svg/diagramVenn.svg +3 -0
- package/dist/svg/floppyDisk.svg +3 -0
- package/dist/svg/grid.svg +2 -2
- package/dist/svg/grid2.svg +3 -0
- package/dist/svg/landmark.svg +3 -0
- package/dist/svg/move.svg +3 -0
- package/dist/svg/octagonExclamation.svg +3 -0
- package/dist/svg/openai.svg +3 -0
- package/dist/svg/pause.svg +3 -0
- package/dist/svg/penPaintbrush.svg +3 -0
- package/dist/svg/sidebar.svg +3 -0
- package/dist/svg/slider.svg +3 -0
- package/dist/svg/squareDashed.svg +3 -0
- package/dist/svg/tableColumns.svg +3 -0
- package/dist/svg/userSolid.svg +3 -0
- package/dist/{layouts → utilities}/FlexContainer/FlexContainer.d.ts +6 -6
- package/dist/utilities/GlobalWrapper/GlobalWrapper.d.ts +35 -0
- package/dist/utilities/auto-grid/AutoGrid.d.ts +48 -0
- package/dist/utilities/context-providers/ThemeContext/ThemeContext.d.ts +113 -0
- package/dist/utilities/grid/Grid.d.ts +58 -0
- package/dist/utilities/grid/GridItem.d.ts +57 -0
- package/dist/utilities/hooks/useDropdown/index.d.ts +1 -0
- package/dist/utilities/hooks/useDropdown/useDropdown.d.ts +148 -0
- package/dist/utilities/hooks/useIsMobile/useIsMobile.d.ts +16 -0
- package/dist/utilities/hooks/useKeyPress/useKeyPress.d.ts +6 -0
- package/dist/utilities/hooks/useKeyboardShortcut/useKeyboardShortcut.d.ts +29 -0
- package/package.json +78 -46
- package/tailwind/README.md +9 -0
- package/tailwind/v3/preset.cjs +20 -0
- package/tailwind/v4/theme.css +19 -0
- package/dist/components/CTASlice/CTASlice.d.ts +0 -43
- package/dist/components/CodeBlock/themes/pdsLight.d.ts +0 -2
- package/dist/components/DashboardStat/DashboardStat.d.ts +0 -28
- package/dist/components/PullQuote/PullQuote.d.ts +0 -34
- package/dist/components/SiteDashboardHeading/SiteDashboardHeading.d.ts +0 -62
- package/dist/components/SocialLinks/SocialLinks.d.ts +0 -23
- package/dist/components/cards/CardHeading/CardHeading.d.ts +0 -31
- package/dist/components/cards/CardSelectGroup/CardSelectGroup.d.ts +0 -60
- package/dist/components/cards/EmptyStateCard/EmptyStateCard.d.ts +0 -36
- package/dist/components/cards/LinksCard/LinksCard.d.ts +0 -29
- package/dist/components/cards/LinksCard/links-card-sample-data.d.ts +0 -2
- package/dist/components/cards/NewSiteCard/NewSiteCard.d.ts +0 -61
- package/dist/components/cards/PaymentCard/PaymentCard.d.ts +0 -47
- package/dist/components/cards/PricingCard/PricingCard.d.ts +0 -95
- package/dist/components/cards/SiteCard/SiteCard.d.ts +0 -50
- package/dist/components/footer/FooterHeading/FooterHeading.d.ts +0 -22
- package/dist/components/footer/FooterLinks/FooterLinks.d.ts +0 -26
- package/dist/components/footer/SiteFooter/SiteFooter.d.ts +0 -34
- package/dist/components/footer/SiteFooter/footer-content.d.ts +0 -1
- package/dist/components/navigation/DashboardNav/DashboardNav.d.ts +0 -35
- package/dist/components/navigation/DashboardNav/DashboardNavItem.d.ts +0 -24
- package/dist/components/navigation/NavMenu/NavMenu.d.ts +0 -33
- package/dist/components/navigation/NavMenu/NavMenuDropdown.d.ts +0 -24
- package/dist/components/navigation/SideNavCompact/SideNavCompact.d.ts +0 -53
- package/dist/components/notifications/NotificationHubIcon/NotificationHubIcon.d.ts +0 -38
- package/dist/components/notifications/NotificationsPopover/NotificationsPopover.d.ts +0 -118
- package/dist/components/tiles/AvatarTileList/AvatarTileList.d.ts +0 -28
- package/dist/components/tiles/Tile/Tile.d.ts +0 -42
- package/dist/components/tiles/TileGrid/TileGrid.d.ts +0 -29
- package/dist/css/component-css/pds-avatar-tile-list.css +0 -1
- package/dist/css/component-css/pds-card-heading.css +0 -1
- package/dist/css/component-css/pds-card-select-group.css +0 -1
- package/dist/css/component-css/pds-cta-slice.css +0 -1
- package/dist/css/component-css/pds-dashboard-nav.css +0 -5
- package/dist/css/component-css/pds-dashboard-search.css +0 -1
- package/dist/css/component-css/pds-dashboard-stat.css +0 -1
- package/dist/css/component-css/pds-empty-state-card.css +0 -1
- package/dist/css/component-css/pds-flow-steps.css +0 -1
- package/dist/css/component-css/pds-footer-heading.css +0 -1
- package/dist/css/component-css/pds-footer-links.css +0 -1
- package/dist/css/component-css/pds-links-card.css +0 -1
- package/dist/css/component-css/pds-new-site-card.css +0 -1
- package/dist/css/component-css/pds-notification-hub-icon.css +0 -1
- package/dist/css/component-css/pds-notifications-popover.css +0 -1
- package/dist/css/component-css/pds-payment-card.css +0 -1
- package/dist/css/component-css/pds-pricing-card-local.css +0 -1
- package/dist/css/component-css/pds-pricing-card.css +0 -1
- package/dist/css/component-css/pds-pull-quote.css +0 -1
- package/dist/css/component-css/pds-refresh-checker.css +0 -1
- package/dist/css/component-css/pds-side-nav-compact.css +0 -1
- package/dist/css/component-css/pds-site-card.css +0 -1
- package/dist/css/component-css/pds-site-dashboard-heading.css +0 -1
- package/dist/css/component-css/pds-social-links.css +0 -1
- package/dist/css/component-css/pds-tile.css +0 -1
- package/dist/css/component-css/pds-tiles-common.css +0 -1
- package/dist/css/layout-css/pds-dashboard-global.css +0 -8
- package/dist/css/layout-css/pds-dashboard-inner.css +0 -1
- package/dist/css/layout-css/pds-flex-container.css +0 -1
- package/dist/layouts/DashboardGlobal/DashboardGlobal.d.ts +0 -57
- package/dist/layouts/DashboardInner/DashboardInner.d.ts +0 -30
- package/dist/layouts/GlobalWrapper/GlobalWrapper.d.ts +0 -19
- package/dist/utilities/context-providers/ResponsiveContext/ResponsiveContext.d.ts +0 -6
- /package/dist/components/{Skiplink → links/Skiplink}/Skiplink.d.ts +0 -0
- /package/dist/components/{Picture → media/Picture}/Picture.d.ts +0 -0
- /package/dist/components/{VideoEmbed → media/VideoEmbed}/VideoEmbed.d.ts +0 -0
- /package/dist/components/{Pagination → pagination/Pagination}/usePagination.d.ts +0 -0
- /package/dist/components/{FlowSteps → steppers/StepList}/example-steps.d.ts +0 -0
- /package/dist/svg/{linkSimple.svg → link.svg} +0 -0
- /package/dist/svg/{linkSimpleSlash.svg → unlink.svg} +0 -0
- /package/dist/{layouts → utilities}/Container/Container.d.ts +0 -0
package/dist/index.source.d.ts
CHANGED
|
@@ -7,38 +7,34 @@ export * from './components/buttons/Button/Button';
|
|
|
7
7
|
export * from './components/buttons/ButtonLink/ButtonLink';
|
|
8
8
|
export * from './components/buttons/ClipboardButton/ClipboardButton';
|
|
9
9
|
export * from './components/buttons/CloseButton/CloseButton';
|
|
10
|
+
export * from './components/buttons/FilterButton/FilterButton';
|
|
10
11
|
export * from './components/buttons/IconButton/IconButton';
|
|
11
12
|
export * from './components/buttons/MenuButton/MenuButton';
|
|
12
13
|
export * from './components/buttons/SegmentedButton/SegmentedButton';
|
|
14
|
+
export * from './components/buttons/SelectButton/SelectButton';
|
|
13
15
|
export * from './components/buttons/SplitButton/SplitButton';
|
|
14
16
|
export * from './components/buttons/SSOButton/SSOButton';
|
|
15
17
|
export * from './components/buttons/UtilityButton/UtilityButton';
|
|
16
18
|
export * from './components/Callout/Callout';
|
|
19
|
+
export * from './components/cards/ActionCard/ActionCard';
|
|
17
20
|
export * from './components/cards/Card/Card';
|
|
18
|
-
export * from './components/cards/
|
|
19
|
-
export * from './components/
|
|
20
|
-
export * from './components/
|
|
21
|
-
export * from './components/
|
|
22
|
-
export * from './components/
|
|
23
|
-
export * from './components/
|
|
24
|
-
export * from './components/cards/PricingCard/PricingCard';
|
|
25
|
-
export * from './components/cards/SiteCard/SiteCard';
|
|
21
|
+
export * from './components/cards/CardSelect/CardSelect';
|
|
22
|
+
export * from './components/charts/BarChart/BarChart';
|
|
23
|
+
export * from './components/charts/LineChart/LineChart';
|
|
24
|
+
export * from './components/charts/PieChart/PieChart';
|
|
25
|
+
export * from './components/charts/ProportionBar/ProportionBar';
|
|
26
|
+
export * from './components/charts/shared/types';
|
|
26
27
|
export * from './components/CodeBlock/CodeBlock';
|
|
27
28
|
export * from './components/ComparisonList/ComparisonList';
|
|
28
|
-
export * from './components/
|
|
29
|
-
export * from './components/CTASlice/CTASlice';
|
|
30
|
-
export * from './components/DashboardStat/DashboardStat';
|
|
29
|
+
export * from './components/Dropdown/Dropdown';
|
|
31
30
|
export * from './components/empty-states/CompactEmptyState/CompactEmptyState';
|
|
32
31
|
export * from './components/empty-states/HorizontalEmptyState/HorizontalEmptyState';
|
|
33
32
|
export * from './components/empty-states/VerticalEmptyState/VerticalEmptyState';
|
|
34
33
|
export * from './components/FileDiff/FileDiff';
|
|
35
|
-
export * from './components/FlowSteps/FlowSteps';
|
|
36
|
-
export * from './components/footer/FooterHeading/FooterHeading';
|
|
37
|
-
export * from './components/footer/FooterLinks/FooterLinks';
|
|
38
|
-
export * from './components/footer/SiteFooter/SiteFooter';
|
|
39
34
|
export * from './components/icons/Icon/Icon';
|
|
40
35
|
export * from './components/icons/PaymentIcon/PaymentIcon';
|
|
41
36
|
export * from './components/icons/PlatformIcon/PlatformIcon';
|
|
37
|
+
export * from './components/IdentityBlock/IdentityBlock';
|
|
42
38
|
export * from './components/inputs/Checkbox/Checkbox';
|
|
43
39
|
export * from './components/inputs/CheckboxFieldset/CheckboxFieldset';
|
|
44
40
|
export * from './components/inputs/CheckboxGroup/CheckboxGroup';
|
|
@@ -53,50 +49,64 @@ export * from './components/inputs/Switch/Switch';
|
|
|
53
49
|
export * from './components/inputs/TagsInput/TagsInput';
|
|
54
50
|
export * from './components/inputs/Textarea/Textarea';
|
|
55
51
|
export * from './components/inputs/TextInput/TextInput';
|
|
56
|
-
export * from './components/
|
|
52
|
+
export * from './components/inputs/Timepicker/Timepicker';
|
|
53
|
+
export * from './components/links/CTALink/CTALink';
|
|
54
|
+
export * from './components/links/LinkNewWindow/LinkNewWindow';
|
|
55
|
+
export * from './components/links/Skiplink/Skiplink';
|
|
57
56
|
export * from './components/loading-indicators/Skeleton/Skeleton';
|
|
58
57
|
export * from './components/loading-indicators/Spinner/Spinner';
|
|
59
|
-
export * from './components/
|
|
58
|
+
export * from './components/media/Picture/Picture';
|
|
59
|
+
export * from './components/media/VideoEmbed/VideoEmbed';
|
|
60
60
|
export * from './components/navigation/Breadcrumb/Breadcrumb';
|
|
61
61
|
export * from './components/navigation/ButtonNav/ButtonNav';
|
|
62
|
-
export * from './components/navigation/DashboardNav/DashboardNav';
|
|
63
|
-
export * from './components/navigation/DashboardNav/DashboardNavItem';
|
|
64
|
-
export * from './components/navigation/DashboardSearch/DashboardSearch';
|
|
65
62
|
export * from './components/navigation/DropdownMenu/DropdownMenu';
|
|
66
63
|
export * from './components/navigation/Navbar/Navbar';
|
|
67
|
-
export * from './components/navigation/NavMenu/NavMenu';
|
|
68
64
|
export * from './components/navigation/SideNav/SideNav';
|
|
69
|
-
export * from './components/navigation/SideNavCompact/SideNavCompact';
|
|
70
65
|
export * from './components/navigation/SideNavGlobal/SideNavGlobal';
|
|
71
66
|
export * from './components/navigation/SideNavGlobal/SideNavGlobalItem';
|
|
67
|
+
export * from './components/navigation/SiteMenu/SiteMenu';
|
|
72
68
|
export * from './components/navigation/TabMenu/TabMenu';
|
|
69
|
+
export * from './components/navigation/TreeNav/TreeNav';
|
|
73
70
|
export * from './components/navigation/UserMenu/UserMenu';
|
|
74
71
|
export * from './components/navigation/WorkspaceSelector/WorkspaceSelector';
|
|
75
72
|
export * from './components/notifications/Banner/Banner';
|
|
76
73
|
export * from './components/notifications/InlineMessage/InlineMessage';
|
|
77
|
-
export * from './components/notifications/NotificationHubIcon/NotificationHubIcon';
|
|
78
|
-
export * from './components/notifications/NotificationsPopover/NotificationsPopover';
|
|
79
74
|
export * from './components/notifications/SectionMessage/SectionMessage';
|
|
80
75
|
export * from './components/notifications/Toaster/Toast';
|
|
81
76
|
export * from './components/notifications/Toaster/Toaster';
|
|
82
77
|
export * from './components/notifications/Toaster/useToast';
|
|
83
|
-
export * from './components/
|
|
78
|
+
export * from './components/overlays/BottomSheet/BottomSheet';
|
|
79
|
+
export * from './components/overlays/BulkActionBar/BulkActionBar';
|
|
80
|
+
export * from './components/overlays/Drawer/Drawer';
|
|
81
|
+
export * from './components/overlays/FullScreenOverlay/FullScreenOverlay';
|
|
82
|
+
export * from './components/overlays/Modal/Modal';
|
|
83
|
+
export * from './components/pagination/Pagination/Pagination';
|
|
84
|
+
export * from './components/pagination/PaginationChapter/PaginationChapter';
|
|
85
|
+
export * from './components/pagination/PaginationCompact/PaginationCompact';
|
|
84
86
|
export * from './components/panels/ExpansionPanel/ExpansionPanel';
|
|
85
87
|
export * from './components/panels/ExpansionPanelGroup/ExpansionPanelGroup';
|
|
88
|
+
export * from './components/panels/FeaturePanel/FeaturePanel';
|
|
86
89
|
export * from './components/panels/Panel/Panel';
|
|
87
90
|
export * from './components/panels/PanelList/PanelList';
|
|
88
91
|
export * from './components/panels/PanelList/PanelRow';
|
|
92
|
+
export * from './components/panels/PanelStack/PanelStack';
|
|
93
|
+
export * from './components/panels/WidgetPanel/WidgetPanel';
|
|
89
94
|
export * from './components/PantheonLogo/PantheonLogo';
|
|
90
|
-
export * from './components/Picture/Picture';
|
|
91
95
|
export * from './components/Popover/Popover';
|
|
92
96
|
export * from './components/progress-indicators/ProgressBar/ProgressBar';
|
|
93
97
|
export * from './components/progress-indicators/ProgressRing/ProgressRing';
|
|
94
|
-
export * from './components/
|
|
95
|
-
export * from './components/
|
|
96
|
-
export * from './components/
|
|
97
|
-
export * from './components/
|
|
98
|
-
export * from './components/
|
|
98
|
+
export * from './components/ResultCount/ResultCount';
|
|
99
|
+
export * from './components/RowActionsMenu/RowActionsMenu';
|
|
100
|
+
export * from './components/SiteFooter/SiteFooter';
|
|
101
|
+
export * from './components/SiteSearch/SiteSearch';
|
|
102
|
+
export * from './components/SortableList/SortableList';
|
|
103
|
+
export * from './components/SortableList/SortableListHeader';
|
|
104
|
+
export * from './components/SortableList/SortableRow';
|
|
105
|
+
export * from './components/SortableList/types';
|
|
106
|
+
export * from './components/StatPanel/StatPanel';
|
|
107
|
+
export * from './components/StatusChecker/StatusChecker';
|
|
99
108
|
export * from './components/StatusIndicator/StatusIndicator';
|
|
109
|
+
export * from './components/steppers/StepList/StepList';
|
|
100
110
|
export * from './components/steppers/Stepper/Stepper';
|
|
101
111
|
export * from './components/steppers/VerticalStepper/VerticalStepper';
|
|
102
112
|
export * from './components/Table/Table';
|
|
@@ -104,30 +114,32 @@ export * from './components/TableOfContents/TableOfContents';
|
|
|
104
114
|
export * from './components/Tabs/Tabs';
|
|
105
115
|
export * from './components/Tag/Tag';
|
|
106
116
|
export * from './components/ThemeSwitcher/ThemeSwitcher';
|
|
107
|
-
export * from './components/tiles/AvatarTileList/AvatarTileList';
|
|
108
|
-
export * from './components/tiles/Tile/Tile';
|
|
109
|
-
export * from './components/tiles/TileGrid/TileGrid';
|
|
110
117
|
export * from './components/Tooltip/Tooltip';
|
|
111
|
-
export * from './components/
|
|
118
|
+
export * from './components/UtilityBar/UtilityBar';
|
|
112
119
|
export * from './libs/components/SiteOptionDisplay/SiteOptionDisplay';
|
|
113
120
|
export * from './layouts/AppLayout/AppLayout';
|
|
114
|
-
export * from './layouts/Container/Container';
|
|
115
|
-
export * from './layouts/DashboardGlobal/DashboardGlobal';
|
|
116
|
-
export * from './layouts/DashboardInner/DashboardInner';
|
|
117
121
|
export * from './layouts/DocsLayout/DocsLayout';
|
|
118
|
-
export * from './layouts/FlexContainer/FlexContainer';
|
|
119
|
-
export * from './layouts/GlobalWrapper/GlobalWrapper';
|
|
120
122
|
export * from './layouts/SidebarLayout/SidebarLayout';
|
|
123
|
+
export * from './layouts/StatPanelGroup/StatPanelGroup';
|
|
121
124
|
export * from './layouts/StepperLayout/StepperLayout';
|
|
122
125
|
export * from './layouts/ThreeItemLayout/ThreeItemLayout';
|
|
123
126
|
export * from './layouts/TwoItemLayout/TwoItemLayout';
|
|
127
|
+
export * from './utilities/Container/Container';
|
|
128
|
+
export * from './utilities/FlexContainer/FlexContainer';
|
|
129
|
+
export * from './utilities/GlobalWrapper/GlobalWrapper';
|
|
124
130
|
export * from './libs/types/custom-types';
|
|
125
131
|
export * from './libs/types/input-types';
|
|
126
132
|
export * from './libs/types/layout-types';
|
|
127
133
|
export * from './libs/types/navigation-types';
|
|
128
|
-
export * from './utilities/
|
|
134
|
+
export * from './utilities/auto-grid/AutoGrid';
|
|
135
|
+
export * from './utilities/context-providers/ThemeContext/ThemeContext';
|
|
136
|
+
export * from './utilities/grid/Grid';
|
|
137
|
+
export * from './utilities/grid/GridItem';
|
|
129
138
|
export * from './utilities/hooks/useBreakpoint/useBreakpoint';
|
|
130
139
|
export * from './utilities/hooks/useClipboard/useClipboard';
|
|
140
|
+
export * from './utilities/hooks/useDropdown';
|
|
141
|
+
export * from './utilities/hooks/useIsMobile/useIsMobile';
|
|
142
|
+
export * from './utilities/hooks/useKeyboardShortcut/useKeyboardShortcut';
|
|
131
143
|
export * from './utilities/hooks/useKeyPress/useKeyPress';
|
|
132
144
|
export * from './utilities/hooks/useMediaQuery/useMediaQuery';
|
|
133
145
|
export * from './utilities/hooks/useWindowWidth/useWindowWidth';
|
|
@@ -1,12 +1,21 @@
|
|
|
1
1
|
import { ComponentPropsWithoutRef, ReactNode } from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { DrawerProps } from '../../components/overlays/Drawer/Drawer';
|
|
3
3
|
import './app-layout.css';
|
|
4
4
|
/**
|
|
5
5
|
* Prop types for AppLayout
|
|
6
6
|
*/
|
|
7
|
-
interface AppLayoutProps extends ComponentPropsWithoutRef<'div'> {
|
|
7
|
+
export interface AppLayoutProps extends ComponentPropsWithoutRef<'div'> {
|
|
8
8
|
/**
|
|
9
|
-
* Children to render in the layout
|
|
9
|
+
* Children to render in the layout, assigned to named slots:
|
|
10
|
+
* - `header` — full-width region above the sidebar and main content (e.g. a Navbar).
|
|
11
|
+
* - `footer` — region below the main content, aligned with it (e.g. a SiteFooter);
|
|
12
|
+
* the sidebar spans the full height alongside the main + footer column.
|
|
13
|
+
* - `identity` — top of the sidebar (e.g. a workspace/account block).
|
|
14
|
+
* - `content-top` — sidebar content above the navigation.
|
|
15
|
+
* - `navigation` — the sidebar's primary navigation (e.g. SideNavGlobal).
|
|
16
|
+
* - `content-bottom` — sidebar content pinned to the bottom.
|
|
17
|
+
* - `sidebar` — legacy single-slot sidebar body (pre-V2).
|
|
18
|
+
* - unslotted children render as the main content.
|
|
10
19
|
*/
|
|
11
20
|
children: ReactNode;
|
|
12
21
|
/**
|
|
@@ -14,39 +23,89 @@ interface AppLayoutProps extends ComponentPropsWithoutRef<'div'> {
|
|
|
14
23
|
*/
|
|
15
24
|
className?: string;
|
|
16
25
|
/**
|
|
17
|
-
*
|
|
26
|
+
* Content for the left-side Drawer (e.g., workspace switcher).
|
|
27
|
+
* Only rendered when `hasDrawerToggle` is true.
|
|
18
28
|
*/
|
|
19
|
-
|
|
29
|
+
drawerContent?: ReactNode;
|
|
30
|
+
/**
|
|
31
|
+
* Pass-through props for the Drawer component.
|
|
32
|
+
*/
|
|
33
|
+
drawerProps?: Partial<DrawerProps>;
|
|
34
|
+
/**
|
|
35
|
+
* Show a toggle button in the sidebar header that opens a Drawer overlay.
|
|
36
|
+
*/
|
|
37
|
+
hasDrawerToggle?: boolean;
|
|
20
38
|
/**
|
|
21
39
|
* Is the sidebar able to be collapsed and expanded by the user?
|
|
22
40
|
* If false or not provided, the sidebar will always be expanded.
|
|
23
41
|
*/
|
|
24
42
|
hasSidebarToggle?: boolean;
|
|
43
|
+
/**
|
|
44
|
+
* Controlled open state for the drawer.
|
|
45
|
+
*/
|
|
46
|
+
isDrawerOpen?: boolean;
|
|
25
47
|
/**
|
|
26
48
|
* Is the sidebar collapsed?
|
|
27
49
|
* This is only relevant if `hasSidebarToggle` is true.
|
|
28
50
|
*/
|
|
29
51
|
isSidebarCollapsed?: boolean;
|
|
30
52
|
/**
|
|
31
|
-
*
|
|
53
|
+
* Enable keyboard shortcuts to toggle the sidebar.
|
|
54
|
+
* `[` collapses, `]` expands. Only active when `hasSidebarToggle` is true.
|
|
55
|
+
*/
|
|
56
|
+
keyboardShortcuts?: boolean;
|
|
57
|
+
/**
|
|
58
|
+
* Labels for translatable strings. Each key is optional and falls back to a
|
|
59
|
+
* default, so you can override only the labels you need.
|
|
32
60
|
*/
|
|
33
61
|
labels?: {
|
|
34
|
-
collapseSidebar
|
|
35
|
-
|
|
62
|
+
collapseSidebar?: string;
|
|
63
|
+
drawerToggle?: string;
|
|
64
|
+
expandSidebar?: string;
|
|
65
|
+
skipToContent?: string;
|
|
36
66
|
};
|
|
67
|
+
/**
|
|
68
|
+
* Background color for the main content area. Use a PDS CSS custom property
|
|
69
|
+
* (e.g. 'var(--pds-color-surface-default-secondary)') so dark mode works automatically.
|
|
70
|
+
*/
|
|
71
|
+
mainBackground?: string;
|
|
37
72
|
/**
|
|
38
73
|
* Element type for the main content area.
|
|
39
74
|
*/
|
|
40
75
|
mainContentElement?: 'div' | 'main';
|
|
76
|
+
/**
|
|
77
|
+
* Maximum width of the main content (and the footer content, which stays
|
|
78
|
+
* aligned with it). The content is centered within the region once it grows
|
|
79
|
+
* past this width, while the region itself — background, border, padding —
|
|
80
|
+
* remains full-bleed.
|
|
81
|
+
*
|
|
82
|
+
* A number is treated as pixels; a string is used as-is (e.g. '90rem').
|
|
83
|
+
* Pass `null` to remove the cap so content fills the full region width.
|
|
84
|
+
* Defaults to `1600` (the recommended value).
|
|
85
|
+
*/
|
|
86
|
+
mainContentMaxWidth?: number | string | null;
|
|
41
87
|
/**
|
|
42
88
|
* Additional props for the main content element.
|
|
43
89
|
*/
|
|
44
90
|
mainContentProps?: ComponentPropsWithoutRef<'div'> | ComponentPropsWithoutRef<'main'>;
|
|
91
|
+
/**
|
|
92
|
+
* Callback when the drawer toggle button is clicked.
|
|
93
|
+
*/
|
|
94
|
+
onDrawerToggle?: () => void;
|
|
45
95
|
/**
|
|
46
96
|
* Callback function to handle sidebar toggle.
|
|
47
97
|
* If not provided, the sidebar will use an internal function to manage collapsed state.
|
|
48
98
|
*/
|
|
49
99
|
onSidebarToggle?: () => void;
|
|
100
|
+
/**
|
|
101
|
+
* When true, the sidebar stays fixed and only the main content area scrolls.
|
|
102
|
+
*/
|
|
103
|
+
scrollableContent?: boolean;
|
|
104
|
+
/**
|
|
105
|
+
* Background color for the sidebar. Use a PDS CSS custom property
|
|
106
|
+
* (e.g. 'var(--pds-color-surface-default)') so dark mode works automatically.
|
|
107
|
+
*/
|
|
108
|
+
sidebarBackground?: string;
|
|
50
109
|
/**
|
|
51
110
|
* Width of the sidebar when collapsed in rems. This should not need to be modified.
|
|
52
111
|
*/
|
|
@@ -56,6 +115,11 @@ interface AppLayoutProps extends ComponentPropsWithoutRef<'div'> {
|
|
|
56
115
|
* This is also the width of the sidebar when it is not collapsable (hasSidebarToggle is false).
|
|
57
116
|
*/
|
|
58
117
|
sidebarExpandedWidth?: string;
|
|
118
|
+
/**
|
|
119
|
+
* Maximum width of the sidebar when expanded in rems.
|
|
120
|
+
* Prevents the sidebar from growing too wide on large screens.
|
|
121
|
+
*/
|
|
122
|
+
sidebarExpandedWidthMax?: number;
|
|
59
123
|
/**
|
|
60
124
|
* Minimum width of the sidebar when expanded in rems.
|
|
61
125
|
* This is also the min-width of the sidebar when it is not collapsable (hasSidebarToggle is false).
|
|
@@ -65,9 +129,20 @@ interface AppLayoutProps extends ComponentPropsWithoutRef<'div'> {
|
|
|
65
129
|
* Additional props for the sidebar `<div>` element.
|
|
66
130
|
*/
|
|
67
131
|
sidebarProps?: ComponentPropsWithoutRef<'div'>;
|
|
132
|
+
/**
|
|
133
|
+
* Distance from the top of the viewport to the top of the layout, used to
|
|
134
|
+
* size the layout height (`100dvh - topOffset`). Set this when you render
|
|
135
|
+
* chrome above the layout (e.g. a banner) whose height the layout must
|
|
136
|
+
* account for — pass the measured height reactively.
|
|
137
|
+
*
|
|
138
|
+
* A number is treated as pixels; a string is used as-is (e.g. '3rem').
|
|
139
|
+
* When provided, this value is used verbatim and the built-in auto-measure
|
|
140
|
+
* is disabled. When omitted, the layout measures its own offset from the
|
|
141
|
+
* document top and keeps it updated.
|
|
142
|
+
*/
|
|
143
|
+
topOffset?: number | string;
|
|
68
144
|
}
|
|
69
145
|
/**
|
|
70
146
|
* AppLayout UI component
|
|
71
147
|
*/
|
|
72
|
-
export declare const AppLayout: ({ children, className,
|
|
73
|
-
export {};
|
|
148
|
+
export declare const AppLayout: ({ children, className, drawerContent, drawerProps, hasDrawerToggle, hasSidebarToggle, isDrawerOpen, isSidebarCollapsed, keyboardShortcuts, labels, mainBackground, mainContentElement, mainContentMaxWidth, mainContentProps, onDrawerToggle, onSidebarToggle, scrollableContent, sidebarBackground, sidebarCollapsedWidth, sidebarExpandedWidth, sidebarExpandedWidthMax, sidebarExpandedWidthMin, sidebarProps, topOffset, ...props }: AppLayoutProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -13,18 +13,20 @@ interface DocsLayoutProps extends ComponentPropsWithoutRef<'div'> {
|
|
|
13
13
|
*/
|
|
14
14
|
className?: string;
|
|
15
15
|
/**
|
|
16
|
-
*
|
|
17
|
-
* This is also the min-width of the sidebar when it is not collapsable (hasSidebarToggle is false).
|
|
16
|
+
* Width of the sidebar as a percentage.
|
|
18
17
|
*/
|
|
19
|
-
|
|
18
|
+
sidebarWidth?: string;
|
|
20
19
|
/**
|
|
21
|
-
*
|
|
22
|
-
* This is also the width of the sidebar when it is not collapsable (hasSidebarToggle is false).
|
|
20
|
+
* Maximum width of the sidebar in rems. Prevents the sidebar from growing too wide on large screens.
|
|
23
21
|
*/
|
|
24
|
-
|
|
22
|
+
sidebarWidthMax?: number;
|
|
23
|
+
/**
|
|
24
|
+
* Minimum width of the sidebar in rems. Ensures the sidebar remains usable on medium-sized screens.
|
|
25
|
+
*/
|
|
26
|
+
sidebarWidthMin?: number;
|
|
25
27
|
}
|
|
26
28
|
/**
|
|
27
29
|
* DocsLayout UI component
|
|
28
30
|
*/
|
|
29
|
-
export declare const DocsLayout: ({ children, className,
|
|
31
|
+
export declare const DocsLayout: ({ children, className, sidebarWidth, sidebarWidthMax, sidebarWidthMin, style, ...props }: DocsLayoutProps) => import("react/jsx-runtime").JSX.Element;
|
|
30
32
|
export {};
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import { ComponentPropsWithoutRef, ReactNode } from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { GapScale } from '../../libs/types/layout-types';
|
|
3
|
+
import './sidebar-layout.css';
|
|
3
4
|
/**
|
|
4
5
|
* Prop types for SidebarLayout
|
|
5
6
|
*/
|
|
6
7
|
interface SidebarLayoutProps extends ComponentPropsWithoutRef<'div'> {
|
|
7
8
|
/**
|
|
8
9
|
* Children to render in the layout. Main content can be passed without a slot attribute (unslotted).
|
|
9
|
-
* Optional named slots: `sidebar` for sidebar content, `
|
|
10
|
+
* Optional named slots: `sidebar` for sidebar content, `second-sidebar` for a second, opposite-side
|
|
11
|
+
* sidebar, `content` for backwards compatibility.
|
|
10
12
|
*/
|
|
11
13
|
children: ReactNode;
|
|
12
14
|
/**
|
|
@@ -14,9 +16,28 @@ interface SidebarLayoutProps extends ComponentPropsWithoutRef<'div'> {
|
|
|
14
16
|
*/
|
|
15
17
|
className?: string;
|
|
16
18
|
/**
|
|
17
|
-
* Gap between
|
|
19
|
+
* Gap between the main content and sidebar(s), from the numbered spacing scale.
|
|
20
|
+
* Defaults to `xl`.
|
|
18
21
|
*/
|
|
19
|
-
gridGap?:
|
|
22
|
+
gridGap?: GapScale;
|
|
23
|
+
/**
|
|
24
|
+
* Mobile position of the `second-sidebar` slot: `'before'` or `'after'` (default) the main content.
|
|
25
|
+
* When both sidebars resolve to `'after'`, they stack in the same left-to-right order they have
|
|
26
|
+
* on desktop.
|
|
27
|
+
*/
|
|
28
|
+
secondSidebarMobileLocation?: 'before' | 'after';
|
|
29
|
+
/**
|
|
30
|
+
* Width of the second sidebar as a percentage (e.g. `'33%'`). Defaults to `sidebarWidth`.
|
|
31
|
+
*/
|
|
32
|
+
secondSidebarWidth?: string;
|
|
33
|
+
/**
|
|
34
|
+
* Maximum width of the second sidebar in rems. Defaults to `sidebarWidthMax`.
|
|
35
|
+
*/
|
|
36
|
+
secondSidebarWidthMax?: number;
|
|
37
|
+
/**
|
|
38
|
+
* Minimum width of the second sidebar in rems. Defaults to `sidebarWidthMin`.
|
|
39
|
+
*/
|
|
40
|
+
secondSidebarWidthMin?: number;
|
|
20
41
|
/**
|
|
21
42
|
* Sidebar location.
|
|
22
43
|
*/
|
|
@@ -26,12 +47,20 @@ interface SidebarLayoutProps extends ComponentPropsWithoutRef<'div'> {
|
|
|
26
47
|
*/
|
|
27
48
|
sidebarMobileLocation?: 'before' | 'after';
|
|
28
49
|
/**
|
|
29
|
-
*
|
|
50
|
+
* Width of the sidebar as a percentage (e.g. `'33%'`).
|
|
51
|
+
*/
|
|
52
|
+
sidebarWidth?: string;
|
|
53
|
+
/**
|
|
54
|
+
* Maximum width of the sidebar in rems. Prevents the sidebar from growing too wide on large screens.
|
|
55
|
+
*/
|
|
56
|
+
sidebarWidthMax?: number;
|
|
57
|
+
/**
|
|
58
|
+
* Minimum width of the sidebar in rems. Ensures the sidebar remains usable on medium-sized screens.
|
|
30
59
|
*/
|
|
31
|
-
|
|
60
|
+
sidebarWidthMin?: number;
|
|
32
61
|
}
|
|
33
62
|
/**
|
|
34
63
|
* SidebarLayout UI component
|
|
35
64
|
*/
|
|
36
|
-
export declare const SidebarLayout: ({ children, className, gridGap, sidebarLocation, sidebarMobileLocation, sidebarWidth, ...props }: SidebarLayoutProps) => import("react/jsx-runtime").JSX.Element;
|
|
65
|
+
export declare const SidebarLayout: ({ children, className, gridGap, secondSidebarMobileLocation, secondSidebarWidth, secondSidebarWidthMax, secondSidebarWidthMin, sidebarLocation, sidebarMobileLocation, sidebarWidth, sidebarWidthMax, sidebarWidthMin, ...props }: SidebarLayoutProps) => import("react/jsx-runtime").JSX.Element;
|
|
37
66
|
export {};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { ComponentPropsWithoutRef, ReactNode } from 'react';
|
|
2
|
+
import './stat-panel-group.css';
|
|
3
|
+
/**
|
|
4
|
+
* Prop types for StatPanelGroup
|
|
5
|
+
*/
|
|
6
|
+
export interface StatPanelGroupProps extends ComponentPropsWithoutRef<'div'> {
|
|
7
|
+
/**
|
|
8
|
+
* StatPanel elements to arrange.
|
|
9
|
+
*/
|
|
10
|
+
children: ReactNode;
|
|
11
|
+
/**
|
|
12
|
+
* Additional class names
|
|
13
|
+
*/
|
|
14
|
+
className?: string;
|
|
15
|
+
/**
|
|
16
|
+
* Maximum number of columns at the widest available width. Reflows down
|
|
17
|
+
* continuously below that as space shrinks — never below one column, and
|
|
18
|
+
* never above this ceiling regardless of how much room is available.
|
|
19
|
+
* Sized against the group's own width, not the viewport, so it reflows
|
|
20
|
+
* correctly even when the group sits in a narrower context, e.g. beside a
|
|
21
|
+
* sidebar.
|
|
22
|
+
*/
|
|
23
|
+
maxColumns?: 2 | 3 | 4;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* StatPanelGroup layout component — arranges StatPanels (or similar summary
|
|
27
|
+
* content) in a responsive row, reflowing continuously as the group's own
|
|
28
|
+
* available width changes. Exposes the set to assistive technology as a list
|
|
29
|
+
* (`role="list"`/`role="listitem"`) without requiring literal `ul`/`li`
|
|
30
|
+
* markup, since the panels aren't visually list-like.
|
|
31
|
+
*/
|
|
32
|
+
export declare const StatPanelGroup: ({ children, className, maxColumns, style, ...props }: StatPanelGroupProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -12,9 +12,21 @@ interface StepperLayoutProps {
|
|
|
12
12
|
* Additional class names
|
|
13
13
|
*/
|
|
14
14
|
className?: string;
|
|
15
|
+
/**
|
|
16
|
+
* Width of the form content. `standard` insets the form to a comfortable
|
|
17
|
+
* reading width for traditional form fields; `full` lets the form content
|
|
18
|
+
* span the full stepper container width. Use `full` only for non-form
|
|
19
|
+
* content such as a group of cards or other visual treatment prescribed by
|
|
20
|
+
* design.
|
|
21
|
+
*/
|
|
22
|
+
formWidth?: 'standard' | 'full';
|
|
23
|
+
/**
|
|
24
|
+
* Wrap the entire experience (stepper, form, and buttons) in a Panel.
|
|
25
|
+
*/
|
|
26
|
+
hasPanel?: boolean;
|
|
15
27
|
}
|
|
16
28
|
/**
|
|
17
29
|
* StepperLayout UI component
|
|
18
30
|
*/
|
|
19
|
-
export declare const StepperLayout: ({ children, className, ...props }: StepperLayoutProps) => import("react/jsx-runtime").JSX.Element;
|
|
31
|
+
export declare const StepperLayout: ({ children, className, formWidth, hasPanel, ...props }: StepperLayoutProps) => import("react/jsx-runtime").JSX.Element;
|
|
20
32
|
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ComponentPropsWithoutRef, ReactNode } from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { GapScale, VerticalAlignOptions } from '../../libs/types/layout-types';
|
|
3
3
|
import '../../utilities/grid/grid.css';
|
|
4
4
|
import './three-item-layout.css';
|
|
5
5
|
/**
|
|
@@ -15,9 +15,9 @@ interface TwoItemLayoutProps extends ComponentPropsWithoutRef<'div'> {
|
|
|
15
15
|
*/
|
|
16
16
|
className?: string;
|
|
17
17
|
/**
|
|
18
|
-
*
|
|
18
|
+
* Gap between items, from the numbered spacing scale. Defaults to `xl`.
|
|
19
19
|
*/
|
|
20
|
-
gridGap?:
|
|
20
|
+
gridGap?: GapScale;
|
|
21
21
|
/**
|
|
22
22
|
* Vertical alignment of items.
|
|
23
23
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ComponentPropsWithoutRef, ReactNode } from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { GapScale, VerticalAlignOptions } from '../../libs/types/layout-types';
|
|
3
3
|
import '../../utilities/grid/grid.css';
|
|
4
4
|
import './two-item-layout.css';
|
|
5
5
|
/**
|
|
@@ -15,9 +15,9 @@ interface TwoItemLayoutProps extends ComponentPropsWithoutRef<'div'> {
|
|
|
15
15
|
*/
|
|
16
16
|
className?: string;
|
|
17
17
|
/**
|
|
18
|
-
*
|
|
18
|
+
* Gap between items, from the numbered spacing scale. Defaults to `xl`.
|
|
19
19
|
*/
|
|
20
|
-
gridGap?:
|
|
20
|
+
gridGap?: GapScale;
|
|
21
21
|
/**
|
|
22
22
|
* Layout variant for column widths.
|
|
23
23
|
*/
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import './nav-accordion.css';
|
|
3
|
+
interface NavAccordionProps {
|
|
4
|
+
/**
|
|
5
|
+
* Expandable content shown when open.
|
|
6
|
+
*/
|
|
7
|
+
children: ReactNode;
|
|
8
|
+
/**
|
|
9
|
+
* Additional class names.
|
|
10
|
+
*/
|
|
11
|
+
className?: string;
|
|
12
|
+
/**
|
|
13
|
+
* Disables the toggle button.
|
|
14
|
+
*/
|
|
15
|
+
disabled?: boolean;
|
|
16
|
+
/**
|
|
17
|
+
* Content of the toggle button — any ReactNode.
|
|
18
|
+
*/
|
|
19
|
+
label: ReactNode;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Internal accordion component for the mobile navbar panel.
|
|
23
|
+
* Renders a toggle button with a rotating chevron and expandable content.
|
|
24
|
+
* Used by MenuButton, UserMenu, and WorkspaceSelector.
|
|
25
|
+
*/
|
|
26
|
+
export declare const NavAccordion: ({ children, className, disabled, label, }: NavAccordionProps) => import("react/jsx-runtime").JSX.Element;
|
|
27
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* True when rendered as a descendant of a Modal/Drawer/BottomSheet/
|
|
3
|
+
* FullScreenOverlay's own content — i.e. genuinely nested inside another
|
|
4
|
+
* overlay, not just present somewhere on the page while one happens to be
|
|
5
|
+
* open elsewhere. Those four overlays wrap their content in
|
|
6
|
+
* `NestedOverlayContext.Provider value={true}`; nothing else needs to
|
|
7
|
+
* provide it.
|
|
8
|
+
*
|
|
9
|
+
* Consumed via `useOverlayZIndex`, not directly — see that hook for why this
|
|
10
|
+
* exists (floating panels portaled out of these overlays' own z-indexed box
|
|
11
|
+
* need to know when to elevate above it).
|
|
12
|
+
*/
|
|
13
|
+
export declare const NestedOverlayContext: import("react").Context<boolean>;
|
|
14
|
+
export declare const useIsNestedInOverlay: () => boolean;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ComponentPropsWithoutRef } from 'react';
|
|
2
|
+
import { StatusType } from '../../types/custom-types';
|
|
3
|
+
import './status-dot.css';
|
|
4
|
+
export type StatusDotType = StatusType | 'neutral';
|
|
5
|
+
export interface StatusDotProps extends ComponentPropsWithoutRef<'span'> {
|
|
6
|
+
/**
|
|
7
|
+
* Additional class names
|
|
8
|
+
*/
|
|
9
|
+
className?: string;
|
|
10
|
+
/**
|
|
11
|
+
* Status type — determines the dot color
|
|
12
|
+
*/
|
|
13
|
+
status: StatusDotType;
|
|
14
|
+
}
|
|
15
|
+
export declare const StatusDot: ({ className, status, ...props }: StatusDotProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* z-index for a floating panel (dropdown, combobox, menu, popover, calendar):
|
|
3
|
+
* `defaultZIndex` normally, or `--pds-z-index-active-panel` when
|
|
4
|
+
* `useIsNestedInOverlay()` confirms this panel is genuinely nested inside
|
|
5
|
+
* another overlay's own content (Modal, Drawer, BottomSheet,
|
|
6
|
+
* FullScreenOverlay) — otherwise it would lose the z-index comparison to
|
|
7
|
+
* that overlay and render behind it (those overlays portal a panel opened
|
|
8
|
+
* from inside them as a SIBLING of their own z-indexed box, not a
|
|
9
|
+
* descendant of it, so simple DOM nesting doesn't resolve the stacking on
|
|
10
|
+
* its own).
|
|
11
|
+
*
|
|
12
|
+
* A standalone, page-level panel keeps `defaultZIndex`, so it can't outrank
|
|
13
|
+
* a Modal that opens afterward elsewhere on the page — only a panel that's
|
|
14
|
+
* actually part of an overlay's own content gets elevated.
|
|
15
|
+
*/
|
|
16
|
+
export declare const useOverlayZIndex: (defaultZIndex: string) => string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export function createRandomID(): string;
|
|
2
1
|
export function getDescendants(node: any, collect: any): any;
|
|
3
2
|
export function initiateSlots(children: any): {
|
|
4
3
|
__unslotted: any[];
|
|
5
4
|
};
|
|
5
|
+
export function hasRenderableSlotContent(slotElements: any): boolean;
|
|
6
6
|
export function mergeClasses(styles: any): any;
|
|
7
7
|
export function isValidImageSrc(uri: any): boolean;
|