@pantheon-systems/pds-toolkit-react 2.0.0-alpha.19 → 2.0.0-alpha.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/{RefreshChecker/RefreshChecker.d.ts → StatusChecker/StatusChecker.d.ts} +5 -19
- package/dist/components/buttons/MenuButton/MenuButton.d.ts +1 -7
- package/dist/components/charts/shared/chart-colors.d.ts +1 -1
- package/dist/components/charts/shared/types.d.ts +1 -1
- package/dist/components/icons/Icon/generated-icon-data.d.ts +1 -1
- package/dist/components/navigation/Navbar/Navbar.d.ts +1 -1
- package/dist/components/navigation/SiteMenu/SiteMenu.d.ts +1 -5
- package/dist/components/navigation/SiteMenu/SiteMenuDropdown.d.ts +6 -9
- package/dist/components/navigation/UserMenu/UserMenu.d.ts +1 -5
- package/dist/components/navigation/WorkspaceSelector/WorkspaceSelector.d.ts +1 -5
- package/dist/components/notifications/NotificationsPopover/NotificationsPopover.d.ts +2 -7
- package/dist/css/component-css/pds-button-nav.css +1 -1
- package/dist/css/component-css/pds-dashboard-search.css +1 -1
- package/dist/css/component-css/pds-horizontal-empty-state.css +1 -1
- package/dist/css/component-css/pds-index.css +69 -12
- package/dist/css/component-css/pds-menu-button.css +4 -1
- package/dist/css/component-css/pds-nav-menu.css +1 -1
- package/dist/css/component-css/pds-navbar.css +4 -1
- package/dist/css/component-css/pds-notification-hub-icon.css +1 -1
- package/dist/css/component-css/pds-notifications-popover.css +13 -1
- package/dist/css/component-css/pds-pantheon-logo.css +1 -1
- package/dist/css/component-css/pds-status-checker.css +1 -0
- package/dist/css/component-css/pds-stepper.css +1 -1
- package/dist/css/component-css/pds-tab-menu.css +2 -2
- package/dist/css/component-css/pds-user-menu.css +29 -1
- package/dist/css/component-css/pds-vertical-stepper.css +1 -1
- package/dist/css/component-css/pds-workspace-selector.css +16 -1
- package/dist/css/design-tokens/variables.dark.css +50 -56
- package/dist/css/design-tokens/variables.light.css +50 -56
- package/dist/css/layout-css/pds-docs-layout.css +1 -1
- package/dist/css/layout-css/pds-index.css +1 -8
- package/dist/css/layout-css/pds-sidebar-layout.css +5 -0
- package/dist/css/pds-components.css +69 -12
- package/dist/css/pds-core.css +2 -2
- package/dist/css/pds-layouts.css +1 -8
- package/dist/index.css +1 -1
- package/dist/index.d.ts +10 -2
- package/dist/index.js +6040 -5356
- package/dist/index.js.map +1 -1
- package/dist/index.source.d.ts +2 -7
- package/dist/layouts/DocsLayout/DocsLayout.d.ts +9 -7
- package/dist/layouts/SidebarLayout/SidebarLayout.d.ts +12 -3
- package/dist/libs/components/NavAccordion/NavAccordion.d.ts +27 -0
- package/dist/utilities/FlexContainer/FlexContainer.d.ts +1 -1
- package/dist/utilities/GlobalWrapper/GlobalWrapper.d.ts +21 -0
- package/package.json +35 -29
- package/dist/components/navigation/DashboardNav/DashboardNav.d.ts +0 -35
- package/dist/components/navigation/DashboardNav/DashboardNavItem.d.ts +0 -24
- package/dist/css/component-css/pds-dashboard-nav.css +0 -5
- package/dist/css/component-css/pds-refresh-checker.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/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/{RefreshChecker/RefreshChecker.d.ts → StatusChecker/StatusChecker.d.ts}
RENAMED
|
@@ -1,17 +1,7 @@
|
|
|
1
1
|
import { ComponentPropsWithoutRef } from 'react';
|
|
2
|
-
import './
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
*/
|
|
6
|
-
export declare enum RefreshCheckerState {
|
|
7
|
-
CHECKED = "checked",
|
|
8
|
-
DEFAULT = "default",
|
|
9
|
-
WORKING = "working"
|
|
10
|
-
}
|
|
11
|
-
/**
|
|
12
|
-
* Prop types for RefreshChecker
|
|
13
|
-
*/
|
|
14
|
-
interface RefreshCheckerProps extends ComponentPropsWithoutRef<'div'> {
|
|
2
|
+
import './status-checker.css';
|
|
3
|
+
export type StatusCheckerState = 'checked' | 'default' | 'working';
|
|
4
|
+
export interface StatusCheckerProps extends ComponentPropsWithoutRef<'div'> {
|
|
15
5
|
/**
|
|
16
6
|
* Alignment of the component. Default is left.
|
|
17
7
|
*/
|
|
@@ -45,10 +35,6 @@ interface RefreshCheckerProps extends ComponentPropsWithoutRef<'div'> {
|
|
|
45
35
|
/**
|
|
46
36
|
* State of the component
|
|
47
37
|
*/
|
|
48
|
-
state?:
|
|
38
|
+
state?: StatusCheckerState;
|
|
49
39
|
}
|
|
50
|
-
|
|
51
|
-
* RefreshChecker UI component
|
|
52
|
-
*/
|
|
53
|
-
export declare const RefreshChecker: ({ alignment, className, componentWidth, labelStrings, lastChecked, onCheck, state, ...props }: RefreshCheckerProps) => import("react/jsx-runtime").JSX.Element;
|
|
54
|
-
export {};
|
|
40
|
+
export declare const StatusChecker: ({ alignment, className, componentWidth, labelStrings, lastChecked, onCheck, state, ...props }: StatusCheckerProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -64,15 +64,9 @@ export interface MenuButtonProps extends ComponentPropsWithRef<'span'> {
|
|
|
64
64
|
* Which variant of button to render — only valid for icon-end (default) display type.
|
|
65
65
|
*/
|
|
66
66
|
variant?: Extract<ButtonVariant, 'primary' | 'secondary' | 'navbar'>;
|
|
67
|
-
/**
|
|
68
|
-
* Is this button located with the Navbar component?
|
|
69
|
-
* This will adjust the styling and position of the dropdown.
|
|
70
|
-
* Omit this prop for the Dashboard application. It only applies to the standard Navbar component with a bottom border.
|
|
71
|
-
*/
|
|
72
|
-
withinNavbar?: boolean;
|
|
73
67
|
}
|
|
74
68
|
/**
|
|
75
69
|
* MenuButton UI component
|
|
76
70
|
*/
|
|
77
|
-
export declare const MenuButton: ({ className, disabled, displayType, iconName, id, isSplitButton, label, menuItems, menuPosition, onClick, size, testId, undefinedLabel, variant,
|
|
71
|
+
export declare const MenuButton: ({ className, disabled, displayType, iconName, id, isSplitButton, label, menuItems, menuPosition, onClick, size, testId, undefinedLabel, variant, ...props }: MenuButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
78
72
|
export {};
|
|
@@ -7,7 +7,7 @@ import type { ColorPalette } from './types';
|
|
|
7
7
|
export declare const toStandaloneColors: (palette: ColorPalette, colors: string[]) => string[];
|
|
8
8
|
/**
|
|
9
9
|
* Normalizes a paletteIndex for palettes that have fill-only steps.
|
|
10
|
-
* Clamps fill-only step numbers (e.g. 1–
|
|
10
|
+
* Clamps fill-only step numbers (e.g. 1–2 on sequential-iris/multi) to the first safe step,
|
|
11
11
|
* then adjusts for the slice offset so the number still maps correctly into the sliced array.
|
|
12
12
|
* Non-restricted palettes pass through unchanged.
|
|
13
13
|
*/
|
|
@@ -44,7 +44,7 @@ export interface TimePeriodOption {
|
|
|
44
44
|
/** Value identifier */
|
|
45
45
|
value: string;
|
|
46
46
|
}
|
|
47
|
-
export type ColorPalette = 'categorical' | 'diverging' | 'sequential-gray' | 'sequential-iris' | 'sequential-multi' | 'single' | 'status';
|
|
47
|
+
export type ColorPalette = 'categorical' | 'diverging-a' | 'diverging-b' | 'sequential-gray' | 'sequential-iris' | 'sequential-multi' | 'single' | 'status';
|
|
48
48
|
export type LegendVariant = 'inline' | 'table';
|
|
49
49
|
export interface TooltipEntry {
|
|
50
50
|
/** Series bar/line color */
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Generated by: npm run generate:icon-data
|
|
5
5
|
* Source: icon-registry.ts + Font Awesome packages + custom-icons.tsx
|
|
6
|
-
* Generated: 2026-05-
|
|
6
|
+
* Generated: 2026-05-17T18:14:17.010Z
|
|
7
7
|
*/
|
|
8
8
|
import { customIcons } from './custom-icons';
|
|
9
9
|
export { customIcons };
|
|
@@ -27,7 +27,7 @@ export interface NavbarProps extends ComponentPropsWithoutRef<'header'> {
|
|
|
27
27
|
*/
|
|
28
28
|
hideBorder?: boolean;
|
|
29
29
|
/**
|
|
30
|
-
* Hide the logo
|
|
30
|
+
* Hide the logo on desktop. The logo is always shown in the mobile bar.
|
|
31
31
|
*/
|
|
32
32
|
hideLogo?: boolean;
|
|
33
33
|
/**
|
|
@@ -22,13 +22,9 @@ interface SiteMenuProps extends ComponentPropsWithoutRef<'nav'> {
|
|
|
22
22
|
* Menu Items.
|
|
23
23
|
*/
|
|
24
24
|
menuItems?: NavMenuItem[];
|
|
25
|
-
/**
|
|
26
|
-
* Mobile menu will be enabled when viewport is at or below this number in pixels.
|
|
27
|
-
*/
|
|
28
|
-
mobileMenuMaxWidth?: number;
|
|
29
25
|
}
|
|
30
26
|
/**
|
|
31
27
|
* SiteMenu UI component
|
|
32
28
|
*/
|
|
33
|
-
export declare const SiteMenu: ({ ariaLabel, className, colorType, menuItems,
|
|
29
|
+
export declare const SiteMenu: ({ ariaLabel, className, colorType, menuItems, ...props }: SiteMenuProps) => import("react/jsx-runtime").JSX.Element;
|
|
34
30
|
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ComponentPropsWithoutRef } from 'react';
|
|
2
2
|
import { NavMenuItem } from '../../../libs/types/navigation-types';
|
|
3
3
|
/**
|
|
4
|
-
* Prop types for
|
|
4
|
+
* Prop types for SiteMenuDropdown
|
|
5
5
|
*/
|
|
6
6
|
interface SiteMenuDropdownProps extends ComponentPropsWithoutRef<'button'> {
|
|
7
7
|
/**
|
|
@@ -12,15 +12,12 @@ interface SiteMenuDropdownProps extends ComponentPropsWithoutRef<'button'> {
|
|
|
12
12
|
* Menu label shown on the trigger button.
|
|
13
13
|
*/
|
|
14
14
|
label?: string;
|
|
15
|
-
/**
|
|
16
|
-
* Viewport width (px) below which the mobile accordion style is used.
|
|
17
|
-
*/
|
|
18
|
-
mobileMenuMaxWidth?: number;
|
|
19
15
|
}
|
|
20
16
|
/**
|
|
21
|
-
*
|
|
22
|
-
*
|
|
23
|
-
*
|
|
17
|
+
* SiteMenuDropdown — a sub-menu for SiteMenu items that have child links.
|
|
18
|
+
* Desktop: Floating UI dropdown (opens on hover or click).
|
|
19
|
+
* Mobile: NavAccordion inline expansion.
|
|
20
|
+
* Both are always in the DOM; CSS driven by [data-pds-mobile] shows the right one.
|
|
24
21
|
*/
|
|
25
|
-
export declare const SiteMenuDropdown: ({ items, label
|
|
22
|
+
export declare const SiteMenuDropdown: ({ items, label }: SiteMenuDropdownProps) => import("react/jsx-runtime").JSX.Element;
|
|
26
23
|
export {};
|
|
@@ -58,12 +58,8 @@ export interface UserMenuProps extends ComponentPropsWithoutRef<'span'> {
|
|
|
58
58
|
* User display name.
|
|
59
59
|
*/
|
|
60
60
|
userName?: string;
|
|
61
|
-
/**
|
|
62
|
-
* If true, the workspace selector will be styled and rendered to work with the mobile version of the navbar menu. Defaults to true.
|
|
63
|
-
*/
|
|
64
|
-
withinNavbar?: boolean;
|
|
65
61
|
}
|
|
66
62
|
/**
|
|
67
63
|
* UserMenu UI component
|
|
68
64
|
*/
|
|
69
|
-
export declare const UserMenu: ({ ariaLabel, className, menuItems, userEmail, userImageSrc, userName,
|
|
65
|
+
export declare const UserMenu: ({ ariaLabel, className, menuItems, userEmail, userImageSrc, userName, ...props }: UserMenuProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -87,10 +87,6 @@ export interface WorkspaceSelectorProps extends ComponentPropsWithoutRef<'span'>
|
|
|
87
87
|
* Text to display when no results are found.
|
|
88
88
|
*/
|
|
89
89
|
noResultsText?: string;
|
|
90
|
-
/**
|
|
91
|
-
* Is this component located in the top nav? Only applies when using the Navbar component from this toolkit. Defaults to true per design.
|
|
92
|
-
*/
|
|
93
|
-
withinNavbar?: boolean;
|
|
94
90
|
/**
|
|
95
91
|
* List of all workspaces for a user.
|
|
96
92
|
*/
|
|
@@ -99,5 +95,5 @@ export interface WorkspaceSelectorProps extends ComponentPropsWithoutRef<'span'>
|
|
|
99
95
|
/**
|
|
100
96
|
* WorkspaceSelector UI component
|
|
101
97
|
*/
|
|
102
|
-
export declare const WorkspaceSelector: ({ ariaLabel, className, createWorkspaceLink, filterLabel, filterPlaceholder, menuHeading, minFilterItems, noResultsText,
|
|
98
|
+
export declare const WorkspaceSelector: ({ ariaLabel, className, createWorkspaceLink, filterLabel, filterPlaceholder, menuHeading, minFilterItems, noResultsText, workspaceList, ...props }: WorkspaceSelectorProps) => import("react/jsx-runtime").JSX.Element;
|
|
103
99
|
export {};
|
|
@@ -101,18 +101,13 @@ export interface NotificationsPopoverProps extends ComponentPropsWithoutRef<'spa
|
|
|
101
101
|
unreadLabel?: string;
|
|
102
102
|
/**
|
|
103
103
|
* Text for the "View All" button
|
|
104
|
-
* @default 'View all'
|
|
104
|
+
* @default 'View all notifications'
|
|
105
105
|
*/
|
|
106
106
|
viewAllText?: string;
|
|
107
|
-
/**
|
|
108
|
-
* If true, the component will be styled and rendered to work with the mobile version of the navbar menu
|
|
109
|
-
* @default true
|
|
110
|
-
*/
|
|
111
|
-
withinNavbar?: boolean;
|
|
112
107
|
}
|
|
113
108
|
/**
|
|
114
109
|
* NotificationsPopover UI component
|
|
115
110
|
*
|
|
116
111
|
* Bell icon trigger that opens a popover showing recent notifications.
|
|
117
112
|
*/
|
|
118
|
-
export declare const NotificationsPopover: ({ ariaLabel, autoCloseOnClick, className, emptyText, loadingText, maxVisibleItems, menuHeading, notifications, onNotificationClick, onViewAllClick, showLoading, unreadCount, unreadLabel, viewAllText,
|
|
113
|
+
export declare const NotificationsPopover: ({ ariaLabel, autoCloseOnClick, className, emptyText, loadingText, maxVisibleItems, menuHeading, notifications, onNotificationClick, onViewAllClick, showLoading, unreadCount, unreadLabel, viewAllText, ...props }: NotificationsPopoverProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.pds-button-nav{--button-nav-padding:var(--pds-spacing-4xs);--button-nav-gap-inline:var(--pds-spacing-3xs);--button-nav-total-height:var(--pds-spacing-button-height-s);--button-nav-inner-height:calc(var(--button-nav-total-height) - var(--button-nav-padding)*2);--button-nav-option-padding-inline:var(--pds-spacing-s);--button-nav-text-size:var(--pds-typography-size-s);display:inline-block}.pds-button-nav__menu{align-items:center;background-color:var(--pds-color-segmented-button-background-inactive);gap:var(--button-nav-gap-inline);height:var(--button-nav-total-height);list-style:none;margin:0;padding:var(--button-nav-padding)}.pds-button-nav__item,.pds-button-nav__menu{border-radius:var(--pds-border-radius-button);display:flex}.pds-button-nav__item{height:var(--button-nav-inner-height);transition:var(--pds-animation-transition-button)}.pds-button-nav__item a{align-items:center;color:var(--pds-color-segmented-button-foreground-inactive);column-gap:var(--pds-spacing-3xs);display:flex;font-family:var(--pds-typography-ff-default);font-size:var(--button-nav-text-size);font-weight:var(--pds-typography-fw-medium);line-height:1;padding-inline:var(--button-nav-option-padding-inline);text-decoration:none;white-space:nowrap}.pds-button-nav__item:hover{background-color:var(--pds-color-segmented-button-background-active)}.pds-button-nav__item:hover a{color:var(--pds-color-segmented-button-foreground-active)}.pds-button-nav__item a:focus-visible{border-radius:var(--pds-border-radius-button);outline:var(--pds-border-width-outline) solid var(--pds-color-interactive-focus)}.pds-button-nav__item--active{background-color:var(--pds-color-segmented-button-background-active)}.pds-button-nav__item--active a{color:var(--pds-color-segmented-button-foreground-active)}.pds-button-nav--s{--button-nav-total-height:var(--pds-spacing-button-height-s);--button-nav-padding:var(--pds-spacing-4xs);--button-nav-gap-inline:var(--pds-spacing-3xs);--button-nav-option-padding-inline:var(--pds-spacing-s);--button-nav-text-size:var(--pds-typography-size-s)}.pds-button-nav--m{--button-nav-total-height:var(--pds-spacing-button-height-m);--button-nav-padding:var(--pds-spacing-4xs);--button-nav-gap-inline:var(--pds-spacing-2xs);--button-nav-option-padding-inline:var(--pds-spacing-m);--button-nav-text-size:var(--pds-typography-size-m)}
|
|
1
|
+
.pds-button-nav{--button-nav-padding:var(--pds-spacing-4xs);--button-nav-gap-inline:var(--pds-spacing-3xs);--button-nav-total-height:var(--pds-spacing-button-height-s);--button-nav-inner-height:calc(var(--button-nav-total-height) - var(--button-nav-padding)*2);--button-nav-option-padding-inline:var(--pds-spacing-s);--button-nav-text-size:var(--pds-typography-size-s);display:inline-block}.pds-button-nav__menu{align-items:center;background-color:var(--pds-color-segmented-button-background-inactive);gap:var(--button-nav-gap-inline);height:var(--button-nav-total-height);list-style:none;margin:0;padding:var(--button-nav-padding)}.pds-button-nav__item,.pds-button-nav__menu{border-radius:var(--pds-border-radius-button);display:flex}.pds-button-nav__item{height:var(--button-nav-inner-height);transition:var(--pds-animation-transition-button)}.pds-button-nav__item a{align-items:center;color:var(--pds-color-segmented-button-foreground-inactive);column-gap:var(--pds-spacing-3xs);display:flex;font-family:var(--pds-typography-ff-default);font-size:var(--button-nav-text-size);font-weight:var(--pds-typography-fw-medium);line-height:1;padding-inline:var(--button-nav-option-padding-inline);text-decoration:none;white-space:nowrap}.pds-button-nav__item:hover{background-color:var(--pds-color-segmented-button-background-active)}.pds-button-nav__item:hover a{color:var(--pds-color-segmented-button-foreground-active)}.pds-button-nav__item a:focus-visible{border-radius:var(--pds-border-radius-button);outline:var(--pds-border-width-outline) solid var(--pds-color-interactive-focus)}.pds-button-nav__item--active{background-color:var(--pds-color-segmented-button-background-active)}.pds-button-nav__item--active a{color:var(--pds-color-segmented-button-foreground-active)}.pds-button-nav__mobile{display:none}[data-pds-mobile] .pds-button-nav__mobile{display:block}[data-pds-mobile] .pds-button-nav__menu{display:none}.pds-button-nav--s{--button-nav-total-height:var(--pds-spacing-button-height-s);--button-nav-padding:var(--pds-spacing-4xs);--button-nav-gap-inline:var(--pds-spacing-3xs);--button-nav-option-padding-inline:var(--pds-spacing-s);--button-nav-text-size:var(--pds-typography-size-s)}.pds-button-nav--m{--button-nav-total-height:var(--pds-spacing-button-height-m);--button-nav-padding:var(--pds-spacing-4xs);--button-nav-gap-inline:var(--pds-spacing-2xs);--button-nav-option-padding-inline:var(--pds-spacing-m);--button-nav-text-size:var(--pds-typography-size-m)}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.pds-dashboard-search{--dashboard-search-height:var(--pds-spacing-input-height-s);height:var(--dashboard-search-height);width:220px}@media (min-width:1280px){.pds-dashboard-search{width:340px}}@media (min-width:1440px){.pds-dashboard-search{width:380px}}.pds-dashboard-search__combobox{width:100%}.pds-dashboard-search
|
|
1
|
+
.pds-dashboard-search{--dashboard-search-height:var(--pds-spacing-input-height-s);height:var(--dashboard-search-height);width:220px}@media (min-width:1280px){.pds-dashboard-search{width:340px}}@media (min-width:1440px){.pds-dashboard-search{width:380px}}.pds-dashboard-search__combobox{width:100%}.pds-dashboard-search__inner{height:100%}[data-pds-mobile] .pds-dashboard-search{border-block-end:var(--pds-border-width-default) solid var(--pds-color-border-default);height:auto;left:50%;margin-inline-start:-50vw;min-height:var(--pds-spacing-4xl);position:relative;width:100vw}[data-pds-mobile] .pds-dashboard-search__inner{padding-block:var(--pds-spacing-s)}[data-pds-mobile] .pds-dashboard-search__combobox{margin-inline:auto;width:calc(100% - var(--pds-spacing-l)*2)}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.pds-horizontal-empty-state{color:var(--pds-color-
|
|
1
|
+
.pds-horizontal-empty-state{color:var(--pds-color-fg-default);display:flex;font-family:var(--pds-typography-ff-default);gap:var(--pds-spacing-2xl);width:100%}.pds-horizontal-empty-state--top{align-items:flex-start}.pds-horizontal-empty-state--center{align-items:center}.pds-horizontal-empty-state__content{display:flex;flex-direction:column;row-gap:var(--pds-spacing-xl);width:60%}.pds-horizontal-empty-state__heading{margin-block-end:0}.pds-horizontal-empty-state__media{width:40%}.pds-horizontal-empty-state__image{height:auto;width:100%}.pds-horizontal-empty-state--panel .pds-horizontal-empty-state__content{width:72%}.pds-horizontal-empty-state--panel .pds-horizontal-empty-state__media{width:28%}.pds-horizontal-empty-state--video .pds-horizontal-empty-state__content,.pds-horizontal-empty-state--video .pds-horizontal-empty-state__media{width:50%}[data-pds-mobile] .pds-horizontal-empty-state{flex-direction:column}[data-pds-mobile] .pds-horizontal-empty-state .pds-horizontal-empty-state__content,[data-pds-mobile] .pds-horizontal-empty-state .pds-horizontal-empty-state__media{width:100%}[data-pds-mobile] .pds-horizontal-empty-state .pds-horizontal-empty-state__media--image{display:none}[data-pds-mobile] .pds-horizontal-empty-state .pds-horizontal-empty-state__media--video{order:-1}
|