@doneisbetter/gds-core 3.0.0 → 3.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-NBCULITN.mjs → chunk-6FX7WZZO.mjs} +856 -155
- package/dist/{chunk-P7ICTEEB.mjs → chunk-YP7RL2MC.mjs} +784 -364
- package/dist/client.d.mts +259 -8
- package/dist/client.d.ts +259 -8
- package/dist/client.js +1720 -562
- package/dist/client.mjs +74 -4
- package/dist/index.d.mts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +1720 -562
- package/dist/index.mjs +74 -4
- package/dist/{server-woziKWie.d.mts → server-DCXU_K9q.d.mts} +144 -4
- package/dist/{server-woziKWie.d.ts → server-DCXU_K9q.d.ts} +144 -4
- package/dist/server.d.mts +1 -1
- package/dist/server.d.ts +1 -1
- package/dist/server.js +831 -395
- package/dist/server.mjs +29 -1
- package/package.json +2 -2
package/dist/server.mjs
CHANGED
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
import {
|
|
2
2
|
AccentPanel,
|
|
3
3
|
AccessSummary,
|
|
4
|
+
ActiveFilterChips,
|
|
4
5
|
ArticleShell,
|
|
6
|
+
AsyncSurface,
|
|
5
7
|
AuthShell,
|
|
8
|
+
BannerNotice,
|
|
6
9
|
BrowseSurface,
|
|
10
|
+
BulkActionsBar,
|
|
7
11
|
ChartTokenPanel,
|
|
8
12
|
ChoiceChip,
|
|
9
13
|
ConsumerDashboardGrid,
|
|
10
14
|
ConsumerSection,
|
|
15
|
+
CountBadge,
|
|
11
16
|
CtaButtonGroup,
|
|
12
17
|
DataToolbar,
|
|
13
18
|
DetailProfileShell,
|
|
@@ -20,13 +25,17 @@ import {
|
|
|
20
25
|
FilterDrawer,
|
|
21
26
|
FoodMenuSection,
|
|
22
27
|
FormField,
|
|
28
|
+
GdsChart,
|
|
23
29
|
GdsIcons,
|
|
24
30
|
GdsVocabulary,
|
|
31
|
+
InlineAlert,
|
|
32
|
+
LabelTag,
|
|
25
33
|
ListingCard,
|
|
26
34
|
MapPanel,
|
|
27
35
|
MediaCard,
|
|
28
36
|
MediaField,
|
|
29
37
|
MetricCard,
|
|
38
|
+
NotificationCenterView,
|
|
30
39
|
PROVIDER_IDENTITY_REGISTRY,
|
|
31
40
|
PageHeader,
|
|
32
41
|
PeriodSelector,
|
|
@@ -47,9 +56,11 @@ import {
|
|
|
47
56
|
ReferenceLocaleNotice,
|
|
48
57
|
ReferenceSection,
|
|
49
58
|
ReportingSection,
|
|
59
|
+
ResultSummary,
|
|
50
60
|
SectionPanel,
|
|
51
61
|
SimpleDataTable,
|
|
52
62
|
SocialAuthButtons,
|
|
63
|
+
SortMenu,
|
|
53
64
|
StateBlock,
|
|
54
65
|
StatsSection,
|
|
55
66
|
StatusBadge,
|
|
@@ -59,6 +70,8 @@ import {
|
|
|
59
70
|
en,
|
|
60
71
|
es,
|
|
61
72
|
fr,
|
|
73
|
+
gdsCardSizePaddingMap,
|
|
74
|
+
gdsCardTitleOrderMap,
|
|
62
75
|
gdsLocales,
|
|
63
76
|
getGdsMessages,
|
|
64
77
|
getProviderIdentityLabel,
|
|
@@ -71,21 +84,27 @@ import {
|
|
|
71
84
|
isPresentationMode,
|
|
72
85
|
it,
|
|
73
86
|
mergeGdsVocabularyPacks,
|
|
87
|
+
renderGdsLayout,
|
|
74
88
|
resolveAccentPanelStyles,
|
|
75
89
|
resolveSemanticActionConfig,
|
|
76
90
|
resolveSurfacePresentationStyles,
|
|
77
91
|
ru
|
|
78
|
-
} from "./chunk-
|
|
92
|
+
} from "./chunk-YP7RL2MC.mjs";
|
|
79
93
|
export {
|
|
80
94
|
AccentPanel,
|
|
81
95
|
AccessSummary,
|
|
96
|
+
ActiveFilterChips,
|
|
82
97
|
ArticleShell,
|
|
98
|
+
AsyncSurface,
|
|
83
99
|
AuthShell,
|
|
100
|
+
BannerNotice,
|
|
84
101
|
BrowseSurface,
|
|
102
|
+
BulkActionsBar,
|
|
85
103
|
ChartTokenPanel,
|
|
86
104
|
ChoiceChip,
|
|
87
105
|
ConsumerDashboardGrid,
|
|
88
106
|
ConsumerSection,
|
|
107
|
+
CountBadge,
|
|
89
108
|
CtaButtonGroup,
|
|
90
109
|
DataToolbar,
|
|
91
110
|
DetailProfileShell,
|
|
@@ -98,13 +117,17 @@ export {
|
|
|
98
117
|
FilterDrawer,
|
|
99
118
|
FoodMenuSection,
|
|
100
119
|
FormField,
|
|
120
|
+
GdsChart,
|
|
101
121
|
GdsIcons,
|
|
102
122
|
GdsVocabulary,
|
|
123
|
+
InlineAlert,
|
|
124
|
+
LabelTag,
|
|
103
125
|
ListingCard,
|
|
104
126
|
MapPanel,
|
|
105
127
|
MediaCard,
|
|
106
128
|
MediaField,
|
|
107
129
|
MetricCard,
|
|
130
|
+
NotificationCenterView,
|
|
108
131
|
PROVIDER_IDENTITY_REGISTRY,
|
|
109
132
|
PageHeader,
|
|
110
133
|
PeriodSelector,
|
|
@@ -125,9 +148,11 @@ export {
|
|
|
125
148
|
ReferenceLocaleNotice,
|
|
126
149
|
ReferenceSection,
|
|
127
150
|
ReportingSection,
|
|
151
|
+
ResultSummary,
|
|
128
152
|
SectionPanel,
|
|
129
153
|
SimpleDataTable,
|
|
130
154
|
SocialAuthButtons,
|
|
155
|
+
SortMenu,
|
|
131
156
|
StateBlock,
|
|
132
157
|
StatsSection,
|
|
133
158
|
StatusBadge,
|
|
@@ -137,6 +162,8 @@ export {
|
|
|
137
162
|
en,
|
|
138
163
|
es,
|
|
139
164
|
fr,
|
|
165
|
+
gdsCardSizePaddingMap,
|
|
166
|
+
gdsCardTitleOrderMap,
|
|
140
167
|
gdsLocales,
|
|
141
168
|
getGdsMessages,
|
|
142
169
|
getProviderIdentityLabel,
|
|
@@ -149,6 +176,7 @@ export {
|
|
|
149
176
|
isPresentationMode,
|
|
150
177
|
it,
|
|
151
178
|
mergeGdsVocabularyPacks,
|
|
179
|
+
renderGdsLayout,
|
|
152
180
|
resolveAccentPanelStyles,
|
|
153
181
|
resolveSemanticActionConfig,
|
|
154
182
|
resolveSurfacePresentationStyles,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@doneisbetter/gds-core",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"dev": "tsup --watch"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
|
-
"@doneisbetter/gds-theme": "^3.0.
|
|
41
|
+
"@doneisbetter/gds-theme": "^3.0.2",
|
|
42
42
|
"@mantine/core": "^7.9.0 || ^8.3.0 || ^9.0.0",
|
|
43
43
|
"@mantine/hooks": "^7.9.0 || ^8.3.0 || ^9.0.0",
|
|
44
44
|
"@tabler/icons-react": "^3.5.0",
|