@doneisbetter/gds-core 2.6.7 → 3.0.0

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/index.mjs CHANGED
@@ -13,7 +13,7 @@ import {
13
13
  SidebarNavSection,
14
14
  ThemeToggle,
15
15
  UploadDropzone
16
- } from "./chunk-IUYPELGQ.mjs";
16
+ } from "./chunk-NBCULITN.mjs";
17
17
  import {
18
18
  AccentPanel,
19
19
  AccessSummary,
@@ -21,6 +21,7 @@ import {
21
21
  ArticleShell,
22
22
  AuthShell,
23
23
  BrowseSurface,
24
+ ChartTokenPanel,
24
25
  ChoiceChip,
25
26
  ConsumerDashboardGrid,
26
27
  ConsumerSection,
@@ -31,6 +32,7 @@ import {
31
32
  EditorialCard,
32
33
  EditorialHero,
33
34
  EmptyState,
35
+ EvidencePanel,
34
36
  FeatureBand,
35
37
  FilterDrawer,
36
38
  FoodMenuSection,
@@ -44,6 +46,7 @@ import {
44
46
  MetricCard,
45
47
  PROVIDER_IDENTITY_REGISTRY,
46
48
  PageHeader,
49
+ PeriodSelector,
47
50
  PlaceholderPanel,
48
51
  PlaybackSurface,
49
52
  ProductCard,
@@ -60,6 +63,7 @@ import {
60
63
  ReferenceLinkGrid,
61
64
  ReferenceLocaleNotice,
62
65
  ReferenceSection,
66
+ ReportingSection,
63
67
  SectionPanel,
64
68
  SimpleDataTable,
65
69
  SocialAuthButtons,
@@ -75,8 +79,10 @@ import {
75
79
  gdsLocales,
76
80
  getGdsMessages,
77
81
  getProviderIdentityLabel,
82
+ getProviderIdentityPolicy,
78
83
  getSemanticActionConfig,
79
84
  getSemanticActionLabel,
85
+ getSupportedProviderIdentityIds,
80
86
  he,
81
87
  hu,
82
88
  isPresentationMode,
@@ -86,7 +92,7 @@ import {
86
92
  resolveSemanticActionConfig,
87
93
  resolveSurfacePresentationStyles,
88
94
  ru
89
- } from "./chunk-LH2KMMXT.mjs";
95
+ } from "./chunk-P7ICTEEB.mjs";
90
96
  export {
91
97
  AccentPanel,
92
98
  AccessRecoveryPanel,
@@ -95,6 +101,7 @@ export {
95
101
  ArticleShell,
96
102
  AuthShell,
97
103
  BrowseSurface,
104
+ ChartTokenPanel,
98
105
  ChoiceChip,
99
106
  ConfirmDialog,
100
107
  ConsumerDashboardGrid,
@@ -109,6 +116,7 @@ export {
109
116
  EditorialCard,
110
117
  EditorialHero,
111
118
  EmptyState,
119
+ EvidencePanel,
112
120
  FeatureBand,
113
121
  FilterDrawer,
114
122
  FoodMenuSection,
@@ -123,6 +131,7 @@ export {
123
131
  MetricCard,
124
132
  PROVIDER_IDENTITY_REGISTRY,
125
133
  PageHeader,
134
+ PeriodSelector,
126
135
  PlaceholderPanel,
127
136
  PlaybackSurface,
128
137
  ProductCard,
@@ -140,6 +149,7 @@ export {
140
149
  ReferenceLocaleNotice,
141
150
  ReferenceSection,
142
151
  ReferenceThemeExplorer,
152
+ ReportingSection,
143
153
  SectionPanel,
144
154
  SemanticButton,
145
155
  ShareButtonGroup,
@@ -162,8 +172,10 @@ export {
162
172
  gdsLocales,
163
173
  getGdsMessages,
164
174
  getProviderIdentityLabel,
175
+ getProviderIdentityPolicy,
165
176
  getSemanticActionConfig,
166
177
  getSemanticActionLabel,
178
+ getSupportedProviderIdentityIds,
167
179
  he,
168
180
  hu,
169
181
  isPresentationMode,
@@ -1473,15 +1473,19 @@ declare function PublicBrandFooter({ media, brandTitle, description, actions, se
1473
1473
  interface AuthShellProps {
1474
1474
  title: string;
1475
1475
  description?: ReactNode;
1476
+ intent?: 'sign-in' | 'sign-up' | 'account-linking' | 'guest-entry';
1476
1477
  brand?: ReactNode;
1477
1478
  headerActions?: ReactNode;
1478
1479
  footer?: ReactNode;
1479
1480
  helper?: ReactNode;
1481
+ error?: ReactNode;
1482
+ guestAction?: ReactNode;
1483
+ supportAction?: ReactNode;
1480
1484
  socialAuth?: ReactNode;
1481
1485
  dividerLabel?: ReactNode;
1482
1486
  children: ReactNode;
1483
1487
  }
1484
- declare function AuthShell({ title, description, brand, headerActions, footer, helper, socialAuth, dividerLabel, children, }: AuthShellProps): react_jsx_runtime.JSX.Element;
1488
+ declare function AuthShell({ title, description, intent, brand, headerActions, footer, helper, error, guestAction, supportAction, socialAuth, dividerLabel, children, }: AuthShellProps): react_jsx_runtime.JSX.Element;
1485
1489
 
1486
1490
  declare const PROVIDER_IDENTITY_REGISTRY: {
1487
1491
  readonly google: {
@@ -1536,10 +1540,13 @@ interface ProviderIdentityButtonProps {
1536
1540
  provider: ProviderIdentity;
1537
1541
  label?: ReactNode;
1538
1542
  description?: ReactNode;
1543
+ policyNote?: ReactNode;
1544
+ error?: ReactNode;
1539
1545
  href?: string;
1540
1546
  onClick?: () => void;
1541
1547
  disabled?: boolean;
1542
1548
  loading?: boolean;
1549
+ tenantDisabledReason?: ReactNode;
1543
1550
  fullWidth?: boolean;
1544
1551
  size?: 'sm' | 'md' | 'lg';
1545
1552
  variant?: ProviderIdentityVariant;
@@ -1552,7 +1559,16 @@ interface ProviderIdentityButtonGroupProps {
1552
1559
  layout?: 'stack' | 'grid';
1553
1560
  }
1554
1561
  declare function getProviderIdentityLabel(provider: string, fallbackOverride?: ReactNode): string | number | bigint | boolean | react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | Iterable<ReactNode> | Promise<string | number | bigint | boolean | react.ReactPortal | react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined>;
1555
- declare function ProviderIdentityButton({ provider, label, description, href, onClick, disabled, loading, fullWidth, size, variant, ariaLabel, describedBy, minTouchTargetPx, }: ProviderIdentityButtonProps): react_jsx_runtime.JSX.Element;
1562
+ declare function getSupportedProviderIdentityIds(): string[];
1563
+ declare function getProviderIdentityPolicy(provider: string): {
1564
+ id: string;
1565
+ supported: boolean;
1566
+ providerLabel: string;
1567
+ colorAuthority: string;
1568
+ minTouchTargetPx: number;
1569
+ allowedVariants: ProviderIdentityVariant[];
1570
+ };
1571
+ declare function ProviderIdentityButton({ provider, label, description, policyNote, error, href, onClick, disabled, loading, tenantDisabledReason, fullWidth, size, variant, ariaLabel, describedBy, minTouchTargetPx, }: ProviderIdentityButtonProps): react_jsx_runtime.JSX.Element;
1556
1572
  declare function ProviderIdentityButtonGroup({ providers, layout }: ProviderIdentityButtonGroupProps): react_jsx_runtime.JSX.Element | null;
1557
1573
 
1558
1574
  type SocialAuthProviderId = 'google' | 'apple' | 'github' | 'facebook' | 'microsoft' | 'linkedin' | 'discord' | 'x' | 'email';
@@ -1561,8 +1577,11 @@ interface SocialAuthProviderOption {
1561
1577
  href?: string;
1562
1578
  onClick?: () => void;
1563
1579
  label?: ReactNode;
1580
+ policyNote?: ReactNode;
1581
+ error?: ReactNode;
1564
1582
  disabled?: boolean;
1565
1583
  loading?: boolean;
1584
+ tenantDisabledReason?: ReactNode;
1566
1585
  description?: ReactNode;
1567
1586
  variant?: ProviderIdentityVariant;
1568
1587
  size?: ProviderIdentityButtonProps['size'];
@@ -1727,6 +1746,7 @@ interface PlaybackSurfaceProps {
1727
1746
  }
1728
1747
  declare function PlaybackSurface({ title, state, media, statusMessage, controls, emptyState, errorState, overlays, mode, }: PlaybackSurfaceProps): react_jsx_runtime.JSX.Element;
1729
1748
 
1749
+ type MediaFieldState = 'empty' | 'drag-active' | 'selected' | 'preview-loading' | 'uploading' | 'upload-failed' | 'unsupported-type' | 'too-large' | 'removed' | 'saved' | 'invalid' | 'readonly';
1730
1750
  interface MediaFieldProps {
1731
1751
  label: ReactNode;
1732
1752
  description?: ReactNode;
@@ -1738,15 +1758,20 @@ interface MediaFieldProps {
1738
1758
  policyText?: ReactNode;
1739
1759
  error?: ReactNode;
1740
1760
  retryAction?: ReactNode;
1761
+ replaceAction?: ReactNode;
1741
1762
  onRemove?: () => void;
1742
1763
  onReset?: () => void;
1743
1764
  removeAction?: ReactNode;
1744
1765
  resetAction?: ReactNode;
1745
1766
  statusAction?: ReactNode;
1746
- state?: 'empty' | 'selected' | 'saved' | 'invalid' | 'uploading';
1767
+ state?: MediaFieldState;
1768
+ acceptedTypes?: ReactNode;
1769
+ maxSize?: ReactNode;
1770
+ progress?: number;
1771
+ readonly?: boolean;
1747
1772
  mode?: 'stacked' | 'split';
1748
1773
  }
1749
- declare function MediaField({ label, description, value, preview, uploadControl, urlInput, helpText, policyText, error, retryAction, onRemove, onReset, removeAction, resetAction, statusAction, state, mode, }: MediaFieldProps): react_jsx_runtime.JSX.Element;
1774
+ declare function MediaField({ label, description, value, preview, uploadControl, urlInput, helpText, policyText, error, retryAction, replaceAction, onRemove, onReset, removeAction, resetAction, statusAction, acceptedTypes, maxSize, progress, readonly, state, mode, }: MediaFieldProps): react_jsx_runtime.JSX.Element;
1750
1775
 
1751
1776
  interface MediaCardAction {
1752
1777
  label: string;
@@ -1767,9 +1792,12 @@ interface AccessSummaryProps {
1767
1792
  roles: string[];
1768
1793
  scope?: string;
1769
1794
  blocked?: boolean;
1795
+ state?: 'allowed' | 'blocked' | 'forbidden' | 'expired' | 'permission-limited';
1796
+ owner?: ReactNode;
1797
+ recoveryHint?: ReactNode;
1770
1798
  description?: ReactNode;
1771
1799
  }
1772
- declare function AccessSummary({ title, roles, scope, blocked, description }: AccessSummaryProps): react_jsx_runtime.JSX.Element;
1800
+ declare function AccessSummary({ title, roles, scope, blocked, state, owner, recoveryHint, description }: AccessSummaryProps): react_jsx_runtime.JSX.Element;
1773
1801
 
1774
1802
  interface FormFieldProps {
1775
1803
  label: ReactNode;
@@ -1843,6 +1871,77 @@ interface StatsSectionProps {
1843
1871
  }
1844
1872
  declare function StatsSection({ title, loading, error, belowThreshold, thresholdMessage, children, placeholder, }: StatsSectionProps): react_jsx_runtime.JSX.Element;
1845
1873
 
1874
+ interface PeriodSelectorOption {
1875
+ value: string;
1876
+ label: string;
1877
+ description?: string;
1878
+ }
1879
+ interface PeriodSelectorProps {
1880
+ label: ReactNode;
1881
+ description?: ReactNode;
1882
+ value: string;
1883
+ options: PeriodSelectorOption[];
1884
+ onChange?: (value: string) => void;
1885
+ timezone?: string;
1886
+ scope?: ReactNode;
1887
+ helperText?: ReactNode;
1888
+ error?: ReactNode;
1889
+ stale?: boolean;
1890
+ filtered?: boolean;
1891
+ disabled?: boolean;
1892
+ }
1893
+ declare function PeriodSelector({ label, description, value, options, onChange, timezone, scope, helperText, error, stale, filtered, disabled, }: PeriodSelectorProps): react_jsx_runtime.JSX.Element;
1894
+
1895
+ type EvidencePanelState = 'current' | 'stale' | 'partial' | 'permission-limited' | 'loading' | 'empty' | 'error';
1896
+ interface EvidencePanelProps {
1897
+ title: ReactNode;
1898
+ description?: ReactNode;
1899
+ source?: ReactNode;
1900
+ freshness?: ReactNode;
1901
+ confidence?: ReactNode;
1902
+ state?: EvidencePanelState;
1903
+ evidenceCount?: number;
1904
+ permissionNote?: ReactNode;
1905
+ retryAction?: ReactNode;
1906
+ details?: ReactNode;
1907
+ children?: ReactNode;
1908
+ }
1909
+ declare function EvidencePanel({ title, description, source, freshness, confidence, state, evidenceCount, permissionNote, retryAction, details, children, }: EvidencePanelProps): react_jsx_runtime.JSX.Element;
1910
+
1911
+ type ChartTokenPanelState = 'ready' | 'loading' | 'empty' | 'below-threshold' | 'partial' | 'error' | 'permission-limited';
1912
+ interface ChartLegendItem {
1913
+ label: ReactNode;
1914
+ token: string;
1915
+ description?: ReactNode;
1916
+ }
1917
+ interface ChartTokenPanelProps {
1918
+ title: ReactNode;
1919
+ description?: ReactNode;
1920
+ summary: ReactNode;
1921
+ state?: ChartTokenPanelState;
1922
+ legend?: ChartLegendItem[];
1923
+ children?: ReactNode;
1924
+ tableFallback?: ReactNode;
1925
+ retryAction?: ReactNode;
1926
+ }
1927
+ declare function ChartTokenPanel({ title, description, summary, state, legend, children, tableFallback, retryAction, }: ChartTokenPanelProps): react_jsx_runtime.JSX.Element;
1928
+
1929
+ type ReportingSectionState = 'ready' | 'loading' | 'empty' | 'error' | 'below-threshold' | 'partial' | 'stale' | 'filtered' | 'permission-limited';
1930
+ interface ReportingSectionProps {
1931
+ title: ReactNode;
1932
+ description?: ReactNode;
1933
+ state?: ReportingSectionState;
1934
+ periodControl?: ReactNode;
1935
+ evidence?: ReactNode;
1936
+ metrics?: ReactNode;
1937
+ chart?: ReactNode;
1938
+ table?: ReactNode;
1939
+ action?: ReactNode;
1940
+ stateMessage?: ReactNode;
1941
+ retryAction?: ReactNode;
1942
+ }
1943
+ declare function ReportingSection({ title, description, state, periodControl, evidence, metrics, chart, table, action, stateMessage, retryAction, }: ReportingSectionProps): react_jsx_runtime.JSX.Element;
1944
+
1846
1945
  declare const en: {
1847
1946
  'gds.action.settings': string;
1848
1947
  'gds.action.analytics': string;
@@ -5655,4 +5754,4 @@ declare function getGdsMessages(locale: GdsLocale | string): {
5655
5754
  'gds.state.emptyData': string;
5656
5755
  };
5657
5756
 
5658
- export { type FoodMenuItem as $, AccentPanel as A, type BreadcrumbItem as B, ChoiceChip as C, DataToolbar as D, DetailProfileShell as E, type DetailProfileShellProps as F, DocsPageShell as G, type DocsPageShellProps as H, EditorialCard as I, type EditorialCardProps as J, EditorialHero as K, type EditorialHeroAction as L, type EditorialHeroMetaItem as M, type EditorialHeroProps as N, EmptyState as O, type EmptyStateProps as P, FeatureBand as Q, type FeatureBandItem as R, type FeatureBandProps as S, FilterDrawer as T, type FilterDrawerMode as U, type FilterDrawerProps as V, type FoodCardAvailabilityState as W, type FoodCardMarker as X, type FoodCardMediaRatio as Y, type FoodCardMetadata as Z, type FoodMenuCategory as _, type AccentPanelProps as a, PublicShell as a$, FoodMenuSection as a0, type FoodMenuSectionProps as a1, FormField as a2, type FormFieldProps as a3, GdsIcons as a4, type GdsLocale as a5, GdsVocabulary as a6, type GdsVocabularyPack as a7, ListingCard as a8, type ListingCardAffordance as a9, type ProgressCardProps as aA, type ProviderIdentity as aB, ProviderIdentityButton as aC, ProviderIdentityButtonGroup as aD, type ProviderIdentityButtonGroupProps as aE, type ProviderIdentityButtonProps as aF, type ProviderIdentityVariant as aG, PublicBrandFooter as aH, type PublicBrandFooterClassNames as aI, type PublicBrandFooterLayoutVariant as aJ, type PublicBrandFooterProps as aK, type PublicFlowAction as aL, type PublicFlowActionPriority as aM, PublicFlowShell as aN, type PublicFlowShellProps as aO, type PublicFlowStage as aP, type PublicFlowStageStatus as aQ, PublicFoodCard as aR, type PublicFoodCardProps as aS, PublicNav as aT, type PublicNavItem as aU, type PublicNavProps as aV, PublicProductCard as aW, type PublicProductCardHelperKind as aX, type PublicProductCardMetaItem as aY, type PublicProductCardProps as aZ, type PublicProductCardState as a_, type ListingCardMediaRatio as aa, type ListingCardProps as ab, type ListingMetadataRow as ac, MapPanel as ad, type MapPanelProps as ae, MediaCard as af, type MediaCardAction as ag, type MediaCardProps as ah, MediaField as ai, type MediaFieldProps as aj, MetricCard as ak, type MetricCardProps as al, PROVIDER_IDENTITY_REGISTRY as am, PageHeader as an, type PageHeaderEyebrowVariant as ao, type PageHeaderProps as ap, PlaceholderPanel as aq, type PlaceholderPanelProps as ar, PlaybackSurface as as, type PlaybackSurfaceProps as at, type PlaybackSurfaceState as au, ProductCard as av, type ProductCardAction as aw, type ProductCardMetaItem as ax, type ProductCardProps as ay, ProgressCard as az, type AccentPanelVariant as b, type PublicShellClassNames as b0, type PublicShellHeaderVariant as b1, type PublicShellMobileNavigationMode as b2, type PublicShellProps as b3, PublicSiteFooter as b4, type PublicSiteFooterProps as b5, ReferenceLinkGrid as b6, type ReferenceLinkGridItem as b7, type ReferenceLinkGridProps as b8, ReferenceLocaleNotice as b9, type SurfacePresentation as bA, type SurfacePresentationProps as bB, type VocabularyResolver as bC, ar as bD, createGdsVocabularyPack as bE, de as bF, en as bG, es as bH, fr as bI, gdsLocales as bJ, getGdsMessages as bK, getProviderIdentityLabel as bL, getSemanticActionConfig as bM, getSemanticActionLabel as bN, he as bO, hu as bP, isPresentationMode as bQ, it as bR, mergeGdsVocabularyPacks as bS, resolveAccentPanelStyles as bT, resolveSemanticActionConfig as bU, resolveSurfacePresentationStyles as bV, ru as bW, type ReferenceLocaleNoticeProps as ba, ReferenceSection as bb, type ReferenceSectionProps as bc, SectionPanel as bd, type SectionPanelProps as be, type SectionPanelTone as bf, type SemanticAction as bg, type SemanticActionDefinition as bh, type SemanticActionId as bi, SimpleDataTable as bj, type SimpleDataTableProps as bk, type SimpleTableColumn as bl, SocialAuthButtons as bm, type SocialAuthButtonsProps as bn, type SocialAuthProviderId as bo, type SocialAuthProviderOption as bp, StateBlock as bq, type StateBlockProps as br, type StateBlockVariant as bs, StatsSection as bt, type StatsSectionProps as bu, StatusBadge as bv, type StatusBadgeProps as bw, type StatusVariant as bx, type SurfaceContentAlign as by, type SurfaceContentJustify as bz, type AccentTone as c, AccessSummary as d, type AccessSummaryProps as e, ActionBar as f, type ActionBarAction as g, type ActionBarIconAction as h, type ActionBarProps as i, ArticleShell as j, type ArticleShellProps as k, AuthShell as l, type AuthShellProps as m, BrowseSurface as n, type BrowseSurfaceFilterChip as o, type BrowseSurfaceProps as p, type BrowseSurfaceScopeOption as q, type ChoiceChipProps as r, ConsumerDashboardGrid as s, type ConsumerDashboardGridProps as t, ConsumerSection as u, type ConsumerSectionProps as v, CtaButtonGroup as w, type CtaButtonGroupProps as x, type DataToolbarFilterChip as y, type DataToolbarProps as z };
5757
+ export { type FilterDrawerMode as $, AccentPanel as A, type BreadcrumbItem as B, type ChartLegendItem as C, CtaButtonGroup as D, type CtaButtonGroupProps as E, DataToolbar as F, type DataToolbarFilterChip as G, type DataToolbarProps as H, DetailProfileShell as I, type DetailProfileShellProps as J, DocsPageShell as K, type DocsPageShellProps as L, EditorialCard as M, type EditorialCardProps as N, EditorialHero as O, type EditorialHeroAction as P, type EditorialHeroMetaItem as Q, type EditorialHeroProps as R, EmptyState as S, type EmptyStateProps as T, EvidencePanel as U, type EvidencePanelProps as V, type EvidencePanelState as W, FeatureBand as X, type FeatureBandItem as Y, type FeatureBandProps as Z, FilterDrawer as _, type AccentPanelProps as a, type PublicFlowStageStatus as a$, type FilterDrawerProps as a0, type FoodCardAvailabilityState as a1, type FoodCardMarker as a2, type FoodCardMediaRatio as a3, type FoodCardMetadata as a4, type FoodMenuCategory as a5, type FoodMenuItem as a6, FoodMenuSection as a7, type FoodMenuSectionProps as a8, FormField as a9, type PeriodSelectorProps as aA, PlaceholderPanel as aB, type PlaceholderPanelProps as aC, PlaybackSurface as aD, type PlaybackSurfaceProps as aE, type PlaybackSurfaceState as aF, ProductCard as aG, type ProductCardAction as aH, type ProductCardMetaItem as aI, type ProductCardProps as aJ, ProgressCard as aK, type ProgressCardProps as aL, type ProviderIdentity as aM, ProviderIdentityButton as aN, ProviderIdentityButtonGroup as aO, type ProviderIdentityButtonGroupProps as aP, type ProviderIdentityButtonProps as aQ, type ProviderIdentityVariant as aR, PublicBrandFooter as aS, type PublicBrandFooterClassNames as aT, type PublicBrandFooterLayoutVariant as aU, type PublicBrandFooterProps as aV, type PublicFlowAction as aW, type PublicFlowActionPriority as aX, PublicFlowShell as aY, type PublicFlowShellProps as aZ, type PublicFlowStage as a_, type FormFieldProps as aa, GdsIcons as ab, type GdsLocale as ac, GdsVocabulary as ad, type GdsVocabularyPack as ae, ListingCard as af, type ListingCardAffordance as ag, type ListingCardMediaRatio as ah, type ListingCardProps as ai, type ListingMetadataRow as aj, MapPanel as ak, type MapPanelProps as al, MediaCard as am, type MediaCardAction as an, type MediaCardProps as ao, MediaField as ap, type MediaFieldProps as aq, type MediaFieldState as ar, MetricCard as as, type MetricCardProps as at, PROVIDER_IDENTITY_REGISTRY as au, PageHeader as av, type PageHeaderEyebrowVariant as aw, type PageHeaderProps as ax, PeriodSelector as ay, type PeriodSelectorOption as az, type AccentPanelVariant as b, getSemanticActionConfig as b$, PublicFoodCard as b0, type PublicFoodCardProps as b1, PublicNav as b2, type PublicNavItem as b3, type PublicNavProps as b4, PublicProductCard as b5, type PublicProductCardHelperKind as b6, type PublicProductCardMetaItem as b7, type PublicProductCardProps as b8, type PublicProductCardState as b9, SocialAuthButtons as bA, type SocialAuthButtonsProps as bB, type SocialAuthProviderId as bC, type SocialAuthProviderOption as bD, StateBlock as bE, type StateBlockProps as bF, type StateBlockVariant as bG, StatsSection as bH, type StatsSectionProps as bI, StatusBadge as bJ, type StatusBadgeProps as bK, type StatusVariant as bL, type SurfaceContentAlign as bM, type SurfaceContentJustify as bN, type SurfacePresentation as bO, type SurfacePresentationProps as bP, type VocabularyResolver as bQ, ar as bR, createGdsVocabularyPack as bS, de as bT, en as bU, es as bV, fr as bW, gdsLocales as bX, getGdsMessages as bY, getProviderIdentityLabel as bZ, getProviderIdentityPolicy as b_, PublicShell as ba, type PublicShellClassNames as bb, type PublicShellHeaderVariant as bc, type PublicShellMobileNavigationMode as bd, type PublicShellProps as be, PublicSiteFooter as bf, type PublicSiteFooterProps as bg, ReferenceLinkGrid as bh, type ReferenceLinkGridItem as bi, type ReferenceLinkGridProps as bj, ReferenceLocaleNotice as bk, type ReferenceLocaleNoticeProps as bl, ReferenceSection as bm, type ReferenceSectionProps as bn, ReportingSection as bo, type ReportingSectionProps as bp, type ReportingSectionState as bq, SectionPanel as br, type SectionPanelProps as bs, type SectionPanelTone as bt, type SemanticAction as bu, type SemanticActionDefinition as bv, type SemanticActionId as bw, SimpleDataTable as bx, type SimpleDataTableProps as by, type SimpleTableColumn as bz, type AccentTone as c, getSemanticActionLabel as c0, getSupportedProviderIdentityIds as c1, he as c2, hu as c3, isPresentationMode as c4, it as c5, mergeGdsVocabularyPacks as c6, resolveAccentPanelStyles as c7, resolveSemanticActionConfig as c8, resolveSurfacePresentationStyles as c9, ru as ca, AccessSummary as d, type AccessSummaryProps as e, ActionBar as f, type ActionBarAction as g, type ActionBarIconAction as h, type ActionBarProps as i, ArticleShell as j, type ArticleShellProps as k, AuthShell as l, type AuthShellProps as m, BrowseSurface as n, type BrowseSurfaceFilterChip as o, type BrowseSurfaceProps as p, type BrowseSurfaceScopeOption as q, ChartTokenPanel as r, type ChartTokenPanelProps as s, type ChartTokenPanelState as t, ChoiceChip as u, type ChoiceChipProps as v, ConsumerDashboardGrid as w, type ConsumerDashboardGridProps as x, ConsumerSection as y, type ConsumerSectionProps as z };
@@ -1473,15 +1473,19 @@ declare function PublicBrandFooter({ media, brandTitle, description, actions, se
1473
1473
  interface AuthShellProps {
1474
1474
  title: string;
1475
1475
  description?: ReactNode;
1476
+ intent?: 'sign-in' | 'sign-up' | 'account-linking' | 'guest-entry';
1476
1477
  brand?: ReactNode;
1477
1478
  headerActions?: ReactNode;
1478
1479
  footer?: ReactNode;
1479
1480
  helper?: ReactNode;
1481
+ error?: ReactNode;
1482
+ guestAction?: ReactNode;
1483
+ supportAction?: ReactNode;
1480
1484
  socialAuth?: ReactNode;
1481
1485
  dividerLabel?: ReactNode;
1482
1486
  children: ReactNode;
1483
1487
  }
1484
- declare function AuthShell({ title, description, brand, headerActions, footer, helper, socialAuth, dividerLabel, children, }: AuthShellProps): react_jsx_runtime.JSX.Element;
1488
+ declare function AuthShell({ title, description, intent, brand, headerActions, footer, helper, error, guestAction, supportAction, socialAuth, dividerLabel, children, }: AuthShellProps): react_jsx_runtime.JSX.Element;
1485
1489
 
1486
1490
  declare const PROVIDER_IDENTITY_REGISTRY: {
1487
1491
  readonly google: {
@@ -1536,10 +1540,13 @@ interface ProviderIdentityButtonProps {
1536
1540
  provider: ProviderIdentity;
1537
1541
  label?: ReactNode;
1538
1542
  description?: ReactNode;
1543
+ policyNote?: ReactNode;
1544
+ error?: ReactNode;
1539
1545
  href?: string;
1540
1546
  onClick?: () => void;
1541
1547
  disabled?: boolean;
1542
1548
  loading?: boolean;
1549
+ tenantDisabledReason?: ReactNode;
1543
1550
  fullWidth?: boolean;
1544
1551
  size?: 'sm' | 'md' | 'lg';
1545
1552
  variant?: ProviderIdentityVariant;
@@ -1552,7 +1559,16 @@ interface ProviderIdentityButtonGroupProps {
1552
1559
  layout?: 'stack' | 'grid';
1553
1560
  }
1554
1561
  declare function getProviderIdentityLabel(provider: string, fallbackOverride?: ReactNode): string | number | bigint | boolean | react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | Iterable<ReactNode> | Promise<string | number | bigint | boolean | react.ReactPortal | react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined>;
1555
- declare function ProviderIdentityButton({ provider, label, description, href, onClick, disabled, loading, fullWidth, size, variant, ariaLabel, describedBy, minTouchTargetPx, }: ProviderIdentityButtonProps): react_jsx_runtime.JSX.Element;
1562
+ declare function getSupportedProviderIdentityIds(): string[];
1563
+ declare function getProviderIdentityPolicy(provider: string): {
1564
+ id: string;
1565
+ supported: boolean;
1566
+ providerLabel: string;
1567
+ colorAuthority: string;
1568
+ minTouchTargetPx: number;
1569
+ allowedVariants: ProviderIdentityVariant[];
1570
+ };
1571
+ declare function ProviderIdentityButton({ provider, label, description, policyNote, error, href, onClick, disabled, loading, tenantDisabledReason, fullWidth, size, variant, ariaLabel, describedBy, minTouchTargetPx, }: ProviderIdentityButtonProps): react_jsx_runtime.JSX.Element;
1556
1572
  declare function ProviderIdentityButtonGroup({ providers, layout }: ProviderIdentityButtonGroupProps): react_jsx_runtime.JSX.Element | null;
1557
1573
 
1558
1574
  type SocialAuthProviderId = 'google' | 'apple' | 'github' | 'facebook' | 'microsoft' | 'linkedin' | 'discord' | 'x' | 'email';
@@ -1561,8 +1577,11 @@ interface SocialAuthProviderOption {
1561
1577
  href?: string;
1562
1578
  onClick?: () => void;
1563
1579
  label?: ReactNode;
1580
+ policyNote?: ReactNode;
1581
+ error?: ReactNode;
1564
1582
  disabled?: boolean;
1565
1583
  loading?: boolean;
1584
+ tenantDisabledReason?: ReactNode;
1566
1585
  description?: ReactNode;
1567
1586
  variant?: ProviderIdentityVariant;
1568
1587
  size?: ProviderIdentityButtonProps['size'];
@@ -1727,6 +1746,7 @@ interface PlaybackSurfaceProps {
1727
1746
  }
1728
1747
  declare function PlaybackSurface({ title, state, media, statusMessage, controls, emptyState, errorState, overlays, mode, }: PlaybackSurfaceProps): react_jsx_runtime.JSX.Element;
1729
1748
 
1749
+ type MediaFieldState = 'empty' | 'drag-active' | 'selected' | 'preview-loading' | 'uploading' | 'upload-failed' | 'unsupported-type' | 'too-large' | 'removed' | 'saved' | 'invalid' | 'readonly';
1730
1750
  interface MediaFieldProps {
1731
1751
  label: ReactNode;
1732
1752
  description?: ReactNode;
@@ -1738,15 +1758,20 @@ interface MediaFieldProps {
1738
1758
  policyText?: ReactNode;
1739
1759
  error?: ReactNode;
1740
1760
  retryAction?: ReactNode;
1761
+ replaceAction?: ReactNode;
1741
1762
  onRemove?: () => void;
1742
1763
  onReset?: () => void;
1743
1764
  removeAction?: ReactNode;
1744
1765
  resetAction?: ReactNode;
1745
1766
  statusAction?: ReactNode;
1746
- state?: 'empty' | 'selected' | 'saved' | 'invalid' | 'uploading';
1767
+ state?: MediaFieldState;
1768
+ acceptedTypes?: ReactNode;
1769
+ maxSize?: ReactNode;
1770
+ progress?: number;
1771
+ readonly?: boolean;
1747
1772
  mode?: 'stacked' | 'split';
1748
1773
  }
1749
- declare function MediaField({ label, description, value, preview, uploadControl, urlInput, helpText, policyText, error, retryAction, onRemove, onReset, removeAction, resetAction, statusAction, state, mode, }: MediaFieldProps): react_jsx_runtime.JSX.Element;
1774
+ declare function MediaField({ label, description, value, preview, uploadControl, urlInput, helpText, policyText, error, retryAction, replaceAction, onRemove, onReset, removeAction, resetAction, statusAction, acceptedTypes, maxSize, progress, readonly, state, mode, }: MediaFieldProps): react_jsx_runtime.JSX.Element;
1750
1775
 
1751
1776
  interface MediaCardAction {
1752
1777
  label: string;
@@ -1767,9 +1792,12 @@ interface AccessSummaryProps {
1767
1792
  roles: string[];
1768
1793
  scope?: string;
1769
1794
  blocked?: boolean;
1795
+ state?: 'allowed' | 'blocked' | 'forbidden' | 'expired' | 'permission-limited';
1796
+ owner?: ReactNode;
1797
+ recoveryHint?: ReactNode;
1770
1798
  description?: ReactNode;
1771
1799
  }
1772
- declare function AccessSummary({ title, roles, scope, blocked, description }: AccessSummaryProps): react_jsx_runtime.JSX.Element;
1800
+ declare function AccessSummary({ title, roles, scope, blocked, state, owner, recoveryHint, description }: AccessSummaryProps): react_jsx_runtime.JSX.Element;
1773
1801
 
1774
1802
  interface FormFieldProps {
1775
1803
  label: ReactNode;
@@ -1843,6 +1871,77 @@ interface StatsSectionProps {
1843
1871
  }
1844
1872
  declare function StatsSection({ title, loading, error, belowThreshold, thresholdMessage, children, placeholder, }: StatsSectionProps): react_jsx_runtime.JSX.Element;
1845
1873
 
1874
+ interface PeriodSelectorOption {
1875
+ value: string;
1876
+ label: string;
1877
+ description?: string;
1878
+ }
1879
+ interface PeriodSelectorProps {
1880
+ label: ReactNode;
1881
+ description?: ReactNode;
1882
+ value: string;
1883
+ options: PeriodSelectorOption[];
1884
+ onChange?: (value: string) => void;
1885
+ timezone?: string;
1886
+ scope?: ReactNode;
1887
+ helperText?: ReactNode;
1888
+ error?: ReactNode;
1889
+ stale?: boolean;
1890
+ filtered?: boolean;
1891
+ disabled?: boolean;
1892
+ }
1893
+ declare function PeriodSelector({ label, description, value, options, onChange, timezone, scope, helperText, error, stale, filtered, disabled, }: PeriodSelectorProps): react_jsx_runtime.JSX.Element;
1894
+
1895
+ type EvidencePanelState = 'current' | 'stale' | 'partial' | 'permission-limited' | 'loading' | 'empty' | 'error';
1896
+ interface EvidencePanelProps {
1897
+ title: ReactNode;
1898
+ description?: ReactNode;
1899
+ source?: ReactNode;
1900
+ freshness?: ReactNode;
1901
+ confidence?: ReactNode;
1902
+ state?: EvidencePanelState;
1903
+ evidenceCount?: number;
1904
+ permissionNote?: ReactNode;
1905
+ retryAction?: ReactNode;
1906
+ details?: ReactNode;
1907
+ children?: ReactNode;
1908
+ }
1909
+ declare function EvidencePanel({ title, description, source, freshness, confidence, state, evidenceCount, permissionNote, retryAction, details, children, }: EvidencePanelProps): react_jsx_runtime.JSX.Element;
1910
+
1911
+ type ChartTokenPanelState = 'ready' | 'loading' | 'empty' | 'below-threshold' | 'partial' | 'error' | 'permission-limited';
1912
+ interface ChartLegendItem {
1913
+ label: ReactNode;
1914
+ token: string;
1915
+ description?: ReactNode;
1916
+ }
1917
+ interface ChartTokenPanelProps {
1918
+ title: ReactNode;
1919
+ description?: ReactNode;
1920
+ summary: ReactNode;
1921
+ state?: ChartTokenPanelState;
1922
+ legend?: ChartLegendItem[];
1923
+ children?: ReactNode;
1924
+ tableFallback?: ReactNode;
1925
+ retryAction?: ReactNode;
1926
+ }
1927
+ declare function ChartTokenPanel({ title, description, summary, state, legend, children, tableFallback, retryAction, }: ChartTokenPanelProps): react_jsx_runtime.JSX.Element;
1928
+
1929
+ type ReportingSectionState = 'ready' | 'loading' | 'empty' | 'error' | 'below-threshold' | 'partial' | 'stale' | 'filtered' | 'permission-limited';
1930
+ interface ReportingSectionProps {
1931
+ title: ReactNode;
1932
+ description?: ReactNode;
1933
+ state?: ReportingSectionState;
1934
+ periodControl?: ReactNode;
1935
+ evidence?: ReactNode;
1936
+ metrics?: ReactNode;
1937
+ chart?: ReactNode;
1938
+ table?: ReactNode;
1939
+ action?: ReactNode;
1940
+ stateMessage?: ReactNode;
1941
+ retryAction?: ReactNode;
1942
+ }
1943
+ declare function ReportingSection({ title, description, state, periodControl, evidence, metrics, chart, table, action, stateMessage, retryAction, }: ReportingSectionProps): react_jsx_runtime.JSX.Element;
1944
+
1846
1945
  declare const en: {
1847
1946
  'gds.action.settings': string;
1848
1947
  'gds.action.analytics': string;
@@ -5655,4 +5754,4 @@ declare function getGdsMessages(locale: GdsLocale | string): {
5655
5754
  'gds.state.emptyData': string;
5656
5755
  };
5657
5756
 
5658
- export { type FoodMenuItem as $, AccentPanel as A, type BreadcrumbItem as B, ChoiceChip as C, DataToolbar as D, DetailProfileShell as E, type DetailProfileShellProps as F, DocsPageShell as G, type DocsPageShellProps as H, EditorialCard as I, type EditorialCardProps as J, EditorialHero as K, type EditorialHeroAction as L, type EditorialHeroMetaItem as M, type EditorialHeroProps as N, EmptyState as O, type EmptyStateProps as P, FeatureBand as Q, type FeatureBandItem as R, type FeatureBandProps as S, FilterDrawer as T, type FilterDrawerMode as U, type FilterDrawerProps as V, type FoodCardAvailabilityState as W, type FoodCardMarker as X, type FoodCardMediaRatio as Y, type FoodCardMetadata as Z, type FoodMenuCategory as _, type AccentPanelProps as a, PublicShell as a$, FoodMenuSection as a0, type FoodMenuSectionProps as a1, FormField as a2, type FormFieldProps as a3, GdsIcons as a4, type GdsLocale as a5, GdsVocabulary as a6, type GdsVocabularyPack as a7, ListingCard as a8, type ListingCardAffordance as a9, type ProgressCardProps as aA, type ProviderIdentity as aB, ProviderIdentityButton as aC, ProviderIdentityButtonGroup as aD, type ProviderIdentityButtonGroupProps as aE, type ProviderIdentityButtonProps as aF, type ProviderIdentityVariant as aG, PublicBrandFooter as aH, type PublicBrandFooterClassNames as aI, type PublicBrandFooterLayoutVariant as aJ, type PublicBrandFooterProps as aK, type PublicFlowAction as aL, type PublicFlowActionPriority as aM, PublicFlowShell as aN, type PublicFlowShellProps as aO, type PublicFlowStage as aP, type PublicFlowStageStatus as aQ, PublicFoodCard as aR, type PublicFoodCardProps as aS, PublicNav as aT, type PublicNavItem as aU, type PublicNavProps as aV, PublicProductCard as aW, type PublicProductCardHelperKind as aX, type PublicProductCardMetaItem as aY, type PublicProductCardProps as aZ, type PublicProductCardState as a_, type ListingCardMediaRatio as aa, type ListingCardProps as ab, type ListingMetadataRow as ac, MapPanel as ad, type MapPanelProps as ae, MediaCard as af, type MediaCardAction as ag, type MediaCardProps as ah, MediaField as ai, type MediaFieldProps as aj, MetricCard as ak, type MetricCardProps as al, PROVIDER_IDENTITY_REGISTRY as am, PageHeader as an, type PageHeaderEyebrowVariant as ao, type PageHeaderProps as ap, PlaceholderPanel as aq, type PlaceholderPanelProps as ar, PlaybackSurface as as, type PlaybackSurfaceProps as at, type PlaybackSurfaceState as au, ProductCard as av, type ProductCardAction as aw, type ProductCardMetaItem as ax, type ProductCardProps as ay, ProgressCard as az, type AccentPanelVariant as b, type PublicShellClassNames as b0, type PublicShellHeaderVariant as b1, type PublicShellMobileNavigationMode as b2, type PublicShellProps as b3, PublicSiteFooter as b4, type PublicSiteFooterProps as b5, ReferenceLinkGrid as b6, type ReferenceLinkGridItem as b7, type ReferenceLinkGridProps as b8, ReferenceLocaleNotice as b9, type SurfacePresentation as bA, type SurfacePresentationProps as bB, type VocabularyResolver as bC, ar as bD, createGdsVocabularyPack as bE, de as bF, en as bG, es as bH, fr as bI, gdsLocales as bJ, getGdsMessages as bK, getProviderIdentityLabel as bL, getSemanticActionConfig as bM, getSemanticActionLabel as bN, he as bO, hu as bP, isPresentationMode as bQ, it as bR, mergeGdsVocabularyPacks as bS, resolveAccentPanelStyles as bT, resolveSemanticActionConfig as bU, resolveSurfacePresentationStyles as bV, ru as bW, type ReferenceLocaleNoticeProps as ba, ReferenceSection as bb, type ReferenceSectionProps as bc, SectionPanel as bd, type SectionPanelProps as be, type SectionPanelTone as bf, type SemanticAction as bg, type SemanticActionDefinition as bh, type SemanticActionId as bi, SimpleDataTable as bj, type SimpleDataTableProps as bk, type SimpleTableColumn as bl, SocialAuthButtons as bm, type SocialAuthButtonsProps as bn, type SocialAuthProviderId as bo, type SocialAuthProviderOption as bp, StateBlock as bq, type StateBlockProps as br, type StateBlockVariant as bs, StatsSection as bt, type StatsSectionProps as bu, StatusBadge as bv, type StatusBadgeProps as bw, type StatusVariant as bx, type SurfaceContentAlign as by, type SurfaceContentJustify as bz, type AccentTone as c, AccessSummary as d, type AccessSummaryProps as e, ActionBar as f, type ActionBarAction as g, type ActionBarIconAction as h, type ActionBarProps as i, ArticleShell as j, type ArticleShellProps as k, AuthShell as l, type AuthShellProps as m, BrowseSurface as n, type BrowseSurfaceFilterChip as o, type BrowseSurfaceProps as p, type BrowseSurfaceScopeOption as q, type ChoiceChipProps as r, ConsumerDashboardGrid as s, type ConsumerDashboardGridProps as t, ConsumerSection as u, type ConsumerSectionProps as v, CtaButtonGroup as w, type CtaButtonGroupProps as x, type DataToolbarFilterChip as y, type DataToolbarProps as z };
5757
+ export { type FilterDrawerMode as $, AccentPanel as A, type BreadcrumbItem as B, type ChartLegendItem as C, CtaButtonGroup as D, type CtaButtonGroupProps as E, DataToolbar as F, type DataToolbarFilterChip as G, type DataToolbarProps as H, DetailProfileShell as I, type DetailProfileShellProps as J, DocsPageShell as K, type DocsPageShellProps as L, EditorialCard as M, type EditorialCardProps as N, EditorialHero as O, type EditorialHeroAction as P, type EditorialHeroMetaItem as Q, type EditorialHeroProps as R, EmptyState as S, type EmptyStateProps as T, EvidencePanel as U, type EvidencePanelProps as V, type EvidencePanelState as W, FeatureBand as X, type FeatureBandItem as Y, type FeatureBandProps as Z, FilterDrawer as _, type AccentPanelProps as a, type PublicFlowStageStatus as a$, type FilterDrawerProps as a0, type FoodCardAvailabilityState as a1, type FoodCardMarker as a2, type FoodCardMediaRatio as a3, type FoodCardMetadata as a4, type FoodMenuCategory as a5, type FoodMenuItem as a6, FoodMenuSection as a7, type FoodMenuSectionProps as a8, FormField as a9, type PeriodSelectorProps as aA, PlaceholderPanel as aB, type PlaceholderPanelProps as aC, PlaybackSurface as aD, type PlaybackSurfaceProps as aE, type PlaybackSurfaceState as aF, ProductCard as aG, type ProductCardAction as aH, type ProductCardMetaItem as aI, type ProductCardProps as aJ, ProgressCard as aK, type ProgressCardProps as aL, type ProviderIdentity as aM, ProviderIdentityButton as aN, ProviderIdentityButtonGroup as aO, type ProviderIdentityButtonGroupProps as aP, type ProviderIdentityButtonProps as aQ, type ProviderIdentityVariant as aR, PublicBrandFooter as aS, type PublicBrandFooterClassNames as aT, type PublicBrandFooterLayoutVariant as aU, type PublicBrandFooterProps as aV, type PublicFlowAction as aW, type PublicFlowActionPriority as aX, PublicFlowShell as aY, type PublicFlowShellProps as aZ, type PublicFlowStage as a_, type FormFieldProps as aa, GdsIcons as ab, type GdsLocale as ac, GdsVocabulary as ad, type GdsVocabularyPack as ae, ListingCard as af, type ListingCardAffordance as ag, type ListingCardMediaRatio as ah, type ListingCardProps as ai, type ListingMetadataRow as aj, MapPanel as ak, type MapPanelProps as al, MediaCard as am, type MediaCardAction as an, type MediaCardProps as ao, MediaField as ap, type MediaFieldProps as aq, type MediaFieldState as ar, MetricCard as as, type MetricCardProps as at, PROVIDER_IDENTITY_REGISTRY as au, PageHeader as av, type PageHeaderEyebrowVariant as aw, type PageHeaderProps as ax, PeriodSelector as ay, type PeriodSelectorOption as az, type AccentPanelVariant as b, getSemanticActionConfig as b$, PublicFoodCard as b0, type PublicFoodCardProps as b1, PublicNav as b2, type PublicNavItem as b3, type PublicNavProps as b4, PublicProductCard as b5, type PublicProductCardHelperKind as b6, type PublicProductCardMetaItem as b7, type PublicProductCardProps as b8, type PublicProductCardState as b9, SocialAuthButtons as bA, type SocialAuthButtonsProps as bB, type SocialAuthProviderId as bC, type SocialAuthProviderOption as bD, StateBlock as bE, type StateBlockProps as bF, type StateBlockVariant as bG, StatsSection as bH, type StatsSectionProps as bI, StatusBadge as bJ, type StatusBadgeProps as bK, type StatusVariant as bL, type SurfaceContentAlign as bM, type SurfaceContentJustify as bN, type SurfacePresentation as bO, type SurfacePresentationProps as bP, type VocabularyResolver as bQ, ar as bR, createGdsVocabularyPack as bS, de as bT, en as bU, es as bV, fr as bW, gdsLocales as bX, getGdsMessages as bY, getProviderIdentityLabel as bZ, getProviderIdentityPolicy as b_, PublicShell as ba, type PublicShellClassNames as bb, type PublicShellHeaderVariant as bc, type PublicShellMobileNavigationMode as bd, type PublicShellProps as be, PublicSiteFooter as bf, type PublicSiteFooterProps as bg, ReferenceLinkGrid as bh, type ReferenceLinkGridItem as bi, type ReferenceLinkGridProps as bj, ReferenceLocaleNotice as bk, type ReferenceLocaleNoticeProps as bl, ReferenceSection as bm, type ReferenceSectionProps as bn, ReportingSection as bo, type ReportingSectionProps as bp, type ReportingSectionState as bq, SectionPanel as br, type SectionPanelProps as bs, type SectionPanelTone as bt, type SemanticAction as bu, type SemanticActionDefinition as bv, type SemanticActionId as bw, SimpleDataTable as bx, type SimpleDataTableProps as by, type SimpleTableColumn as bz, type AccentTone as c, getSemanticActionLabel as c0, getSupportedProviderIdentityIds as c1, he as c2, hu as c3, isPresentationMode as c4, it as c5, mergeGdsVocabularyPacks as c6, resolveAccentPanelStyles as c7, resolveSemanticActionConfig as c8, resolveSurfacePresentationStyles as c9, ru as ca, AccessSummary as d, type AccessSummaryProps as e, ActionBar as f, type ActionBarAction as g, type ActionBarIconAction as h, type ActionBarProps as i, ArticleShell as j, type ArticleShellProps as k, AuthShell as l, type AuthShellProps as m, BrowseSurface as n, type BrowseSurfaceFilterChip as o, type BrowseSurfaceProps as p, type BrowseSurfaceScopeOption as q, ChartTokenPanel as r, type ChartTokenPanelProps as s, type ChartTokenPanelState as t, ChoiceChip as u, type ChoiceChipProps as v, ConsumerDashboardGrid as w, type ConsumerDashboardGridProps as x, ConsumerSection as y, type ConsumerSectionProps as z };
package/dist/server.d.mts CHANGED
@@ -1,4 +1,4 @@
1
- export { A as AccentPanel, a as AccentPanelProps, b as AccentPanelVariant, c as AccentTone, d as AccessSummary, e as AccessSummaryProps, j as ArticleShell, k as ArticleShellProps, l as AuthShell, m as AuthShellProps, B as BreadcrumbItem, n as BrowseSurface, o as BrowseSurfaceFilterChip, p as BrowseSurfaceProps, q as BrowseSurfaceScopeOption, C as ChoiceChip, r as ChoiceChipProps, s as ConsumerDashboardGrid, t as ConsumerDashboardGridProps, u as ConsumerSection, v as ConsumerSectionProps, w as CtaButtonGroup, x as CtaButtonGroupProps, D as DataToolbar, y as DataToolbarFilterChip, z as DataToolbarProps, E as DetailProfileShell, F as DetailProfileShellProps, G as DocsPageShell, H as DocsPageShellProps, I as EditorialCard, J as EditorialCardProps, K as EditorialHero, L as EditorialHeroAction, M as EditorialHeroMetaItem, N as EditorialHeroProps, O as EmptyState, P as EmptyStateProps, Q as FeatureBand, R as FeatureBandItem, S as FeatureBandProps, T as FilterDrawer, U as FilterDrawerMode, V as FilterDrawerProps, W as FoodCardAvailabilityState, X as FoodCardMarker, Y as FoodCardMediaRatio, Z as FoodCardMetadata, _ as FoodMenuCategory, $ as FoodMenuItem, a0 as FoodMenuSection, a1 as FoodMenuSectionProps, a2 as FormField, a3 as FormFieldProps, a4 as GdsIcons, a5 as GdsLocale, a6 as GdsVocabulary, a7 as GdsVocabularyPack, a8 as ListingCard, a9 as ListingCardAffordance, aa as ListingCardMediaRatio, ab as ListingCardProps, ac as ListingMetadataRow, ad as MapPanel, ae as MapPanelProps, af as MediaCard, ag as MediaCardAction, ah as MediaCardProps, ai as MediaField, aj as MediaFieldProps, ak as MetricCard, al as MetricCardProps, am as PROVIDER_IDENTITY_REGISTRY, an as PageHeader, ao as PageHeaderEyebrowVariant, ap as PageHeaderProps, aq as PlaceholderPanel, ar as PlaceholderPanelProps, as as PlaybackSurface, at as PlaybackSurfaceProps, au as PlaybackSurfaceState, av as ProductCard, aw as ProductCardAction, ax as ProductCardMetaItem, ay as ProductCardProps, az as ProgressCard, aA as ProgressCardProps, aB as ProviderIdentity, aC as ProviderIdentityButton, aD as ProviderIdentityButtonGroup, aE as ProviderIdentityButtonGroupProps, aF as ProviderIdentityButtonProps, aG as ProviderIdentityVariant, aH as PublicBrandFooter, aI as PublicBrandFooterClassNames, aJ as PublicBrandFooterLayoutVariant, aK as PublicBrandFooterProps, aL as PublicFlowAction, aM as PublicFlowActionPriority, aN as PublicFlowShell, aO as PublicFlowShellProps, aP as PublicFlowStage, aQ as PublicFlowStageStatus, aR as PublicFoodCard, aS as PublicFoodCardProps, aT as PublicNav, aU as PublicNavItem, aV as PublicNavProps, aW as PublicProductCard, aX as PublicProductCardHelperKind, aY as PublicProductCardMetaItem, aZ as PublicProductCardProps, a_ as PublicProductCardState, a$ as PublicShell, b0 as PublicShellClassNames, b1 as PublicShellHeaderVariant, b2 as PublicShellMobileNavigationMode, b3 as PublicShellProps, b4 as PublicSiteFooter, b5 as PublicSiteFooterProps, b6 as ReferenceLinkGrid, b7 as ReferenceLinkGridItem, b8 as ReferenceLinkGridProps, b9 as ReferenceLocaleNotice, ba as ReferenceLocaleNoticeProps, bb as ReferenceSection, bc as ReferenceSectionProps, bd as SectionPanel, be as SectionPanelProps, bf as SectionPanelTone, bg as SemanticAction, bh as SemanticActionDefinition, bi as SemanticActionId, bj as SimpleDataTable, bk as SimpleDataTableProps, bl as SimpleTableColumn, bm as SocialAuthButtons, bn as SocialAuthButtonsProps, bo as SocialAuthProviderId, bp as SocialAuthProviderOption, bq as StateBlock, br as StateBlockProps, bs as StateBlockVariant, bt as StatsSection, bu as StatsSectionProps, bv as StatusBadge, bw as StatusBadgeProps, bx as StatusVariant, by as SurfaceContentAlign, bz as SurfaceContentJustify, bA as SurfacePresentation, bB as SurfacePresentationProps, bC as VocabularyResolver, bD as ar, bE as createGdsVocabularyPack, bF as de, bG as en, bH as es, bI as fr, bJ as gdsLocales, bK as getGdsMessages, bL as getProviderIdentityLabel, bM as getSemanticActionConfig, bN as getSemanticActionLabel, bO as he, bP as hu, bQ as isPresentationMode, bR as it, bS as mergeGdsVocabularyPacks, bT as resolveAccentPanelStyles, bU as resolveSemanticActionConfig, bV as resolveSurfacePresentationStyles, bW as ru } from './server-BSuY9Qx6.mjs';
1
+ export { A as AccentPanel, a as AccentPanelProps, b as AccentPanelVariant, c as AccentTone, d as AccessSummary, e as AccessSummaryProps, j as ArticleShell, k as ArticleShellProps, l as AuthShell, m as AuthShellProps, B as BreadcrumbItem, n as BrowseSurface, o as BrowseSurfaceFilterChip, p as BrowseSurfaceProps, q as BrowseSurfaceScopeOption, C as ChartLegendItem, r as ChartTokenPanel, s as ChartTokenPanelProps, t as ChartTokenPanelState, u as ChoiceChip, v as ChoiceChipProps, w as ConsumerDashboardGrid, x as ConsumerDashboardGridProps, y as ConsumerSection, z as ConsumerSectionProps, D as CtaButtonGroup, E as CtaButtonGroupProps, F as DataToolbar, G as DataToolbarFilterChip, H as DataToolbarProps, I as DetailProfileShell, J as DetailProfileShellProps, K as DocsPageShell, L as DocsPageShellProps, M as EditorialCard, N as EditorialCardProps, O as EditorialHero, P as EditorialHeroAction, Q as EditorialHeroMetaItem, R as EditorialHeroProps, S as EmptyState, T as EmptyStateProps, U as EvidencePanel, V as EvidencePanelProps, W as EvidencePanelState, X as FeatureBand, Y as FeatureBandItem, Z as FeatureBandProps, _ as FilterDrawer, $ as FilterDrawerMode, a0 as FilterDrawerProps, a1 as FoodCardAvailabilityState, a2 as FoodCardMarker, a3 as FoodCardMediaRatio, a4 as FoodCardMetadata, a5 as FoodMenuCategory, a6 as FoodMenuItem, a7 as FoodMenuSection, a8 as FoodMenuSectionProps, a9 as FormField, aa as FormFieldProps, ab as GdsIcons, ac as GdsLocale, ad as GdsVocabulary, ae as GdsVocabularyPack, af as ListingCard, ag as ListingCardAffordance, ah as ListingCardMediaRatio, ai as ListingCardProps, aj as ListingMetadataRow, ak as MapPanel, al as MapPanelProps, am as MediaCard, an as MediaCardAction, ao as MediaCardProps, ap as MediaField, aq as MediaFieldProps, ar as MediaFieldState, as as MetricCard, at as MetricCardProps, au as PROVIDER_IDENTITY_REGISTRY, av as PageHeader, aw as PageHeaderEyebrowVariant, ax as PageHeaderProps, ay as PeriodSelector, az as PeriodSelectorOption, aA as PeriodSelectorProps, aB as PlaceholderPanel, aC as PlaceholderPanelProps, aD as PlaybackSurface, aE as PlaybackSurfaceProps, aF as PlaybackSurfaceState, aG as ProductCard, aH as ProductCardAction, aI as ProductCardMetaItem, aJ as ProductCardProps, aK as ProgressCard, aL as ProgressCardProps, aM as ProviderIdentity, aN as ProviderIdentityButton, aO as ProviderIdentityButtonGroup, aP as ProviderIdentityButtonGroupProps, aQ as ProviderIdentityButtonProps, aR as ProviderIdentityVariant, aS as PublicBrandFooter, aT as PublicBrandFooterClassNames, aU as PublicBrandFooterLayoutVariant, aV as PublicBrandFooterProps, aW as PublicFlowAction, aX as PublicFlowActionPriority, aY as PublicFlowShell, aZ as PublicFlowShellProps, a_ as PublicFlowStage, a$ as PublicFlowStageStatus, b0 as PublicFoodCard, b1 as PublicFoodCardProps, b2 as PublicNav, b3 as PublicNavItem, b4 as PublicNavProps, b5 as PublicProductCard, b6 as PublicProductCardHelperKind, b7 as PublicProductCardMetaItem, b8 as PublicProductCardProps, b9 as PublicProductCardState, ba as PublicShell, bb as PublicShellClassNames, bc as PublicShellHeaderVariant, bd as PublicShellMobileNavigationMode, be as PublicShellProps, bf as PublicSiteFooter, bg as PublicSiteFooterProps, bh as ReferenceLinkGrid, bi as ReferenceLinkGridItem, bj as ReferenceLinkGridProps, bk as ReferenceLocaleNotice, bl as ReferenceLocaleNoticeProps, bm as ReferenceSection, bn as ReferenceSectionProps, bo as ReportingSection, bp as ReportingSectionProps, bq as ReportingSectionState, br as SectionPanel, bs as SectionPanelProps, bt as SectionPanelTone, bu as SemanticAction, bv as SemanticActionDefinition, bw as SemanticActionId, bx as SimpleDataTable, by as SimpleDataTableProps, bz as SimpleTableColumn, bA as SocialAuthButtons, bB as SocialAuthButtonsProps, bC as SocialAuthProviderId, bD as SocialAuthProviderOption, bE as StateBlock, bF as StateBlockProps, bG as StateBlockVariant, bH as StatsSection, bI as StatsSectionProps, bJ as StatusBadge, bK as StatusBadgeProps, bL as StatusVariant, bM as SurfaceContentAlign, bN as SurfaceContentJustify, bO as SurfacePresentation, bP as SurfacePresentationProps, bQ as VocabularyResolver, bR as ar, bS as createGdsVocabularyPack, bT as de, bU as en, bV as es, bW as fr, bX as gdsLocales, bY as getGdsMessages, bZ as getProviderIdentityLabel, b_ as getProviderIdentityPolicy, b$ as getSemanticActionConfig, c0 as getSemanticActionLabel, c1 as getSupportedProviderIdentityIds, c2 as he, c3 as hu, c4 as isPresentationMode, c5 as it, c6 as mergeGdsVocabularyPacks, c7 as resolveAccentPanelStyles, c8 as resolveSemanticActionConfig, c9 as resolveSurfacePresentationStyles, ca as ru } from './server-woziKWie.mjs';
2
2
  import 'react';
3
3
  import '@tabler/icons-react';
4
4
  import 'react/jsx-runtime';
package/dist/server.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { A as AccentPanel, a as AccentPanelProps, b as AccentPanelVariant, c as AccentTone, d as AccessSummary, e as AccessSummaryProps, j as ArticleShell, k as ArticleShellProps, l as AuthShell, m as AuthShellProps, B as BreadcrumbItem, n as BrowseSurface, o as BrowseSurfaceFilterChip, p as BrowseSurfaceProps, q as BrowseSurfaceScopeOption, C as ChoiceChip, r as ChoiceChipProps, s as ConsumerDashboardGrid, t as ConsumerDashboardGridProps, u as ConsumerSection, v as ConsumerSectionProps, w as CtaButtonGroup, x as CtaButtonGroupProps, D as DataToolbar, y as DataToolbarFilterChip, z as DataToolbarProps, E as DetailProfileShell, F as DetailProfileShellProps, G as DocsPageShell, H as DocsPageShellProps, I as EditorialCard, J as EditorialCardProps, K as EditorialHero, L as EditorialHeroAction, M as EditorialHeroMetaItem, N as EditorialHeroProps, O as EmptyState, P as EmptyStateProps, Q as FeatureBand, R as FeatureBandItem, S as FeatureBandProps, T as FilterDrawer, U as FilterDrawerMode, V as FilterDrawerProps, W as FoodCardAvailabilityState, X as FoodCardMarker, Y as FoodCardMediaRatio, Z as FoodCardMetadata, _ as FoodMenuCategory, $ as FoodMenuItem, a0 as FoodMenuSection, a1 as FoodMenuSectionProps, a2 as FormField, a3 as FormFieldProps, a4 as GdsIcons, a5 as GdsLocale, a6 as GdsVocabulary, a7 as GdsVocabularyPack, a8 as ListingCard, a9 as ListingCardAffordance, aa as ListingCardMediaRatio, ab as ListingCardProps, ac as ListingMetadataRow, ad as MapPanel, ae as MapPanelProps, af as MediaCard, ag as MediaCardAction, ah as MediaCardProps, ai as MediaField, aj as MediaFieldProps, ak as MetricCard, al as MetricCardProps, am as PROVIDER_IDENTITY_REGISTRY, an as PageHeader, ao as PageHeaderEyebrowVariant, ap as PageHeaderProps, aq as PlaceholderPanel, ar as PlaceholderPanelProps, as as PlaybackSurface, at as PlaybackSurfaceProps, au as PlaybackSurfaceState, av as ProductCard, aw as ProductCardAction, ax as ProductCardMetaItem, ay as ProductCardProps, az as ProgressCard, aA as ProgressCardProps, aB as ProviderIdentity, aC as ProviderIdentityButton, aD as ProviderIdentityButtonGroup, aE as ProviderIdentityButtonGroupProps, aF as ProviderIdentityButtonProps, aG as ProviderIdentityVariant, aH as PublicBrandFooter, aI as PublicBrandFooterClassNames, aJ as PublicBrandFooterLayoutVariant, aK as PublicBrandFooterProps, aL as PublicFlowAction, aM as PublicFlowActionPriority, aN as PublicFlowShell, aO as PublicFlowShellProps, aP as PublicFlowStage, aQ as PublicFlowStageStatus, aR as PublicFoodCard, aS as PublicFoodCardProps, aT as PublicNav, aU as PublicNavItem, aV as PublicNavProps, aW as PublicProductCard, aX as PublicProductCardHelperKind, aY as PublicProductCardMetaItem, aZ as PublicProductCardProps, a_ as PublicProductCardState, a$ as PublicShell, b0 as PublicShellClassNames, b1 as PublicShellHeaderVariant, b2 as PublicShellMobileNavigationMode, b3 as PublicShellProps, b4 as PublicSiteFooter, b5 as PublicSiteFooterProps, b6 as ReferenceLinkGrid, b7 as ReferenceLinkGridItem, b8 as ReferenceLinkGridProps, b9 as ReferenceLocaleNotice, ba as ReferenceLocaleNoticeProps, bb as ReferenceSection, bc as ReferenceSectionProps, bd as SectionPanel, be as SectionPanelProps, bf as SectionPanelTone, bg as SemanticAction, bh as SemanticActionDefinition, bi as SemanticActionId, bj as SimpleDataTable, bk as SimpleDataTableProps, bl as SimpleTableColumn, bm as SocialAuthButtons, bn as SocialAuthButtonsProps, bo as SocialAuthProviderId, bp as SocialAuthProviderOption, bq as StateBlock, br as StateBlockProps, bs as StateBlockVariant, bt as StatsSection, bu as StatsSectionProps, bv as StatusBadge, bw as StatusBadgeProps, bx as StatusVariant, by as SurfaceContentAlign, bz as SurfaceContentJustify, bA as SurfacePresentation, bB as SurfacePresentationProps, bC as VocabularyResolver, bD as ar, bE as createGdsVocabularyPack, bF as de, bG as en, bH as es, bI as fr, bJ as gdsLocales, bK as getGdsMessages, bL as getProviderIdentityLabel, bM as getSemanticActionConfig, bN as getSemanticActionLabel, bO as he, bP as hu, bQ as isPresentationMode, bR as it, bS as mergeGdsVocabularyPacks, bT as resolveAccentPanelStyles, bU as resolveSemanticActionConfig, bV as resolveSurfacePresentationStyles, bW as ru } from './server-BSuY9Qx6.js';
1
+ export { A as AccentPanel, a as AccentPanelProps, b as AccentPanelVariant, c as AccentTone, d as AccessSummary, e as AccessSummaryProps, j as ArticleShell, k as ArticleShellProps, l as AuthShell, m as AuthShellProps, B as BreadcrumbItem, n as BrowseSurface, o as BrowseSurfaceFilterChip, p as BrowseSurfaceProps, q as BrowseSurfaceScopeOption, C as ChartLegendItem, r as ChartTokenPanel, s as ChartTokenPanelProps, t as ChartTokenPanelState, u as ChoiceChip, v as ChoiceChipProps, w as ConsumerDashboardGrid, x as ConsumerDashboardGridProps, y as ConsumerSection, z as ConsumerSectionProps, D as CtaButtonGroup, E as CtaButtonGroupProps, F as DataToolbar, G as DataToolbarFilterChip, H as DataToolbarProps, I as DetailProfileShell, J as DetailProfileShellProps, K as DocsPageShell, L as DocsPageShellProps, M as EditorialCard, N as EditorialCardProps, O as EditorialHero, P as EditorialHeroAction, Q as EditorialHeroMetaItem, R as EditorialHeroProps, S as EmptyState, T as EmptyStateProps, U as EvidencePanel, V as EvidencePanelProps, W as EvidencePanelState, X as FeatureBand, Y as FeatureBandItem, Z as FeatureBandProps, _ as FilterDrawer, $ as FilterDrawerMode, a0 as FilterDrawerProps, a1 as FoodCardAvailabilityState, a2 as FoodCardMarker, a3 as FoodCardMediaRatio, a4 as FoodCardMetadata, a5 as FoodMenuCategory, a6 as FoodMenuItem, a7 as FoodMenuSection, a8 as FoodMenuSectionProps, a9 as FormField, aa as FormFieldProps, ab as GdsIcons, ac as GdsLocale, ad as GdsVocabulary, ae as GdsVocabularyPack, af as ListingCard, ag as ListingCardAffordance, ah as ListingCardMediaRatio, ai as ListingCardProps, aj as ListingMetadataRow, ak as MapPanel, al as MapPanelProps, am as MediaCard, an as MediaCardAction, ao as MediaCardProps, ap as MediaField, aq as MediaFieldProps, ar as MediaFieldState, as as MetricCard, at as MetricCardProps, au as PROVIDER_IDENTITY_REGISTRY, av as PageHeader, aw as PageHeaderEyebrowVariant, ax as PageHeaderProps, ay as PeriodSelector, az as PeriodSelectorOption, aA as PeriodSelectorProps, aB as PlaceholderPanel, aC as PlaceholderPanelProps, aD as PlaybackSurface, aE as PlaybackSurfaceProps, aF as PlaybackSurfaceState, aG as ProductCard, aH as ProductCardAction, aI as ProductCardMetaItem, aJ as ProductCardProps, aK as ProgressCard, aL as ProgressCardProps, aM as ProviderIdentity, aN as ProviderIdentityButton, aO as ProviderIdentityButtonGroup, aP as ProviderIdentityButtonGroupProps, aQ as ProviderIdentityButtonProps, aR as ProviderIdentityVariant, aS as PublicBrandFooter, aT as PublicBrandFooterClassNames, aU as PublicBrandFooterLayoutVariant, aV as PublicBrandFooterProps, aW as PublicFlowAction, aX as PublicFlowActionPriority, aY as PublicFlowShell, aZ as PublicFlowShellProps, a_ as PublicFlowStage, a$ as PublicFlowStageStatus, b0 as PublicFoodCard, b1 as PublicFoodCardProps, b2 as PublicNav, b3 as PublicNavItem, b4 as PublicNavProps, b5 as PublicProductCard, b6 as PublicProductCardHelperKind, b7 as PublicProductCardMetaItem, b8 as PublicProductCardProps, b9 as PublicProductCardState, ba as PublicShell, bb as PublicShellClassNames, bc as PublicShellHeaderVariant, bd as PublicShellMobileNavigationMode, be as PublicShellProps, bf as PublicSiteFooter, bg as PublicSiteFooterProps, bh as ReferenceLinkGrid, bi as ReferenceLinkGridItem, bj as ReferenceLinkGridProps, bk as ReferenceLocaleNotice, bl as ReferenceLocaleNoticeProps, bm as ReferenceSection, bn as ReferenceSectionProps, bo as ReportingSection, bp as ReportingSectionProps, bq as ReportingSectionState, br as SectionPanel, bs as SectionPanelProps, bt as SectionPanelTone, bu as SemanticAction, bv as SemanticActionDefinition, bw as SemanticActionId, bx as SimpleDataTable, by as SimpleDataTableProps, bz as SimpleTableColumn, bA as SocialAuthButtons, bB as SocialAuthButtonsProps, bC as SocialAuthProviderId, bD as SocialAuthProviderOption, bE as StateBlock, bF as StateBlockProps, bG as StateBlockVariant, bH as StatsSection, bI as StatsSectionProps, bJ as StatusBadge, bK as StatusBadgeProps, bL as StatusVariant, bM as SurfaceContentAlign, bN as SurfaceContentJustify, bO as SurfacePresentation, bP as SurfacePresentationProps, bQ as VocabularyResolver, bR as ar, bS as createGdsVocabularyPack, bT as de, bU as en, bV as es, bW as fr, bX as gdsLocales, bY as getGdsMessages, bZ as getProviderIdentityLabel, b_ as getProviderIdentityPolicy, b$ as getSemanticActionConfig, c0 as getSemanticActionLabel, c1 as getSupportedProviderIdentityIds, c2 as he, c3 as hu, c4 as isPresentationMode, c5 as it, c6 as mergeGdsVocabularyPacks, c7 as resolveAccentPanelStyles, c8 as resolveSemanticActionConfig, c9 as resolveSurfacePresentationStyles, ca as ru } from './server-woziKWie.js';
2
2
  import 'react';
3
3
  import '@tabler/icons-react';
4
4
  import 'react/jsx-runtime';