@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
package/dist/client.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-NBCULITN.mjs";
|
|
16
17
|
import {
|
|
17
18
|
AccentPanel,
|
|
18
19
|
AccessSummary,
|
|
@@ -20,6 +21,7 @@ import {
|
|
|
20
21
|
ArticleShell,
|
|
21
22
|
AuthShell,
|
|
22
23
|
BrowseSurface,
|
|
24
|
+
ChartTokenPanel,
|
|
23
25
|
ChoiceChip,
|
|
24
26
|
ConsumerDashboardGrid,
|
|
25
27
|
ConsumerSection,
|
|
@@ -30,6 +32,7 @@ import {
|
|
|
30
32
|
EditorialCard,
|
|
31
33
|
EditorialHero,
|
|
32
34
|
EmptyState,
|
|
35
|
+
EvidencePanel,
|
|
33
36
|
FeatureBand,
|
|
34
37
|
FilterDrawer,
|
|
35
38
|
FoodMenuSection,
|
|
@@ -41,11 +44,15 @@ import {
|
|
|
41
44
|
MediaCard,
|
|
42
45
|
MediaField,
|
|
43
46
|
MetricCard,
|
|
47
|
+
PROVIDER_IDENTITY_REGISTRY,
|
|
44
48
|
PageHeader,
|
|
49
|
+
PeriodSelector,
|
|
45
50
|
PlaceholderPanel,
|
|
46
51
|
PlaybackSurface,
|
|
47
52
|
ProductCard,
|
|
48
53
|
ProgressCard,
|
|
54
|
+
ProviderIdentityButton,
|
|
55
|
+
ProviderIdentityButtonGroup,
|
|
49
56
|
PublicBrandFooter,
|
|
50
57
|
PublicFlowShell,
|
|
51
58
|
PublicFoodCard,
|
|
@@ -56,6 +63,7 @@ import {
|
|
|
56
63
|
ReferenceLinkGrid,
|
|
57
64
|
ReferenceLocaleNotice,
|
|
58
65
|
ReferenceSection,
|
|
66
|
+
ReportingSection,
|
|
59
67
|
SectionPanel,
|
|
60
68
|
SimpleDataTable,
|
|
61
69
|
SocialAuthButtons,
|
|
@@ -70,16 +78,21 @@ import {
|
|
|
70
78
|
fr,
|
|
71
79
|
gdsLocales,
|
|
72
80
|
getGdsMessages,
|
|
81
|
+
getProviderIdentityLabel,
|
|
82
|
+
getProviderIdentityPolicy,
|
|
73
83
|
getSemanticActionConfig,
|
|
74
84
|
getSemanticActionLabel,
|
|
85
|
+
getSupportedProviderIdentityIds,
|
|
75
86
|
he,
|
|
76
87
|
hu,
|
|
88
|
+
isPresentationMode,
|
|
77
89
|
it,
|
|
78
90
|
mergeGdsVocabularyPacks,
|
|
79
91
|
resolveAccentPanelStyles,
|
|
80
92
|
resolveSemanticActionConfig,
|
|
93
|
+
resolveSurfacePresentationStyles,
|
|
81
94
|
ru
|
|
82
|
-
} from "./chunk-
|
|
95
|
+
} from "./chunk-P7ICTEEB.mjs";
|
|
83
96
|
export {
|
|
84
97
|
AccentPanel,
|
|
85
98
|
AccessRecoveryPanel,
|
|
@@ -88,6 +101,7 @@ export {
|
|
|
88
101
|
ArticleShell,
|
|
89
102
|
AuthShell,
|
|
90
103
|
BrowseSurface,
|
|
104
|
+
ChartTokenPanel,
|
|
91
105
|
ChoiceChip,
|
|
92
106
|
ConfirmDialog,
|
|
93
107
|
ConsumerDashboardGrid,
|
|
@@ -98,9 +112,11 @@ export {
|
|
|
98
112
|
DiscoveryShell,
|
|
99
113
|
DocsCodeBlock,
|
|
100
114
|
DocsPageShell,
|
|
115
|
+
DocsShell,
|
|
101
116
|
EditorialCard,
|
|
102
117
|
EditorialHero,
|
|
103
118
|
EmptyState,
|
|
119
|
+
EvidencePanel,
|
|
104
120
|
FeatureBand,
|
|
105
121
|
FilterDrawer,
|
|
106
122
|
FoodMenuSection,
|
|
@@ -113,11 +129,15 @@ export {
|
|
|
113
129
|
MediaCard,
|
|
114
130
|
MediaField,
|
|
115
131
|
MetricCard,
|
|
132
|
+
PROVIDER_IDENTITY_REGISTRY,
|
|
116
133
|
PageHeader,
|
|
134
|
+
PeriodSelector,
|
|
117
135
|
PlaceholderPanel,
|
|
118
136
|
PlaybackSurface,
|
|
119
137
|
ProductCard,
|
|
120
138
|
ProgressCard,
|
|
139
|
+
ProviderIdentityButton,
|
|
140
|
+
ProviderIdentityButtonGroup,
|
|
121
141
|
PublicBrandFooter,
|
|
122
142
|
PublicFlowShell,
|
|
123
143
|
PublicFoodCard,
|
|
@@ -129,6 +149,7 @@ export {
|
|
|
129
149
|
ReferenceLocaleNotice,
|
|
130
150
|
ReferenceSection,
|
|
131
151
|
ReferenceThemeExplorer,
|
|
152
|
+
ReportingSection,
|
|
132
153
|
SectionPanel,
|
|
133
154
|
SemanticButton,
|
|
134
155
|
ShareButtonGroup,
|
|
@@ -150,13 +171,18 @@ export {
|
|
|
150
171
|
fr,
|
|
151
172
|
gdsLocales,
|
|
152
173
|
getGdsMessages,
|
|
174
|
+
getProviderIdentityLabel,
|
|
175
|
+
getProviderIdentityPolicy,
|
|
153
176
|
getSemanticActionConfig,
|
|
154
177
|
getSemanticActionLabel,
|
|
178
|
+
getSupportedProviderIdentityIds,
|
|
155
179
|
he,
|
|
156
180
|
hu,
|
|
181
|
+
isPresentationMode,
|
|
157
182
|
it,
|
|
158
183
|
mergeGdsVocabularyPacks,
|
|
159
184
|
resolveAccentPanelStyles,
|
|
160
185
|
resolveSemanticActionConfig,
|
|
186
|
+
resolveSurfacePresentationStyles,
|
|
161
187
|
ru
|
|
162
188
|
};
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { A as AccentPanel, a as AccentPanelProps, b as AccentPanelVariant, c as AccentTone, d as AccessSummary, e as AccessSummaryProps, f as ActionBar, g as ActionBarAction, h as ActionBarIconAction, i as ActionBarProps, 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
|
|
2
|
-
export { AccessRecoveryAction, AccessRecoveryPanel, AccessRecoveryPanelProps, AccessRecoveryState, ConfirmDialog, ConfirmDialogProps, DiscoveryShell, DiscoveryShellProps, DocsCodeBlock, DocsCodeBlockProps, GameBoardTile, GameBoardTileProps, ReferenceThemeExplorer, SemanticButton, SemanticButtonProps, ShareButtonGroup, ShareButtonGroupProps, ShareChannel, SidebarNav, SidebarNavItem, SidebarNavItemProps, SidebarNavProps, SidebarNavSection, SidebarNavSectionProps, ThemePresetId, ThemeSchemeId, ThemeToggle, ThemeToggleProps, UploadDropzone, UploadDropzoneProps } from './client.mjs';
|
|
1
|
+
export { A as AccentPanel, a as AccentPanelProps, b as AccentPanelVariant, c as AccentTone, d as AccessSummary, e as AccessSummaryProps, f as ActionBar, g as ActionBarAction, h as ActionBarIconAction, i as ActionBarProps, 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
|
+
export { AccessRecoveryAction, AccessRecoveryPanel, AccessRecoveryPanelProps, AccessRecoveryState, ConfirmDialog, ConfirmDialogProps, DiscoveryShell, DiscoveryShellProps, DocsCodeBlock, DocsCodeBlockProps, DocsShell, DocsShellProps, GameBoardTile, GameBoardTileProps, ReferenceThemeExplorer, SemanticButton, SemanticButtonProps, ShareButtonGroup, ShareButtonGroupProps, ShareChannel, SidebarNav, SidebarNavItem, SidebarNavItemProps, SidebarNavProps, SidebarNavSection, SidebarNavSectionProps, ThemePresetId, ThemeSchemeId, ThemeToggle, ThemeToggleProps, UploadDropzone, UploadDropzoneProps, UploadDropzoneState } from './client.mjs';
|
|
3
3
|
import 'react';
|
|
4
4
|
import '@tabler/icons-react';
|
|
5
5
|
import 'react/jsx-runtime';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { A as AccentPanel, a as AccentPanelProps, b as AccentPanelVariant, c as AccentTone, d as AccessSummary, e as AccessSummaryProps, f as ActionBar, g as ActionBarAction, h as ActionBarIconAction, i as ActionBarProps, 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
|
|
2
|
-
export { AccessRecoveryAction, AccessRecoveryPanel, AccessRecoveryPanelProps, AccessRecoveryState, ConfirmDialog, ConfirmDialogProps, DiscoveryShell, DiscoveryShellProps, DocsCodeBlock, DocsCodeBlockProps, GameBoardTile, GameBoardTileProps, ReferenceThemeExplorer, SemanticButton, SemanticButtonProps, ShareButtonGroup, ShareButtonGroupProps, ShareChannel, SidebarNav, SidebarNavItem, SidebarNavItemProps, SidebarNavProps, SidebarNavSection, SidebarNavSectionProps, ThemePresetId, ThemeSchemeId, ThemeToggle, ThemeToggleProps, UploadDropzone, UploadDropzoneProps } from './client.js';
|
|
1
|
+
export { A as AccentPanel, a as AccentPanelProps, b as AccentPanelVariant, c as AccentTone, d as AccessSummary, e as AccessSummaryProps, f as ActionBar, g as ActionBarAction, h as ActionBarIconAction, i as ActionBarProps, 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
|
+
export { AccessRecoveryAction, AccessRecoveryPanel, AccessRecoveryPanelProps, AccessRecoveryState, ConfirmDialog, ConfirmDialogProps, DiscoveryShell, DiscoveryShellProps, DocsCodeBlock, DocsCodeBlockProps, DocsShell, DocsShellProps, GameBoardTile, GameBoardTileProps, ReferenceThemeExplorer, SemanticButton, SemanticButtonProps, ShareButtonGroup, ShareButtonGroupProps, ShareChannel, SidebarNav, SidebarNavItem, SidebarNavItemProps, SidebarNavProps, SidebarNavSection, SidebarNavSectionProps, ThemePresetId, ThemeSchemeId, ThemeToggle, ThemeToggleProps, UploadDropzone, UploadDropzoneProps, UploadDropzoneState } from './client.js';
|
|
3
3
|
import 'react';
|
|
4
4
|
import '@tabler/icons-react';
|
|
5
5
|
import 'react/jsx-runtime';
|