@pantheon-systems/pds-toolkit-react 1.0.0-dev.247 → 1.0.0-dev.249

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.
Files changed (35) hide show
  1. package/_dist/components/Pagination/Pagination.d.ts +2 -2
  2. package/_dist/components/TableOfContents/TableOfContents.d.ts +2 -2
  3. package/_dist/components/VideoEmbed/VideoEmbed.d.ts +23 -0
  4. package/_dist/components/cards/CardHeading/CardHeading.d.ts +2 -2
  5. package/_dist/components/cards/LinksCard/LinksCard.d.ts +2 -2
  6. package/_dist/components/cards/SiteCard/SiteCard.d.ts +2 -2
  7. package/_dist/components/{CompactEmptyState → empty-states/CompactEmptyState}/CompactEmptyState.d.ts +2 -2
  8. package/_dist/components/empty-states/HorizontalEmptyState/HorizontalEmptyState.d.ts +57 -0
  9. package/_dist/components/empty-states/VerticalEmptyState/VerticalEmptyState.d.ts +39 -0
  10. package/_dist/components/footer/FooterHeading/FooterHeading.d.ts +3 -3
  11. package/_dist/components/footer/FooterLinks/FooterLinks.d.ts +2 -2
  12. package/_dist/components/navigation/WorkspaceSelector/WorkspaceSelector.d.ts +39 -30
  13. package/_dist/components/tiles/Tile/Tile.d.ts +2 -2
  14. package/_dist/components/tiles/TileGrid/TileGrid.d.ts +2 -2
  15. package/_dist/css/component-css/pds-button.css +1 -1
  16. package/_dist/css/component-css/pds-checkbox.css +1 -1
  17. package/_dist/css/component-css/pds-compact-empty-state.css +1 -1
  18. package/_dist/css/component-css/pds-horizontal-empty-state.css +1 -0
  19. package/_dist/css/component-css/pds-index.css +5 -5
  20. package/_dist/css/component-css/pds-input-utilities.css +1 -1
  21. package/_dist/css/component-css/pds-side-nav.css +1 -1
  22. package/_dist/css/component-css/pds-tiles-common.css +1 -1
  23. package/_dist/css/component-css/pds-vertical-empty-state.css +1 -0
  24. package/_dist/css/component-css/pds-video-embed.css +1 -0
  25. package/_dist/css/component-css/pds-workspace-selector.css +1 -1
  26. package/_dist/css/pds-components.css +5 -5
  27. package/_dist/css/pds-core.css +1 -1
  28. package/_dist/css/pds-layouts.css +1 -1
  29. package/_dist/index.css +1 -1
  30. package/_dist/index.d.ts +4 -1
  31. package/_dist/index.js +2019 -1899
  32. package/_dist/index.js.map +1 -1
  33. package/_dist/layouts/DashboardInner/DashboardInner.d.ts +10 -1
  34. package/_dist/libs/types/custom-types.d.ts +2 -1
  35. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  import React, { ComponentPropsWithoutRef } from 'react';
2
- import { HeadingLevel } from '@libs/types/custom-types';
2
+ import { HeadingLevelCommon } from '@libs/types/custom-types';
3
3
  import './pagination.css';
4
4
  /**
5
5
  * Prop types for Pagination
@@ -17,7 +17,7 @@ export interface PaginationProps extends ComponentPropsWithoutRef<'nav'> {
17
17
  /**
18
18
  * Heading level. Defaults to `h2`.
19
19
  */
20
- headingLevel?: HeadingLevel;
20
+ headingLevel?: HeadingLevelCommon;
21
21
  /**
22
22
  * Heading text for the pagination component. Will only be accessible to screen readers.
23
23
  */
@@ -1,5 +1,5 @@
1
1
  import React, { ComponentPropsWithoutRef } from 'react';
2
- import { HeadingLevel } from '@libs/types/custom-types';
2
+ import { HeadingLevelCommon } from '@libs/types/custom-types';
3
3
  import './table-of-contents.css';
