@doneisbetter/gds-core 2.6.7 → 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-6FX7WZZO.mjs +1822 -0
- package/dist/{chunk-LH2KMMXT.mjs → chunk-YP7RL2MC.mjs} +995 -299
- package/dist/client.d.mts +271 -10
- package/dist/client.d.ts +271 -10
- package/dist/client.js +2036 -503
- package/dist/client.mjs +86 -4
- package/dist/index.d.mts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +2036 -503
- package/dist/index.mjs +86 -4
- package/dist/{server-BSuY9Qx6.d.mts → server-DCXU_K9q.d.mts} +248 -9
- package/dist/{server-BSuY9Qx6.d.ts → server-DCXU_K9q.d.ts} +248 -9
- package/dist/server.d.mts +1 -1
- package/dist/server.d.ts +1 -1
- package/dist/server.js +1048 -330
- package/dist/server.mjs +41 -1
- package/package.json +2 -2
- package/dist/chunk-IUYPELGQ.mjs +0 -1028
package/dist/client.mjs
CHANGED
|
@@ -1,10 +1,20 @@
|
|
|
1
1
|
import {
|
|
2
2
|
AccessRecoveryPanel,
|
|
3
|
+
AdvancedDataTable,
|
|
4
|
+
CommandPalette,
|
|
5
|
+
CommandRegistryProvider,
|
|
3
6
|
ConfirmDialog,
|
|
4
7
|
DiscoveryShell,
|
|
5
8
|
DocsCodeBlock,
|
|
6
9
|
DocsShell,
|
|
10
|
+
FormErrorSummary,
|
|
7
11
|
GameBoardTile,
|
|
12
|
+
GdsFormProvider,
|
|
13
|
+
GdsNotificationProvider,
|
|
14
|
+
GdsTelemetryProvider,
|
|
15
|
+
ListingProvider,
|
|
16
|
+
NotificationCenter,
|
|
17
|
+
OverlayManagerProvider,
|
|
8
18
|
ReferenceThemeExplorer,
|
|
9
19
|
SemanticButton,
|
|
10
20
|
ShareButtonGroup,
|
|
@@ -12,18 +22,35 @@ import {
|
|
|
12
22
|
SidebarNavItem,
|
|
13
23
|
SidebarNavSection,
|
|
14
24
|
ThemeToggle,
|
|
15
|
-
UploadDropzone
|
|
16
|
-
|
|
25
|
+
UploadDropzone,
|
|
26
|
+
ValidatedFieldMessage,
|
|
27
|
+
gdsFormReducer,
|
|
28
|
+
listingQueryReducer,
|
|
29
|
+
useCommandLauncher,
|
|
30
|
+
useDiscoveryShellState,
|
|
31
|
+
useGdsForm,
|
|
32
|
+
useGdsFormSnapshot,
|
|
33
|
+
useGdsNotifications,
|
|
34
|
+
useGdsTelemetry,
|
|
35
|
+
useListingState,
|
|
36
|
+
useOverlayManager
|
|
37
|
+
} from "./chunk-6FX7WZZO.mjs";
|
|
17
38
|
import {
|
|
18
39
|
AccentPanel,
|
|
19
40
|
AccessSummary,
|
|
20
41
|
ActionBar,
|
|
42
|
+
ActiveFilterChips,
|
|
21
43
|
ArticleShell,
|
|
44
|
+
AsyncSurface,
|
|
22
45
|
AuthShell,
|
|
46
|
+
BannerNotice,
|
|
23
47
|
BrowseSurface,
|
|
48
|
+
BulkActionsBar,
|
|
49
|
+
ChartTokenPanel,
|
|
24
50
|
ChoiceChip,
|
|
25
51
|
ConsumerDashboardGrid,
|
|
26
52
|
ConsumerSection,
|
|
53
|
+
CountBadge,
|
|
27
54
|
CtaButtonGroup,
|
|
28
55
|
DataToolbar,
|
|
29
56
|
DetailProfileShell,
|
|
@@ -31,19 +58,25 @@ import {
|
|
|
31
58
|
EditorialCard,
|
|
32
59
|
EditorialHero,
|
|
33
60
|
EmptyState,
|
|
61
|
+
EvidencePanel,
|
|
34
62
|
FeatureBand,
|
|
35
63
|
FilterDrawer,
|
|
36
64
|
FoodMenuSection,
|
|
37
65
|
FormField,
|
|
66
|
+
GdsChart,
|
|
38
67
|
GdsIcons,
|
|
39
68
|
GdsVocabulary,
|
|
69
|
+
InlineAlert,
|
|
70
|
+
LabelTag,
|
|
40
71
|
ListingCard,
|
|
41
72
|
MapPanel,
|
|
42
73
|
MediaCard,
|
|
43
74
|
MediaField,
|
|
44
75
|
MetricCard,
|
|
76
|
+
NotificationCenterView,
|
|
45
77
|
PROVIDER_IDENTITY_REGISTRY,
|
|
46
78
|
PageHeader,
|
|
79
|
+
PeriodSelector,
|
|
47
80
|
PlaceholderPanel,
|
|
48
81
|
PlaybackSurface,
|
|
49
82
|
ProductCard,
|
|
@@ -60,9 +93,12 @@ import {
|
|
|
60
93
|
ReferenceLinkGrid,
|
|
61
94
|
ReferenceLocaleNotice,
|
|
62
95
|
ReferenceSection,
|
|
96
|
+
ReportingSection,
|
|
97
|
+
ResultSummary,
|
|
63
98
|
SectionPanel,
|
|
64
99
|
SimpleDataTable,
|
|
65
100
|
SocialAuthButtons,
|
|
101
|
+
SortMenu,
|
|
66
102
|
StateBlock,
|
|
67
103
|
StatsSection,
|
|
68
104
|
StatusBadge,
|
|
@@ -72,33 +108,47 @@ import {
|
|
|
72
108
|
en,
|
|
73
109
|
es,
|
|
74
110
|
fr,
|
|
111
|
+
gdsCardSizePaddingMap,
|
|
112
|
+
gdsCardTitleOrderMap,
|
|
75
113
|
gdsLocales,
|
|
76
114
|
getGdsMessages,
|
|
77
115
|
getProviderIdentityLabel,
|
|
116
|
+
getProviderIdentityPolicy,
|
|
78
117
|
getSemanticActionConfig,
|
|
79
118
|
getSemanticActionLabel,
|
|
119
|
+
getSupportedProviderIdentityIds,
|
|
80
120
|
he,
|
|
81
121
|
hu,
|
|
82
122
|
isPresentationMode,
|
|
83
123
|
it,
|
|
84
124
|
mergeGdsVocabularyPacks,
|
|
125
|
+
renderGdsLayout,
|
|
85
126
|
resolveAccentPanelStyles,
|
|
86
127
|
resolveSemanticActionConfig,
|
|
87
128
|
resolveSurfacePresentationStyles,
|
|
88
129
|
ru
|
|
89
|
-
} from "./chunk-
|
|
130
|
+
} from "./chunk-YP7RL2MC.mjs";
|
|
90
131
|
export {
|
|
91
132
|
AccentPanel,
|
|
92
133
|
AccessRecoveryPanel,
|
|
93
134
|
AccessSummary,
|
|
94
135
|
ActionBar,
|
|
136
|
+
ActiveFilterChips,
|
|
137
|
+
AdvancedDataTable,
|
|
95
138
|
ArticleShell,
|
|
139
|
+
AsyncSurface,
|
|
96
140
|
AuthShell,
|
|
141
|
+
BannerNotice,
|
|
97
142
|
BrowseSurface,
|
|
143
|
+
BulkActionsBar,
|
|
144
|
+
ChartTokenPanel,
|
|
98
145
|
ChoiceChip,
|
|
146
|
+
CommandPalette,
|
|
147
|
+
CommandRegistryProvider,
|
|
99
148
|
ConfirmDialog,
|
|
100
149
|
ConsumerDashboardGrid,
|
|
101
150
|
ConsumerSection,
|
|
151
|
+
CountBadge,
|
|
102
152
|
CtaButtonGroup,
|
|
103
153
|
DataToolbar,
|
|
104
154
|
DetailProfileShell,
|
|
@@ -109,20 +159,33 @@ export {
|
|
|
109
159
|
EditorialCard,
|
|
110
160
|
EditorialHero,
|
|
111
161
|
EmptyState,
|
|
162
|
+
EvidencePanel,
|
|
112
163
|
FeatureBand,
|
|
113
164
|
FilterDrawer,
|
|
114
165
|
FoodMenuSection,
|
|
166
|
+
FormErrorSummary,
|
|
115
167
|
FormField,
|
|
116
168
|
GameBoardTile,
|
|
169
|
+
GdsChart,
|
|
170
|
+
GdsFormProvider,
|
|
117
171
|
GdsIcons,
|
|
172
|
+
GdsNotificationProvider,
|
|
173
|
+
GdsTelemetryProvider,
|
|
118
174
|
GdsVocabulary,
|
|
175
|
+
InlineAlert,
|
|
176
|
+
LabelTag,
|
|
119
177
|
ListingCard,
|
|
178
|
+
ListingProvider,
|
|
120
179
|
MapPanel,
|
|
121
180
|
MediaCard,
|
|
122
181
|
MediaField,
|
|
123
182
|
MetricCard,
|
|
183
|
+
NotificationCenter,
|
|
184
|
+
NotificationCenterView,
|
|
185
|
+
OverlayManagerProvider,
|
|
124
186
|
PROVIDER_IDENTITY_REGISTRY,
|
|
125
187
|
PageHeader,
|
|
188
|
+
PeriodSelector,
|
|
126
189
|
PlaceholderPanel,
|
|
127
190
|
PlaybackSurface,
|
|
128
191
|
ProductCard,
|
|
@@ -140,6 +203,8 @@ export {
|
|
|
140
203
|
ReferenceLocaleNotice,
|
|
141
204
|
ReferenceSection,
|
|
142
205
|
ReferenceThemeExplorer,
|
|
206
|
+
ReportingSection,
|
|
207
|
+
ResultSummary,
|
|
143
208
|
SectionPanel,
|
|
144
209
|
SemanticButton,
|
|
145
210
|
ShareButtonGroup,
|
|
@@ -148,29 +213,46 @@ export {
|
|
|
148
213
|
SidebarNavSection,
|
|
149
214
|
SimpleDataTable,
|
|
150
215
|
SocialAuthButtons,
|
|
216
|
+
SortMenu,
|
|
151
217
|
StateBlock,
|
|
152
218
|
StatsSection,
|
|
153
219
|
StatusBadge,
|
|
154
220
|
ThemeToggle,
|
|
155
221
|
UploadDropzone,
|
|
222
|
+
ValidatedFieldMessage,
|
|
156
223
|
ar,
|
|
157
224
|
createGdsVocabularyPack,
|
|
158
225
|
de,
|
|
159
226
|
en,
|
|
160
227
|
es,
|
|
161
228
|
fr,
|
|
229
|
+
gdsCardSizePaddingMap,
|
|
230
|
+
gdsCardTitleOrderMap,
|
|
231
|
+
gdsFormReducer,
|
|
162
232
|
gdsLocales,
|
|
163
233
|
getGdsMessages,
|
|
164
234
|
getProviderIdentityLabel,
|
|
235
|
+
getProviderIdentityPolicy,
|
|
165
236
|
getSemanticActionConfig,
|
|
166
237
|
getSemanticActionLabel,
|
|
238
|
+
getSupportedProviderIdentityIds,
|
|
167
239
|
he,
|
|
168
240
|
hu,
|
|
169
241
|
isPresentationMode,
|
|
170
242
|
it,
|
|
243
|
+
listingQueryReducer,
|
|
171
244
|
mergeGdsVocabularyPacks,
|
|
245
|
+
renderGdsLayout,
|
|
172
246
|
resolveAccentPanelStyles,
|
|
173
247
|
resolveSemanticActionConfig,
|
|
174
248
|
resolveSurfacePresentationStyles,
|
|
175
|
-
ru
|
|
249
|
+
ru,
|
|
250
|
+
useCommandLauncher,
|
|
251
|
+
useDiscoveryShellState,
|
|
252
|
+
useGdsForm,
|
|
253
|
+
useGdsFormSnapshot,
|
|
254
|
+
useGdsNotifications,
|
|
255
|
+
useGdsTelemetry,
|
|
256
|
+
useListingState,
|
|
257
|
+
useOverlayManager
|
|
176
258
|
};
|
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
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
|
|
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';
|
|
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 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
|
+
export { AccessRecoveryAction, AccessRecoveryPanel, AccessRecoveryPanelProps, AccessRecoveryState, AdvancedDataTable, AdvancedDataTableProps, AdvancedSortDirection, AdvancedTableColumn, AdvancedTableDensity, CommandDef, CommandPalette, CommandRegistryProvider, ConfirmDialog, ConfirmDialogProps, DiscoveryShell, DiscoveryShellProps, DiscoveryShellState, DocsCodeBlock, DocsCodeBlockProps, DocsShell, DocsShellProps, FieldState, FormErrorSummary, FormSnapshot, GameBoardTile, GameBoardTileProps, GdsFormProvider, GdsNotificationProvider, GdsTelemetryProvider, GdsTelemetryProviderProps, GdsTelemetrySink, GdsUiEvent, ListingAction, ListingProvider, ListingQueryState, ListingStateConfig, ListingStateValue, NotificationCenter, OverlayCloseReason, OverlayDescriptor, OverlayKind, OverlayManagerProvider, ReferenceThemeExplorer, SemanticButton, SemanticButtonProps, ShareButtonGroup, ShareButtonGroupProps, ShareChannel, SidebarNav, SidebarNavItem, SidebarNavItemProps, SidebarNavProps, SidebarNavSection, SidebarNavSectionProps, SubmitState, ThemeExplorerSelection, ThemePresetId, ThemeSchemeId, ThemeToggle, ThemeToggleProps, UploadDropzone, UploadDropzoneProps, UploadDropzoneState, UseDiscoveryShellStateOptions, ValidatedFieldMessage, ValidationIssue, ValidationSeverity, gdsFormReducer, listingQueryReducer, useCommandLauncher, useDiscoveryShellState, useGdsForm, useGdsFormSnapshot, useGdsNotifications, useGdsTelemetry, useListingState, useOverlayManager } from './client.mjs';
|
|
3
3
|
import 'react';
|
|
4
4
|
import '@tabler/icons-react';
|
|
5
5
|
import 'react/jsx-runtime';
|
|
6
6
|
import '@mantine/core';
|
|
7
|
+
import '@doneisbetter/gds-theme';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
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
|
|
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';
|
|
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 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
|
+
export { AccessRecoveryAction, AccessRecoveryPanel, AccessRecoveryPanelProps, AccessRecoveryState, AdvancedDataTable, AdvancedDataTableProps, AdvancedSortDirection, AdvancedTableColumn, AdvancedTableDensity, CommandDef, CommandPalette, CommandRegistryProvider, ConfirmDialog, ConfirmDialogProps, DiscoveryShell, DiscoveryShellProps, DiscoveryShellState, DocsCodeBlock, DocsCodeBlockProps, DocsShell, DocsShellProps, FieldState, FormErrorSummary, FormSnapshot, GameBoardTile, GameBoardTileProps, GdsFormProvider, GdsNotificationProvider, GdsTelemetryProvider, GdsTelemetryProviderProps, GdsTelemetrySink, GdsUiEvent, ListingAction, ListingProvider, ListingQueryState, ListingStateConfig, ListingStateValue, NotificationCenter, OverlayCloseReason, OverlayDescriptor, OverlayKind, OverlayManagerProvider, ReferenceThemeExplorer, SemanticButton, SemanticButtonProps, ShareButtonGroup, ShareButtonGroupProps, ShareChannel, SidebarNav, SidebarNavItem, SidebarNavItemProps, SidebarNavProps, SidebarNavSection, SidebarNavSectionProps, SubmitState, ThemeExplorerSelection, ThemePresetId, ThemeSchemeId, ThemeToggle, ThemeToggleProps, UploadDropzone, UploadDropzoneProps, UploadDropzoneState, UseDiscoveryShellStateOptions, ValidatedFieldMessage, ValidationIssue, ValidationSeverity, gdsFormReducer, listingQueryReducer, useCommandLauncher, useDiscoveryShellState, useGdsForm, useGdsFormSnapshot, useGdsNotifications, useGdsTelemetry, useListingState, useOverlayManager } from './client.js';
|
|
3
3
|
import 'react';
|
|
4
4
|
import '@tabler/icons-react';
|
|
5
5
|
import 'react/jsx-runtime';
|
|
6
6
|
import '@mantine/core';
|
|
7
|
+
import '@doneisbetter/gds-theme';
|