@doneisbetter/gds-core 2.6.5 → 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-BU3CRWRC.mjs → chunk-IUYPELGQ.mjs} +193 -70
- package/dist/{chunk-6LOTZ3IZ.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/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-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
|
};
|
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 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
|
|
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 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
|
+
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 } 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 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
|
|
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 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
|
+
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 } from './client.js';
|
|
3
3
|
import 'react';
|
|
4
4
|
import '@tabler/icons-react';
|
|
5
5
|
import 'react/jsx-runtime';
|