4
4
  /**
5
5
  * Prop types for TableOfContents
@@ -20,7 +20,7 @@ interface TableOfContentsProps extends ComponentPropsWithoutRef<'nav'> {
20
20
  /**
21
21
  * Heading level for TOC heading.
22
22
  */
23
- headingLevel?: HeadingLevel;
23
+ headingLevel?: HeadingLevelCommon;
24
24
  /**
25
25
  * Text for the TOC heading.
26
26
  */
@@ -0,0 +1,23 @@
1
+ import React, { ComponentPropsWithoutRef } from 'react';
2
+ import './video-embed.css';
3
+ /**
4
+ * Prop types for VideoEmbed
5
+ */
6
+ export interface VideoEmbedProps extends ComponentPropsWithoutRef<'div'> {
7
+ /**
8
+ * Video hosting platform.
9
+ */
10
+ platform?: 'youtube' | 'vimeo';
11
+ /**
12
+ * Video ID to embed.
13
+ */
14
+ videoId: string;
15
+ /**
16
+ * Additional class names
17
+ */
18
+ className?: string;
19
+ }
20
+ /**
21
+ * VideoEmbed UI component
22
+ */
23
+ export declare const VideoEmbed: ({ platform, videoId, className, ...props }: VideoEmbedProps) => React.JSX.Element;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { HeadingLevel } from '@libs/types/custom-types';
2
+ import { HeadingLevelCommon } from '@libs/types/custom-types';
3
3
  import './card-heading.css';
4
4
  /**
5
5
  * Prop types for CardHeading
@@ -16,7 +16,7 @@ export interface CardHeadingProps {
16
16
  /**
17
17
  * Heading level or `span`.
18
18
  */
19
- level?: HeadingLevel;
19
+ level?: HeadingLevelCommon;
20
20
  /**
21
21
  * Heading text.
22
22
  */
@@ -1,5 +1,5 @@
1
1
  import React, { ComponentPropsWithoutRef, ReactNode } from 'react';
2
- import { HeadingLevel } from '@libs/types/custom-types';
2
+ import { HeadingLevelCommon } from '@libs/types/custom-types';
3
3
  import './links-card.css';
4
4
  /**
5
5
  * Prop types for LinksCard
@@ -8,7 +8,7 @@ interface LinksCardProps extends ComponentPropsWithoutRef<'div'> {
8
8
  /**
9
9
  * Heading level
10
10
  */
11
- headingLevel?: HeadingLevel;
11
+ headingLevel?: HeadingLevelCommon;
12
12
  /**
13
13
  * Link Card heading
14
14
  */
@@ -1,5 +1,5 @@
1
1
  import React, { ComponentPropsWithoutRef, ReactNode } from 'react';
2
- import { HeadingLevel } from '@libs/types/custom-types';
2
+ import { HeadingLevelCommon } from '@libs/types/custom-types';
3
3
  import { SiteStatus } from '@libs/types/custom-types';
4
4
  import './site-card.css';
5
5
  /**
@@ -13,7 +13,7 @@ export interface SiteCardProps extends ComponentPropsWithoutRef<'div'> {
13
13
  /**
14
14
  * Heading level of the card title.
15
15
  */
16
- headingLevel?: HeadingLevel;
16
+ headingLevel?: HeadingLevelCommon;
17
17
  /**
18
18
  * Image URL for the site.
19
19
  */
@@ -1,6 +1,6 @@
1
1
  import React, { ComponentPropsWithoutRef, ReactNode } from 'react';
2
2
  import { PDSIcon } from '@components/icons/Icon/Icon';
3
- import { HeadingLevel } from '@libs/types/custom-types';
3
+ import { HeadingLevelCommon } from '@libs/types/custom-types';
4
4
  import './compact-empty-state.css';
5
5
  /**
6
6
  * Prop types for CompactEmptyState
@@ -13,7 +13,7 @@ export interface CompactEmptyStateProps extends ComponentPropsWithoutRef<'div'>
13
13
  /**
14
14
  * Heading level.
15
15
  */
