@doneisbetter/gds-core 2.6.6 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-4YTMKBGW.mjs → chunk-NBCULITN.mjs} +303 -87
- package/dist/{chunk-IAP3JU55.mjs → chunk-P7ICTEEB.mjs} +762 -275
- package/dist/client.d.mts +29 -5
- package/dist/client.d.ts +29 -5
- package/dist/client.js +1105 -385
- package/dist/client.mjs +28 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1105 -385
- package/dist/index.mjs +28 -2
- package/dist/{server-CF4gCYQ-.d.mts → server-woziKWie.d.mts} +195 -10
- package/dist/{server-CF4gCYQ-.d.ts → server-woziKWie.d.ts} +195 -10
- package/dist/server.d.mts +1 -1
- package/dist/server.d.ts +1 -1
- package/dist/server.js +776 -273
- package/dist/server.mjs +25 -1
- package/package.json +2 -2
|
@@ -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;
|
|
@@ -1461,15 +1473,103 @@ declare function PublicBrandFooter({ media, brandTitle, description, actions, se
|
|
|
1461
1473
|
interface AuthShellProps {
|
|
1462
1474
|
title: string;
|
|
1463
1475
|
description?: ReactNode;
|
|
1476
|
+
intent?: 'sign-in' | 'sign-up' | 'account-linking' | 'guest-entry';
|
|
1464
1477
|
brand?: ReactNode;
|
|
1465
1478
|
headerActions?: ReactNode;
|
|
1466
1479
|
footer?: ReactNode;
|
|
1467
1480
|
helper?: ReactNode;
|
|
1481
|
+
error?: ReactNode;
|
|
1482
|
+
guestAction?: ReactNode;
|
|
1483
|
+
supportAction?: ReactNode;
|
|
1468
1484
|
socialAuth?: ReactNode;
|
|
1469
1485
|
dividerLabel?: ReactNode;
|
|
1470
1486
|
children: ReactNode;
|
|
1471
1487
|
}
|
|
1472
|
-
declare function AuthShell({ title, description, brand, headerActions, footer, helper, socialAuth, dividerLabel, children, }: AuthShellProps): react_jsx_runtime.JSX.Element;
|
|
1488
|
+
declare function AuthShell({ title, description, intent, brand, headerActions, footer, helper, error, guestAction, supportAction, socialAuth, dividerLabel, children, }: AuthShellProps): react_jsx_runtime.JSX.Element;
|
|
1489
|
+
|
|
1490
|
+
declare const PROVIDER_IDENTITY_REGISTRY: {
|
|
1491
|
+
readonly google: {
|
|
1492
|
+
readonly providerLabel: "Google";
|
|
1493
|
+
readonly markLabel: "G";
|
|
1494
|
+
readonly brandColor: "red";
|
|
1495
|
+
};
|
|
1496
|
+
readonly apple: {
|
|
1497
|
+
readonly providerLabel: "Apple";
|
|
1498
|
+
readonly markLabel: "A";
|
|
1499
|
+
readonly brandColor: "dark";
|
|
1500
|
+
};
|
|
1501
|
+
readonly github: {
|
|
1502
|
+
readonly providerLabel: "GitHub";
|
|
1503
|
+
readonly markLabel: "GH";
|
|
1504
|
+
readonly brandColor: "gray";
|
|
1505
|
+
};
|
|
1506
|
+
readonly facebook: {
|
|
1507
|
+
readonly providerLabel: "Facebook";
|
|
1508
|
+
readonly markLabel: "F";
|
|
1509
|
+
readonly brandColor: "blue";
|
|
1510
|
+
};
|
|
1511
|
+
readonly microsoft: {
|
|
1512
|
+
readonly providerLabel: "Microsoft";
|
|
1513
|
+
readonly markLabel: "M";
|
|
1514
|
+
readonly brandColor: "cyan";
|
|
1515
|
+
};
|
|
1516
|
+
readonly linkedin: {
|
|
1517
|
+
readonly providerLabel: "LinkedIn";
|
|
1518
|
+
readonly markLabel: "in";
|
|
1519
|
+
readonly brandColor: "blue";
|
|
1520
|
+
};
|
|
1521
|
+
readonly discord: {
|
|
1522
|
+
readonly providerLabel: "Discord";
|
|
1523
|
+
readonly markLabel: "D";
|
|
1524
|
+
readonly brandColor: "indigo";
|
|
1525
|
+
};
|
|
1526
|
+
readonly x: {
|
|
1527
|
+
readonly providerLabel: "X";
|
|
1528
|
+
readonly markLabel: "X";
|
|
1529
|
+
readonly brandColor: "dark";
|
|
1530
|
+
};
|
|
1531
|
+
readonly email: {
|
|
1532
|
+
readonly providerLabel: "Email";
|
|
1533
|
+
readonly markLabel: "@";
|
|
1534
|
+
readonly brandColor: "gray";
|
|
1535
|
+
};
|
|
1536
|
+
};
|
|
1537
|
+
type ProviderIdentity = keyof typeof PROVIDER_IDENTITY_REGISTRY | (string & {});
|
|
1538
|
+
type ProviderIdentityVariant = 'solid' | 'outline' | 'neutral';
|
|
1539
|
+
interface ProviderIdentityButtonProps {
|
|
1540
|
+
provider: ProviderIdentity;
|
|
1541
|
+
label?: ReactNode;
|
|
1542
|
+
description?: ReactNode;
|
|
1543
|
+
policyNote?: ReactNode;
|
|
1544
|
+
error?: ReactNode;
|
|
1545
|
+
href?: string;
|
|
1546
|
+
onClick?: () => void;
|
|
1547
|
+
disabled?: boolean;
|
|
1548
|
+
loading?: boolean;
|
|
1549
|
+
tenantDisabledReason?: ReactNode;
|
|
1550
|
+
fullWidth?: boolean;
|
|
1551
|
+
size?: 'sm' | 'md' | 'lg';
|
|
1552
|
+
variant?: ProviderIdentityVariant;
|
|
1553
|
+
ariaLabel?: string;
|
|
1554
|
+
describedBy?: string;
|
|
1555
|
+
minTouchTargetPx?: number;
|
|
1556
|
+
}
|
|
1557
|
+
interface ProviderIdentityButtonGroupProps {
|
|
1558
|
+
providers: ProviderIdentityButtonProps[];
|
|
1559
|
+
layout?: 'stack' | 'grid';
|
|
1560
|
+
}
|
|
1561
|
+
declare function getProviderIdentityLabel(provider: string, fallbackOverride?: ReactNode): string | number | bigint | boolean | react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | Iterable<ReactNode> | Promise<string | number | bigint | boolean | react.ReactPortal | react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined>;
|
|
1562
|
+
declare function getSupportedProviderIdentityIds(): string[];
|
|
1563
|
+
declare function getProviderIdentityPolicy(provider: string): {
|
|
1564
|
+
id: string;
|
|
1565
|
+
supported: boolean;
|
|
1566
|
+
providerLabel: string;
|
|
1567
|
+
colorAuthority: string;
|
|
1568
|
+
minTouchTargetPx: number;
|
|
1569
|
+
allowedVariants: ProviderIdentityVariant[];
|
|
1570
|
+
};
|
|
1571
|
+
declare function ProviderIdentityButton({ provider, label, description, policyNote, error, href, onClick, disabled, loading, tenantDisabledReason, fullWidth, size, variant, ariaLabel, describedBy, minTouchTargetPx, }: ProviderIdentityButtonProps): react_jsx_runtime.JSX.Element;
|
|
1572
|
+
declare function ProviderIdentityButtonGroup({ providers, layout }: ProviderIdentityButtonGroupProps): react_jsx_runtime.JSX.Element | null;
|
|
1473
1573
|
|
|
1474
1574
|
type SocialAuthProviderId = 'google' | 'apple' | 'github' | 'facebook' | 'microsoft' | 'linkedin' | 'discord' | 'x' | 'email';
|
|
1475
1575
|
interface SocialAuthProviderOption {
|
|
@@ -1477,9 +1577,14 @@ interface SocialAuthProviderOption {
|
|
|
1477
1577
|
href?: string;
|
|
1478
1578
|
onClick?: () => void;
|
|
1479
1579
|
label?: ReactNode;
|
|
1580
|
+
policyNote?: ReactNode;
|
|
1581
|
+
error?: ReactNode;
|
|
1480
1582
|
disabled?: boolean;
|
|
1481
1583
|
loading?: boolean;
|
|
1584
|
+
tenantDisabledReason?: ReactNode;
|
|
1482
1585
|
description?: ReactNode;
|
|
1586
|
+
variant?: ProviderIdentityVariant;
|
|
1587
|
+
size?: ProviderIdentityButtonProps['size'];
|
|
1483
1588
|
}
|
|
1484
1589
|
interface SocialAuthButtonsProps {
|
|
1485
1590
|
providers: SocialAuthProviderOption[];
|
|
@@ -1641,6 +1746,7 @@ interface PlaybackSurfaceProps {
|
|
|
1641
1746
|
}
|
|
1642
1747
|
declare function PlaybackSurface({ title, state, media, statusMessage, controls, emptyState, errorState, overlays, mode, }: PlaybackSurfaceProps): react_jsx_runtime.JSX.Element;
|
|
1643
1748
|
|
|
1749
|
+
type MediaFieldState = 'empty' | 'drag-active' | 'selected' | 'preview-loading' | 'uploading' | 'upload-failed' | 'unsupported-type' | 'too-large' | 'removed' | 'saved' | 'invalid' | 'readonly';
|
|
1644
1750
|
interface MediaFieldProps {
|
|
1645
1751
|
label: ReactNode;
|
|
1646
1752
|
description?: ReactNode;
|
|
@@ -1652,15 +1758,20 @@ interface MediaFieldProps {
|
|
|
1652
1758
|
policyText?: ReactNode;
|
|
1653
1759
|
error?: ReactNode;
|
|
1654
1760
|
retryAction?: ReactNode;
|
|
1761
|
+
replaceAction?: ReactNode;
|
|
1655
1762
|
onRemove?: () => void;
|
|
1656
1763
|
onReset?: () => void;
|
|
1657
1764
|
removeAction?: ReactNode;
|
|
1658
1765
|
resetAction?: ReactNode;
|
|
1659
1766
|
statusAction?: ReactNode;
|
|
1660
|
-
state?:
|
|
1767
|
+
state?: MediaFieldState;
|
|
1768
|
+
acceptedTypes?: ReactNode;
|
|
1769
|
+
maxSize?: ReactNode;
|
|
1770
|
+
progress?: number;
|
|
1771
|
+
readonly?: boolean;
|
|
1661
1772
|
mode?: 'stacked' | 'split';
|
|
1662
1773
|
}
|
|
1663
|
-
declare function MediaField({ label, description, value, preview, uploadControl, urlInput, helpText, policyText, error, retryAction, onRemove, onReset, removeAction, resetAction, statusAction, state, mode, }: MediaFieldProps): react_jsx_runtime.JSX.Element;
|
|
1774
|
+
declare function MediaField({ label, description, value, preview, uploadControl, urlInput, helpText, policyText, error, retryAction, replaceAction, onRemove, onReset, removeAction, resetAction, statusAction, acceptedTypes, maxSize, progress, readonly, state, mode, }: MediaFieldProps): react_jsx_runtime.JSX.Element;
|
|
1664
1775
|
|
|
1665
1776
|
interface MediaCardAction {
|
|
1666
1777
|
label: string;
|
|
@@ -1681,9 +1792,12 @@ interface AccessSummaryProps {
|
|
|
1681
1792
|
roles: string[];
|
|
1682
1793
|
scope?: string;
|
|
1683
1794
|
blocked?: boolean;
|
|
1795
|
+
state?: 'allowed' | 'blocked' | 'forbidden' | 'expired' | 'permission-limited';
|
|
1796
|
+
owner?: ReactNode;
|
|
1797
|
+
recoveryHint?: ReactNode;
|
|
1684
1798
|
description?: ReactNode;
|
|
1685
1799
|
}
|
|
1686
|
-
declare function AccessSummary({ title, roles, scope, blocked, description }: AccessSummaryProps): react_jsx_runtime.JSX.Element;
|
|
1800
|
+
declare function AccessSummary({ title, roles, scope, blocked, state, owner, recoveryHint, description }: AccessSummaryProps): react_jsx_runtime.JSX.Element;
|
|
1687
1801
|
|
|
1688
1802
|
interface FormFieldProps {
|
|
1689
1803
|
label: ReactNode;
|
|
@@ -1757,6 +1871,77 @@ interface StatsSectionProps {
|
|
|
1757
1871
|
}
|
|
1758
1872
|
declare function StatsSection({ title, loading, error, belowThreshold, thresholdMessage, children, placeholder, }: StatsSectionProps): react_jsx_runtime.JSX.Element;
|
|
1759
1873
|
|
|
1874
|
+
interface PeriodSelectorOption {
|
|
1875
|
+
value: string;
|
|
1876
|
+
label: string;
|
|
1877
|
+
description?: string;
|
|
1878
|
+
}
|
|
1879
|
+
interface PeriodSelectorProps {
|
|
1880
|
+
label: ReactNode;
|
|
1881
|
+
description?: ReactNode;
|
|
1882
|
+
value: string;
|
|
1883
|
+
options: PeriodSelectorOption[];
|
|
1884
|
+
onChange?: (value: string) => void;
|
|
1885
|
+
timezone?: string;
|
|
1886
|
+
scope?: ReactNode;
|
|
1887
|
+
helperText?: ReactNode;
|
|
1888
|
+
error?: ReactNode;
|
|
1889
|
+
stale?: boolean;
|
|
1890
|
+
filtered?: boolean;
|
|
1891
|
+
disabled?: boolean;
|
|
1892
|
+
}
|
|
1893
|
+
declare function PeriodSelector({ label, description, value, options, onChange, timezone, scope, helperText, error, stale, filtered, disabled, }: PeriodSelectorProps): react_jsx_runtime.JSX.Element;
|
|
1894
|
+
|
|
1895
|
+
type EvidencePanelState = 'current' | 'stale' | 'partial' | 'permission-limited' | 'loading' | 'empty' | 'error';
|
|
1896
|
+
interface EvidencePanelProps {
|
|
1897
|
+
title: ReactNode;
|
|
1898
|
+
description?: ReactNode;
|
|
1899
|
+
source?: ReactNode;
|
|
1900
|
+
freshness?: ReactNode;
|
|
1901
|
+
confidence?: ReactNode;
|
|
1902
|
+
state?: EvidencePanelState;
|
|
1903
|
+
evidenceCount?: number;
|
|
1904
|
+
permissionNote?: ReactNode;
|
|
1905
|
+
retryAction?: ReactNode;
|
|
1906
|
+
details?: ReactNode;
|
|
1907
|
+
children?: ReactNode;
|
|
1908
|
+
}
|
|
1909
|
+
declare function EvidencePanel({ title, description, source, freshness, confidence, state, evidenceCount, permissionNote, retryAction, details, children, }: EvidencePanelProps): react_jsx_runtime.JSX.Element;
|
|
1910
|
+
|
|
1911
|
+
type ChartTokenPanelState = 'ready' | 'loading' | 'empty' | 'below-threshold' | 'partial' | 'error' | 'permission-limited';
|
|
1912
|
+
interface ChartLegendItem {
|
|
1913
|
+
label: ReactNode;
|
|
1914
|
+
token: string;
|
|
1915
|
+
description?: ReactNode;
|
|
1916
|
+
}
|
|
1917
|
+
interface ChartTokenPanelProps {
|
|
1918
|
+
title: ReactNode;
|
|
1919
|
+
description?: ReactNode;
|
|
1920
|
+
summary: ReactNode;
|
|
1921
|
+
state?: ChartTokenPanelState;
|
|
1922
|
+
legend?: ChartLegendItem[];
|
|
1923
|
+
children?: ReactNode;
|
|
1924
|
+
tableFallback?: ReactNode;
|
|
1925
|
+
retryAction?: ReactNode;
|
|
1926
|
+
}
|
|
1927
|
+
declare function ChartTokenPanel({ title, description, summary, state, legend, children, tableFallback, retryAction, }: ChartTokenPanelProps): react_jsx_runtime.JSX.Element;
|
|
1928
|
+
|
|
1929
|
+
type ReportingSectionState = 'ready' | 'loading' | 'empty' | 'error' | 'below-threshold' | 'partial' | 'stale' | 'filtered' | 'permission-limited';
|
|
1930
|
+
interface ReportingSectionProps {
|
|
1931
|
+
title: ReactNode;
|
|
1932
|
+
description?: ReactNode;
|
|
1933
|
+
state?: ReportingSectionState;
|
|
1934
|
+
periodControl?: ReactNode;
|
|
1935
|
+
evidence?: ReactNode;
|
|
1936
|
+
metrics?: ReactNode;
|
|
1937
|
+
chart?: ReactNode;
|
|
1938
|
+
table?: ReactNode;
|
|
1939
|
+
action?: ReactNode;
|
|
1940
|
+
stateMessage?: ReactNode;
|
|
1941
|
+
retryAction?: ReactNode;
|
|
1942
|
+
}
|
|
1943
|
+
declare function ReportingSection({ title, description, state, periodControl, evidence, metrics, chart, table, action, stateMessage, retryAction, }: ReportingSectionProps): react_jsx_runtime.JSX.Element;
|
|
1944
|
+
|
|
1760
1945
|
declare const en: {
|
|
1761
1946
|
'gds.action.settings': string;
|
|
1762
1947
|
'gds.action.analytics': string;
|
|
@@ -5569,4 +5754,4 @@ declare function getGdsMessages(locale: GdsLocale | string): {
|
|
|
5569
5754
|
'gds.state.emptyData': string;
|
|
5570
5755
|
};
|
|
5571
5756
|
|
|
5572
|
-
export { type
|
|
5757
|
+
export { type FilterDrawerMode as $, AccentPanel as A, type BreadcrumbItem as B, type ChartLegendItem as C, CtaButtonGroup as D, type CtaButtonGroupProps as E, DataToolbar as F, type DataToolbarFilterChip as G, type DataToolbarProps as H, DetailProfileShell as I, type DetailProfileShellProps as J, DocsPageShell as K, type DocsPageShellProps as L, EditorialCard as M, type EditorialCardProps as N, EditorialHero as O, type EditorialHeroAction as P, type EditorialHeroMetaItem as Q, type EditorialHeroProps as R, EmptyState as S, type EmptyStateProps as T, EvidencePanel as U, type EvidencePanelProps as V, type EvidencePanelState as W, FeatureBand as X, type FeatureBandItem as Y, type FeatureBandProps as Z, FilterDrawer as _, type AccentPanelProps as a, type PublicFlowStageStatus as a$, type FilterDrawerProps as a0, type FoodCardAvailabilityState as a1, type FoodCardMarker as a2, type FoodCardMediaRatio as a3, type FoodCardMetadata as a4, type FoodMenuCategory as a5, type FoodMenuItem as a6, FoodMenuSection as a7, type FoodMenuSectionProps as a8, FormField as a9, type PeriodSelectorProps as aA, PlaceholderPanel as aB, type PlaceholderPanelProps as aC, PlaybackSurface as aD, type PlaybackSurfaceProps as aE, type PlaybackSurfaceState as aF, ProductCard as aG, type ProductCardAction as aH, type ProductCardMetaItem as aI, type ProductCardProps as aJ, ProgressCard as aK, type ProgressCardProps as aL, type ProviderIdentity as aM, ProviderIdentityButton as aN, ProviderIdentityButtonGroup as aO, type ProviderIdentityButtonGroupProps as aP, type ProviderIdentityButtonProps as aQ, type ProviderIdentityVariant as aR, PublicBrandFooter as aS, type PublicBrandFooterClassNames as aT, type PublicBrandFooterLayoutVariant as aU, type PublicBrandFooterProps as aV, type PublicFlowAction as aW, type PublicFlowActionPriority as aX, PublicFlowShell as aY, type PublicFlowShellProps as aZ, type PublicFlowStage as a_, type FormFieldProps as aa, GdsIcons as ab, type GdsLocale as ac, GdsVocabulary as ad, type GdsVocabularyPack as ae, ListingCard as af, type ListingCardAffordance as ag, type ListingCardMediaRatio as ah, type ListingCardProps as ai, type ListingMetadataRow as aj, MapPanel as ak, type MapPanelProps as al, MediaCard as am, type MediaCardAction as an, type MediaCardProps as ao, MediaField as ap, type MediaFieldProps as aq, type MediaFieldState as ar, MetricCard as as, type MetricCardProps as at, PROVIDER_IDENTITY_REGISTRY as au, PageHeader as av, type PageHeaderEyebrowVariant as aw, type PageHeaderProps as ax, PeriodSelector as ay, type PeriodSelectorOption as az, type AccentPanelVariant as b, getSemanticActionConfig as b$, PublicFoodCard as b0, type PublicFoodCardProps as b1, PublicNav as b2, type PublicNavItem as b3, type PublicNavProps as b4, PublicProductCard as b5, type PublicProductCardHelperKind as b6, type PublicProductCardMetaItem as b7, type PublicProductCardProps as b8, type PublicProductCardState as b9, SocialAuthButtons as bA, type SocialAuthButtonsProps as bB, type SocialAuthProviderId as bC, type SocialAuthProviderOption as bD, StateBlock as bE, type StateBlockProps as bF, type StateBlockVariant as bG, StatsSection as bH, type StatsSectionProps as bI, StatusBadge as bJ, type StatusBadgeProps as bK, type StatusVariant as bL, type SurfaceContentAlign as bM, type SurfaceContentJustify as bN, type SurfacePresentation as bO, type SurfacePresentationProps as bP, type VocabularyResolver as bQ, ar as bR, createGdsVocabularyPack as bS, de as bT, en as bU, es as bV, fr as bW, gdsLocales as bX, getGdsMessages as bY, getProviderIdentityLabel as bZ, getProviderIdentityPolicy as b_, PublicShell as ba, type PublicShellClassNames as bb, type PublicShellHeaderVariant as bc, type PublicShellMobileNavigationMode as bd, type PublicShellProps as be, PublicSiteFooter as bf, type PublicSiteFooterProps as bg, ReferenceLinkGrid as bh, type ReferenceLinkGridItem as bi, type ReferenceLinkGridProps as bj, ReferenceLocaleNotice as bk, type ReferenceLocaleNoticeProps as bl, ReferenceSection as bm, type ReferenceSectionProps as bn, ReportingSection as bo, type ReportingSectionProps as bp, type ReportingSectionState as bq, SectionPanel as br, type SectionPanelProps as bs, type SectionPanelTone as bt, type SemanticAction as bu, type SemanticActionDefinition as bv, type SemanticActionId as bw, SimpleDataTable as bx, type SimpleDataTableProps as by, type SimpleTableColumn as bz, type AccentTone as c, getSemanticActionLabel as c0, getSupportedProviderIdentityIds as c1, he as c2, hu as c3, isPresentationMode as c4, it as c5, mergeGdsVocabularyPacks as c6, resolveAccentPanelStyles as c7, resolveSemanticActionConfig as c8, resolveSurfacePresentationStyles as c9, ru as ca, AccessSummary as d, type AccessSummaryProps as e, ActionBar as f, type ActionBarAction as g, type ActionBarIconAction as h, type ActionBarProps as i, ArticleShell as j, type ArticleShellProps as k, AuthShell as l, type AuthShellProps as m, BrowseSurface as n, type BrowseSurfaceFilterChip as o, type BrowseSurfaceProps as p, type BrowseSurfaceScopeOption as q, ChartTokenPanel as r, type ChartTokenPanelProps as s, type ChartTokenPanelState as t, ChoiceChip as u, type ChoiceChipProps as v, ConsumerDashboardGrid as w, type ConsumerDashboardGridProps as x, ConsumerSection as y, type ConsumerSectionProps as z };
|
package/dist/server.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { A as AccentPanel, a as AccentPanelProps, b as AccentPanelVariant, c as AccentTone, d as AccessSummary, e as AccessSummaryProps, j as ArticleShell, k as ArticleShellProps, l as AuthShell, m as AuthShellProps, B as BreadcrumbItem, n as BrowseSurface, o as BrowseSurfaceFilterChip, p as BrowseSurfaceProps, q as BrowseSurfaceScopeOption, C as
|
|
1
|
+
export { A as AccentPanel, a as AccentPanelProps, b as AccentPanelVariant, c as AccentTone, d as AccessSummary, e as AccessSummaryProps, j as ArticleShell, k as ArticleShellProps, l as AuthShell, m as AuthShellProps, B as BreadcrumbItem, n as BrowseSurface, o as BrowseSurfaceFilterChip, p as BrowseSurfaceProps, q as BrowseSurfaceScopeOption, C as ChartLegendItem, r as ChartTokenPanel, s as ChartTokenPanelProps, t as ChartTokenPanelState, u as ChoiceChip, v as ChoiceChipProps, w as ConsumerDashboardGrid, x as ConsumerDashboardGridProps, y as ConsumerSection, z as ConsumerSectionProps, D as CtaButtonGroup, E as CtaButtonGroupProps, F as DataToolbar, G as DataToolbarFilterChip, H as DataToolbarProps, I as DetailProfileShell, J as DetailProfileShellProps, K as DocsPageShell, L as DocsPageShellProps, M as EditorialCard, N as EditorialCardProps, O as EditorialHero, P as EditorialHeroAction, Q as EditorialHeroMetaItem, R as EditorialHeroProps, S as EmptyState, T as EmptyStateProps, U as EvidencePanel, V as EvidencePanelProps, W as EvidencePanelState, X as FeatureBand, Y as FeatureBandItem, Z as FeatureBandProps, _ as FilterDrawer, $ as FilterDrawerMode, a0 as FilterDrawerProps, a1 as FoodCardAvailabilityState, a2 as FoodCardMarker, a3 as FoodCardMediaRatio, a4 as FoodCardMetadata, a5 as FoodMenuCategory, a6 as FoodMenuItem, a7 as FoodMenuSection, a8 as FoodMenuSectionProps, a9 as FormField, aa as FormFieldProps, ab as GdsIcons, ac as GdsLocale, ad as GdsVocabulary, ae as GdsVocabularyPack, af as ListingCard, ag as ListingCardAffordance, ah as ListingCardMediaRatio, ai as ListingCardProps, aj as ListingMetadataRow, ak as MapPanel, al as MapPanelProps, am as MediaCard, an as MediaCardAction, ao as MediaCardProps, ap as MediaField, aq as MediaFieldProps, ar as MediaFieldState, as as MetricCard, at as MetricCardProps, au as PROVIDER_IDENTITY_REGISTRY, av as PageHeader, aw as PageHeaderEyebrowVariant, ax as PageHeaderProps, ay as PeriodSelector, az as PeriodSelectorOption, aA as PeriodSelectorProps, aB as PlaceholderPanel, aC as PlaceholderPanelProps, aD as PlaybackSurface, aE as PlaybackSurfaceProps, aF as PlaybackSurfaceState, aG as ProductCard, aH as ProductCardAction, aI as ProductCardMetaItem, aJ as ProductCardProps, aK as ProgressCard, aL as ProgressCardProps, aM as ProviderIdentity, aN as ProviderIdentityButton, aO as ProviderIdentityButtonGroup, aP as ProviderIdentityButtonGroupProps, aQ as ProviderIdentityButtonProps, aR as ProviderIdentityVariant, aS as PublicBrandFooter, aT as PublicBrandFooterClassNames, aU as PublicBrandFooterLayoutVariant, aV as PublicBrandFooterProps, aW as PublicFlowAction, aX as PublicFlowActionPriority, aY as PublicFlowShell, aZ as PublicFlowShellProps, a_ as PublicFlowStage, a$ as PublicFlowStageStatus, b0 as PublicFoodCard, b1 as PublicFoodCardProps, b2 as PublicNav, b3 as PublicNavItem, b4 as PublicNavProps, b5 as PublicProductCard, b6 as PublicProductCardHelperKind, b7 as PublicProductCardMetaItem, b8 as PublicProductCardProps, b9 as PublicProductCardState, ba as PublicShell, bb as PublicShellClassNames, bc as PublicShellHeaderVariant, bd as PublicShellMobileNavigationMode, be as PublicShellProps, bf as PublicSiteFooter, bg as PublicSiteFooterProps, bh as ReferenceLinkGrid, bi as ReferenceLinkGridItem, bj as ReferenceLinkGridProps, bk as ReferenceLocaleNotice, bl as ReferenceLocaleNoticeProps, bm as ReferenceSection, bn as ReferenceSectionProps, bo as ReportingSection, bp as ReportingSectionProps, bq as ReportingSectionState, br as SectionPanel, bs as SectionPanelProps, bt as SectionPanelTone, bu as SemanticAction, bv as SemanticActionDefinition, bw as SemanticActionId, bx as SimpleDataTable, by as SimpleDataTableProps, bz as SimpleTableColumn, bA as SocialAuthButtons, bB as SocialAuthButtonsProps, bC as SocialAuthProviderId, bD as SocialAuthProviderOption, bE as StateBlock, bF as StateBlockProps, bG as StateBlockVariant, bH as StatsSection, bI as StatsSectionProps, bJ as StatusBadge, bK as StatusBadgeProps, bL as StatusVariant, bM as SurfaceContentAlign, bN as SurfaceContentJustify, bO as SurfacePresentation, bP as SurfacePresentationProps, bQ as VocabularyResolver, bR as ar, bS as createGdsVocabularyPack, bT as de, bU as en, bV as es, bW as fr, bX as gdsLocales, bY as getGdsMessages, bZ as getProviderIdentityLabel, b_ as getProviderIdentityPolicy, b$ as getSemanticActionConfig, c0 as getSemanticActionLabel, c1 as getSupportedProviderIdentityIds, c2 as he, c3 as hu, c4 as isPresentationMode, c5 as it, c6 as mergeGdsVocabularyPacks, c7 as resolveAccentPanelStyles, c8 as resolveSemanticActionConfig, c9 as resolveSurfacePresentationStyles, ca as ru } from './server-woziKWie.mjs';
|
|
2
2
|
import 'react';
|
|
3
3
|
import '@tabler/icons-react';
|
|
4
4
|
import 'react/jsx-runtime';
|
package/dist/server.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { A as AccentPanel, a as AccentPanelProps, b as AccentPanelVariant, c as AccentTone, d as AccessSummary, e as AccessSummaryProps, j as ArticleShell, k as ArticleShellProps, l as AuthShell, m as AuthShellProps, B as BreadcrumbItem, n as BrowseSurface, o as BrowseSurfaceFilterChip, p as BrowseSurfaceProps, q as BrowseSurfaceScopeOption, C as
|
|
1
|
+
export { A as AccentPanel, a as AccentPanelProps, b as AccentPanelVariant, c as AccentTone, d as AccessSummary, e as AccessSummaryProps, j as ArticleShell, k as ArticleShellProps, l as AuthShell, m as AuthShellProps, B as BreadcrumbItem, n as BrowseSurface, o as BrowseSurfaceFilterChip, p as BrowseSurfaceProps, q as BrowseSurfaceScopeOption, C as ChartLegendItem, r as ChartTokenPanel, s as ChartTokenPanelProps, t as ChartTokenPanelState, u as ChoiceChip, v as ChoiceChipProps, w as ConsumerDashboardGrid, x as ConsumerDashboardGridProps, y as ConsumerSection, z as ConsumerSectionProps, D as CtaButtonGroup, E as CtaButtonGroupProps, F as DataToolbar, G as DataToolbarFilterChip, H as DataToolbarProps, I as DetailProfileShell, J as DetailProfileShellProps, K as DocsPageShell, L as DocsPageShellProps, M as EditorialCard, N as EditorialCardProps, O as EditorialHero, P as EditorialHeroAction, Q as EditorialHeroMetaItem, R as EditorialHeroProps, S as EmptyState, T as EmptyStateProps, U as EvidencePanel, V as EvidencePanelProps, W as EvidencePanelState, X as FeatureBand, Y as FeatureBandItem, Z as FeatureBandProps, _ as FilterDrawer, $ as FilterDrawerMode, a0 as FilterDrawerProps, a1 as FoodCardAvailabilityState, a2 as FoodCardMarker, a3 as FoodCardMediaRatio, a4 as FoodCardMetadata, a5 as FoodMenuCategory, a6 as FoodMenuItem, a7 as FoodMenuSection, a8 as FoodMenuSectionProps, a9 as FormField, aa as FormFieldProps, ab as GdsIcons, ac as GdsLocale, ad as GdsVocabulary, ae as GdsVocabularyPack, af as ListingCard, ag as ListingCardAffordance, ah as ListingCardMediaRatio, ai as ListingCardProps, aj as ListingMetadataRow, ak as MapPanel, al as MapPanelProps, am as MediaCard, an as MediaCardAction, ao as MediaCardProps, ap as MediaField, aq as MediaFieldProps, ar as MediaFieldState, as as MetricCard, at as MetricCardProps, au as PROVIDER_IDENTITY_REGISTRY, av as PageHeader, aw as PageHeaderEyebrowVariant, ax as PageHeaderProps, ay as PeriodSelector, az as PeriodSelectorOption, aA as PeriodSelectorProps, aB as PlaceholderPanel, aC as PlaceholderPanelProps, aD as PlaybackSurface, aE as PlaybackSurfaceProps, aF as PlaybackSurfaceState, aG as ProductCard, aH as ProductCardAction, aI as ProductCardMetaItem, aJ as ProductCardProps, aK as ProgressCard, aL as ProgressCardProps, aM as ProviderIdentity, aN as ProviderIdentityButton, aO as ProviderIdentityButtonGroup, aP as ProviderIdentityButtonGroupProps, aQ as ProviderIdentityButtonProps, aR as ProviderIdentityVariant, aS as PublicBrandFooter, aT as PublicBrandFooterClassNames, aU as PublicBrandFooterLayoutVariant, aV as PublicBrandFooterProps, aW as PublicFlowAction, aX as PublicFlowActionPriority, aY as PublicFlowShell, aZ as PublicFlowShellProps, a_ as PublicFlowStage, a$ as PublicFlowStageStatus, b0 as PublicFoodCard, b1 as PublicFoodCardProps, b2 as PublicNav, b3 as PublicNavItem, b4 as PublicNavProps, b5 as PublicProductCard, b6 as PublicProductCardHelperKind, b7 as PublicProductCardMetaItem, b8 as PublicProductCardProps, b9 as PublicProductCardState, ba as PublicShell, bb as PublicShellClassNames, bc as PublicShellHeaderVariant, bd as PublicShellMobileNavigationMode, be as PublicShellProps, bf as PublicSiteFooter, bg as PublicSiteFooterProps, bh as ReferenceLinkGrid, bi as ReferenceLinkGridItem, bj as ReferenceLinkGridProps, bk as ReferenceLocaleNotice, bl as ReferenceLocaleNoticeProps, bm as ReferenceSection, bn as ReferenceSectionProps, bo as ReportingSection, bp as ReportingSectionProps, bq as ReportingSectionState, br as SectionPanel, bs as SectionPanelProps, bt as SectionPanelTone, bu as SemanticAction, bv as SemanticActionDefinition, bw as SemanticActionId, bx as SimpleDataTable, by as SimpleDataTableProps, bz as SimpleTableColumn, bA as SocialAuthButtons, bB as SocialAuthButtonsProps, bC as SocialAuthProviderId, bD as SocialAuthProviderOption, bE as StateBlock, bF as StateBlockProps, bG as StateBlockVariant, bH as StatsSection, bI as StatsSectionProps, bJ as StatusBadge, bK as StatusBadgeProps, bL as StatusVariant, bM as SurfaceContentAlign, bN as SurfaceContentJustify, bO as SurfacePresentation, bP as SurfacePresentationProps, bQ as VocabularyResolver, bR as ar, bS as createGdsVocabularyPack, bT as de, bU as en, bV as es, bW as fr, bX as gdsLocales, bY as getGdsMessages, bZ as getProviderIdentityLabel, b_ as getProviderIdentityPolicy, b$ as getSemanticActionConfig, c0 as getSemanticActionLabel, c1 as getSupportedProviderIdentityIds, c2 as he, c3 as hu, c4 as isPresentationMode, c5 as it, c6 as mergeGdsVocabularyPacks, c7 as resolveAccentPanelStyles, c8 as resolveSemanticActionConfig, c9 as resolveSurfacePresentationStyles, ca as ru } from './server-woziKWie.js';
|
|
2
2
|
import 'react';
|
|
3
3
|
import '@tabler/icons-react';
|
|
4
4
|
import 'react/jsx-runtime';
|