@doneisbetter/gds-core 2.6.4 → 2.6.5
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/{chunk-BAS4ZGKL.mjs → chunk-6LOTZ3IZ.mjs} +870 -807
- package/dist/chunk-BU3CRWRC.mjs +905 -0
- package/dist/client.d.mts +7 -3
- package/dist/client.d.ts +7 -3
- package/dist/client.js +1291 -926
- package/dist/client.mjs +10 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1291 -926
- package/dist/index.mjs +10 -2
- package/dist/{server-BqFksoV3.d.mts → server-CF4gCYQ-.d.mts} +45 -13
- package/dist/{server-BqFksoV3.d.ts → server-CF4gCYQ-.d.ts} +45 -13
- package/dist/server.d.mts +1 -1
- package/dist/server.d.ts +1 -1
- package/dist/server.js +679 -611
- package/dist/server.mjs +7 -1
- package/package.json +2 -2
- package/dist/chunk-EN3TN22M.mjs +0 -585
package/dist/index.mjs
CHANGED
|
@@ -4,6 +4,7 @@ import {
|
|
|
4
4
|
DiscoveryShell,
|
|
5
5
|
DocsCodeBlock,
|
|
6
6
|
GameBoardTile,
|
|
7
|
+
ReferenceThemeExplorer,
|
|
7
8
|
SemanticButton,
|
|
8
9
|
ShareButtonGroup,
|
|
9
10
|
SidebarNav,
|
|
@@ -11,7 +12,7 @@ import {
|
|
|
11
12
|
SidebarNavSection,
|
|
12
13
|
ThemeToggle,
|
|
13
14
|
UploadDropzone
|
|
14
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-BU3CRWRC.mjs";
|
|
15
16
|
import {
|
|
16
17
|
AccentPanel,
|
|
17
18
|
AccessSummary,
|
|
@@ -52,6 +53,9 @@ import {
|
|
|
52
53
|
PublicProductCard,
|
|
53
54
|
PublicShell,
|
|
54
55
|
PublicSiteFooter,
|
|
56
|
+
ReferenceLinkGrid,
|
|
57
|
+
ReferenceLocaleNotice,
|
|
58
|
+
ReferenceSection,
|
|
55
59
|
SectionPanel,
|
|
56
60
|
SimpleDataTable,
|
|
57
61
|
SocialAuthButtons,
|
|
@@ -75,7 +79,7 @@ import {
|
|
|
75
79
|
resolveAccentPanelStyles,
|
|
76
80
|
resolveSemanticActionConfig,
|
|
77
81
|
ru
|
|
78
|
-
} from "./chunk-
|
|
82
|
+
} from "./chunk-6LOTZ3IZ.mjs";
|
|
79
83
|
export {
|
|
80
84
|
AccentPanel,
|
|
81
85
|
AccessRecoveryPanel,
|
|
@@ -121,6 +125,10 @@ export {
|
|
|
121
125
|
PublicProductCard,
|
|
122
126
|
PublicShell,
|
|
123
127
|
PublicSiteFooter,
|
|
128
|
+
ReferenceLinkGrid,
|
|
129
|
+
ReferenceLocaleNotice,
|
|
130
|
+
ReferenceSection,
|
|
131
|
+
ReferenceThemeExplorer,
|
|
124
132
|
SectionPanel,
|
|
125
133
|
SemanticButton,
|
|
126
134
|
ShareButtonGroup,
|
|
@@ -1015,6 +1015,50 @@ declare const GdsIcons: {
|
|
|
1015
1015
|
Sun: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
1016
1016
|
};
|
|
1017
1017
|
|
|
1018
|
+
interface ReferenceLocaleNoticeProps {
|
|
1019
|
+
localeLabel: string;
|
|
1020
|
+
detail: string;
|
|
1021
|
+
}
|
|
1022
|
+
declare function ReferenceLocaleNotice({ localeLabel, detail }: ReferenceLocaleNoticeProps): react_jsx_runtime.JSX.Element;
|
|
1023
|
+
|
|
1024
|
+
interface ReferenceLinkGridItem {
|
|
1025
|
+
id: string;
|
|
1026
|
+
title: ReactNode;
|
|
1027
|
+
description: ReactNode;
|
|
1028
|
+
href: string;
|
|
1029
|
+
badge?: ReactNode;
|
|
1030
|
+
meta?: ReactNode;
|
|
1031
|
+
}
|
|
1032
|
+
interface ReferenceLinkGridProps {
|
|
1033
|
+
items: ReferenceLinkGridItem[];
|
|
1034
|
+
columns?: 2 | 3 | 4;
|
|
1035
|
+
}
|
|
1036
|
+
declare function ReferenceLinkGrid({ items, columns, }: ReferenceLinkGridProps): react_jsx_runtime.JSX.Element;
|
|
1037
|
+
|
|
1038
|
+
type SectionPanelTone = 'default' | 'supporting' | 'warning' | 'critical';
|
|
1039
|
+
interface SectionPanelProps {
|
|
1040
|
+
title?: ReactNode;
|
|
1041
|
+
description?: ReactNode;
|
|
1042
|
+
action?: ReactNode;
|
|
1043
|
+
children: ReactNode;
|
|
1044
|
+
tone?: SectionPanelTone;
|
|
1045
|
+
id?: string;
|
|
1046
|
+
divided?: boolean;
|
|
1047
|
+
}
|
|
1048
|
+
declare function SectionPanel({ title, description, action, children, tone, id, divided, }: SectionPanelProps): react_jsx_runtime.JSX.Element;
|
|
1049
|
+
|
|
1050
|
+
interface ReferenceSectionProps {
|
|
1051
|
+
title: ReactNode;
|
|
1052
|
+
description?: ReactNode;
|
|
1053
|
+
eyebrow?: ReactNode;
|
|
1054
|
+
action?: ReactNode;
|
|
1055
|
+
href?: string;
|
|
1056
|
+
linkLabel?: ReactNode;
|
|
1057
|
+
tone?: SectionPanelTone;
|
|
1058
|
+
children: ReactNode;
|
|
1059
|
+
}
|
|
1060
|
+
declare function ReferenceSection({ title, description, eyebrow, action, href, linkLabel, tone, children, }: ReferenceSectionProps): react_jsx_runtime.JSX.Element;
|
|
1061
|
+
|
|
1018
1062
|
interface ChoiceChipProps extends Omit<BadgeProps, 'children' | 'variant'> {
|
|
1019
1063
|
label: ReactNode;
|
|
1020
1064
|
active?: boolean;
|
|
@@ -1323,18 +1367,6 @@ declare function resolveAccentPanelStyles(tone?: AccentTone, variant?: AccentPan
|
|
|
1323
1367
|
};
|
|
1324
1368
|
declare function AccentPanel({ tone, variant, title, badge, children, }: AccentPanelProps): react_jsx_runtime.JSX.Element;
|
|
1325
1369
|
|
|
1326
|
-
type SectionPanelTone = 'default' | 'supporting' | 'warning' | 'critical';
|
|
1327
|
-
interface SectionPanelProps {
|
|
1328
|
-
title?: ReactNode;
|
|
1329
|
-
description?: ReactNode;
|
|
1330
|
-
action?: ReactNode;
|
|
1331
|
-
children: ReactNode;
|
|
1332
|
-
tone?: SectionPanelTone;
|
|
1333
|
-
id?: string;
|
|
1334
|
-
divided?: boolean;
|
|
1335
|
-
}
|
|
1336
|
-
declare function SectionPanel({ title, description, action, children, tone, id, divided, }: SectionPanelProps): react_jsx_runtime.JSX.Element;
|
|
1337
|
-
|
|
1338
1370
|
interface DetailProfileShellProps {
|
|
1339
1371
|
mode?: 'page' | 'drawer';
|
|
1340
1372
|
hero?: ReactNode;
|
|
@@ -5537,4 +5569,4 @@ declare function getGdsMessages(locale: GdsLocale | string): {
|
|
|
5537
5569
|
'gds.state.emptyData': string;
|
|
5538
5570
|
};
|
|
5539
5571
|
|
|
5540
|
-
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,
|
|
5572
|
+
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, ReferenceLinkGrid 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, PublicBrandFooter as aA, type PublicBrandFooterClassNames as aB, type PublicBrandFooterLayoutVariant as aC, type PublicBrandFooterProps as aD, type PublicFlowAction as aE, type PublicFlowActionPriority as aF, PublicFlowShell as aG, type PublicFlowShellProps as aH, type PublicFlowStage as aI, type PublicFlowStageStatus as aJ, PublicFoodCard as aK, type PublicFoodCardProps as aL, PublicNav as aM, type PublicNavItem as aN, type PublicNavProps as aO, PublicProductCard as aP, type PublicProductCardHelperKind as aQ, type PublicProductCardMetaItem as aR, type PublicProductCardProps as aS, type PublicProductCardState as aT, PublicShell as aU, type PublicShellClassNames as aV, type PublicShellHeaderVariant as aW, type PublicShellMobileNavigationMode as aX, type PublicShellProps as aY, PublicSiteFooter as aZ, type PublicSiteFooterProps 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, PageHeader as am, type PageHeaderEyebrowVariant as an, type PageHeaderProps as ao, PlaceholderPanel as ap, type PlaceholderPanelProps as aq, PlaybackSurface as ar, type PlaybackSurfaceProps as as, type PlaybackSurfaceState as at, ProductCard as au, type ProductCardAction as av, type ProductCardMetaItem as aw, type ProductCardProps as ax, ProgressCard as ay, type ProgressCardProps as az, type AccentPanelVariant as b, type ReferenceLinkGridItem as b0, type ReferenceLinkGridProps as b1, ReferenceLocaleNotice as b2, type ReferenceLocaleNoticeProps as b3, ReferenceSection as b4, type ReferenceSectionProps as b5, SectionPanel as b6, type SectionPanelProps as b7, type SectionPanelTone as b8, type SemanticAction as b9, getSemanticActionConfig as bA, getSemanticActionLabel as bB, he as bC, hu as bD, it as bE, mergeGdsVocabularyPacks as bF, resolveAccentPanelStyles as bG, resolveSemanticActionConfig as bH, ru as bI, type SemanticActionDefinition as ba, type SemanticActionId as bb, SimpleDataTable as bc, type SimpleDataTableProps as bd, type SimpleTableColumn as be, SocialAuthButtons as bf, type SocialAuthButtonsProps as bg, type SocialAuthProviderId as bh, type SocialAuthProviderOption as bi, StateBlock as bj, type StateBlockProps as bk, type StateBlockVariant as bl, StatsSection as bm, type StatsSectionProps as bn, StatusBadge as bo, type StatusBadgeProps as bp, type StatusVariant as bq, type VocabularyResolver as br, ar as bs, createGdsVocabularyPack as bt, de as bu, en as bv, es as bw, fr as bx, gdsLocales as by, getGdsMessages 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 };
|
|
@@ -1015,6 +1015,50 @@ declare const GdsIcons: {
|
|
|
1015
1015
|
Sun: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
1016
1016
|
};
|
|
1017
1017
|
|
|
1018
|
+
interface ReferenceLocaleNoticeProps {
|
|
1019
|
+
localeLabel: string;
|
|
1020
|
+
detail: string;
|
|
1021
|
+
}
|
|
1022
|
+
declare function ReferenceLocaleNotice({ localeLabel, detail }: ReferenceLocaleNoticeProps): react_jsx_runtime.JSX.Element;
|
|
1023
|
+
|
|
1024
|
+
interface ReferenceLinkGridItem {
|
|
1025
|
+
id: string;
|
|
1026
|
+
title: ReactNode;
|
|
1027
|
+
description: ReactNode;
|
|
1028
|
+
href: string;
|
|
1029
|
+
badge?: ReactNode;
|
|
1030
|
+
meta?: ReactNode;
|
|
1031
|
+
}
|
|
1032
|
+
interface ReferenceLinkGridProps {
|
|
1033
|
+
items: ReferenceLinkGridItem[];
|
|
1034
|
+
columns?: 2 | 3 | 4;
|
|
1035
|
+
}
|
|
1036
|
+
declare function ReferenceLinkGrid({ items, columns, }: ReferenceLinkGridProps): react_jsx_runtime.JSX.Element;
|
|
1037
|
+
|
|
1038
|
+
type SectionPanelTone = 'default' | 'supporting' | 'warning' | 'critical';
|
|
1039
|
+
interface SectionPanelProps {
|
|
1040
|
+
title?: ReactNode;
|
|
1041
|
+
description?: ReactNode;
|
|
1042
|
+
action?: ReactNode;
|
|
1043
|
+
children: ReactNode;
|
|
1044
|
+
tone?: SectionPanelTone;
|
|
1045
|
+
id?: string;
|
|
1046
|
+
divided?: boolean;
|
|
1047
|
+
}
|
|
1048
|
+
declare function SectionPanel({ title, description, action, children, tone, id, divided, }: SectionPanelProps): react_jsx_runtime.JSX.Element;
|
|
1049
|
+
|
|
1050
|
+
interface ReferenceSectionProps {
|
|
1051
|
+
title: ReactNode;
|
|
1052
|
+
description?: ReactNode;
|
|
1053
|
+
eyebrow?: ReactNode;
|
|
1054
|
+
action?: ReactNode;
|
|
1055
|
+
href?: string;
|
|
1056
|
+
linkLabel?: ReactNode;
|
|
1057
|
+
tone?: SectionPanelTone;
|
|
1058
|
+
children: ReactNode;
|
|
1059
|
+
}
|
|
1060
|
+
declare function ReferenceSection({ title, description, eyebrow, action, href, linkLabel, tone, children, }: ReferenceSectionProps): react_jsx_runtime.JSX.Element;
|
|
1061
|
+
|
|
1018
1062
|
interface ChoiceChipProps extends Omit<BadgeProps, 'children' | 'variant'> {
|
|
1019
1063
|
label: ReactNode;
|
|
1020
1064
|
active?: boolean;
|
|
@@ -1323,18 +1367,6 @@ declare function resolveAccentPanelStyles(tone?: AccentTone, variant?: AccentPan
|
|
|
1323
1367
|
};
|
|
1324
1368
|
declare function AccentPanel({ tone, variant, title, badge, children, }: AccentPanelProps): react_jsx_runtime.JSX.Element;
|
|
1325
1369
|
|
|
1326
|
-
type SectionPanelTone = 'default' | 'supporting' | 'warning' | 'critical';
|
|
1327
|
-
interface SectionPanelProps {
|
|
1328
|
-
title?: ReactNode;
|
|
1329
|
-
description?: ReactNode;
|
|
1330
|
-
action?: ReactNode;
|
|
1331
|
-
children: ReactNode;
|
|
1332
|
-
tone?: SectionPanelTone;
|
|
1333
|
-
id?: string;
|
|
1334
|
-
divided?: boolean;
|
|
1335
|
-
}
|
|
1336
|
-
declare function SectionPanel({ title, description, action, children, tone, id, divided, }: SectionPanelProps): react_jsx_runtime.JSX.Element;
|
|
1337
|
-
|
|
1338
1370
|
interface DetailProfileShellProps {
|
|
1339
1371
|
mode?: 'page' | 'drawer';
|
|
1340
1372
|
hero?: ReactNode;
|
|
@@ -5537,4 +5569,4 @@ declare function getGdsMessages(locale: GdsLocale | string): {
|
|
|
5537
5569
|
'gds.state.emptyData': string;
|
|
5538
5570
|
};
|
|
5539
5571
|
|
|
5540
|
-
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,
|
|
5572
|
+
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, ReferenceLinkGrid 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, PublicBrandFooter as aA, type PublicBrandFooterClassNames as aB, type PublicBrandFooterLayoutVariant as aC, type PublicBrandFooterProps as aD, type PublicFlowAction as aE, type PublicFlowActionPriority as aF, PublicFlowShell as aG, type PublicFlowShellProps as aH, type PublicFlowStage as aI, type PublicFlowStageStatus as aJ, PublicFoodCard as aK, type PublicFoodCardProps as aL, PublicNav as aM, type PublicNavItem as aN, type PublicNavProps as aO, PublicProductCard as aP, type PublicProductCardHelperKind as aQ, type PublicProductCardMetaItem as aR, type PublicProductCardProps as aS, type PublicProductCardState as aT, PublicShell as aU, type PublicShellClassNames as aV, type PublicShellHeaderVariant as aW, type PublicShellMobileNavigationMode as aX, type PublicShellProps as aY, PublicSiteFooter as aZ, type PublicSiteFooterProps 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, PageHeader as am, type PageHeaderEyebrowVariant as an, type PageHeaderProps as ao, PlaceholderPanel as ap, type PlaceholderPanelProps as aq, PlaybackSurface as ar, type PlaybackSurfaceProps as as, type PlaybackSurfaceState as at, ProductCard as au, type ProductCardAction as av, type ProductCardMetaItem as aw, type ProductCardProps as ax, ProgressCard as ay, type ProgressCardProps as az, type AccentPanelVariant as b, type ReferenceLinkGridItem as b0, type ReferenceLinkGridProps as b1, ReferenceLocaleNotice as b2, type ReferenceLocaleNoticeProps as b3, ReferenceSection as b4, type ReferenceSectionProps as b5, SectionPanel as b6, type SectionPanelProps as b7, type SectionPanelTone as b8, type SemanticAction as b9, getSemanticActionConfig as bA, getSemanticActionLabel as bB, he as bC, hu as bD, it as bE, mergeGdsVocabularyPacks as bF, resolveAccentPanelStyles as bG, resolveSemanticActionConfig as bH, ru as bI, type SemanticActionDefinition as ba, type SemanticActionId as bb, SimpleDataTable as bc, type SimpleDataTableProps as bd, type SimpleTableColumn as be, SocialAuthButtons as bf, type SocialAuthButtonsProps as bg, type SocialAuthProviderId as bh, type SocialAuthProviderOption as bi, StateBlock as bj, type StateBlockProps as bk, type StateBlockVariant as bl, StatsSection as bm, type StatsSectionProps as bn, StatusBadge as bo, type StatusBadgeProps as bp, type StatusVariant as bq, type VocabularyResolver as br, ar as bs, createGdsVocabularyPack as bt, de as bu, en as bv, es as bw, fr as bx, gdsLocales as by, getGdsMessages 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 };
|
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 PageHeader, an as PageHeaderEyebrowVariant, ao as PageHeaderProps, ap as PlaceholderPanel, aq as PlaceholderPanelProps, ar as PlaybackSurface, as as PlaybackSurfaceProps, at as PlaybackSurfaceState, au as ProductCard, av as ProductCardAction, aw as ProductCardMetaItem, ax as ProductCardProps, ay as ProgressCard, az as ProgressCardProps, aA as PublicBrandFooter, aB as PublicBrandFooterClassNames, aC as PublicBrandFooterLayoutVariant, aD as PublicBrandFooterProps, aE as PublicFlowAction, aF as PublicFlowActionPriority, aG as PublicFlowShell, aH as PublicFlowShellProps, aI as PublicFlowStage, aJ as PublicFlowStageStatus, aK as PublicFoodCard, aL as PublicFoodCardProps, aM as PublicNav, aN as PublicNavItem, aO as PublicNavProps, aP as PublicProductCard, aQ as PublicProductCardHelperKind, aR as PublicProductCardMetaItem, aS as PublicProductCardProps, aT as PublicProductCardState, aU as PublicShell, aV as PublicShellClassNames, aW as PublicShellHeaderVariant, aX as PublicShellMobileNavigationMode, aY as PublicShellProps, aZ as PublicSiteFooter, a_ as PublicSiteFooterProps, a$ as
|
|
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 PageHeader, an as PageHeaderEyebrowVariant, ao as PageHeaderProps, ap as PlaceholderPanel, aq as PlaceholderPanelProps, ar as PlaybackSurface, as as PlaybackSurfaceProps, at as PlaybackSurfaceState, au as ProductCard, av as ProductCardAction, aw as ProductCardMetaItem, ax as ProductCardProps, ay as ProgressCard, az as ProgressCardProps, aA as PublicBrandFooter, aB as PublicBrandFooterClassNames, aC as PublicBrandFooterLayoutVariant, aD as PublicBrandFooterProps, aE as PublicFlowAction, aF as PublicFlowActionPriority, aG as PublicFlowShell, aH as PublicFlowShellProps, aI as PublicFlowStage, aJ as PublicFlowStageStatus, aK as PublicFoodCard, aL as PublicFoodCardProps, aM as PublicNav, aN as PublicNavItem, aO as PublicNavProps, aP as PublicProductCard, aQ as PublicProductCardHelperKind, aR as PublicProductCardMetaItem, aS as PublicProductCardProps, aT as PublicProductCardState, aU as PublicShell, aV as PublicShellClassNames, aW as PublicShellHeaderVariant, aX as PublicShellMobileNavigationMode, aY as PublicShellProps, aZ as PublicSiteFooter, a_ as PublicSiteFooterProps, a$ as ReferenceLinkGrid, b0 as ReferenceLinkGridItem, b1 as ReferenceLinkGridProps, b2 as ReferenceLocaleNotice, b3 as ReferenceLocaleNoticeProps, b4 as ReferenceSection, b5 as ReferenceSectionProps, b6 as SectionPanel, b7 as SectionPanelProps, b8 as SectionPanelTone, b9 as SemanticAction, ba as SemanticActionDefinition, bb as SemanticActionId, bc as SimpleDataTable, bd as SimpleDataTableProps, be as SimpleTableColumn, bf as SocialAuthButtons, bg as SocialAuthButtonsProps, bh as SocialAuthProviderId, bi as SocialAuthProviderOption, bj as StateBlock, bk as StateBlockProps, bl as StateBlockVariant, bm as StatsSection, bn as StatsSectionProps, bo as StatusBadge, bp as StatusBadgeProps, bq as StatusVariant, br as VocabularyResolver, bs as ar, bt as createGdsVocabularyPack, bu as de, bv as en, bw as es, bx as fr, by as gdsLocales, bz as getGdsMessages, bA as getSemanticActionConfig, bB as getSemanticActionLabel, bC as he, bD as hu, bE as it, bF as mergeGdsVocabularyPacks, bG as resolveAccentPanelStyles, bH as resolveSemanticActionConfig, bI as ru } from './server-CF4gCYQ-.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 PageHeader, an as PageHeaderEyebrowVariant, ao as PageHeaderProps, ap as PlaceholderPanel, aq as PlaceholderPanelProps, ar as PlaybackSurface, as as PlaybackSurfaceProps, at as PlaybackSurfaceState, au as ProductCard, av as ProductCardAction, aw as ProductCardMetaItem, ax as ProductCardProps, ay as ProgressCard, az as ProgressCardProps, aA as PublicBrandFooter, aB as PublicBrandFooterClassNames, aC as PublicBrandFooterLayoutVariant, aD as PublicBrandFooterProps, aE as PublicFlowAction, aF as PublicFlowActionPriority, aG as PublicFlowShell, aH as PublicFlowShellProps, aI as PublicFlowStage, aJ as PublicFlowStageStatus, aK as PublicFoodCard, aL as PublicFoodCardProps, aM as PublicNav, aN as PublicNavItem, aO as PublicNavProps, aP as PublicProductCard, aQ as PublicProductCardHelperKind, aR as PublicProductCardMetaItem, aS as PublicProductCardProps, aT as PublicProductCardState, aU as PublicShell, aV as PublicShellClassNames, aW as PublicShellHeaderVariant, aX as PublicShellMobileNavigationMode, aY as PublicShellProps, aZ as PublicSiteFooter, a_ as PublicSiteFooterProps, a$ as
|
|
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 PageHeader, an as PageHeaderEyebrowVariant, ao as PageHeaderProps, ap as PlaceholderPanel, aq as PlaceholderPanelProps, ar as PlaybackSurface, as as PlaybackSurfaceProps, at as PlaybackSurfaceState, au as ProductCard, av as ProductCardAction, aw as ProductCardMetaItem, ax as ProductCardProps, ay as ProgressCard, az as ProgressCardProps, aA as PublicBrandFooter, aB as PublicBrandFooterClassNames, aC as PublicBrandFooterLayoutVariant, aD as PublicBrandFooterProps, aE as PublicFlowAction, aF as PublicFlowActionPriority, aG as PublicFlowShell, aH as PublicFlowShellProps, aI as PublicFlowStage, aJ as PublicFlowStageStatus, aK as PublicFoodCard, aL as PublicFoodCardProps, aM as PublicNav, aN as PublicNavItem, aO as PublicNavProps, aP as PublicProductCard, aQ as PublicProductCardHelperKind, aR as PublicProductCardMetaItem, aS as PublicProductCardProps, aT as PublicProductCardState, aU as PublicShell, aV as PublicShellClassNames, aW as PublicShellHeaderVariant, aX as PublicShellMobileNavigationMode, aY as PublicShellProps, aZ as PublicSiteFooter, a_ as PublicSiteFooterProps, a$ as ReferenceLinkGrid, b0 as ReferenceLinkGridItem, b1 as ReferenceLinkGridProps, b2 as ReferenceLocaleNotice, b3 as ReferenceLocaleNoticeProps, b4 as ReferenceSection, b5 as ReferenceSectionProps, b6 as SectionPanel, b7 as SectionPanelProps, b8 as SectionPanelTone, b9 as SemanticAction, ba as SemanticActionDefinition, bb as SemanticActionId, bc as SimpleDataTable, bd as SimpleDataTableProps, be as SimpleTableColumn, bf as SocialAuthButtons, bg as SocialAuthButtonsProps, bh as SocialAuthProviderId, bi as SocialAuthProviderOption, bj as StateBlock, bk as StateBlockProps, bl as StateBlockVariant, bm as StatsSection, bn as StatsSectionProps, bo as StatusBadge, bp as StatusBadgeProps, bq as StatusVariant, br as VocabularyResolver, bs as ar, bt as createGdsVocabularyPack, bu as de, bv as en, bw as es, bx as fr, by as gdsLocales, bz as getGdsMessages, bA as getSemanticActionConfig, bB as getSemanticActionLabel, bC as he, bD as hu, bE as it, bF as mergeGdsVocabularyPacks, bG as resolveAccentPanelStyles, bH as resolveSemanticActionConfig, bI as ru } from './server-CF4gCYQ-.js';
|
|
2
2
|
import 'react';
|
|
3
3
|
import '@tabler/icons-react';
|
|
4
4
|
import 'react/jsx-runtime';
|