@pantheon-systems/pds-toolkit-react 2.0.0-alpha.85 → 2.0.0-alpha.86

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.
@@ -260,7 +260,7 @@
260
260
  "component": "Icon",
261
261
  "from": "iconSize",
262
262
  "to": "size",
263
- "reason": "The iconSize prop has been renamed to size for consistency across V2 icon components. The default ('l') is unchanged, but the 'xs' (10px) value has been removed (see props.typeChanges) use 's' instead."
263
+ "reason": "The iconSize prop has been renamed to size for consistency across V2 icon components. The size scale has since been redesigned (see props.typeChanges) the current default is 'xl' (20px), not v1's default 'l'/20px directly, since every step was renumbered along the way. Net effect for a v1 consumer migrating straight to the current scale: the rendered default size is unchanged (20px), only its name changed."
264
264
  },
265
265
  {
266
266
  "component": "CloseButton",
@@ -272,7 +272,7 @@
272
272
  "component": "PlatformIcon",
273
273
  "from": "iconSize",
274
274
  "to": "size",
275
- "reason": "The iconSize prop has been renamed to size for consistency with V2 component conventions. Size values have also changed to align with the Icon component scale — 'xs', 's', 'm', 'l', 'xl', '2xl', '3xl' — replacing the previous 1.2× ratio scale. The pixel sizes for 'l', 'xl', and '2xl' are different: l is now 1.25rem (was 1.2rem), xl is 1.5rem (was 1.44rem), 2xl is 2rem (was 1.728rem)."
275
+ "reason": "The iconSize prop has been renamed to size for consistency with V2 component conventions. Size values have also changed to align with the Icon component's scale at the time — 'xs', 's', 'm', 'l', 'xl', '2xl', '3xl' — replacing the previous 1.2× ratio scale. The pixel sizes for 'l', 'xl', and '2xl' are different: l is now 1.25rem (was 1.2rem), xl is 1.5rem (was 1.44rem), 2xl is 2rem (was 1.728rem). Note: Icon's own scale has since been redesigned again (see Icon's props.typeChanges) and PlatformIcon was not updated to match — PlatformIcon keeps this xs/s/m/l/xl/2xl/3xl (10-40px) scale, independently of Icon's current one."
276
276
  },
277
277
  {
278
278
  "component": "FileDiff",
@@ -866,7 +866,7 @@
866
866
  "v1Default": "'sm'",
867
867
  "v2Default": "'m'",
868
868
  "reason": "Default trigger icon size changed from 'sm' to 'm' to align with new standardized size naming and provide better default visibility.",
869
- "migration": "If you relied on the default trigger icon size being small, explicitly pass triggerIconSize='s' to maintain the v1 appearance."
869
+ "migration": "If you relied on the default trigger icon size being small, explicitly pass triggerIconSize='xs' to maintain the v1 appearance (the Icon size scale has since been redesigned — 'xs' is the current name for that same 12px size, not 's', which now means 14px)."
870
870
  },
