@doneisbetter/gds-core 2.6.6 → 2.6.7
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-4YTMKBGW.mjs → chunk-IUYPELGQ.mjs} +193 -70
- package/dist/{chunk-IAP3JU55.mjs → chunk-LH2KMMXT.mjs} +483 -272
- package/dist/client.d.mts +17 -3
- package/dist/client.d.ts +17 -3
- package/dist/client.js +710 -365
- package/dist/client.mjs +16 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +710 -365
- package/dist/index.mjs +16 -2
- package/dist/{server-CF4gCYQ-.d.mts → server-BSuY9Qx6.d.mts} +92 -6
- package/dist/{server-CF4gCYQ-.d.ts → server-BSuY9Qx6.d.ts} +92 -6
- package/dist/server.d.mts +1 -1
- package/dist/server.d.ts +1 -1
- package/dist/server.js +491 -270
- package/dist/server.mjs +13 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -3,6 +3,7 @@ import {
|
|
|
3
3
|
ConfirmDialog,
|
|
4
4
|
DiscoveryShell,
|
|
5
5
|
DocsCodeBlock,
|
|
6
|
+
DocsShell,
|
|
6
7
|
GameBoardTile,
|
|
7
8
|
ReferenceThemeExplorer,
|
|
8
9
|
SemanticButton,
|
|
@@ -12,7 +13,7 @@ import {
|
|
|
12
13
|
SidebarNavSection,
|
|
13
14
|
ThemeToggle,
|
|
14
15
|
UploadDropzone
|
|
15
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-IUYPELGQ.mjs";
|
|
16
17
|
import {
|
|
17
18
|
AccentPanel,
|
|
18
19
|
AccessSummary,
|
|
@@ -41,11 +42,14 @@ import {
|
|
|
41
42
|
MediaCard,
|
|
42
43
|
MediaField,
|
|
43
44
|
MetricCard,
|
|
45
|
+
PROVIDER_IDENTITY_REGISTRY,
|
|
44
46
|
PageHeader,
|
|
45
47
|
PlaceholderPanel,
|
|
46
48
|
PlaybackSurface,
|
|
47
49
|
ProductCard,
|
|
48
50
|
ProgressCard,
|
|
51
|
+
ProviderIdentityButton,
|
|
52
|
+
ProviderIdentityButtonGroup,
|
|
49
53
|
PublicBrandFooter,
|
|
50
54
|
PublicFlowShell,
|
|
51
55
|
PublicFoodCard,
|
|
@@ -70,16 +74,19 @@ import {
|
|
|
70
74
|
fr,
|
|
71
75
|
gdsLocales,
|
|
72
76
|
getGdsMessages,
|
|
77
|
+
getProviderIdentityLabel,
|
|
73
78
|
getSemanticActionConfig,
|
|
74
79
|
getSemanticActionLabel,
|
|
75
80
|
he,
|
|
76
81
|
hu,
|
|
82
|
+
isPresentationMode,
|
|
77
83
|
it,
|
|
78
84
|
mergeGdsVocabularyPacks,
|
|
79
85
|
resolveAccentPanelStyles,
|
|
80
86
|
resolveSemanticActionConfig,
|
|
87
|
+
resolveSurfacePresentationStyles,
|
|
81
88
|
ru
|
|
82
|
-
} from "./chunk-
|
|
89
|
+
} from "./chunk-LH2KMMXT.mjs";
|
|
83
90
|
export {
|
|
84
91
|
AccentPanel,
|
|
85
92
|
AccessRecoveryPanel,
|
|
@@ -98,6 +105,7 @@ export {
|
|
|
98
105
|
DiscoveryShell,
|
|
99
106
|
DocsCodeBlock,
|
|
100
107
|
DocsPageShell,
|
|
108
|
+
DocsShell,
|
|
101
109
|
EditorialCard,
|
|
102
110
|
EditorialHero,
|
|
103
111
|
EmptyState,
|
|
@@ -113,11 +121,14 @@ export {
|
|
|
113
121
|
MediaCard,
|
|
114
122
|
MediaField,
|
|
115
123
|
MetricCard,
|
|
124
|
+
PROVIDER_IDENTITY_REGISTRY,
|
|
116
125
|
PageHeader,
|
|
117
126
|
PlaceholderPanel,
|
|
118
127
|
PlaybackSurface,
|
|
119
128
|
ProductCard,
|
|
120
129
|
ProgressCard,
|
|
130
|
+
ProviderIdentityButton,
|
|
131
|
+
ProviderIdentityButtonGroup,
|
|
121
132
|
PublicBrandFooter,
|
|
122
133
|
PublicFlowShell,
|
|
123
134
|
PublicFoodCard,
|
|
@@ -150,13 +161,16 @@ export {
|
|
|
150
161
|
fr,
|
|
151
162
|
gdsLocales,
|
|
152
163
|
getGdsMessages,
|
|
164
|
+
getProviderIdentityLabel,
|
|
153
165
|
getSemanticActionConfig,
|
|
154
166
|
getSemanticActionLabel,
|
|
155
167
|
he,
|
|
156
168
|
hu,
|
|
169
|
+
isPresentationMode,
|
|
157
170
|
it,
|
|
158
171
|
mergeGdsVocabularyPacks,
|
|
159
172
|
resolveAccentPanelStyles,
|
|
160
173
|
resolveSemanticActionConfig,
|
|
174
|
+
resolveSurfacePresentationStyles,
|
|
161
175
|
ru
|
|
162
176
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import react__default, { ReactNode } from 'react';
|
|
2
|
+
import react__default, { ReactNode, CSSProperties } from 'react';
|
|
3
3
|
import * as _tabler_icons_react from '@tabler/icons-react';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
import { BadgeProps, ButtonProps, MantineSpacing } from '@mantine/core';
|
|
@@ -1035,8 +1035,20 @@ interface ReferenceLinkGridProps {
|
|
|
1035
1035
|
}
|
|
1036
1036
|
declare function ReferenceLinkGrid({ items, columns, }: ReferenceLinkGridProps): react_jsx_runtime.JSX.Element;
|
|
1037
1037
|
|
|
1038
|
+
type SurfacePresentation = 'inline' | 'centered' | 'fill';
|
|
1039
|
+
type SurfaceContentAlign = 'start' | 'center';
|
|
1040
|
+
type SurfaceContentJustify = 'start' | 'center';
|
|
1041
|
+
interface SurfacePresentationProps {
|
|
1042
|
+
presentation?: SurfacePresentation;
|
|
1043
|
+
minHeight?: number | string;
|
|
1044
|
+
contentAlign?: SurfaceContentAlign;
|
|
1045
|
+
contentJustify?: SurfaceContentJustify;
|
|
1046
|
+
}
|
|
1047
|
+
declare function resolveSurfacePresentationStyles(props: SurfacePresentationProps): CSSProperties;
|
|
1048
|
+
declare function isPresentationMode(value: string | undefined): value is SurfacePresentation;
|
|
1049
|
+
|
|
1038
1050
|
type SectionPanelTone = 'default' | 'supporting' | 'warning' | 'critical';
|
|
1039
|
-
interface SectionPanelProps {
|
|
1051
|
+
interface SectionPanelProps extends SurfacePresentationProps {
|
|
1040
1052
|
title?: ReactNode;
|
|
1041
1053
|
description?: ReactNode;
|
|
1042
1054
|
action?: ReactNode;
|
|
@@ -1045,7 +1057,7 @@ interface SectionPanelProps {
|
|
|
1045
1057
|
id?: string;
|
|
1046
1058
|
divided?: boolean;
|
|
1047
1059
|
}
|
|
1048
|
-
declare function SectionPanel({ title, description, action, children, tone, id, divided, }: SectionPanelProps): react_jsx_runtime.JSX.Element;
|
|
1060
|
+
declare function SectionPanel({ title, description, action, children, tone, id, divided, presentation, minHeight, contentAlign, contentJustify, }: SectionPanelProps): react_jsx_runtime.JSX.Element;
|
|
1049
1061
|
|
|
1050
1062
|
interface ReferenceSectionProps {
|
|
1051
1063
|
title: ReactNode;
|
|
@@ -1379,7 +1391,7 @@ interface DetailProfileShellProps {
|
|
|
1379
1391
|
declare function DetailProfileShell({ mode, hero, actions, sections, related, padding, showDividers, }: DetailProfileShellProps): react_jsx_runtime.JSX.Element;
|
|
1380
1392
|
|
|
1381
1393
|
type StateBlockVariant = 'loading' | 'empty' | 'error' | 'permission' | 'disabled' | 'success' | 'info' | 'not-enough-data';
|
|
1382
|
-
interface StateBlockProps {
|
|
1394
|
+
interface StateBlockProps extends SurfacePresentationProps {
|
|
1383
1395
|
variant: StateBlockVariant;
|
|
1384
1396
|
title: string;
|
|
1385
1397
|
description?: ReactNode;
|
|
@@ -1387,7 +1399,7 @@ interface StateBlockProps {
|
|
|
1387
1399
|
icon?: ReactNode;
|
|
1388
1400
|
compact?: boolean;
|
|
1389
1401
|
}
|
|
1390
|
-
declare function StateBlock({ variant, title, description, action, icon, compact, }: StateBlockProps): react_jsx_runtime.JSX.Element;
|
|
1402
|
+
declare function StateBlock({ variant, title, description, action, icon, compact, presentation, minHeight, contentAlign, contentJustify, }: StateBlockProps): react_jsx_runtime.JSX.Element;
|
|
1391
1403
|
|
|
1392
1404
|
interface PublicNavItem {
|
|
1393
1405
|
id: string;
|
|
@@ -1471,6 +1483,78 @@ interface AuthShellProps {
|
|
|
1471
1483
|
}
|
|
1472
1484
|
declare function AuthShell({ title, description, brand, headerActions, footer, helper, socialAuth, dividerLabel, children, }: AuthShellProps): react_jsx_runtime.JSX.Element;
|
|
1473
1485
|
|
|
1486
|
+
declare const PROVIDER_IDENTITY_REGISTRY: {
|
|
1487
|
+
readonly google: {
|
|
1488
|
+
readonly providerLabel: "Google";
|
|
1489
|
+
readonly markLabel: "G";
|
|
1490
|
+
readonly brandColor: "red";
|
|
1491
|
+
};
|
|
1492
|
+
readonly apple: {
|
|
1493
|
+
readonly providerLabel: "Apple";
|
|
1494
|
+
readonly markLabel: "A";
|
|
1495
|
+
readonly brandColor: "dark";
|
|
1496
|
+
};
|
|
1497
|
+
readonly github: {
|
|
1498
|
+
readonly providerLabel: "GitHub";
|
|
1499
|
+
readonly markLabel: "GH";
|
|
1500
|
+
readonly brandColor: "gray";
|
|
1501
|
+
};
|
|
1502
|
+
readonly facebook: {
|
|
1503
|
+
readonly providerLabel: "Facebook";
|
|
1504
|
+
readonly markLabel: "F";
|
|
1505
|
+
readonly brandColor: "blue";
|
|
1506
|
+
};
|
|
1507
|
+
readonly microsoft: {
|
|
1508
|
+
readonly providerLabel: "Microsoft";
|
|
1509
|
+
readonly markLabel: "M";
|
|
1510
|
+
readonly brandColor: "cyan";
|
|
1511
|
+
};
|
|
1512
|
+
readonly linkedin: {
|
|
1513
|
+
readonly providerLabel: "LinkedIn";
|
|
1514
|
+
readonly markLabel: "in";
|
|
1515
|
+
readonly brandColor: "blue";
|
|
1516
|
+
};
|
|
1517
|
+
readonly discord: {
|
|
1518
|
+
readonly providerLabel: "Discord";
|
|
1519
|
+
readonly markLabel: "D";
|
|
1520
|
+
readonly brandColor: "indigo";
|
|
1521
|
+
};
|
|
1522
|
+
readonly x: {
|
|
1523
|
+
readonly providerLabel: "X";
|
|
1524
|
+
readonly markLabel: "X";
|
|
1525
|
+
readonly brandColor: "dark";
|
|
1526
|
+
};
|
|
1527
|
+
readonly email: {
|
|
1528
|
+
readonly providerLabel: "Email";
|
|
1529
|
+
readonly markLabel: "@";
|
|
1530
|
+
readonly brandColor: "gray";
|
|
1531
|
+
};
|
|
1532
|
+
};
|
|
1533
|
+
type ProviderIdentity = keyof typeof PROVIDER_IDENTITY_REGISTRY | (string & {});
|
|
1534
|
+
type ProviderIdentityVariant = 'solid' | 'outline' | 'neutral';
|
|
1535
|
+
interface ProviderIdentityButtonProps {
|
|
1536
|
+
provider: ProviderIdentity;
|
|
1537
|
+
label?: ReactNode;
|
|
1538
|
+
description?: ReactNode;
|
|
1539
|
+
href?: string;
|
|
1540
|
+
onClick?: () => void;
|
|
1541
|
+
disabled?: boolean;
|
|
1542
|
+
loading?: boolean;
|
|
1543
|
+
fullWidth?: boolean;
|
|
1544
|
+
size?: 'sm' | 'md' | 'lg';
|
|
1545
|
+
variant?: ProviderIdentityVariant;
|
|
1546
|
+
ariaLabel?: string;
|
|
1547
|
+
describedBy?: string;
|
|
1548
|
+
minTouchTargetPx?: number;
|
|
1549
|
+
}
|
|
1550
|
+
interface ProviderIdentityButtonGroupProps {
|
|
1551
|
+
providers: ProviderIdentityButtonProps[];
|
|
1552
|
+
layout?: 'stack' | 'grid';
|
|
1553
|
+
}
|
|
1554
|
+
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;
|
|
1556
|
+
declare function ProviderIdentityButtonGroup({ providers, layout }: ProviderIdentityButtonGroupProps): react_jsx_runtime.JSX.Element | null;
|
|
1557
|
+
|
|
1474
1558
|
type SocialAuthProviderId = 'google' | 'apple' | 'github' | 'facebook' | 'microsoft' | 'linkedin' | 'discord' | 'x' | 'email';
|
|
1475
1559
|
interface SocialAuthProviderOption {
|
|
1476
1560
|
id: SocialAuthProviderId | (string & {});
|
|
@@ -1480,6 +1564,8 @@ interface SocialAuthProviderOption {
|
|
|
1480
1564
|
disabled?: boolean;
|
|
1481
1565
|
loading?: boolean;
|
|
1482
1566
|
description?: ReactNode;
|
|
1567
|
+
variant?: ProviderIdentityVariant;
|
|
1568
|
+
size?: ProviderIdentityButtonProps['size'];
|
|
1483
1569
|
}
|
|
1484
1570
|
interface SocialAuthButtonsProps {
|
|
1485
1571
|
providers: SocialAuthProviderOption[];
|
|
@@ -5569,4 +5655,4 @@ declare function getGdsMessages(locale: GdsLocale | string): {
|
|
|
5569
5655
|
'gds.state.emptyData': string;
|
|
5570
5656
|
};
|
|
5571
5657
|
|
|
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,
|
|
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 };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import react__default, { ReactNode } from 'react';
|
|
2
|
+
import react__default, { ReactNode, CSSProperties } from 'react';
|
|
3
3
|
import * as _tabler_icons_react from '@tabler/icons-react';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
import { BadgeProps, ButtonProps, MantineSpacing } from '@mantine/core';
|
|
@@ -1035,8 +1035,20 @@ interface ReferenceLinkGridProps {
|
|
|
1035
1035
|
}
|
|
1036
1036
|
declare function ReferenceLinkGrid({ items, columns, }: ReferenceLinkGridProps): react_jsx_runtime.JSX.Element;
|
|
1037
1037
|
|
|
1038
|
+
type SurfacePresentation = 'inline' | 'centered' | 'fill';
|
|
1039
|
+
type SurfaceContentAlign = 'start' | 'center';
|
|
1040
|
+
type SurfaceContentJustify = 'start' | 'center';
|
|
1041
|
+
interface SurfacePresentationProps {
|
|
1042
|
+
presentation?: SurfacePresentation;
|
|
1043
|
+
minHeight?: number | string;
|
|
1044
|
+
contentAlign?: SurfaceContentAlign;
|
|
1045
|
+
contentJustify?: SurfaceContentJustify;
|
|
1046
|
+
}
|
|
1047
|
+
declare function resolveSurfacePresentationStyles(props: SurfacePresentationProps): CSSProperties;
|
|
1048
|
+
declare function isPresentationMode(value: string | undefined): value is SurfacePresentation;
|
|
1049
|
+
|
|
1038
1050
|
type SectionPanelTone = 'default' | 'supporting' | 'warning' | 'critical';
|
|
1039
|
-
interface SectionPanelProps {
|
|
1051
|
+
interface SectionPanelProps extends SurfacePresentationProps {
|
|
1040
1052
|
title?: ReactNode;
|
|
1041
1053
|
description?: ReactNode;
|
|
1042
1054
|
action?: ReactNode;
|
|
@@ -1045,7 +1057,7 @@ interface SectionPanelProps {
|
|
|
1045
1057
|
id?: string;
|
|
1046
1058
|
divided?: boolean;
|
|
1047
1059
|
}
|
|
1048
|
-
declare function SectionPanel({ title, description, action, children, tone, id, divided, }: SectionPanelProps): react_jsx_runtime.JSX.Element;
|
|
1060
|
+
declare function SectionPanel({ title, description, action, children, tone, id, divided, presentation, minHeight, contentAlign, contentJustify, }: SectionPanelProps): react_jsx_runtime.JSX.Element;
|
|
1049
1061
|
|
|
1050
1062
|
interface ReferenceSectionProps {
|
|
1051
1063
|
title: ReactNode;
|
|
@@ -1379,7 +1391,7 @@ interface DetailProfileShellProps {
|
|
|
1379
1391
|
declare function DetailProfileShell({ mode, hero, actions, sections, related, padding, showDividers, }: DetailProfileShellProps): react_jsx_runtime.JSX.Element;
|
|
1380
1392
|
|
|
1381
1393
|
type StateBlockVariant = 'loading' | 'empty' | 'error' | 'permission' | 'disabled' | 'success' | 'info' | 'not-enough-data';
|
|
1382
|
-
interface StateBlockProps {
|
|
1394
|
+
interface StateBlockProps extends SurfacePresentationProps {
|
|
1383
1395
|
variant: StateBlockVariant;
|
|
1384
1396
|
title: string;
|
|
1385
1397
|
description?: ReactNode;
|
|
@@ -1387,7 +1399,7 @@ interface StateBlockProps {
|
|
|
1387
1399
|
icon?: ReactNode;
|
|
1388
1400
|
compact?: boolean;
|
|
1389
1401
|
}
|
|
1390
|
-
declare function StateBlock({ variant, title, description, action, icon, compact, }: StateBlockProps): react_jsx_runtime.JSX.Element;
|
|
1402
|
+
declare function StateBlock({ variant, title, description, action, icon, compact, presentation, minHeight, contentAlign, contentJustify, }: StateBlockProps): react_jsx_runtime.JSX.Element;
|
|
1391
1403
|
|
|
1392
1404
|
interface PublicNavItem {
|
|
1393
1405
|
id: string;
|
|
@@ -1471,6 +1483,78 @@ interface AuthShellProps {
|
|
|
1471
1483
|
}
|
|
1472
1484
|
declare function AuthShell({ title, description, brand, headerActions, footer, helper, socialAuth, dividerLabel, children, }: AuthShellProps): react_jsx_runtime.JSX.Element;
|
|
1473
1485
|
|
|
1486
|
+
declare const PROVIDER_IDENTITY_REGISTRY: {
|
|
1487
|
+
readonly google: {
|
|
1488
|
+
readonly providerLabel: "Google";
|
|
1489
|
+
readonly markLabel: "G";
|
|
1490
|
+
readonly brandColor: "red";
|
|
1491
|
+
};
|
|
1492
|
+
readonly apple: {
|
|
1493
|
+
readonly providerLabel: "Apple";
|
|
1494
|
+
readonly markLabel: "A";
|
|
1495
|
+
readonly brandColor: "dark";
|
|
1496
|
+
};
|
|
1497
|
+
readonly github: {
|
|
1498
|
+
readonly providerLabel: "GitHub";
|
|
1499
|
+
readonly markLabel: "GH";
|
|
1500
|
+
readonly brandColor: "gray";
|
|
1501
|
+
};
|
|
1502
|
+
readonly facebook: {
|
|
1503
|
+
readonly providerLabel: "Facebook";
|
|
1504
|
+
readonly markLabel: "F";
|
|
1505
|
+
readonly brandColor: "blue";
|
|
1506
|
+
};
|
|
1507
|
+
readonly microsoft: {
|
|
1508
|
+
readonly providerLabel: "Microsoft";
|
|
1509
|
+
readonly markLabel: "M";
|
|
1510
|
+
readonly brandColor: "cyan";
|
|
1511
|
+
};
|
|
1512
|
+
readonly linkedin: {
|
|
1513
|
+
readonly providerLabel: "LinkedIn";
|
|
1514
|
+
readonly markLabel: "in";
|
|
1515
|
+
readonly brandColor: "blue";
|
|
1516
|
+
};
|
|
1517
|
+
readonly discord: {
|
|
1518
|
+
readonly providerLabel: "Discord";
|
|
1519
|
+
readonly markLabel: "D";
|
|
1520
|
+
readonly brandColor: "indigo";
|
|
1521
|
+
};
|
|
1522
|
+
readonly x: {
|
|
1523
|
+
readonly providerLabel: "X";
|
|
1524
|
+
readonly markLabel: "X";
|
|
1525
|
+
readonly brandColor: "dark";
|
|
1526
|
+
};
|
|
1527
|
+
readonly email: {
|
|
1528
|
+
readonly providerLabel: "Email";
|
|
1529
|
+
readonly markLabel: "@";
|
|
1530
|
+
readonly brandColor: "gray";
|
|
1531
|
+
};
|
|
1532
|
+
};
|
|
1533
|
+
type ProviderIdentity = keyof typeof PROVIDER_IDENTITY_REGISTRY | (string & {});
|
|
1534
|
+
type ProviderIdentityVariant = 'solid' | 'outline' | 'neutral';
|
|
1535
|
+
interface ProviderIdentityButtonProps {
|
|
1536
|
+
provider: ProviderIdentity;
|
|
1537
|
+
label?: ReactNode;
|
|
1538
|
+
description?: ReactNode;
|
|
1539
|
+
href?: string;
|
|
1540
|
+
onClick?: () => void;
|
|
1541
|
+
disabled?: boolean;
|
|
1542
|
+
loading?: boolean;
|
|
1543
|
+
fullWidth?: boolean;
|
|
1544
|
+
size?: 'sm' | 'md' | 'lg';
|
|
1545
|
+
variant?: ProviderIdentityVariant;
|
|
1546
|
+
ariaLabel?: string;
|
|
1547
|
+
describedBy?: string;
|
|
1548
|
+
minTouchTargetPx?: number;
|
|
1549
|
+
}
|
|
1550
|
+
interface ProviderIdentityButtonGroupProps {
|
|
1551
|
+
providers: ProviderIdentityButtonProps[];
|
|
1552
|
+
layout?: 'stack' | 'grid';
|
|
1553
|
+
}
|
|
1554
|
+
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;
|
|
1556
|
+
declare function ProviderIdentityButtonGroup({ providers, layout }: ProviderIdentityButtonGroupProps): react_jsx_runtime.JSX.Element | null;
|
|
1557
|
+
|
|
1474
1558
|
type SocialAuthProviderId = 'google' | 'apple' | 'github' | 'facebook' | 'microsoft' | 'linkedin' | 'discord' | 'x' | 'email';
|
|
1475
1559
|
interface SocialAuthProviderOption {
|
|
1476
1560
|
id: SocialAuthProviderId | (string & {});
|
|
@@ -1480,6 +1564,8 @@ interface SocialAuthProviderOption {
|
|
|
1480
1564
|
disabled?: boolean;
|
|
1481
1565
|
loading?: boolean;
|
|
1482
1566
|
description?: ReactNode;
|
|
1567
|
+
variant?: ProviderIdentityVariant;
|
|
1568
|
+
size?: ProviderIdentityButtonProps['size'];
|
|
1483
1569
|
}
|
|
1484
1570
|
interface SocialAuthButtonsProps {
|
|
1485
1571
|
providers: SocialAuthProviderOption[];
|
|
@@ -5569,4 +5655,4 @@ declare function getGdsMessages(locale: GdsLocale | string): {
|
|
|
5569
5655
|
'gds.state.emptyData': string;
|
|
5570
5656
|
};
|
|
5571
5657
|
|
|
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,
|
|
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 };
|
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
|
|
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';
|
|
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
|
|
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';
|
|
2
2
|
import 'react';
|
|
3
3
|
import '@tabler/icons-react';
|
|
4
4
|
import 'react/jsx-runtime';
|