@doneisbetter/gds-core 3.0.0 → 3.0.1
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-NBCULITN.mjs → chunk-6FX7WZZO.mjs} +856 -155
- package/dist/{chunk-P7ICTEEB.mjs → chunk-YP7RL2MC.mjs} +784 -364
- package/dist/client.d.mts +259 -8
- package/dist/client.d.ts +259 -8
- package/dist/client.js +1720 -562
- package/dist/client.mjs +74 -4
- package/dist/index.d.mts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +1720 -562
- package/dist/index.mjs +74 -4
- package/dist/{server-woziKWie.d.mts → server-DCXU_K9q.d.mts} +144 -4
- package/dist/{server-woziKWie.d.ts → server-DCXU_K9q.d.ts} +144 -4
- package/dist/server.d.mts +1 -1
- package/dist/server.d.ts +1 -1
- package/dist/server.js +831 -395
- package/dist/server.mjs +29 -1
- package/package.json +2 -2
|
@@ -9,11 +9,23 @@ interface StatusBadgeProps extends Omit<BadgeProps, 'color'> {
|
|
|
9
9
|
status: StatusVariant;
|
|
10
10
|
children: ReactNode;
|
|
11
11
|
}
|
|
12
|
+
type LabelTagTone = 'neutral' | 'info' | 'warning' | 'success';
|
|
13
|
+
interface LabelTagProps extends Omit<BadgeProps, 'color' | 'children'> {
|
|
14
|
+
tone?: LabelTagTone;
|
|
15
|
+
label: ReactNode;
|
|
16
|
+
}
|
|
17
|
+
interface CountBadgeProps extends Omit<BadgeProps, 'color' | 'children'> {
|
|
18
|
+
value: number;
|
|
19
|
+
cap?: number;
|
|
20
|
+
srLabel?: string;
|
|
21
|
+
}
|
|
12
22
|
/**
|
|
13
23
|
* StatusBadge enforces strict semantic coloring.
|
|
14
24
|
* Arbitrary hex colors are prohibited.
|
|
15
25
|
*/
|
|
16
26
|
declare function StatusBadge({ status, children, ...props }: StatusBadgeProps): react_jsx_runtime.JSX.Element;
|
|
27
|
+
declare function LabelTag({ tone, label, ...props }: LabelTagProps): react_jsx_runtime.JSX.Element;
|
|
28
|
+
declare function CountBadge({ value, cap, srLabel, ...props }: CountBadgeProps): react_jsx_runtime.JSX.Element;
|
|
17
29
|
|
|
18
30
|
interface EmptyStateProps {
|
|
19
31
|
icon?: ReactNode;
|
|
@@ -1167,6 +1179,11 @@ interface EditorialCardProps {
|
|
|
1167
1179
|
}
|
|
1168
1180
|
declare function EditorialCard({ media, mediaAlt, eyebrow, badge, title, description, meta, ctaLabel, href, onClick, tone, variant, classNames, }: EditorialCardProps): react_jsx_runtime.JSX.Element;
|
|
1169
1181
|
|
|
1182
|
+
type GdsCardSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
1183
|
+
type GdsCardInteractiveMode = 'none' | 'surface-link' | 'surface-button' | 'flip';
|
|
1184
|
+
declare const gdsCardSizePaddingMap: Record<GdsCardSize, 'xs' | 'sm' | 'md' | 'lg' | 'xl'>;
|
|
1185
|
+
declare const gdsCardTitleOrderMap: Record<GdsCardSize, 3 | 4 | 5 | 6>;
|
|
1186
|
+
|
|
1170
1187
|
interface ProductCardMetaItem {
|
|
1171
1188
|
label: string;
|
|
1172
1189
|
value: ReactNode;
|
|
@@ -1187,8 +1204,9 @@ interface ProductCardProps {
|
|
|
1187
1204
|
primaryAction?: ReactNode;
|
|
1188
1205
|
secondaryActions?: ProductCardAction[];
|
|
1189
1206
|
footer?: ReactNode;
|
|
1207
|
+
size?: GdsCardSize;
|
|
1190
1208
|
}
|
|
1191
|
-
declare function ProductCard({ title, description, media, icon, status, metadata, primaryAction, secondaryActions, footer, }: ProductCardProps): react_jsx_runtime.JSX.Element;
|
|
1209
|
+
declare function ProductCard({ title, description, media, icon, status, metadata, primaryAction, secondaryActions, footer, size, }: ProductCardProps): react_jsx_runtime.JSX.Element;
|
|
1192
1210
|
|
|
1193
1211
|
type PublicProductCardState = 'available' | 'limited' | 'sold-out' | 'preorder';
|
|
1194
1212
|
type PublicProductCardHelperKind = 'supporting' | 'pickup' | 'inventory';
|
|
@@ -1212,10 +1230,13 @@ interface PublicProductCardProps {
|
|
|
1212
1230
|
secondaryAction?: ReactNode;
|
|
1213
1231
|
metadata?: PublicProductCardMetaItem[];
|
|
1214
1232
|
compact?: boolean;
|
|
1233
|
+
size?: GdsCardSize;
|
|
1215
1234
|
loading?: boolean;
|
|
1216
1235
|
disabled?: boolean;
|
|
1236
|
+
interactiveMode?: GdsCardInteractiveMode;
|
|
1237
|
+
onSurfaceActivate?: () => void;
|
|
1217
1238
|
}
|
|
1218
|
-
declare function PublicProductCard({ title, description, image, price, helperText, helperKind, pickupNote, inventoryNote, state, stateLabels, primaryAction, secondaryAction, metadata, compact, loading, disabled, }: PublicProductCardProps): react_jsx_runtime.JSX.Element;
|
|
1239
|
+
declare function PublicProductCard({ title, description, image, price, helperText, helperKind, pickupNote, inventoryNote, state, stateLabels, primaryAction, secondaryAction, metadata, compact, size, loading, disabled, interactiveMode, onSurfaceActivate, }: PublicProductCardProps): react_jsx_runtime.JSX.Element;
|
|
1219
1240
|
|
|
1220
1241
|
type FoodCardAvailabilityState = 'available' | 'preorder' | 'limited' | 'sold-out' | 'coming-soon';
|
|
1221
1242
|
type FoodCardMediaRatio = 'square' | 'dish' | 'landscape';
|
|
@@ -1304,8 +1325,13 @@ interface ListingCardProps {
|
|
|
1304
1325
|
saveAction?: ListingCardAffordance;
|
|
1305
1326
|
shareAction?: ListingCardAffordance;
|
|
1306
1327
|
compact?: boolean;
|
|
1328
|
+
size?: GdsCardSize;
|
|
1329
|
+
interactiveMode?: GdsCardInteractiveMode;
|
|
1330
|
+
revealContent?: ReactNode;
|
|
1331
|
+
onSurfaceActivate?: () => void;
|
|
1332
|
+
defaultFlipped?: boolean;
|
|
1307
1333
|
}
|
|
1308
|
-
declare function ListingCard({ title, href, description, image, mediaRatio, metadata, featured, sponsoredDisclosure, price, primaryAction, saveAction, shareAction, compact, }: ListingCardProps): react_jsx_runtime.JSX.Element;
|
|
1334
|
+
declare function ListingCard({ title, href, description, image, mediaRatio, metadata, featured, sponsoredDisclosure, price, primaryAction, saveAction, shareAction, compact, size, interactiveMode, revealContent, onSurfaceActivate, defaultFlipped, }: ListingCardProps): react_jsx_runtime.JSX.Element;
|
|
1309
1335
|
|
|
1310
1336
|
interface DataToolbarFilterChip {
|
|
1311
1337
|
label: string;
|
|
@@ -1401,6 +1427,59 @@ interface StateBlockProps extends SurfacePresentationProps {
|
|
|
1401
1427
|
}
|
|
1402
1428
|
declare function StateBlock({ variant, title, description, action, icon, compact, presentation, minHeight, contentAlign, contentJustify, }: StateBlockProps): react_jsx_runtime.JSX.Element;
|
|
1403
1429
|
|
|
1430
|
+
type AsyncSurfaceState = 'idle' | 'loading' | 'success' | 'empty' | 'error' | 'refreshing';
|
|
1431
|
+
interface AsyncSurfaceProps extends SurfacePresentationProps {
|
|
1432
|
+
state: AsyncSurfaceState;
|
|
1433
|
+
successContent?: ReactNode;
|
|
1434
|
+
idleContent?: ReactNode;
|
|
1435
|
+
loadingTitle?: string;
|
|
1436
|
+
loadingDescription?: ReactNode;
|
|
1437
|
+
emptyTitle?: string;
|
|
1438
|
+
emptyDescription?: ReactNode;
|
|
1439
|
+
errorTitle?: string;
|
|
1440
|
+
errorDescription?: ReactNode;
|
|
1441
|
+
refreshingTitle?: string;
|
|
1442
|
+
refreshingDescription?: ReactNode;
|
|
1443
|
+
onRetry?: () => void;
|
|
1444
|
+
retryAction?: ReactNode;
|
|
1445
|
+
compact?: boolean;
|
|
1446
|
+
}
|
|
1447
|
+
declare function AsyncSurface({ state, successContent, idleContent, loadingTitle, loadingDescription, emptyTitle, emptyDescription, errorTitle, errorDescription, refreshingTitle, refreshingDescription, onRetry, retryAction, compact, presentation, minHeight, contentAlign, contentJustify, }: AsyncSurfaceProps): react_jsx_runtime.JSX.Element;
|
|
1448
|
+
|
|
1449
|
+
interface ListingFilterChip {
|
|
1450
|
+
id: string;
|
|
1451
|
+
label: string;
|
|
1452
|
+
onRemove?: () => void;
|
|
1453
|
+
}
|
|
1454
|
+
interface ActiveFilterChipsProps {
|
|
1455
|
+
filters: ListingFilterChip[];
|
|
1456
|
+
emptyLabel?: ReactNode;
|
|
1457
|
+
}
|
|
1458
|
+
interface ResultSummaryProps {
|
|
1459
|
+
resultCount: number;
|
|
1460
|
+
noun?: string;
|
|
1461
|
+
description?: ReactNode;
|
|
1462
|
+
}
|
|
1463
|
+
interface SortOption {
|
|
1464
|
+
value: string;
|
|
1465
|
+
label: string;
|
|
1466
|
+
}
|
|
1467
|
+
interface SortMenuProps {
|
|
1468
|
+
value: string;
|
|
1469
|
+
options: SortOption[];
|
|
1470
|
+
onChange?: (value: string) => void;
|
|
1471
|
+
label?: string;
|
|
1472
|
+
}
|
|
1473
|
+
interface BulkActionsBarProps {
|
|
1474
|
+
selectedCount: number;
|
|
1475
|
+
actions?: ReactNode;
|
|
1476
|
+
clearAction?: ReactNode;
|
|
1477
|
+
}
|
|
1478
|
+
declare function ActiveFilterChips({ filters, emptyLabel, }: ActiveFilterChipsProps): react_jsx_runtime.JSX.Element;
|
|
1479
|
+
declare function ResultSummary({ resultCount, noun, description, }: ResultSummaryProps): react_jsx_runtime.JSX.Element;
|
|
1480
|
+
declare function SortMenu({ value, options, onChange, label, }: SortMenuProps): react_jsx_runtime.JSX.Element;
|
|
1481
|
+
declare function BulkActionsBar({ selectedCount, actions, clearAction, }: BulkActionsBarProps): react_jsx_runtime.JSX.Element | null;
|
|
1482
|
+
|
|
1404
1483
|
interface PublicNavItem {
|
|
1405
1484
|
id: string;
|
|
1406
1485
|
label: string;
|
|
@@ -1926,6 +2005,34 @@ interface ChartTokenPanelProps {
|
|
|
1926
2005
|
}
|
|
1927
2006
|
declare function ChartTokenPanel({ title, description, summary, state, legend, children, tableFallback, retryAction, }: ChartTokenPanelProps): react_jsx_runtime.JSX.Element;
|
|
1928
2007
|
|
|
2008
|
+
type GdsChartType = 'line' | 'area' | 'bar' | 'stacked-bar' | 'pie' | 'donut' | 'radar' | 'scatter' | 'bubble' | 'heatmap' | 'funnel' | 'treemap';
|
|
2009
|
+
interface GdsChartDatum {
|
|
2010
|
+
label: string;
|
|
2011
|
+
value: number;
|
|
2012
|
+
group?: string;
|
|
2013
|
+
}
|
|
2014
|
+
interface GdsChartProps {
|
|
2015
|
+
type: GdsChartType;
|
|
2016
|
+
title: string;
|
|
2017
|
+
summary: string;
|
|
2018
|
+
data: GdsChartDatum[];
|
|
2019
|
+
state?: ChartTokenPanelState;
|
|
2020
|
+
retryAction?: ReactNode;
|
|
2021
|
+
}
|
|
2022
|
+
declare function GdsChart({ type, title, summary, data, state, retryAction }: GdsChartProps): react_jsx_runtime.JSX.Element;
|
|
2023
|
+
|
|
2024
|
+
type LayoutBlockType = 'hero' | 'stats' | 'cards-grid' | 'chart' | 'cta' | 'footer';
|
|
2025
|
+
interface LayoutBlock {
|
|
2026
|
+
id: string;
|
|
2027
|
+
type: LayoutBlockType;
|
|
2028
|
+
props: Record<string, unknown>;
|
|
2029
|
+
}
|
|
2030
|
+
interface LayoutSchema {
|
|
2031
|
+
version: '1';
|
|
2032
|
+
blocks: LayoutBlock[];
|
|
2033
|
+
}
|
|
2034
|
+
declare function renderGdsLayout(schema: LayoutSchema): react_jsx_runtime.JSX.Element;
|
|
2035
|
+
|
|
1929
2036
|
type ReportingSectionState = 'ready' | 'loading' | 'empty' | 'error' | 'below-threshold' | 'partial' | 'stale' | 'filtered' | 'permission-limited';
|
|
1930
2037
|
interface ReportingSectionProps {
|
|
1931
2038
|
title: ReactNode;
|
|
@@ -1942,6 +2049,39 @@ interface ReportingSectionProps {
|
|
|
1942
2049
|
}
|
|
1943
2050
|
declare function ReportingSection({ title, description, state, periodControl, evidence, metrics, chart, table, action, stateMessage, retryAction, }: ReportingSectionProps): react_jsx_runtime.JSX.Element;
|
|
1944
2051
|
|
|
2052
|
+
type GdsNotificationSeverity = 'success' | 'error' | 'warning' | 'info' | 'neutral';
|
|
2053
|
+
interface GdsNotificationAction {
|
|
2054
|
+
id: string;
|
|
2055
|
+
label: string;
|
|
2056
|
+
onClick: () => void;
|
|
2057
|
+
}
|
|
2058
|
+
interface GdsNotificationMessage {
|
|
2059
|
+
id: string;
|
|
2060
|
+
title: string;
|
|
2061
|
+
message?: ReactNode;
|
|
2062
|
+
severity?: GdsNotificationSeverity;
|
|
2063
|
+
autoCloseMs?: number | false;
|
|
2064
|
+
actions?: GdsNotificationAction[];
|
|
2065
|
+
}
|
|
2066
|
+
interface InlineAlertProps {
|
|
2067
|
+
title: string;
|
|
2068
|
+
message?: ReactNode;
|
|
2069
|
+
severity?: GdsNotificationSeverity;
|
|
2070
|
+
action?: ReactNode;
|
|
2071
|
+
}
|
|
2072
|
+
interface BannerNoticeProps extends InlineAlertProps {
|
|
2073
|
+
eyebrow?: ReactNode;
|
|
2074
|
+
}
|
|
2075
|
+
declare function InlineAlert({ title, message, severity, action, }: InlineAlertProps): react_jsx_runtime.JSX.Element;
|
|
2076
|
+
declare function BannerNotice({ eyebrow, title, message, severity, action, }: BannerNoticeProps): react_jsx_runtime.JSX.Element;
|
|
2077
|
+
declare function NotificationCenterView({ notifications, onDismiss, onClear, title, emptyMessage, }: {
|
|
2078
|
+
notifications: GdsNotificationMessage[];
|
|
2079
|
+
onDismiss?: (id: string) => void;
|
|
2080
|
+
onClear?: () => void;
|
|
2081
|
+
title?: ReactNode;
|
|
2082
|
+
emptyMessage?: ReactNode;
|
|
2083
|
+
}): react_jsx_runtime.JSX.Element;
|
|
2084
|
+
|
|
1945
2085
|
declare const en: {
|
|
1946
2086
|
'gds.action.settings': string;
|
|
1947
2087
|
'gds.action.analytics': string;
|
|
@@ -5754,4 +5894,4 @@ declare function getGdsMessages(locale: GdsLocale | string): {
|
|
|
5754
5894
|
'gds.state.emptyData': string;
|
|
5755
5895
|
};
|
|
5756
5896
|
|
|
5757
|
-
export { type
|
|
5897
|
+
export { type EditorialHeroMetaItem as $, AccentPanel as A, BannerNotice as B, type ChartLegendItem as C, ChartTokenPanel as D, type ChartTokenPanelProps as E, type ChartTokenPanelState as F, ChoiceChip as G, type ChoiceChipProps as H, ConsumerDashboardGrid as I, type ConsumerDashboardGridProps as J, ConsumerSection as K, type ConsumerSectionProps as L, CountBadge as M, type CountBadgeProps as N, CtaButtonGroup as O, type CtaButtonGroupProps as P, DataToolbar as Q, type DataToolbarFilterChip as R, type DataToolbarProps as S, DetailProfileShell as T, type DetailProfileShellProps as U, DocsPageShell as V, type DocsPageShellProps as W, EditorialCard as X, type EditorialCardProps as Y, EditorialHero as Z, type EditorialHeroAction as _, type AccentPanelProps as a, type PageHeaderProps as a$, type EditorialHeroProps as a0, EmptyState as a1, type EmptyStateProps as a2, EvidencePanel as a3, type EvidencePanelProps as a4, type EvidencePanelState as a5, FeatureBand as a6, type FeatureBandItem as a7, type FeatureBandProps as a8, FilterDrawer as a9, type InlineAlertProps as aA, LabelTag as aB, type LabelTagProps as aC, type LabelTagTone as aD, type LayoutBlock as aE, type LayoutBlockType as aF, type LayoutSchema as aG, ListingCard as aH, type ListingCardAffordance as aI, type ListingCardMediaRatio as aJ, type ListingCardProps as aK, type ListingFilterChip as aL, type ListingMetadataRow as aM, MapPanel as aN, type MapPanelProps as aO, MediaCard as aP, type MediaCardAction as aQ, type MediaCardProps as aR, MediaField as aS, type MediaFieldProps as aT, type MediaFieldState as aU, MetricCard as aV, type MetricCardProps as aW, NotificationCenterView as aX, PROVIDER_IDENTITY_REGISTRY as aY, PageHeader as aZ, type PageHeaderEyebrowVariant as a_, type FilterDrawerMode as aa, type FilterDrawerProps as ab, type FoodCardAvailabilityState as ac, type FoodCardMarker as ad, type FoodCardMediaRatio as ae, type FoodCardMetadata as af, type FoodMenuCategory as ag, type FoodMenuItem as ah, FoodMenuSection as ai, type FoodMenuSectionProps as aj, FormField as ak, type FormFieldProps as al, type GdsCardInteractiveMode as am, type GdsCardSize as an, GdsChart as ao, type GdsChartDatum as ap, type GdsChartProps as aq, type GdsChartType as ar, GdsIcons as as, type GdsLocale as at, type GdsNotificationAction as au, type GdsNotificationMessage as av, type GdsNotificationSeverity as aw, GdsVocabulary as ax, type GdsVocabularyPack as ay, InlineAlert as az, type AccentPanelVariant as b, type SemanticActionDefinition as b$, PeriodSelector as b0, type PeriodSelectorOption as b1, type PeriodSelectorProps as b2, PlaceholderPanel as b3, type PlaceholderPanelProps as b4, PlaybackSurface as b5, type PlaybackSurfaceProps as b6, type PlaybackSurfaceState as b7, ProductCard as b8, type ProductCardAction as b9, type PublicProductCardHelperKind as bA, type PublicProductCardMetaItem as bB, type PublicProductCardProps as bC, type PublicProductCardState as bD, PublicShell as bE, type PublicShellClassNames as bF, type PublicShellHeaderVariant as bG, type PublicShellMobileNavigationMode as bH, type PublicShellProps as bI, PublicSiteFooter as bJ, type PublicSiteFooterProps as bK, ReferenceLinkGrid as bL, type ReferenceLinkGridItem as bM, type ReferenceLinkGridProps as bN, ReferenceLocaleNotice as bO, type ReferenceLocaleNoticeProps as bP, ReferenceSection as bQ, type ReferenceSectionProps as bR, ReportingSection as bS, type ReportingSectionProps as bT, type ReportingSectionState as bU, ResultSummary as bV, type ResultSummaryProps as bW, SectionPanel as bX, type SectionPanelProps as bY, type SectionPanelTone as bZ, type SemanticAction as b_, type ProductCardMetaItem as ba, type ProductCardProps as bb, ProgressCard as bc, type ProgressCardProps as bd, type ProviderIdentity as be, ProviderIdentityButton as bf, ProviderIdentityButtonGroup as bg, type ProviderIdentityButtonGroupProps as bh, type ProviderIdentityButtonProps as bi, type ProviderIdentityVariant as bj, PublicBrandFooter as bk, type PublicBrandFooterClassNames as bl, type PublicBrandFooterLayoutVariant as bm, type PublicBrandFooterProps as bn, type PublicFlowAction as bo, type PublicFlowActionPriority as bp, PublicFlowShell as bq, type PublicFlowShellProps as br, type PublicFlowStage as bs, type PublicFlowStageStatus as bt, PublicFoodCard as bu, type PublicFoodCardProps as bv, PublicNav as bw, type PublicNavItem as bx, type PublicNavProps as by, PublicProductCard as bz, type AccentTone as c, type SemanticActionId as c0, SimpleDataTable as c1, type SimpleDataTableProps as c2, type SimpleTableColumn as c3, SocialAuthButtons as c4, type SocialAuthButtonsProps as c5, type SocialAuthProviderId as c6, type SocialAuthProviderOption as c7, SortMenu as c8, type SortMenuProps as c9, getSemanticActionConfig as cA, getSemanticActionLabel as cB, getSupportedProviderIdentityIds as cC, he as cD, hu as cE, isPresentationMode as cF, it as cG, mergeGdsVocabularyPacks as cH, renderGdsLayout as cI, resolveAccentPanelStyles as cJ, resolveSemanticActionConfig as cK, resolveSurfacePresentationStyles as cL, ru as cM, type SortOption as ca, StateBlock as cb, type StateBlockProps as cc, type StateBlockVariant as cd, StatsSection as ce, type StatsSectionProps as cf, StatusBadge as cg, type StatusBadgeProps as ch, type StatusVariant as ci, type SurfaceContentAlign as cj, type SurfaceContentJustify as ck, type SurfacePresentation as cl, type SurfacePresentationProps as cm, type VocabularyResolver as cn, ar as co, createGdsVocabularyPack as cp, de as cq, en as cr, es as cs, fr as ct, gdsCardSizePaddingMap as cu, gdsCardTitleOrderMap as cv, gdsLocales as cw, getGdsMessages as cx, getProviderIdentityLabel as cy, getProviderIdentityPolicy as cz, AccessSummary as d, type AccessSummaryProps as e, ActionBar as f, type ActionBarAction as g, type ActionBarIconAction as h, type ActionBarProps as i, ActiveFilterChips as j, type ActiveFilterChipsProps as k, ArticleShell as l, type ArticleShellProps as m, AsyncSurface as n, type AsyncSurfaceProps as o, type AsyncSurfaceState as p, AuthShell as q, type AuthShellProps as r, type BannerNoticeProps as s, type BreadcrumbItem as t, BrowseSurface as u, type BrowseSurfaceFilterChip as v, type BrowseSurfaceProps as w, type BrowseSurfaceScopeOption as x, BulkActionsBar as y, type BulkActionsBarProps 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
|
|
1
|
+
export { A as AccentPanel, a as AccentPanelProps, b as AccentPanelVariant, c as AccentTone, d as AccessSummary, e as AccessSummaryProps, j as ActiveFilterChips, k as ActiveFilterChipsProps, l as ArticleShell, m as ArticleShellProps, n as AsyncSurface, o as AsyncSurfaceProps, p as AsyncSurfaceState, q as AuthShell, r as AuthShellProps, B as BannerNotice, s as BannerNoticeProps, t as BreadcrumbItem, u as BrowseSurface, v as BrowseSurfaceFilterChip, w as BrowseSurfaceProps, x as BrowseSurfaceScopeOption, y as BulkActionsBar, z as BulkActionsBarProps, C as ChartLegendItem, D as ChartTokenPanel, E as ChartTokenPanelProps, F as ChartTokenPanelState, G as ChoiceChip, H as ChoiceChipProps, I as ConsumerDashboardGrid, J as ConsumerDashboardGridProps, K as ConsumerSection, L as ConsumerSectionProps, M as CountBadge, N as CountBadgeProps, O as CtaButtonGroup, P as CtaButtonGroupProps, Q as DataToolbar, R as DataToolbarFilterChip, S as DataToolbarProps, T as DetailProfileShell, U as DetailProfileShellProps, V as DocsPageShell, W as DocsPageShellProps, X as EditorialCard, Y as EditorialCardProps, Z as EditorialHero, _ as EditorialHeroAction, $ as EditorialHeroMetaItem, a0 as EditorialHeroProps, a1 as EmptyState, a2 as EmptyStateProps, a3 as EvidencePanel, a4 as EvidencePanelProps, a5 as EvidencePanelState, a6 as FeatureBand, a7 as FeatureBandItem, a8 as FeatureBandProps, a9 as FilterDrawer, aa as FilterDrawerMode, ab as FilterDrawerProps, ac as FoodCardAvailabilityState, ad as FoodCardMarker, ae as FoodCardMediaRatio, af as FoodCardMetadata, ag as FoodMenuCategory, ah as FoodMenuItem, ai as FoodMenuSection, aj as FoodMenuSectionProps, ak as FormField, al as FormFieldProps, am as GdsCardInteractiveMode, an as GdsCardSize, ao as GdsChart, ap as GdsChartDatum, aq as GdsChartProps, ar as GdsChartType, as as GdsIcons, at as GdsLocale, au as GdsNotificationAction, av as GdsNotificationMessage, aw as GdsNotificationSeverity, ax as GdsVocabulary, ay as GdsVocabularyPack, az as InlineAlert, aA as InlineAlertProps, aB as LabelTag, aC as LabelTagProps, aD as LabelTagTone, aE as LayoutBlock, aF as LayoutBlockType, aG as LayoutSchema, aH as ListingCard, aI as ListingCardAffordance, aJ as ListingCardMediaRatio, aK as ListingCardProps, aL as ListingFilterChip, aM as ListingMetadataRow, aN as MapPanel, aO as MapPanelProps, aP as MediaCard, aQ as MediaCardAction, aR as MediaCardProps, aS as MediaField, aT as MediaFieldProps, aU as MediaFieldState, aV as MetricCard, aW as MetricCardProps, aX as NotificationCenterView, aY as PROVIDER_IDENTITY_REGISTRY, aZ as PageHeader, a_ as PageHeaderEyebrowVariant, a$ as PageHeaderProps, b0 as PeriodSelector, b1 as PeriodSelectorOption, b2 as PeriodSelectorProps, b3 as PlaceholderPanel, b4 as PlaceholderPanelProps, b5 as PlaybackSurface, b6 as PlaybackSurfaceProps, b7 as PlaybackSurfaceState, b8 as ProductCard, b9 as ProductCardAction, ba as ProductCardMetaItem, bb as ProductCardProps, bc as ProgressCard, bd as ProgressCardProps, be as ProviderIdentity, bf as ProviderIdentityButton, bg as ProviderIdentityButtonGroup, bh as ProviderIdentityButtonGroupProps, bi as ProviderIdentityButtonProps, bj as ProviderIdentityVariant, bk as PublicBrandFooter, bl as PublicBrandFooterClassNames, bm as PublicBrandFooterLayoutVariant, bn as PublicBrandFooterProps, bo as PublicFlowAction, bp as PublicFlowActionPriority, bq as PublicFlowShell, br as PublicFlowShellProps, bs as PublicFlowStage, bt as PublicFlowStageStatus, bu as PublicFoodCard, bv as PublicFoodCardProps, bw as PublicNav, bx as PublicNavItem, by as PublicNavProps, bz as PublicProductCard, bA as PublicProductCardHelperKind, bB as PublicProductCardMetaItem, bC as PublicProductCardProps, bD as PublicProductCardState, bE as PublicShell, bF as PublicShellClassNames, bG as PublicShellHeaderVariant, bH as PublicShellMobileNavigationMode, bI as PublicShellProps, bJ as PublicSiteFooter, bK as PublicSiteFooterProps, bL as ReferenceLinkGrid, bM as ReferenceLinkGridItem, bN as ReferenceLinkGridProps, bO as ReferenceLocaleNotice, bP as ReferenceLocaleNoticeProps, bQ as ReferenceSection, bR as ReferenceSectionProps, bS as ReportingSection, bT as ReportingSectionProps, bU as ReportingSectionState, bV as ResultSummary, bW as ResultSummaryProps, bX as SectionPanel, bY as SectionPanelProps, bZ as SectionPanelTone, b_ as SemanticAction, b$ as SemanticActionDefinition, c0 as SemanticActionId, c1 as SimpleDataTable, c2 as SimpleDataTableProps, c3 as SimpleTableColumn, c4 as SocialAuthButtons, c5 as SocialAuthButtonsProps, c6 as SocialAuthProviderId, c7 as SocialAuthProviderOption, c8 as SortMenu, c9 as SortMenuProps, ca as SortOption, cb as StateBlock, cc as StateBlockProps, cd as StateBlockVariant, ce as StatsSection, cf as StatsSectionProps, cg as StatusBadge, ch as StatusBadgeProps, ci as StatusVariant, cj as SurfaceContentAlign, ck as SurfaceContentJustify, cl as SurfacePresentation, cm as SurfacePresentationProps, cn as VocabularyResolver, co as ar, cp as createGdsVocabularyPack, cq as de, cr as en, cs as es, ct as fr, cu as gdsCardSizePaddingMap, cv as gdsCardTitleOrderMap, cw as gdsLocales, cx as getGdsMessages, cy as getProviderIdentityLabel, cz as getProviderIdentityPolicy, cA as getSemanticActionConfig, cB as getSemanticActionLabel, cC as getSupportedProviderIdentityIds, cD as he, cE as hu, cF as isPresentationMode, cG as it, cH as mergeGdsVocabularyPacks, cI as renderGdsLayout, cJ as resolveAccentPanelStyles, cK as resolveSemanticActionConfig, cL as resolveSurfacePresentationStyles, cM as ru } from './server-DCXU_K9q.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
|
|
1
|
+
export { A as AccentPanel, a as AccentPanelProps, b as AccentPanelVariant, c as AccentTone, d as AccessSummary, e as AccessSummaryProps, j as ActiveFilterChips, k as ActiveFilterChipsProps, l as ArticleShell, m as ArticleShellProps, n as AsyncSurface, o as AsyncSurfaceProps, p as AsyncSurfaceState, q as AuthShell, r as AuthShellProps, B as BannerNotice, s as BannerNoticeProps, t as BreadcrumbItem, u as BrowseSurface, v as BrowseSurfaceFilterChip, w as BrowseSurfaceProps, x as BrowseSurfaceScopeOption, y as BulkActionsBar, z as BulkActionsBarProps, C as ChartLegendItem, D as ChartTokenPanel, E as ChartTokenPanelProps, F as ChartTokenPanelState, G as ChoiceChip, H as ChoiceChipProps, I as ConsumerDashboardGrid, J as ConsumerDashboardGridProps, K as ConsumerSection, L as ConsumerSectionProps, M as CountBadge, N as CountBadgeProps, O as CtaButtonGroup, P as CtaButtonGroupProps, Q as DataToolbar, R as DataToolbarFilterChip, S as DataToolbarProps, T as DetailProfileShell, U as DetailProfileShellProps, V as DocsPageShell, W as DocsPageShellProps, X as EditorialCard, Y as EditorialCardProps, Z as EditorialHero, _ as EditorialHeroAction, $ as EditorialHeroMetaItem, a0 as EditorialHeroProps, a1 as EmptyState, a2 as EmptyStateProps, a3 as EvidencePanel, a4 as EvidencePanelProps, a5 as EvidencePanelState, a6 as FeatureBand, a7 as FeatureBandItem, a8 as FeatureBandProps, a9 as FilterDrawer, aa as FilterDrawerMode, ab as FilterDrawerProps, ac as FoodCardAvailabilityState, ad as FoodCardMarker, ae as FoodCardMediaRatio, af as FoodCardMetadata, ag as FoodMenuCategory, ah as FoodMenuItem, ai as FoodMenuSection, aj as FoodMenuSectionProps, ak as FormField, al as FormFieldProps, am as GdsCardInteractiveMode, an as GdsCardSize, ao as GdsChart, ap as GdsChartDatum, aq as GdsChartProps, ar as GdsChartType, as as GdsIcons, at as GdsLocale, au as GdsNotificationAction, av as GdsNotificationMessage, aw as GdsNotificationSeverity, ax as GdsVocabulary, ay as GdsVocabularyPack, az as InlineAlert, aA as InlineAlertProps, aB as LabelTag, aC as LabelTagProps, aD as LabelTagTone, aE as LayoutBlock, aF as LayoutBlockType, aG as LayoutSchema, aH as ListingCard, aI as ListingCardAffordance, aJ as ListingCardMediaRatio, aK as ListingCardProps, aL as ListingFilterChip, aM as ListingMetadataRow, aN as MapPanel, aO as MapPanelProps, aP as MediaCard, aQ as MediaCardAction, aR as MediaCardProps, aS as MediaField, aT as MediaFieldProps, aU as MediaFieldState, aV as MetricCard, aW as MetricCardProps, aX as NotificationCenterView, aY as PROVIDER_IDENTITY_REGISTRY, aZ as PageHeader, a_ as PageHeaderEyebrowVariant, a$ as PageHeaderProps, b0 as PeriodSelector, b1 as PeriodSelectorOption, b2 as PeriodSelectorProps, b3 as PlaceholderPanel, b4 as PlaceholderPanelProps, b5 as PlaybackSurface, b6 as PlaybackSurfaceProps, b7 as PlaybackSurfaceState, b8 as ProductCard, b9 as ProductCardAction, ba as ProductCardMetaItem, bb as ProductCardProps, bc as ProgressCard, bd as ProgressCardProps, be as ProviderIdentity, bf as ProviderIdentityButton, bg as ProviderIdentityButtonGroup, bh as ProviderIdentityButtonGroupProps, bi as ProviderIdentityButtonProps, bj as ProviderIdentityVariant, bk as PublicBrandFooter, bl as PublicBrandFooterClassNames, bm as PublicBrandFooterLayoutVariant, bn as PublicBrandFooterProps, bo as PublicFlowAction, bp as PublicFlowActionPriority, bq as PublicFlowShell, br as PublicFlowShellProps, bs as PublicFlowStage, bt as PublicFlowStageStatus, bu as PublicFoodCard, bv as PublicFoodCardProps, bw as PublicNav, bx as PublicNavItem, by as PublicNavProps, bz as PublicProductCard, bA as PublicProductCardHelperKind, bB as PublicProductCardMetaItem, bC as PublicProductCardProps, bD as PublicProductCardState, bE as PublicShell, bF as PublicShellClassNames, bG as PublicShellHeaderVariant, bH as PublicShellMobileNavigationMode, bI as PublicShellProps, bJ as PublicSiteFooter, bK as PublicSiteFooterProps, bL as ReferenceLinkGrid, bM as ReferenceLinkGridItem, bN as ReferenceLinkGridProps, bO as ReferenceLocaleNotice, bP as ReferenceLocaleNoticeProps, bQ as ReferenceSection, bR as ReferenceSectionProps, bS as ReportingSection, bT as ReportingSectionProps, bU as ReportingSectionState, bV as ResultSummary, bW as ResultSummaryProps, bX as SectionPanel, bY as SectionPanelProps, bZ as SectionPanelTone, b_ as SemanticAction, b$ as SemanticActionDefinition, c0 as SemanticActionId, c1 as SimpleDataTable, c2 as SimpleDataTableProps, c3 as SimpleTableColumn, c4 as SocialAuthButtons, c5 as SocialAuthButtonsProps, c6 as SocialAuthProviderId, c7 as SocialAuthProviderOption, c8 as SortMenu, c9 as SortMenuProps, ca as SortOption, cb as StateBlock, cc as StateBlockProps, cd as StateBlockVariant, ce as StatsSection, cf as StatsSectionProps, cg as StatusBadge, ch as StatusBadgeProps, ci as StatusVariant, cj as SurfaceContentAlign, ck as SurfaceContentJustify, cl as SurfacePresentation, cm as SurfacePresentationProps, cn as VocabularyResolver, co as ar, cp as createGdsVocabularyPack, cq as de, cr as en, cs as es, ct as fr, cu as gdsCardSizePaddingMap, cv as gdsCardTitleOrderMap, cw as gdsLocales, cx as getGdsMessages, cy as getProviderIdentityLabel, cz as getProviderIdentityPolicy, cA as getSemanticActionConfig, cB as getSemanticActionLabel, cC as getSupportedProviderIdentityIds, cD as he, cE as hu, cF as isPresentationMode, cG as it, cH as mergeGdsVocabularyPacks, cI as renderGdsLayout, cJ as resolveAccentPanelStyles, cK as resolveSemanticActionConfig, cL as resolveSurfacePresentationStyles, cM as ru } from './server-DCXU_K9q.js';
|
|
2
2
|
import 'react';
|
|
3
3
|
import '@tabler/icons-react';
|
|
4
4
|
import 'react/jsx-runtime';
|