@doneisbetter/gds-core 2.6.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.
@@ -0,0 +1,98 @@
1
+ import {
2
+ AccentPanel,
3
+ AccessSummary,
4
+ ArticleShell,
5
+ AuthShell,
6
+ BrowseSurface,
7
+ ConsumerDashboardGrid,
8
+ ConsumerSection,
9
+ CtaButtonGroup,
10
+ DataToolbar,
11
+ DocsPageShell,
12
+ EditorialCard,
13
+ EditorialHero,
14
+ EmptyState,
15
+ FeatureBand,
16
+ FilterDrawer,
17
+ FormField,
18
+ GdsIcons,
19
+ GdsVocabulary,
20
+ MediaCard,
21
+ MediaField,
22
+ MetricCard,
23
+ PageHeader,
24
+ PlaceholderPanel,
25
+ ProductCard,
26
+ ProgressCard,
27
+ PublicBrandFooter,
28
+ PublicNav,
29
+ PublicProductCard,
30
+ PublicShell,
31
+ PublicSiteFooter,
32
+ SectionPanel,
33
+ SimpleDataTable,
34
+ StateBlock,
35
+ StatsSection,
36
+ StatusBadge,
37
+ ar,
38
+ de,
39
+ en,
40
+ es,
41
+ fr,
42
+ gdsLocales,
43
+ getGdsMessages,
44
+ he,
45
+ hu,
46
+ it,
47
+ resolveAccentPanelStyles,
48
+ ru
49
+ } from "./chunk-6B42ANK7.mjs";
50
+ export {
51
+ AccentPanel,
52
+ AccessSummary,
53
+ ArticleShell,
54
+ AuthShell,
55
+ BrowseSurface,
56
+ ConsumerDashboardGrid,
57
+ ConsumerSection,
58
+ CtaButtonGroup,
59
+ DataToolbar,
60
+ DocsPageShell,
61
+ EditorialCard,
62
+ EditorialHero,
63
+ EmptyState,
64
+ FeatureBand,
65
+ FilterDrawer,
66
+ FormField,
67
+ GdsIcons,
68
+ GdsVocabulary,
69
+ MediaCard,
70
+ MediaField,
71
+ MetricCard,
72
+ PageHeader,
73
+ PlaceholderPanel,
74
+ ProductCard,
75
+ ProgressCard,
76
+ PublicBrandFooter,
77
+ PublicNav,
78
+ PublicProductCard,
79
+ PublicShell,
80
+ PublicSiteFooter,
81
+ SectionPanel,
82
+ SimpleDataTable,
83
+ StateBlock,
84
+ StatsSection,
85
+ StatusBadge,
86
+ ar,
87
+ de,
88
+ en,
89
+ es,
90
+ fr,
91
+ gdsLocales,
92
+ getGdsMessages,
93
+ he,
94
+ hu,
95
+ it,
96
+ resolveAccentPanelStyles,
97
+ ru
98
+ };
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@doneisbetter/gds-core",
3
+ "version": "2.6.1",
4
+ "main": "./dist/index.js",
5
+ "module": "./dist/index.mjs",
6
+ "types": "./dist/index.d.ts",
7
+ "sideEffects": false,
8
+ "publishConfig": {
9
+ "access": "public"
10
+ },
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/sovereignsquad/general-design-system.git",
14
+ "directory": "packages/gds-core"
15
+ },
16
+ "exports": {
17
+ ".": {
18
+ "types": "./dist/index.d.ts",
19
+ "import": "./dist/index.mjs",
20
+ "require": "./dist/index.js"
21
+ },
22
+ "./client": {
23
+ "types": "./dist/client.d.ts",
24
+ "import": "./dist/client.mjs",
25
+ "require": "./dist/client.js"
26
+ },
27
+ "./server": {
28
+ "types": "./dist/server.d.ts",
29
+ "import": "./dist/server.mjs",
30
+ "require": "./dist/server.js"
31
+ }
32
+ },
33
+ "files": [
34
+ "dist"
35
+ ],
36
+ "scripts": {
37
+ "build": "tsup",
38
+ "dev": "tsup --watch"
39
+ },
40
+ "peerDependencies": {
41
+ "@doneisbetter/gds-theme": "^2.6.1",
42
+ "@mantine/core": "^7.9.0 || ^8.3.0",
43
+ "@mantine/hooks": "^7.9.0 || ^8.3.0",
44
+ "@tabler/icons-react": "^3.5.0",
45
+ "react": "^18.2.0 || ^19.0.0",
46
+ "react-dom": "^18.2.0 || ^19.0.0"
47
+ },
48
+ "devDependencies": {
49
+ "@doneisbetter/gds-theme": "*",
50
+ "@mantine/core": "^7.9.0",
51
+ "@mantine/hooks": "^7.9.0",
52
+ "@tabler/icons-react": "^3.5.0",
53
+ "react": "^18.2.0",
54
+ "react-dom": "^18.2.0"
55
+ }
56
+ }