871
871
  {
872
872
  "component": "ComparisonList",
@@ -897,13 +897,18 @@
897
897
  {
898
898
  "component": "Icon",
899
899
  "prop": "size",
900
- "description": "The 'xs' size value has been removed",
901
- "v1Type": "'xs' | 's' | 'm' | 'l' | 'xl' | '2xl' | '3xl'",
902
- "v2Type": "'s' | 'm' | 'l' | 'xl' | '2xl' | '3xl'",
900
+ "description": "Size scale redesigned twice since v1 — first the 10px 'xs' was dropped (early V2), then the whole scale was later redone to align with the typography scale, reintroducing an 'xs' step at a different (12px) value. This entry describes the net v1 → current-V2 delta.",
901
+ "v1Type": "'xs' (10px) | 's' (12px) | 'm' (16px) | 'l' (20px) | 'xl' (24px) | '2xl' (32px) | '3xl' (40px)",
902
+ "v2Type": "'xs' (12px) | 's' (14px) | 'm' (16px) | 'l' (18px) | 'xl' (20px) | '2xl' (24px) | '3xl' (28px) | '4xl' (32px)",
903
903
  "migration": {
904
- "xs": "s (removed, use 's' instead)"
904
+ "xs": "xs (v1's 10px 'xs' was removed at the initial V2 release, with 's'/12px as the recommended substitute at the time; that same 12px slot is now named 'xs' again — use size='xs' for the closest available match)",
905
+ "s": "xs (same 12px value, renamed)",
906
+ "l": "xl (same 20px value, renamed)",
907
+ "xl": "2xl (same 24px value, renamed)",
908
+ "2xl": "4xl (same 32px value, renamed)",
909
+ "3xl": "removed, no replacement (40px step retired; nearest available is '4xl' at 32px)"
905
910
  },
906
- "reason": "The 10px 'xs' icon size has been removed in v2. It had a single internal usage (the TagsInput remove button, now 's'/12px) and is superseded by 's'. Use size='s' instead."
911
+ "reason": "V1's 10px 'xs' was removed at the initial V2 release (superseded by 's', then 12px). V2's scale was later redesigned to align with the typography scale: every remaining name shifted up one step to keep its pixel value, three new in-between sizes were added ('s' 14px, 'l' 18px, '3xl' 28px), 'xs' was reintroduced at 12px (unrelated to v1's 10px 'xs'), and the old 40px '3xl' step was retired with no replacement."
907
912
  },
908
913
  {
909
914
  "component": "FlexContainer",
@@ -1139,15 +1144,15 @@
1139
1144
  {
1140
1145
  "component": "Tooltip",
1141
1146
  "prop": "triggerIconSize",
1142
- "description": "Size naming convention updated to match standardized naming",
1147
+ "description": "Size naming convention updated to match standardized naming, then later widened to accept the full redesigned Icon size scale.",
1143
1148
  "v1Type": "'sm' | 'md' | 'lg'",
1144
- "v2Type": "'s' | 'm' | 'l'",
1149
+ "v2Type": "IconSize ('xs' | 's' | 'm' | 'l' | 'xl' | '2xl' | '3xl' | '4xl')",
1145
1150
  "migration": {
1146
- "sm": "s",
1147
- "md": "m",
1148
- "lg": "l"
1151
+ "sm": "xs (same 12px value — was briefly 's' under the initial V2 scale, since renamed)",
1152
+ "md": "m (unchanged, 16px)",
1153
+ "lg": "xl (same 20px value — was briefly 'l' under the initial V2 scale, since renamed)"
1149
1154
  },
1150
- "reason": "Standardized size naming across all components. The 'sm', 'md', and 'lg' values have been shortened to 's', 'm', and 'l' for consistency."
1155
+ "reason": "Standardized size naming across all components at the initial V2 release ('sm'/'md'/'lg' 's'/'m'/'l'), then the prop's type was widened to the full Icon size scale once that scale was redesigned to align with typography sizes — every retained value keeps its pixel size but was renamed again in the process (see Icon's props.typeChanges for the full picture)."
1151
1156
  },
1152
1157
  {
1153
1158
  "component": "Badge",
@@ -1,5 +1,5 @@
1
1
  import { ComponentPropsWithoutRef, ReactNode } from 'react';
2
- import { FuiPlacement } from '../../libs/types/custom-types';
2
+ import { FuiPlacement, IconSize } from '../../libs/types/custom-types';
3
3
  import './popover.css';
4
4
  export interface PopoverProps extends Omit<ComponentPropsWithoutRef<'div'>, 'content'> {
5
5
  /**
@@ -61,7 +61,7 @@ export interface PopoverProps extends Omit<ComponentPropsWithoutRef<'div'>, 'con
61
61
  /**
62
62
  * Size of the trigger icon. Uses PDS Icon sizing.
63
63
  */
64
- triggerIconSize?: 's' | 'm' | 'l';
64
+ triggerIconSize?: IconSize;
65
65
  }
66
66
  /**
67
67
  * Popover UI component
@@ -47,8 +47,24 @@ export interface TableColumn {
47
47
  * `hasMobileDetailSheet`). Has no effect above the mobile breakpoint.
48
48
  */
49
49
  cardVisible?: boolean;
50
+ /**
51
+ * Additional class name applied to this column's body `<td>` cells
52
+ * (including loading-state skeleton cells). Use for column-specific
53
+ * styling — width, `white-space: nowrap`, padding — that can't be
54
+ * expressed by a prop, without reaching into the table's rendered
55
+ * markup from outside with `:nth-child` selectors. Has no effect on
56
+ * mobile cards.
57
+ */
58
+ cellClassName?: string;
50
59
  /** Content to display in the header cell. */
51
60
  header: ReactNode;
61
+ /**
62
+ * Additional class name applied to this column's `<th>` header cell.
63
+ * See `cellClassName` for the equivalent on body cells — a column
64
+ * needing the same styling in both (e.g. a shared width, for
65
+ * alignment) should pass the same class to both props.
66
+ */
67
+ headerClassName?: string;
52
68
  /** Stable identifier used for rendering cell content from rowData. */
53
69
  id: string;
54
70
  /** When true, renders a sort button next to the header label. */
@@ -85,6 +101,11 @@ export interface TableProps extends ComponentPropsWithoutRef<'table'> {
85
101
  * Only applies in uncontrolled sort mode.
86
102
  */
87
103
  defaultSortOrder?: SortOrder;
104
+ /**
105
+ * Cell padding density. `'compact'` reduces padding for denser data
106
+ * tables. Has no effect on mobile cards (see `hasMobileCards`).
107
+ */
108
+ density?: 'standard' | 'compact';
88
109
  /**
89
110
  * When `true` (default), renders built-in prev/next navigation buttons in
90
111
  * the detail panel footer. Set to `false` to hide the footer entirely.
@@ -211,6 +232,14 @@ export interface TableProps extends ComponentPropsWithoutRef<'table'> {
211
232
  * a sheet and keeps calling `onRowInspect` directly, matching desktop.
212
233
  */
213
234
  hasMobileDetailSheet?: boolean;
235
+ /**
236
+ * When true, renders the table inside a Panel with no padding. Automatically
237
+ * applies first-column spacing and removes the last row's bottom border so
238
+ * it doesn't double up against the footer border. Has no effect at the
239
+ * mobile breakpoint (see `hasMobileCards`) — cards sit flush against the
240
+ * page background instead of inside a Panel.
241
+ */
242
+ hasPanel?: boolean;
214
243
  /**
215
244
  * ID of the currently inspected row. When provided, that row receives a
216
245
  * highlighted background. Use the same ID space as `getRowId`. Only
@@ -314,14 +343,6 @@ export interface TableProps extends ComponentPropsWithoutRef<'table'> {
314
343
  * English defaults are used. Override for translation.
315
344
  */
316
345
  paginationLabels?: PaginationCompactProps['labelStrings'];
317
- /**
318
- * When true, renders the table inside a Panel with no padding. Automatically
319
- * applies first-column spacing and removes the last row's bottom border so
320
- * it doesn't double up against the footer border. Has no effect at the
321
- * mobile breakpoint (see `hasMobileCards`) — cards sit flush against the
322
- * page background instead of inside a Panel.
323
- */
324
- panel?: boolean;
325
346
  /**
326
347
  * Accessible label for the detail panel "previous row" button.
327
348
  * Defaults to `'Previous row'`. Override for translation.
@@ -372,4 +393,4 @@ export interface TableProps extends ComponentPropsWithoutRef<'table'> {
372
393
  */
373
394
  totalItemCount?: number;
374
395
  }
375
- export declare const Table: ({ className, closeDetailPanelLabel, columns, currentPage, defaultSortKey, defaultSortOrder, detailPanelNav, detailPanelTitle, detailPanelWidth, emptyState, emptyStateHeading, emptyStateMessage, footer, getDetailPanelPositionLabel, getPageSizeLabel, getRowClassName, getRowId, getRowSelectDisabledReason, getSelectRowLabel, getSortLabel, hasDesktopDetailPanel, hasMobileCards, hasMobileDetailSheet, inspectedRowId, isLoading, isRowSelectable, itemsPerPage, loadingRowCount, maxHeight, minHeight, nextDetailPanelRowLabel, onDetailPanelNext, onDetailPanelPrev, onPageChange, onPageSizeChange, onRowInspect, onRowSelectionChange, onSort, pageSizeOptions, pageSizeSelectLabel, paginationLabels, panel, prevDetailPanelRowLabel, renderDetailPanel, renderDetailPanelFooter, rowData, selectAllLabel, selectedRows, sortKey, sortOrder, totalItemCount, ...props }: TableProps) => import("react/jsx-runtime").JSX.Element;
396
+ export declare const Table: ({ className, closeDetailPanelLabel, columns, currentPage, defaultSortKey, defaultSortOrder, density, detailPanelNav, detailPanelTitle, detailPanelWidth, emptyState, emptyStateHeading, emptyStateMessage, footer, getDetailPanelPositionLabel, getPageSizeLabel, getRowClassName, getRowId, getRowSelectDisabledReason, getSelectRowLabel, getSortLabel, hasDesktopDetailPanel, hasMobileCards, hasMobileDetailSheet, hasPanel, inspectedRowId, isLoading, isRowSelectable, itemsPerPage, loadingRowCount, maxHeight, minHeight, nextDetailPanelRowLabel, onDetailPanelNext, onDetailPanelPrev, onPageChange, onPageSizeChange, onRowInspect, onRowSelectionChange, onSort, pageSizeOptions, pageSizeSelectLabel, paginationLabels, prevDetailPanelRowLabel, renderDetailPanel, renderDetailPanelFooter, rowData, selectAllLabel, selectedRows, sortKey, sortOrder, totalItemCount, ...props }: TableProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,6 +1,6 @@
1
1
  import { ComponentPropsWithoutRef, ReactNode } from 'react';
2
2
  import { Placement } from '@floating-ui/react';
3
- import { FuiOffset } from '../../libs/types/custom-types';
3
+ import { FuiOffset, IconSize } from '../../libs/types/custom-types';
4
4
  import './tooltip.css';
5
5
  interface TooltipProps extends ComponentPropsWithoutRef<'div'> {
6
6
  /**
@@ -49,7 +49,7 @@ interface TooltipProps extends ComponentPropsWithoutRef<'div'> {
49
49
  /**
50
50
  * Size of the trigger icon. Uses PDS Icon sizing.
51
51
  */
52
- triggerIconSize?: 's' | 'm' | 'l';
52
+ triggerIconSize?: IconSize;
53
53
  /**
54
54
  * Z-index value for the tooltip container. In most cases, the default value should be retained.
55
55
  */
@@ -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-09-11T22:06:16.665Z
6
+ * Generated: 2026-09-14T19:57:38.047Z
7
7
  */
8
8
  import { customIcons } from './custom-icons';
9
9
  export { customIcons };
@@ -1,6 +1,6 @@
1
1
  import { ComponentPropsWithoutRef, ReactNode } from 'react';
2
2
  import './panel-list.css';
3
- export type PanelListBackground = 'default' | 'secondary' | 'transparent';
3
+ export type PanelListBackground = 'default' | 'secondary' | 'sunken' | 'transparent';
4
4
  /**
5
5
  * Prop types for PanelList
6
6
  */
@@ -0,0 +1 @@
1
+ @layer pds-v1, pds-v2;@layer pds-v2{.table-story__name-col{width:100%}.table-story__insights-col{min-width:8rem;white-space:nowrap}}
@@ -1 +1 @@
1
- @layer pds-v1, pds-v2;@layer pds-v2{.pds-banner-group{--banner-background:var(--pds-color-banner-info-background);--banner-foreground:var(--pds-color-banner-info-foreground);--banner-height:3.25rem;--nav-button-size:var(--pds-spacing-2xl);min-height:var(--banner-height);position:relative}@media (max-width:767px){.pds-banner-group{--banner-height:4rem}}.pds-banner--critical,.pds-banner-group--critical{--banner-background:var(--pds-color-banner-critical-background);--banner-foreground:var(--pds-color-banner-critical-foreground)}.pds-banner--discovery,.pds-banner-group--discovery{--banner-background:var(--pds-color-banner-discovery-background);--banner-foreground:var(--pds-color-banner-discovery-foreground)}.pds-banner--neutral,.pds-banner-group--neutral{--banner-background:var(--pds-color-banner-neutral-background);--banner-foreground:var(--pds-color-banner-neutral-foreground)}.pds-banner--warning,.pds-banner-group--warning{--banner-background:var(--pds-color-banner-warning-background);--banner-foreground:var(--pds-color-banner-warning-foreground)}.pds-banner{background:var(--banner-background);color:var(--banner-foreground);font-size:var(--pds-typography-size-s);font-weight:var(--pds-typography-fw-medium);height:var(--banner-height);padding-inline:var(--pds-spacing-2xl);position:absolute;width:100%}.pds-banner,.pds-banner__content{align-items:center;display:flex;gap:var(--pds-spacing-s)}.pds-banner__content{flex:1;justify-content:center}.pds-banner__icon{flex-grow:0;flex-shrink:0}.pds-banner__message p{all:unset}.pds-banner__message a{color:var(--banner-foreground);padding:var(--pds-spacing-4xs);text-decoration:underline}.pds-banner__message a:hover{background-color:hsla(0,0%,100%,.15);border-radius:var(--pds-border-radius-default);color:var(--banner-foreground);text-decoration:none;transition:var(--pds-animation-transition-button)}.pds-banner__message a:focus-visible{outline:var(--pds-border-width-outline) solid var(--banner-foreground);outline-offset:0}.pds-banner__dismiss-button{all:unset;border-radius:var(--pds-border-radius-default);cursor:pointer;flex-shrink:0;font-size:var(--pds-typography-size-xs);margin-inline-start:auto;padding:var(--pds-spacing-4xs) var(--pds-spacing-2xs);transition:var(--pds-animation-transition-button)}.pds-banner__dismiss-button:hover{background-color:hsla(0,0%,100%,.15)}.pds-banner__dismiss-button:focus-visible{outline:var(--pds-border-width-outline) solid var(--banner-foreground);outline-offset:0}.pds-banner-group--multiple .pds-banner{padding-inline:var(--pds-spacing-3xl)}.pds-banner-group--multiple .pds-banner__dismiss-button{margin-inline-end:var(--pds-spacing-3xs)}.pds-banner__navigation{align-items:center;display:flex;height:var(--banner-height);justify-content:space-between;width:100%}button.pds-banner__nav-button{border-color:transparent;color:var(--banner-foreground);height:var(--nav-button-size);margin-inline:var(--pds-spacing-xs);min-width:unset;padding:0;transition:var(--pds-animation-transition-button);width:var(--nav-button-size);z-index:calc(var(--pds-z-index-notifications) + 10)}button.pds-banner__nav-button:hover:enabled{background-color:hsla(0,0%,100%,.2);border-color:transparent;color:var(--banner-foreground)}button.pds-banner__nav-button:focus-visible{outline:var(--pds-border-width-outline) solid var(--banner-foreground);outline-offset:0}.pds-banner-group[data-context=marketing]{--banner-height:3.75rem}@media (max-width:767px){.pds-banner-group[data-context=marketing]{--banner-height:4.5rem}}.pds-banner-group[data-context=marketing] .pds-banner{font-size:var(--pds-typography-size-m);gap:var(--pds-spacing-m)}.pds-banner-group[data-context=marketing] .pds-banner__content{gap:var(--pds-spacing-m)}.pds-banner-group[data-context=marketing] .pds-banner__dismiss-button{font-size:var(--pds-typography-size-s);margin-inline-end:var(--pds-spacing-xs)}.pds-banner--dismissing,.pds-banner--fading{animation:hideBannerAnimation .2s ease-in;animation-fill-mode:forwards}@keyframes hideBannerAnimation{to{opacity:0}0%{opacity:1}}}
1
+ @layer pds-v1, pds-v2;@layer pds-v2{.pds-banner-group{--banner-background:var(--pds-color-banner-info-background);--banner-foreground:var(--pds-color-banner-info-foreground);--banner-height:3.5rem;--nav-button-size:var(--pds-spacing-2xl);min-height:var(--banner-height);position:relative}@media (min-width:768px) and (max-width:1279px){.pds-banner-group{--banner-height:4rem}}@media (max-width:767px){.pds-banner-group{--banner-height:5rem}}.pds-banner--critical,.pds-banner-group--critical{--banner-background:var(--pds-color-banner-critical-background);--banner-foreground:var(--pds-color-banner-critical-foreground)}.pds-banner--discovery,.pds-banner-group--discovery{--banner-background:var(--pds-color-banner-discovery-background);--banner-foreground:var(--pds-color-banner-discovery-foreground)}.pds-banner--neutral,.pds-banner-group--neutral{--banner-background:var(--pds-color-banner-neutral-background);--banner-foreground:var(--pds-color-banner-neutral-foreground)}.pds-banner--warning,.pds-banner-group--warning{--banner-background:var(--pds-color-banner-warning-background);--banner-foreground:var(--pds-color-banner-warning-foreground)}.pds-banner{align-items:center;background:var(--banner-background);color:var(--banner-foreground);display:flex;font-size:var(--pds-typography-size-s);font-weight:var(--pds-typography-fw-medium);gap:var(--pds-spacing-s);height:var(--banner-height);line-height:var(--pds-typography-lh-s);padding-inline:var(--pds-spacing-2xl);position:absolute;width:100%}@media (max-width:767px){.pds-banner{padding-inline:var(--pds-spacing-l)}}.pds-banner__content{align-items:center;display:flex;flex:1;gap:var(--pds-spacing-s);justify-content:center}.pds-banner__icon{flex-grow:0;flex-shrink:0}.pds-banner__message{-webkit-box-orient:vertical;display:-webkit-box;-webkit-line-clamp:2;overflow:hidden}@media (max-width:767px){.pds-banner__message{-webkit-line-clamp:3}}.pds-banner__message p{all:unset}.pds-banner__message a{-webkit-box-decoration-break:clone;box-decoration-break:clone;color:var(--banner-foreground);padding-inline:var(--pds-spacing-4xs);text-decoration:underline;transition:var(--pds-animation-transition-button)}.pds-banner__message a:hover{background-color:hsla(0,0%,100%,.2);border-radius:var(--pds-border-radius-default);color:var(--banner-foreground);text-decoration:none}.pds-banner__message a:focus-visible{outline:var(--pds-border-width-outline) solid var(--banner-foreground);outline-offset:0}.pds-banner__dismiss-button{all:unset;border-radius:var(--pds-border-radius-default);cursor:pointer;flex-shrink:0;font-size:var(--pds-typography-size-xs);margin-inline-start:auto;padding:var(--pds-spacing-4xs) var(--pds-spacing-2xs);transition:var(--pds-animation-transition-button)}.pds-banner__dismiss-button:hover{background-color:hsla(0,0%,100%,.15)}.pds-banner__dismiss-button:focus-visible{outline:var(--pds-border-width-outline) solid var(--banner-foreground);outline-offset:0}.pds-banner-group--multiple .pds-banner{padding-inline:var(--pds-spacing-3xl)}.pds-banner-group--multiple .pds-banner__dismiss-button{margin-inline-end:var(--pds-spacing-3xs)}.pds-banner__navigation{align-items:center;display:flex;height:var(--banner-height);justify-content:space-between;width:100%}button.pds-banner__nav-button{border-color:transparent;color:var(--banner-foreground);height:var(--nav-button-size);margin-inline:var(--pds-spacing-xs);min-width:unset;padding:0;transition:var(--pds-animation-transition-button);width:var(--nav-button-size);z-index:calc(var(--pds-z-index-notifications) + 10)}@media (max-width:767px){button.pds-banner__nav-button{margin-inline:var(--pds-spacing-3xs)}}button.pds-banner__nav-button:hover:enabled{background-color:hsla(0,0%,100%,.2);border-color:transparent;color:var(--banner-foreground)}button.pds-banner__nav-button:focus-visible{outline:var(--pds-border-width-outline) solid var(--banner-foreground);outline-offset:0}.pds-banner-group[data-context=marketing]{--banner-height:3.75rem}@media (min-width:768px) and (max-width:1279px){.pds-banner-group[data-context=marketing]{--banner-height:4.5rem}}@media (max-width:767px){.pds-banner-group[data-context=marketing]{--banner-height:5.5rem}}.pds-banner-group[data-context=marketing] .pds-banner{font-size:var(--pds-typography-size-m);gap:var(--pds-spacing-m);line-height:var(--pds-typography-lh-m)}.pds-banner-group[data-context=marketing] .pds-banner__content{gap:var(--pds-spacing-m)}.pds-banner-group[data-context=marketing] .pds-banner__dismiss-button{font-size:var(--pds-typography-size-s);margin-inline-end:var(--pds-spacing-xs)}.pds-banner--dismissing,.pds-banner--fading{animation:hideBannerAnimation .2s ease-in;animation-fill-mode:forwards}@keyframes hideBannerAnimation{to{opacity:0}0%{opacity:1}}}
@@ -1 +1 @@
1
- @layer pds-v1, pds-v2;@layer pds-v2{.pds-icon{--icon-detail-color:var(--pds-color-surface-default);display:inline-flex;flex-shrink:0;height:1.25rem;overflow:visible;vertical-align:middle;width:1.25rem}.pds-icon svg{height:100%;width:100%}.pds-icon--s{height:.75rem;width:.75rem}.pds-icon--m{height:1rem;width:1rem}.pds-icon--l{height:1.25rem;width:1.25rem}.pds-icon--xl{height:1.5rem;width:1.5rem}.pds-icon--2xl{height:2rem;width:2rem}.pds-icon--3xl{height:2.5rem;width:2.5rem}}
1
+ @layer pds-v1, pds-v2;@layer pds-v2{.pds-icon{--icon-detail-color:var(--pds-color-surface-default);display:inline-flex;flex-shrink:0;height:1.25rem;overflow:visible;vertical-align:middle;width:1.25rem}.pds-icon svg{height:100%;width:100%}.pds-icon--xs{height:.75rem;width:.75rem}.pds-icon--s{height:.875rem;width:.875rem}.pds-icon--m{height:1rem;width:1rem}.pds-icon--l{height:1.125rem;width:1.125rem}.pds-icon--xl{height:1.25rem;width:1.25rem}.pds-icon--2xl{height:1.5rem;width:1.5rem}.pds-icon--3xl{height:1.75rem;width:1.75rem}.pds-icon--4xl{height:2rem;width:2rem}}