16
- headingLevel?: HeadingLevel;
16
+ headingLevel?: HeadingLevelCommon;
17
17
  /**
18
18
  * Icon to display above the heading.
19
19
  */
@@ -0,0 +1,57 @@
1
+ import React, { ComponentPropsWithoutRef, ReactNode } from 'react';
2
+ import { VideoEmbedProps } from '@components/VideoEmbed/VideoEmbed';
3
+ import { HeadingLevel } from '@libs/types/custom-types';
4
+ import './horizontal-empty-state.css';
5
+ /**
6
+ * Prop types for HorizontalEmptyState
7
+ */
8
+ export interface HorizontalEmptyStateProps extends ComponentPropsWithoutRef<'div'> {
9
+ /**
10
+ * A call-to-action region.
11
+ * This should be a Button, ButtonLink, or two items wrapped in a `pds-button-group` div.
12
+ */
13
+ ctaRegion?: ReactNode;
14
+ /**
15
+ * Pantheon collage image to display next to the main content.
16
+ * Should be a link to an image file, either from Brandfolder or local.
17
+ * See full documentation for details.
18
+ *
19
+ * If a video is provided, this will be ignored.
20
+ */
21
+ image?: string;
22
+ /**
23
+ * Will this be rendered within a panel?
24
+ * If true, the image and heading will be scaled down to fit within the panel.
25
+ */
26
+ isWithinPanel?: boolean;
27
+ /**
28
+ * heading to explain the empty state.
29
+ */
30
+ heading: string;
31
+ /**
32
+ * Heading level.
33
+ */
34
+ headingLevel?: HeadingLevel;
35
+ /**
36
+ * Message to display below the heading.
37
+ */
38
+ message?: string | ReactNode;
39
+ /**
40
+ * A video to display next to the main content.
41
+ *
42
+ * This is an object with the following properties:
43
+ * - `platform`: The video hosting platform, either 'youtube' or 'vimeo'.
44
+ * - `videoId`: The ID of the video to embed.
45
+ *
46
+ * If a video is provided, the image will be ignored.
47
+ */
48
+ video?: VideoEmbedProps;
49
+ /**
50
+ * Additional class names
51
+ */
52
+ className?: string;
53
+ }
54
+ /**
55
+ * HorizontalEmptyState UI component
56
+ */
57
+ export declare const HorizontalEmptyState: ({ ctaRegion, image, isWithinPanel, heading, headingLevel, message, video, className, ...props }: HorizontalEmptyStateProps) => React.JSX.Element;
@@ -0,0 +1,39 @@
1
+ import React, { ComponentPropsWithoutRef, ReactNode } from 'react';
2
+ import { HeadingLevel } from '@libs/types/custom-types';
3
+ import './vertical-empty-state.css';
4
+ /**
5
+ * Prop types for VerticalEmptyState
6
+ */
7
+ export interface VerticalEmptyStateProps extends ComponentPropsWithoutRef<'div'> {
8
+ /**
9
+ * A call-to-action region.
10
+ * This should be a Button, ButtonLink, or two items wrapped in a `pds-button-group` div.
11
+ */
12
+ ctaRegion?: ReactNode;
13
+ /**
14
+ * PDS illustration image to display above the heading.
15
+ * Should be a link to an SVG file, either from Brandfolder or local.
16
+ * See full documentation for details.
17
+ */
18
+ image?: string;
19
+ /**
20
+ * heading to explain the empty state.
21
+ */
22
+ heading: string;
23
+ /**
24
+ * Heading level.
25
+ */
26
+ headingLevel?: HeadingLevel;
27
+ /**
28
+ * Message to display below the heading.
29
+ */
30
+ message?: string | ReactNode;
31
+ /**
32
+ * Additional class names
33
+ */
34
+ className?: string;
35
+ }
36
+ /**
37
+ * VerticalEmptyState UI component
38
+ */
39
+ export declare const VerticalEmptyState: ({ ctaRegion, image, heading, headingLevel, message, className, ...props }: VerticalEmptyStateProps) => React.JSX.Element;
@@ -1,11 +1,11 @@
1
1
  import React, { ComponentPropsWithoutRef } from 'react';
