@pantheon-systems/pds-toolkit-react 2.0.0-alpha.7 → 2.0.0-alpha.71
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 +192 -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/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/{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 +290 -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 +1 -1
- 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 +4 -4
- package/dist/components/buttons/FilterButton/FilterButton.d.ts +92 -0
- package/dist/components/buttons/IconButton/IconButton.d.ts +12 -0
- package/dist/components/buttons/MenuButton/MenuButton.d.ts +24 -17
- package/dist/components/buttons/SSOButton/SSOButton.d.ts +9 -1
- package/dist/components/buttons/SegmentedButton/SegmentedButton.d.ts +44 -8
- 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/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 +212 -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 +1 -1
- 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 +20 -5
- package/dist/components/navigation/WorkspaceSelector/WorkspaceSelector.d.ts +2 -16
- package/dist/components/navigation/navigation-utilities.d.ts +12 -0
- 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/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 +2 -2
- 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 +62 -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/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/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-branch-diff.css +1 -1
- package/dist/css/component-css/pds-breadcrumb.css +1 -1
- 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 +45 -13
- 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 +2 -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-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 +5 -3
- 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 +152 -45
- 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-section-message.css +1 -1
- package/dist/css/component-css/pds-segmented-button.css +2 -1
- 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-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 +3 -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 +5 -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-workspace-selector.css +26 -1
- package/dist/css/design-tokens/variables.dark.css +385 -338
- package/dist/css/design-tokens/variables.global.css +10 -18
- package/dist/css/design-tokens/variables.light.css +376 -309
- 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 +5 -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 +152 -45
- 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 +95 -7
- package/dist/index.js +12738 -4787
- package/dist/index.js.map +1 -1
- package/dist/index.source.d.ts +44 -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 +16 -6
- 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/StatusDot/StatusDot.d.ts +15 -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 +4 -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/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/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 +138 -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 +83 -47
- package/tailwind/README.md +220 -0
- package/tailwind/TESTING.md +457 -0
- package/tailwind/v3/preset.cjs +258 -0
- package/tailwind/v4/theme.css +230 -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
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { HeadingLevelCommon } from '../../../libs/types/custom-types';
|
|
2
|
-
import './card-heading.css';
|
|
3
|
-
/**
|
|
4
|
-
* Prop types for CardHeading
|
|
5
|
-
*/
|
|
6
|
-
export interface CardHeadingProps {
|
|
7
|
-
/**
|
|
8
|
-
* Additional class names
|
|
9
|
-
*/
|
|
10
|
-
className?: string;
|
|
11
|
-
/**
|
|
12
|
-
* Font size of the heading. Default is `XL`.
|
|
13
|
-
*/
|
|
14
|
-
fontSize?: 'L' | 'XL';
|
|
15
|
-
/**
|
|
16
|
-
* Font weight of the heading. Default is `bold`.
|
|
17
|
-
*/
|
|
18
|
-
fontWeight?: 'bold' | 'semibold';
|
|
19
|
-
/**
|
|
20
|
-
* Heading level or `span`.
|
|
21
|
-
*/
|
|
22
|
-
level?: HeadingLevelCommon;
|
|
23
|
-
/**
|
|
24
|
-
* Heading text.
|
|
25
|
-
*/
|
|
26
|
-
text?: string;
|
|
27
|
-
}
|
|
28
|
-
/**
|
|
29
|
-
* CardHeading UI component
|
|
30
|
-
*/
|
|
31
|
-
export declare const CardHeading: ({ className, fontSize, fontWeight, level, text, ...props }: CardHeadingProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
import { ComponentPropsWithoutRef, ReactNode } from 'react';
|
|
2
|
-
import './card-select-group.css';
|
|
3
|
-
export interface CardOption {
|
|
4
|
-
/**
|
|
5
|
-
* Option description
|
|
6
|
-
*/
|
|
7
|
-
description?: string | ReactNode;
|
|
8
|
-
/**
|
|
9
|
-
* Unique ID for the option
|
|
10
|
-
* @default ''
|
|
11
|
-
*/
|
|
12
|
-
id?: string;
|
|
13
|
-
/**
|
|
14
|
-
* Option label
|
|
15
|
-
*/
|
|
16
|
-
label: string | ReactNode;
|
|
17
|
-
/**
|
|
18
|
-
* Option value
|
|
19
|
-
*/
|
|
20
|
-
value: string;
|
|
21
|
-
}
|
|
22
|
-
export interface CardSelectGroupProps extends Omit<ComponentPropsWithoutRef<'fieldset'>, 'onChange'> {
|
|
23
|
-
/**
|
|
24
|
-
* Additional class names
|
|
25
|
-
*/
|
|
26
|
-
className?: string;
|
|
27
|
-
/**
|
|
28
|
-
* Optional initial selected option value
|
|
29
|
-
*/
|
|
30
|
-
defaultValue?: string;
|
|
31
|
-
/**
|
|
32
|
-
* Unique ID for the card select group
|
|
33
|
-
*/
|
|
34
|
-
id: string;
|
|
35
|
-
/**
|
|
36
|
-
* Label for the card select group
|
|
37
|
-
*/
|
|
38
|
-
label: string;
|
|
39
|
-
/**
|
|
40
|
-
* Display of the component label. `hidden` visually hides the label but keeps it accessible to screen readers.
|
|
41
|
-
*/
|
|
42
|
-
labelDisplay?: 'left' | 'center' | 'hidden';
|
|
43
|
-
/**
|
|
44
|
-
* Column layout of the cards at breakpoints medium and above.
|
|
45
|
-
*/
|
|
46
|
-
layout?: 'auto' | 'twoAcross' | 'threeAcross';
|
|
47
|
-
/**
|
|
48
|
-
* Callback function that will return the updated value from the instance when it changes.
|
|
49
|
-
* Function should have the shape of: `(value) => { <do stuff here> } `.
|
|
50
|
-
*/
|
|
51
|
-
onChange?: (value: string) => void;
|
|
52
|
-
/**
|
|
53
|
-
* Array of card options
|
|
54
|
-
*/
|
|
55
|
-
options?: CardOption[];
|
|
56
|
-
}
|
|
57
|
-
/**
|
|
58
|
-
* CardSelectGroup UI component
|
|
59
|
-
*/
|
|
60
|
-
export declare const CardSelectGroup: ({ className, defaultValue, id, label, labelDisplay, layout, onChange, options, ...props }: CardSelectGroupProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { ComponentPropsWithoutRef, ReactNode } from 'react';
|
|
2
|
-
import { HeadingLevelCommon } from '../../../libs/types/custom-types';
|
|
3
|
-
import './empty-state-card.css';
|
|
4
|
-
/**
|
|
5
|
-
* Prop types for EmptyStateCard
|
|
6
|
-
*/
|
|
7
|
-
export interface EmptyStateCardProps extends ComponentPropsWithoutRef<'div'> {
|
|
8
|
-
/**
|
|
9
|
-
* Additional class names
|
|
10
|
-
*/
|
|
11
|
-
className?: string;
|
|
12
|
-
/**
|
|
13
|
-
* Heading level or `span`.
|
|
14
|
-
*/
|
|
15
|
-
headingLevel?: HeadingLevelCommon;
|
|
16
|
-
/**
|
|
17
|
-
* Heading text.
|
|
18
|
-
*/
|
|
19
|
-
headingText: string;
|
|
20
|
-
/**
|
|
21
|
-
* Whether the link is external or not.
|
|
22
|
-
*/
|
|
23
|
-
isLinkExternal?: boolean;
|
|
24
|
-
/**
|
|
25
|
-
* A link element using the router of your choice.
|
|
26
|
-
*/
|
|
27
|
-
linkContent: ReactNode;
|
|
28
|
-
/**
|
|
29
|
-
* Summary paragraph.
|
|
30
|
-
*/
|
|
31
|
-
summary: string;
|
|
32
|
-
}
|
|
33
|
-
/**
|
|
34
|
-
* EmptyStateCard UI component
|
|
35
|
-
*/
|
|
36
|
-
export declare const EmptyStateCard: ({ className, headingLevel, headingText, isLinkExternal, linkContent, summary, ...props }: EmptyStateCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { ComponentPropsWithoutRef, ReactNode } from 'react';
|
|
2
|
-
import { HeadingLevelCommon } from '../../../libs/types/custom-types';
|
|
3
|
-
import './links-card.css';
|
|
4
|
-
/**
|
|
5
|
-
* Prop types for LinksCard
|
|
6
|
-
*/
|
|
7
|
-
interface LinksCardProps extends ComponentPropsWithoutRef<'div'> {
|
|
8
|
-
/**
|
|
9
|
-
* Additional class names
|
|
10
|
-
*/
|
|
11
|
-
className?: string;
|
|
12
|
-
/**
|
|
13
|
-
* Heading level
|
|
14
|
-
*/
|
|
15
|
-
headingLevel?: HeadingLevelCommon;
|
|
16
|
-
/**
|
|
17
|
-
* Link Card heading
|
|
18
|
-
*/
|
|
19
|
-
headingText: string;
|
|
20
|
-
/**
|
|
21
|
-
* Array of links
|
|
22
|
-
*/
|
|
23
|
-
linkItems?: ReactNode[];
|
|
24
|
-
}
|
|
25
|
-
/**
|
|
26
|
-
* Links Card UI component
|
|
27
|
-
*/
|
|
28
|
-
export declare const LinksCard: ({ className, headingLevel, headingText, linkItems, ...props }: LinksCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
29
|
-
export {};
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
import { ComponentPropsWithoutRef, ReactElement } from 'react';
|
|
2
|
-
import { BadgeColor } from '../../badges/Badge/Badge';
|
|
3
|
-
import './new-site-card.css';
|
|
4
|
-
interface BadgeValueType {
|
|
5
|
-
color: BadgeColor;
|
|
6
|
-
label: string;
|
|
7
|
-
}
|
|
8
|
-
export declare const badgeTypes: {
|
|
9
|
-
[key: string]: BadgeValueType;
|
|
10
|
-
};
|
|
11
|
-
type ActualPlatformIconType = 'drupal' | 'drupal7' | 'front-end-sites' | 'gatsby' | 'gatsby-wp' | 'google' | 'import-custom' | 'microsoft' | 'next' | 'next-drupal' | 'next-wp' | 'splunk' | 'sumo-logic' | 'wordpress';
|
|
12
|
-
type PantheonIconType = 'pantheon';
|
|
13
|
-
type PlatformIconType = ActualPlatformIconType | PantheonIconType;
|
|
14
|
-
type IconVariantType = 'bitbucket' | 'github' | 'gitlab';
|
|
15
|
-
type IconType = IconVariantType | PlatformIconType;
|
|
16
|
-
/**
|
|
17
|
-
* Prop types for NewSiteCard
|
|
18
|
-
*/
|
|
19
|
-
interface NewSiteCardProps extends ComponentPropsWithoutRef<'div'> {
|
|
20
|
-
/**
|
|
21
|
-
* Optional indicator badge type. Choose from only early-access at this time.
|
|
22
|
-
*/
|
|
23
|
-
badge?: 'early-access';
|
|
24
|
-
/**
|
|
25
|
-
* Additional class names
|
|
26
|
-
*/
|
|
27
|
-
className?: string;
|
|
28
|
-
/**
|
|
29
|
-
* Icon. Accepts any platform type from PlatformIcon or github, gitlab, bitbucket from Icon.
|
|
30
|
-
*/
|
|
31
|
-
icon?: IconType;
|
|
32
|
-
/**
|
|
33
|
-
* Text for screen readers when link opens in new window
|
|
34
|
-
*/
|
|
35
|
-
newWindowString?: string;
|
|
36
|
-
/**
|
|
37
|
-
* The primary link for the selection card.
|
|
38
|
-
*/
|
|
39
|
-
selectionLink: ReactElement;
|
|
40
|
-
/**
|
|
41
|
-
* Card subtitle
|
|
42
|
-
*/
|
|
43
|
-
subtitle?: string;
|
|
44
|
-
/**
|
|
45
|
-
* Card summary
|
|
46
|
-
*/
|
|
47
|
-
summary?: string;
|
|
48
|
-
/**
|
|
49
|
-
* Array of supplemental links. Maximum of 2.
|
|
50
|
-
*/
|
|
51
|
-
supplementalLinks?: ReactElement[];
|
|
52
|
-
/**
|
|
53
|
-
* Card title
|
|
54
|
-
*/
|
|
55
|
-
title: string;
|
|
56
|
-
}
|
|
57
|
-
/**
|
|
58
|
-
* NewSiteCard UI component
|
|
59
|
-
*/
|
|
60
|
-
export declare const NewSiteCard: ({ badge, className, icon, newWindowString, selectionLink, subtitle, summary, supplementalLinks, title, ...props }: NewSiteCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
61
|
-
export {};
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
import { ComponentPropsWithoutRef } from 'react';
|
|
2
|
-
import './payment-card.css';
|
|
3
|
-
/**
|
|
4
|
-
* Prop types for PaymentCard
|
|
5
|
-
*/
|
|
6
|
-
export interface PaymentCardProps extends ComponentPropsWithoutRef<'div'> {
|
|
7
|
-
/**
|
|
8
|
-
* The name of the cardholder.
|
|
9
|
-
*/
|
|
10
|
-
cardholderName?: string;
|
|
11
|
-
/**
|
|
12
|
-
* The last four digits of the card number.
|
|
13
|
-
*/
|
|
14
|
-
cardNumber?: number;
|
|
15
|
-
/**
|
|
16
|
-
* The type of payment icon to display.
|
|
17
|
-
*/
|
|
18
|
-
cardType?: 'visa' | 'mastercard' | 'amex' | 'discover';
|
|
19
|
-
/**
|
|
20
|
-
* A string for the lower left corner.
|
|
21
|
-
*/
|
|
22
|
-
cardUsage?: string;
|
|
23
|
-
/**
|
|
24
|
-
* Additional class names
|
|
25
|
-
*/
|
|
26
|
-
className?: string;
|
|
27
|
-
/**
|
|
28
|
-
* Function for when “view details” is clicked
|
|
29
|
-
*/
|
|
30
|
-
detailsCallback?: () => void;
|
|
31
|
-
/**
|
|
32
|
-
* Translation string for “view details”
|
|
33
|
-
*/
|
|
34
|
-
detailsLabel?: string;
|
|
35
|
-
/**
|
|
36
|
-
* Expiration date of the card in MM/YY format.
|
|
37
|
-
*/
|
|
38
|
-
expDate?: string;
|
|
39
|
-
/**
|
|
40
|
-
* Function for when this card is selected
|
|
41
|
-
*/
|
|
42
|
-
selectionCallback?: () => void;
|
|
43
|
-
}
|
|
44
|
-
/**
|
|
45
|
-
* PaymentCard UI component
|
|
46
|
-
*/
|
|
47
|
-
export declare const PaymentCard: ({ cardholderName, cardNumber, cardType, cardUsage, className, detailsCallback, detailsLabel, expDate, selectionCallback, ...props }: PaymentCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,95 +0,0 @@
|
|
|
1
|
-
import { ComponentPropsWithoutRef } from 'react';
|
|
2
|
-
import { HeadingLevelCommon } from '../../../libs/types/custom-types';
|
|
3
|
-
import { ListItems } from '../../ComparisonList/ComparisonList';
|
|
4
|
-
import './pricing-card.css';
|
|
5
|
-
interface PrimaryCallToAction {
|
|
6
|
-
buttonAction?: () => void;
|
|
7
|
-
disabled?: boolean;
|
|
8
|
-
label?: string;
|
|
9
|
-
linkTarget?: string;
|
|
10
|
-
linkUrl?: string;
|
|
11
|
-
type?: 'button' | 'link';
|
|
12
|
-
variant?: 'primary' | 'secondary';
|
|
13
|
-
}
|
|
14
|
-
interface SecondaryCallToAction {
|
|
15
|
-
buttonAction?: () => void;
|
|
16
|
-
label?: string;
|
|
17
|
-
linkTarget?: string;
|
|
18
|
-
linkUrl?: string;
|
|
19
|
-
type?: 'button' | 'link';
|
|
20
|
-
}
|
|
21
|
-
interface PlanPricingData {
|
|
22
|
-
customActionLabel?: string;
|
|
23
|
-
label?: string;
|
|
24
|
-
listItems?: ListItems[];
|
|
25
|
-
listLabel?: string;
|
|
26
|
-
price?: string;
|
|
27
|
-
priceDetails?: string;
|
|
28
|
-
pricePrefix?: string;
|
|
29
|
-
savingsBadgeLabel?: string;
|
|
30
|
-
savingsDetails?: string;
|
|
31
|
-
}
|
|
32
|
-
interface StatusBadgeLabels {
|
|
33
|
-
currentPlan?: string;
|
|
34
|
-
mostPopular?: string;
|
|
35
|
-
}
|
|
36
|
-
interface PricingCardProps extends ComponentPropsWithoutRef<'div'> {
|
|
37
|
-
/**
|
|
38
|
-
* The primary call to action.
|
|
39
|
-
*/
|
|
40
|
-
actionPrimary?: PrimaryCallToAction;
|
|
41
|
-
/**
|
|
42
|
-
* An optional secondary call to action.
|
|
43
|
-
*/
|
|
44
|
-
actionSecondary?: SecondaryCallToAction;
|
|
45
|
-
/**
|
|
46
|
-
* Additional class names for the card item.
|
|
47
|
-
*/
|
|
48
|
-
className?: string;
|
|
49
|
-
/**
|
|
50
|
-
* Additional class names for the card container.
|
|
51
|
-
*/
|
|
52
|
-
containerClassName?: string;
|
|
53
|
-
/**
|
|
54
|
-
* Has comparison list. Will be rendered below the card if true.
|
|
55
|
-
* Add corresponding `comparisonListId` to each planPricingData object.
|
|
56
|
-
*/
|
|
57
|
-
hasComparisonList?: boolean;
|
|
58
|
-
/**
|
|
59
|
-
* Heading level for the plan name.
|
|
60
|
-
*/
|
|
61
|
-
headingLevel?: HeadingLevelCommon;
|
|
62
|
-
/**
|
|
63
|
-
* Optional function to handle the change event of the select input. Only valid when multiple tiers of planPricingData are present.
|
|
64
|
-
*/
|
|
65
|
-
onTierChange?: (value: any) => void;
|
|
66
|
-
/**
|
|
67
|
-
* A brief description of the plan.
|
|
68
|
-
*/
|
|
69
|
-
planDescription?: string;
|
|
70
|
-
/**
|
|
71
|
-
* The name of the plan.
|
|
72
|
-
*/
|
|
73
|
-
planName?: string;
|
|
74
|
-
/**
|
|
75
|
-
* Plan pricing data. An array of objects.
|
|
76
|
-
*/
|
|
77
|
-
planPricingData: PlanPricingData[];
|
|
78
|
-
/**
|
|
79
|
-
* Label for the plan size select dropdown. Available to screen readers only. Provide translation string if needed.
|
|
80
|
-
*/
|
|
81
|
-
selectLabel?: string;
|
|
82
|
-
/**
|
|
83
|
-
* Status badge labels. Provide translation strings if needed.
|
|
84
|
-
*/
|
|
85
|
-
statusBadgeLabels: StatusBadgeLabels;
|
|
86
|
-
/**
|
|
87
|
-
* Status badge type. Leave empty for no badge. Only one badge of each type should be used in a group of Pricing Cards.
|
|
88
|
-
*/
|
|
89
|
-
statusBadgeType?: 'currentPlan' | 'mostPopular';
|
|
90
|
-
}
|
|
91
|
-
/**
|
|
92
|
-
* PricingCard UI component
|
|
93
|
-
*/
|
|
94
|
-
export declare const PricingCard: ({ actionPrimary, actionSecondary, className, hasComparisonList, headingLevel, onTierChange, planDescription, planName, planPricingData, selectLabel, statusBadgeLabels, statusBadgeType, ...props }: PricingCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
95
|
-
export {};
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import { ComponentPropsWithoutRef, ReactNode } from 'react';
|
|
2
|
-
import { HeadingLevelCommon, SiteStatus } from '../../../libs/types/custom-types';
|
|
3
|
-
import './site-card.css';
|
|
4
|
-
/**
|
|
5
|
-
* Prop types for SiteCard
|
|
6
|
-
*/
|
|
7
|
-
export interface SiteCardProps extends ComponentPropsWithoutRef<'div'> {
|
|
8
|
-
/**
|
|
9
|
-
* Additional class names
|
|
10
|
-
*/
|
|
11
|
-
className?: string;
|
|
12
|
-
/**
|
|
13
|
-
* Translatable text for the "Go to" link.
|
|
14
|
-
*/
|
|
15
|
-
gotoText?: string;
|
|
16
|
-
/**
|
|
17
|
-
* Heading level of the card title.
|
|
18
|
-
*/
|
|
19
|
-
headingLevel?: HeadingLevelCommon;
|
|
20
|
-
/**
|
|
21
|
-
* Callback for when the card is clicked.
|
|
22
|
-
* Should only be used for special handling of restricted sites.
|
|
23
|
-
* Will override the default link behavior if provided.
|
|
24
|
-
*/
|
|
25
|
-
onClick?: () => void;
|
|
26
|
-
/**
|
|
27
|
-
* Image URL for the site.
|
|
28
|
-
*/
|
|
29
|
-
siteImage?: string;
|
|
30
|
-
/**
|
|
31
|
-
* Link to the site dashboard.
|
|
32
|
-
*/
|
|
33
|
-
siteLink: ReactNode;
|
|
34
|
-
/**
|
|
35
|
-
* Name of the site.
|
|
36
|
-
*/
|
|
37
|
-
siteName?: string;
|
|
38
|
-
/**
|
|
39
|
-
* Plan of the site.
|
|
40
|
-
*/
|
|
41
|
-
sitePlan?: string;
|
|
42
|
-
/**
|
|
43
|
-
* Status of the site.
|
|
44
|
-
*/
|
|
45
|
-
siteStatus?: SiteStatus;
|
|
46
|
-
}
|
|
47
|
-
/**
|
|
48
|
-
* SiteCard UI component
|
|
49
|
-
*/
|
|
50
|
-
export declare const SiteCard: ({ className, gotoText, headingLevel, onClick, siteImage, siteLink, siteName, sitePlan, siteStatus, ...props }: SiteCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { ComponentPropsWithoutRef } from 'react';
|
|
2
|
-
import type { HeadingLevelCommon } from '../../../libs/types/custom-types';
|
|
3
|
-
import './footer-heading.css';
|
|
4
|
-
interface FooterHeadingProps {
|
|
5
|
-
/**
|
|
6
|
-
* Additional class names
|
|
7
|
-
*/
|
|
8
|
-
className?: string;
|
|
9
|
-
/**
|
|
10
|
-
* Heading level
|
|
11
|
-
*/
|
|
12
|
-
headingLevel?: HeadingLevelCommon;
|
|
13
|
-
/**
|
|
14
|
-
* Heading text
|
|
15
|
-
*/
|
|
16
|
-
headingText: string;
|
|
17
|
-
}
|
|
18
|
-
/**
|
|
19
|
-
* Footer Heading UI component
|
|
20
|
-
*/
|
|
21
|
-
export declare const FooterHeading: ({ className, headingLevel, headingText, ...props }: FooterHeadingProps & ComponentPropsWithoutRef<HeadingLevelCommon>) => import("react/jsx-runtime").JSX.Element;
|
|
22
|
-
export {};
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { ComponentPropsWithoutRef, ReactNode } from 'react';
|
|
2
|
-
import type { HeadingLevelCommon } from '../../../libs/types/custom-types';
|
|
3
|
-
import './footer-links.css';
|
|
4
|
-
interface FooterLinksProps extends ComponentPropsWithoutRef<'div'> {
|
|
5
|
-
/**
|
|
6
|
-
* Additional class names
|
|
7
|
-
*/
|
|
8
|
-
className?: string;
|
|
9
|
-
/**
|
|
10
|
-
* Heading level
|
|
11
|
-
*/
|
|
12
|
-
headingLevel?: HeadingLevelCommon;
|
|
13
|
-
/**
|
|
14
|
-
* Heading text
|
|
15
|
-
*/
|
|
16
|
-
headingText: string;
|
|
17
|
-
/**
|
|
18
|
-
* Array of links
|
|
19
|
-
*/
|
|
20
|
-
linkItems?: ReactNode[];
|
|
21
|
-
}
|
|
22
|
-
/**
|
|
23
|
-
* Footer Links UI component
|
|
24
|
-
*/
|
|
25
|
-
export declare const FooterLinks: ({ className, headingLevel, headingText, linkItems, ...props }: FooterLinksProps) => import("react/jsx-runtime").JSX.Element;
|
|
26
|
-
export {};
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { ComponentPropsWithoutRef, ReactNode } from 'react';
|
|
2
|
-
import { ContainerWidth } from '../../../libs/types/custom-types';
|
|
3
|
-
import './site-footer.css';
|
|
4
|
-
interface SiteFooterProps extends ComponentPropsWithoutRef<'footer'> {
|
|
5
|
-
/**
|
|
6
|
-
* HTML element to render. Use 'footer' for standalone usage or 'div' when nested inside another footer landmark.
|
|
7
|
-
*/
|
|
8
|
-
as?: 'footer' | 'div';
|
|
9
|
-
/**
|
|
10
|
-
* Footer content.
|
|
11
|
-
*/
|
|
12
|
-
children?: ReactNode;
|
|
13
|
-
/**
|
|
14
|
-
* Additional class names
|
|
15
|
-
*/
|
|
16
|
-
className?: string;
|
|
17
|
-
/**
|
|
18
|
-
* PDS container width.
|
|
19
|
-
*/
|
|
20
|
-
containerWidth?: ContainerWidth;
|
|
21
|
-
/**
|
|
22
|
-
* Should the footer have a top border?
|
|
23
|
-
*/
|
|
24
|
-
hasTopBorder?: boolean;
|
|
25
|
-
/**
|
|
26
|
-
* Legal policy links.
|
|
27
|
-
*/
|
|
28
|
-
legalLinks?: Array<'privacy' | 'dataSubjectRequest' | 'cookiePolicy' | 'termsOfUse' | 'acceptableUse' | 'accessibilityStatement'>;
|
|
29
|
-
}
|
|
30
|
-
/**
|
|
31
|
-
* SiteFooter UI component
|
|
32
|
-
*/
|
|
33
|
-
export declare const SiteFooter: ({ as: Element, children, className, containerWidth, hasTopBorder, legalLinks, ...props }: SiteFooterProps) => import("react/jsx-runtime").JSX.Element;
|
|
34
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const docsFooterContent: import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { ComponentPropsWithoutRef } from 'react';
|
|
2
|
-
import { DashboardNavItemProps } from './DashboardNavItem';
|
|
3
|
-
import './dashboard-nav.css';
|
|
4
|
-
/**
|
|
5
|
-
* Prop types for DashboardNav
|
|
6
|
-
*/
|
|
7
|
-
export interface DashboardNavProps extends ComponentPropsWithoutRef<'nav'> {
|
|
8
|
-
/**
|
|
9
|
-
* Aria label for the navigation.
|
|
10
|
-
*/
|
|
11
|
-
ariaLabel: string;
|
|
12
|
-
/**
|
|
13
|
-
* Additional class names
|
|
14
|
-
*/
|
|
15
|
-
className?: string;
|
|
16
|
-
/**
|
|
17
|
-
* Labels for translatable strings.
|
|
18
|
-
*/
|
|
19
|
-
labels?: {
|
|
20
|
-
submenu: string;
|
|
21
|
-
toggle: string;
|
|
22
|
-
};
|
|
23
|
-
/**
|
|
24
|
-
* Menu items to render.
|
|
25
|
-
*/
|
|
26
|
-
menuItems: DashboardNavItemProps[];
|
|
27
|
-
/**
|
|
28
|
-
* Text to display in the mobile menu trigger button when no active link is found.
|
|
29
|
-
*/
|
|
30
|
-
mobileMenuSelectTextFallback?: string;
|
|
31
|
-
}
|
|
32
|
-
/**
|
|
33
|
-
* DashboardNav UI component
|
|
34
|
-
*/
|
|
35
|
-
export declare const DashboardNav: ({ ariaLabel, className, labels, menuItems, mobileMenuSelectTextFallback, ...props }: DashboardNavProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { NavigationItem } from '../../../libs/types/navigation-types';
|
|
2
|
-
import { PDSIcon } from '../../icons/Icon/Icon';
|
|
3
|
-
import './dashboard-nav.css';
|
|
4
|
-
export interface DashboardNavItemProps extends NavigationItem {
|
|
5
|
-
/**
|
|
6
|
-
* Icon to display next to the link content.
|
|
7
|
-
*/
|
|
8
|
-
icon?: PDSIcon;
|
|
9
|
-
/**
|
|
10
|
-
* Flag indicating whether the sidebar is expanded.
|
|
11
|
-
*/
|
|
12
|
-
isSidebarExpanded?: boolean;
|
|
13
|
-
/**
|
|
14
|
-
* Labels for translatable strings.
|
|
15
|
-
*/
|
|
16
|
-
labels?: {
|
|
17
|
-
submenu: string;
|
|
18
|
-
toggle: string;
|
|
19
|
-
};
|
|
20
|
-
}
|
|
21
|
-
/**
|
|
22
|
-
* DashboardNavItem UI component
|
|
23
|
-
*/
|
|
24
|
-
export declare const DashboardNavItem: ({ icon, isActive, isSidebarExpanded, labels, linkContent, links, }: DashboardNavItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { ComponentPropsWithoutRef } from 'react';
|
|
2
|
-
import { NavMenuItem } from '../../../libs/types/navigation-types';
|
|
3
|
-
import './nav-menu.css';
|
|
4
|
-
/**
|
|
5
|
-
* Prop types for NavMenu
|
|
6
|
-
*/
|
|
7
|
-
interface NavMenuProps extends ComponentPropsWithoutRef<'nav'> {
|
|
8
|
-
/**
|
|
9
|
-
* Aria label for `nav` element.
|
|
10
|
-
*/
|
|
11
|
-
ariaLabel: string;
|
|
12
|
-
/**
|
|
13
|
-
* Additional class names
|
|
14
|
-
*/
|
|
15
|
-
className?: string;
|
|
16
|
-
/**
|
|
17
|
-
* Color scheme.
|
|
18
|
-
*/
|
|
19
|
-
colorType?: 'default' | 'reverse';
|
|
20
|
-
/**
|
|
21
|
-
* Menu Items.
|
|
22
|
-
*/
|
|
23
|
-
menuItems?: NavMenuItem[];
|
|
24
|
-
/**
|
|
25
|
-
* Mobile menu will be enabled when viewport is at or below this number in pixels.
|
|
26
|
-
*/
|
|
27
|
-
mobileMenuMaxWidth?: number;
|
|
28
|
-
}
|
|
29
|
-
/**
|
|
30
|
-
* NavMenu UI component
|
|
31
|
-
*/
|
|
32
|
-
export declare const NavMenu: ({ ariaLabel, className, colorType, menuItems, mobileMenuMaxWidth, ...props }: NavMenuProps) => import("react/jsx-runtime").JSX.Element;
|
|
33
|
-
export {};
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { ComponentPropsWithoutRef } from 'react';
|
|
2
|
-
import { NavMenuItem } from '../../../libs/types/navigation-types';
|
|
3
|
-
/**
|
|
4
|
-
* Prop types for NavMenuDropdown
|
|
5
|
-
*/
|
|
6
|
-
interface NavMenuDropdownProps extends ComponentPropsWithoutRef<'button'> {
|
|
7
|
-
/**
|
|
8
|
-
* Dropdown items.
|
|
9
|
-
*/
|
|
10
|
-
items?: NavMenuItem[];
|
|
11
|
-
/**
|
|
12
|
-
* Dropdown label.
|
|
13
|
-
*/
|
|
14
|
-
label?: string;
|
|
15
|
-
/**
|
|
16
|
-
* Mobile menu will be enabled when viewport is at or below this number in pixels.
|
|
17
|
-
*/
|
|
18
|
-
mobileMenuMaxWidth?: number;
|
|
19
|
-
}
|
|
20
|
-
/**
|
|
21
|
-
* NavMenuDropdown UI component
|
|
22
|
-
*/
|
|
23
|
-
export declare const NavMenuDropdown: ({ items, label, mobileMenuMaxWidth, }: NavMenuDropdownProps) => import("react/jsx-runtime").JSX.Element;
|
|
24
|
-
export {};
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
import { ComponentPropsWithoutRef, ReactElement } from 'react';
|
|
2
|
-
import { NavigationItem } from '../../../libs/types/navigation-types';
|
|
3
|
-
import './side-nav-compact.css';
|
|
4
|
-
export type SideNavCompactItem = NavigationItem & {
|
|
5
|
-
/**
|
|
6
|
-
* A boolean indicating whether the item is a submenu.
|
|
7
|
-
*/
|
|
8
|
-
path?: string;
|
|
9
|
-
};
|
|
10
|
-
/**
|
|
11
|
-
* Prop types for SideNavCompact
|
|
12
|
-
*/
|
|
13
|
-
export interface SideNavCompactProps extends ComponentPropsWithoutRef<'nav'> {
|
|
14
|
-
/**
|
|
15
|
-
* Aria label for the navigation.
|
|
16
|
-
*/
|
|
17
|
-
ariaLabel: string;
|
|
18
|
-
/**
|
|
19
|
-
* Additional class names
|
|
20
|
-
*/
|
|
21
|
-
className?: string;
|
|
22
|
-
/**
|
|
23
|
-
* Whether the menu should be rendered as a mobile menu when the viewport is at or below the mobileMenuMaxWidth.
|
|
24
|
-
*/
|
|
25
|
-
hasMobileMenu?: boolean;
|
|
26
|
-
/**
|
|
27
|
-
* Heading text. If a link is passed, it will be rendered as a link.
|
|
28
|
-
*/
|
|
29
|
-
headingText?: string | ReactElement;
|
|
30
|
-
/**
|
|
31
|
-
* Labels for translatable strings.
|
|
32
|
-
*/
|
|
33
|
-
labels?: {
|
|
34
|
-
submenu: string;
|
|
35
|
-
toggle: string;
|
|
36
|
-
};
|
|
37
|
-
/**
|
|
38
|
-
* Menu items to render.
|
|
39
|
-
*/
|
|
40
|
-
menuItems: SideNavCompactItem[];
|
|
41
|
-
/**
|
|
42
|
-
* Mobile menu will be enabled when viewport is at or below this number in pixels.
|
|
43
|
-
*/
|
|
44
|
-
mobileMenuMaxWidth?: number;
|
|
45
|
-
/**
|
|
46
|
-
* Text to display in the mobile menu trigger button when no active link is found.
|
|
47
|
-
*/
|
|
48
|
-
mobileMenuSelectTextFallback?: string;
|
|
49
|
-
}
|
|
50
|
-
/**
|
|
51
|
-
* SideNavCompact UI component
|
|
52
|
-
*/
|
|
53
|
-
export declare const SideNavCompact: ({ ariaLabel, className, hasMobileMenu, headingText, labels, menuItems, mobileMenuMaxWidth, mobileMenuSelectTextFallback, ...props }: SideNavCompactProps) => import("react/jsx-runtime").JSX.Element;
|