2
2
  import './footer-heading.css';
3
- import type { HeadingLevel } from '@libs/types/custom-types';
3
+ import type { HeadingLevelCommon } from '@libs/types/custom-types';
4
4
  interface FooterHeadingProps {
5
5
  /**
6
6
  * Heading level
7
7
  */
8
- headingLevel?: HeadingLevel;
8
+ headingLevel?: HeadingLevelCommon;
9
9
  /**
10
10
  * Heading text
11
11
  */
@@ -18,5 +18,5 @@ interface FooterHeadingProps {
18
18
  /**
19
19
  * Footer Heading UI component
20
20
  */
21
- export declare const FooterHeading: ({ headingLevel, headingText, className, ...props }: FooterHeadingProps & ComponentPropsWithoutRef<HeadingLevel>) => React.JSX.Element;
21
+ export declare const FooterHeading: ({ headingLevel, headingText, className, ...props }: FooterHeadingProps & ComponentPropsWithoutRef<HeadingLevelCommon>) => React.JSX.Element;
22
22
  export {};
@@ -1,11 +1,11 @@
1
1
  import React, { ComponentPropsWithoutRef, ReactNode } from 'react';
2
2
  import './footer-links.css';
3
- import type { HeadingLevel } from '@libs/types/custom-types';
3
+ import type { HeadingLevelCommon } from '@libs/types/custom-types';
4
4
  interface FooterLinksProps extends ComponentPropsWithoutRef<'div'> {
5
5
  /**
6
6
  * Heading level
7
7
  */
8
- headingLevel?: HeadingLevel;
8
+ headingLevel?: HeadingLevelCommon;
9
9
  /**
10
10
  * Heading text
11
11
  */
@@ -1,5 +1,42 @@
1
1
  import React, { ComponentPropsWithoutRef, ReactElement, ReactNode } from 'react';
2
2
  import './workspace-selector.css';
3
+ declare const tierLabels: {
4
+ silver: string;
5
+ gold: string;
6
+ platinum: string;
7
+ diamond: string;
8
+ };
9
+ export type PlanTiers = keyof typeof tierLabels;
10
+ export type WorkspaceSelectorItem = {
11
+ /**
12
+ * Name of the workspace.
13
+ */
14
+ displayName?: string;
15
+ /**
16
+ * Image src for the workspace.
17
+ */
18
+ imageSrc?: string;
19
+ /**
20
+ * Is this the currently selected workspace?
21
+ */
22
+ isActive?: boolean;
23
+ /**
24
+ * This user does not have access to this workspace.
25
+ */
26
+ isUnprivileged?: boolean;
27
+ /**
28
+ * Account plan tier.
29
+ */
30
+ planTier?: PlanTiers;
31
+ /**
32
+ * Id of the workspace.
33
+ */
34
+ workspaceId?: string;
35
+ /**
36
+ * Link to the workspace. A link element via the router of your choice.
37
+ */
38
+ workspaceLink?: ReactElement;
39
+ };
3
40
  /**
4
41
  * Prop types for WorkspaceSelector
5
42
  */
@@ -39,36 +76,7 @@ export interface WorkspaceSelectorProps extends ComponentPropsWithoutRef<'span'>
39
76
  /**
40
77
  * List of all workspaces for a user.
41
78
  */
42
- workspaceList?: {
43
- /**
44
- * Name of the workspace.
45
- */
46
- displayName?: string;
47
- /**
48
- * Image src for the workspace.
49
- */
50
- imageSrc?: string;
51
- /**
52
- * Is this the currently selected workspace?
53
- */
54
- isActive?: boolean;
55
- /**
56
- * This user does not have access to this workspace.
57
- */
58
- isUnprivileged?: boolean;
59
- /**
60
- * Account plan tier.
61
- */
62
- planTier?: 'silver' | 'gold' | 'platinum' | 'diamond';
63
- /**
64
- * Id of the workspace.
65
- */
66
- workspaceId?: string;
67
- /**
68
- * Link to the workspace. A link element via the router of your choice.
69
- */
70
- workspaceLink?: ReactElement;
71
- }[];
79
+ workspaceList?: WorkspaceSelectorItem[];
72
80
  /**
73
81
  * Additional class names.
74
82
  */
@@ -78,3 +86,4 @@ export interface WorkspaceSelectorProps extends ComponentPropsWithoutRef<'span'>
78
86
  * WorkspaceSelector UI component
79
87
  */
80
88
  export declare const WorkspaceSelector: ({ ariaLabel, createWorkspaceLink, filterPlaceholder, filterLabel, menuHeading, minFilterItems, noResultsText, withinNavbar, workspaceList, className, ...props }: WorkspaceSelectorProps) => React.JSX.Element;
89
+ export {};
@@ -1,5 +1,5 @@
1
1
  import React, { ComponentPropsWithoutRef, ReactNode } from 'react';
2
- import { HeadingLevel } from '@libs/types/custom-types';
2
+ import { HeadingLevelCommon } from '@libs/types/custom-types';
3
3
  import './../tiles-common.css';
4
4
  import './tile.css';
5
5
  export type TileDisplayType = 'border' | 'clean' | 'clean-static';
@@ -14,7 +14,7 @@ export interface TileProps extends ComponentPropsWithoutRef<'div'> {
14
14
  /**
15
15
  * Heading level or `span`.
16
16
  */
17
- headingLevel?: HeadingLevel;
17
+ headingLevel?: HeadingLevelCommon;
18
18
  /**
19
19
  * Heading text.
20
20
  */
@@ -1,6 +1,6 @@
1
1
  import React, { ComponentPropsWithoutRef } from 'react';
2
2
  import { TileDisplayType, TileProps } from '@components/tiles/Tile/Tile';
3
- import { HeadingLevel } from '@libs/types/custom-types';
3
+ import { HeadingLevelCommon } from '@libs/types/custom-types';
4
4
  import './../tiles-common.css';
5
5
  /**
6
6
  * Prop types for TileGrid
@@ -13,7 +13,7 @@ export interface TileGridProps extends ComponentPropsWithoutRef<'div'> {
13
13
  /**
14
14
  * Heading level or `span`. All tiles in the grid will use this heading level.
15
15
  */
16
- headingLevel?: HeadingLevel;
16
+ headingLevel?: HeadingLevelCommon;
17
17
  /**
18
18
  * Array of Tiles.
19
19
  */
@@ -6,7 +6,7 @@ a.pds-button,button.pds-button{--button-color-background:var(--pds-color-button-
6
6
  --pds-color-button-secondary-background-active
7
7
  );--button-color-border:var(--pds-color-button-secondary-border-active);--button-color-foreground:var(
8
8
  --pds-color-button-secondary-foreground-active
9
- )}a.pds-button.pds-button--subtle,button.pds-button.pds-button--subtle{--button-color-background:var(--pds-color-button-subtle-background-default);--button-color-border:var(--pds-color-button-subtle-border-default);--button-color-foreground:var(--pds-color-button-subtle-foreground-default);font-weight:400;padding:.64rem .25rem}a.pds-button.pds-button--subtle .pds-button__loading-indicator,button.pds-button.pds-button--subtle .pds-button__loading-indicator{--spinner-color-1:var(--pds-color-button-secondary-foreground-default);--spinner-color-2:#5f41e5;--spinner-color-3:#e5dbff}a.pds-button.pds-button--subtle:hover,button.pds-button.pds-button--subtle:hover:enabled{--button-color-background:var(--pds-color-button-subtle-background-default);--button-color-border:var(--pds-color-button-subtle-border-default);--button-color-foreground:var(--pds-color-button-subtle-foreground-hover)}a.pds-button.pds-button--subtle:active,button.pds-button.pds-button--subtle:active:enabled{--button-color-background:var(--pds-color-button-subtle-background-default);--button-color-border:var(--pds-color-button-subtle-border-default);--button-color-foreground:var(--pds-color-button-subtle-foreground-active)}.pds-background--dark a.pds-button.pds-button--brand,.pds-background--dark button.pds-button.pds-button--brand,a.pds-button.pds-button--brand,button.pds-button.pds-button--brand{--button-color-background:var(--pds-color-button-brand-background-default);--button-color-border:var(--pds-color-button-brand-border-default);--button-color-foreground:var(--pds-color-button-brand-foreground-default)}.pds-background--dark a.pds-button.pds-button--brand .pds-button__loading-indicator,.pds-background--dark button.pds-button.pds-button--brand .pds-button__loading-indicator,a.pds-button.pds-button--brand .pds-button__loading-indicator,button.pds-button.pds-button--brand .pds-button__loading-indicator{--spinner-color-1:#23232d;--spinner-color-2:#726009;--spinner-color-3:#d9b500}.pds-background--dark a.pds-button.pds-button--brand:hover,.pds-background--dark button.pds-button.pds-button--brand:hover:enabled,a.pds-button.pds-button--brand:hover,button.pds-button.pds-button--brand:hover:enabled{--button-color-background:var(--pds-color-button-brand-background-hover);--button-color-border:var(--pds-color-button-brand-border-hover);--button-color-foreground:var(--pds-color-button-brand-foreground-hover)}.pds-background--dark a.pds-button.pds-button--brand:active,.pds-background--dark button.pds-button.pds-button--brand:active:enabled,a.pds-button.pds-button--brand:active,button.pds-button.pds-button--brand:active:enabled{--button-color-background:var(--pds-color-button-brand-background-active);--button-color-border:var(--pds-color-button-brand-border-active);--button-color-foreground:var(--pds-color-button-brand-foreground-active)}a.pds-button.pds-button--brand-secondary,button.pds-button.pds-button--brand-secondary{--button-color-background:var(
9
+ )}a.pds-button.pds-button--subtle,button.pds-button.pds-button--subtle{--button-color-background:var(--pds-color-button-subtle-background-default);--button-color-border:var(--pds-color-button-subtle-border-default);--button-color-foreground:var(--pds-color-button-subtle-foreground-default);font-weight:400;letter-spacing:0;padding:.64rem .25rem}a.pds-button.pds-button--subtle .pds-button__loading-indicator,button.pds-button.pds-button--subtle .pds-button__loading-indicator{--spinner-color-1:var(--pds-color-button-secondary-foreground-default);--spinner-color-2:#5f41e5;--spinner-color-3:#e5dbff}a.pds-button.pds-button--subtle:hover,button.pds-button.pds-button--subtle:hover:enabled{--button-color-background:var(--pds-color-button-subtle-background-default);--button-color-border:var(--pds-color-button-subtle-border-default);--button-color-foreground:var(--pds-color-button-subtle-foreground-hover)}a.pds-button.pds-button--subtle:active,button.pds-button.pds-button--subtle:active:enabled{--button-color-background:var(--pds-color-button-subtle-background-default);--button-color-border:var(--pds-color-button-subtle-border-default);--button-color-foreground:var(--pds-color-button-subtle-foreground-active)}.pds-background--dark a.pds-button.pds-button--brand,.pds-background--dark button.pds-button.pds-button--brand,a.pds-button.pds-button--brand,button.pds-button.pds-button--brand{--button-color-background:var(--pds-color-button-brand-background-default);--button-color-border:var(--pds-color-button-brand-border-default);--button-color-foreground:var(--pds-color-button-brand-foreground-default)}.pds-background--dark a.pds-button.pds-button--brand .pds-button__loading-indicator,.pds-background--dark button.pds-button.pds-button--brand .pds-button__loading-indicator,a.pds-button.pds-button--brand .pds-button__loading-indicator,button.pds-button.pds-button--brand .pds-button__loading-indicator{--spinner-color-1:#23232d;--spinner-color-2:#726009;--spinner-color-3:#d9b500}.pds-background--dark a.pds-button.pds-button--brand:hover,.pds-background--dark button.pds-button.pds-button--brand:hover:enabled,a.pds-button.pds-button--brand:hover,button.pds-button.pds-button--brand:hover:enabled{--button-color-background:var(--pds-color-button-brand-background-hover);--button-color-border:var(--pds-color-button-brand-border-hover);--button-color-foreground:var(--pds-color-button-brand-foreground-hover)}.pds-background--dark a.pds-button.pds-button--brand:active,.pds-background--dark button.pds-button.pds-button--brand:active:enabled,a.pds-button.pds-button--brand:active,button.pds-button.pds-button--brand:active:enabled{--button-color-background:var(--pds-color-button-brand-background-active);--button-color-border:var(--pds-color-button-brand-border-active);--button-color-foreground:var(--pds-color-button-brand-foreground-active)}a.pds-button.pds-button--brand-secondary,button.pds-button.pds-button--brand-secondary{--button-color-background:var(
10
10
  --pds-color-button-brand-secondary-background-default
11
11
  );--button-color-border:var(--pds-color-button-brand-secondary-border-default);--button-color-foreground:var(
12
12
  --pds-color-button-brand-secondary-foreground-default
@@ -1 +1 @@
1
- .pds-checkbox{--checkbox-font-size:1rem;--checkbox-input-size:1rem;--checkbox-input-gap:0.512rem;--checkbox-box-shift:0.09375rem;line-height:1.2}.pds-checkbox--sm{--checkbox-font-size:0.833rem;--checkbox-input-size:0.9rem;--checkbox-box-shift:0.025rem}.pds-checkbox__input-wrapper{display:flex}.pds-checkbox input[type=checkbox]{appearance:none}.pds-checkbox__label{align-items:start;column-gap:var(--checkbox-input-gap);display:grid;grid-template-columns:var(--checkbox-input-size) auto;margin-block-end:0}.pds-checkbox__label-text{color:var(--pds-color-foreground-default);font-size:var(--checkbox-font-size);font-weight:400}.pds-checkbox__label-text--s{font-size:.833rem}.pds-checkbox__box{align-items:center;background-color:var(--pds-color-input-background);border:2px solid var(--pds-color-border-input);border-radius:.1875rem;box-sizing:border-box;display:flex;height:var(--checkbox-input-size);padding:.0625rem;position:relative;top:var(--checkbox-box-shift);width:var(--checkbox-input-size)}.pds-checkbox__box--checked,.pds-checkbox__box--indeterminate{background-color:var(--pds-color-interactive-focus);border-color:var(--pds-color-interactive-focus)}.pds-checkbox__icon{color:var(--pds-color-input-checkbox-checked-foreground)}.pds-checkbox:hover .pds-checkbox__box{cursor:pointer}.pds-checkbox:focus-within .pds-checkbox__box{outline:1px solid var(--pds-color-interactive-focus);outline-offset:.0625rem}.pds-checkbox.pds-is-disabled .pds-checkbox__label{cursor:not-allowed;opacity:50%}.pds-checkbox .pds-input-label__required{margin-inline-start:.125rem}div.pds-checkbox-group .pds-checkbox--indent-1{margin-inline-start:calc(var(--checkbox-input-size)*2 - var(--checkbox-input-gap))}div.pds-checkbox-group .pds-checkbox--indent-2{margin-inline-start:calc(var(--checkbox-input-size)*4 - var(--checkbox-input-gap)*2)}
1
+ .pds-checkbox{--checkbox-font-size:1rem;--checkbox-input-size:1rem;--checkbox-input-gap:0.512rem;--checkbox-box-shift:0.09375rem;line-height:1.2}.pds-checkbox--sm{--checkbox-font-size:0.833rem;--checkbox-input-size:0.9rem;--checkbox-box-shift:0.025rem}.pds-checkbox__input-wrapper{display:flex}.pds-checkbox input[type=checkbox]{appearance:none}.pds-checkbox__label{align-items:start;column-gap:var(--checkbox-input-gap);display:grid;grid-template-columns:var(--checkbox-input-size) auto;margin-block-end:0}.pds-checkbox__label-text{color:var(--pds-color-foreground-default);font-size:var(--checkbox-font-size);font-weight:400}.pds-checkbox__label-text--s{font-size:.833rem}.pds-checkbox__box{align-items:center;background-color:var(--pds-color-input-background);border:2px solid var(--pds-color-border-input);border-radius:.1875rem;box-sizing:border-box;display:flex;height:var(--checkbox-input-size);padding:.0625rem;position:relative;top:var(--checkbox-box-shift);width:var(--checkbox-input-size)}.pds-checkbox__box,.pds-checkbox__box--checked,.pds-checkbox__box--indeterminate{transition:var(--pds-animation-transition-default-duration) var(--pds-animation-transition-default-timing-function) var(--pds-animation-transition-default-delay)}.pds-checkbox__box--checked,.pds-checkbox__box--indeterminate{background-color:var(--pds-color-interactive-focus);border-color:var(--pds-color-interactive-focus)}.pds-checkbox__icon{color:var(--pds-color-input-checkbox-checked-foreground);transition:var(--pds-animation-transition-default-duration) var(--pds-animation-transition-default-timing-function) var(--pds-animation-transition-default-delay)}.pds-checkbox:hover .pds-checkbox__box{cursor:pointer}.pds-checkbox input[type=checkbox]:focus-visible~label .pds-checkbox__box{outline:1px solid var(--pds-color-interactive-focus);outline-offset:.0625rem}.pds-checkbox.pds-is-disabled .pds-checkbox__label{cursor:not-allowed;opacity:50%}.pds-checkbox .pds-input-label__required{margin-inline-start:.125rem}div.pds-checkbox-group .pds-checkbox--indent-1{margin-inline-start:calc(var(--checkbox-input-size)*2 - var(--checkbox-input-gap))}div.pds-checkbox-group .pds-checkbox--indent-2{margin-inline-start:calc(var(--checkbox-input-size)*4 - var(--checkbox-input-gap)*2)}
@@ -1 +1 @@
1
- .pds-compact-empty-state{display:flex;flex-direction:column;font-family:Poppins,sans-serif;padding-block:4.678rem;row-gap:1.563rem;text-align:center;width:100%}.pds-compact-empty-state__icon{color:var(--pds-color-foreground-default-secondary)}.pds-compact-empty-state__heading{display:block;margin-block-end:.25rem}.pds-compact-empty-state__message{color:var(--pds-color-text-default-secondary);font-size:1rem;margin-block-end:0}
1
+ .pds-compact-empty-state{display:flex;flex-direction:column;font-family:Poppins,sans-serif;padding-block:4.678rem;row-gap:1.563rem;text-align:center;width:100%}.pds-compact-empty-state__icon{color:var(--pds-color-foreground-default-secondary)}.pds-compact-empty-state__heading{display:block;margin-block-end:.25rem}.pds-compact-empty-state__message{color:var(--pds-color-text-default-secondary);font-size:1rem;margin-block-end:0;margin-inline:auto;max-width:600px;text-wrap:pretty}
@@ -0,0 +1 @@
1
+ .pds-horizontal-empty-state{align-items:center;color:var(--pds-color-text-default);display:flex;font-family:Poppins,sans-serif;gap:1.953rem;max-width:1200px;width:100%}.pds-horizontal-empty-state__content{display:flex;flex-direction:column;row-gap:1.563rem;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{align-items:stretch}.pds-horizontal-empty-state--video .pds-horizontal-empty-state__content,.pds-horizontal-empty-state--video .pds-horizontal-empty-state__media{width:50%}.pds-horizontal-empty-state--isMobile{flex-direction:column}.pds-horizontal-empty-state--isMobile .pds-horizontal-empty-state__content,.pds-horizontal-empty-state--isMobile .pds-horizontal-empty-state__media{width:100%}