@kickstartds/ds-agency-premium 1.2.12--canary.216.0543b48.0 → 1.2.12
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/BlogOverviewProps-f385fc47.d.ts +36 -0
- package/dist/BlogPostProps-0910f130.d.ts +36 -0
- package/dist/FooterProps-b5c16ab5.d.ts +37 -0
- package/dist/HeaderProps-ae331ab2.d.ts +42 -0
- package/dist/SectionProps-93230a76.d.ts +141 -0
- package/dist/components/blog-overview/index.d.ts +1 -36
- package/dist/components/blog-post/index.d.ts +1 -36
- package/dist/components/footer/index.d.ts +1 -37
- package/dist/components/header/index.d.ts +1 -42
- package/dist/components/image-story/index.d.ts +1 -1
- package/dist/components/index/index.d.ts +50 -0
- package/dist/components/index/index.js +1 -0
- package/dist/components/page-wrapper/tokens.css +395 -1571
- package/dist/components/presets.json +3189 -0
- package/dist/components/section/index.d.ts +1 -141
- package/dist/components/testimonials/testimonials.css +0 -12
- package/dist/static/tokens-business.css +346 -1522
- package/dist/static/tokens-google.css +364 -1540
- package/dist/static/tokens-ngo.css +335 -1787
- package/dist/static/tokens-telekom.css +356 -1532
- package/dist/static/tokens.css +395 -1571
- package/dist/tokens/tokens.css +395 -1571
- package/dist/tokens/tokens.js +250 -654
- package/package.json +33 -17
- /package/dist/{ImageStoryProps-03ff6d21.d.ts → ImageStoryProps-24e0335c.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kickstartds/ds-agency-premium",
|
|
3
|
-
"version": "1.2.12
|
|
3
|
+
"version": "1.2.12",
|
|
4
4
|
"description": "",
|
|
5
5
|
"homepage": "https://github.com/kickstartDS/ds-agency-premium#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
],
|
|
40
40
|
"scripts": {
|
|
41
41
|
"build-storybook": "yarn build-tokens && yarn schema && yarn token && storybook build",
|
|
42
|
-
"postbuild-storybook": "yarn
|
|
42
|
+
"postbuild-storybook": "yarn presets && yarn playroom:build && mkdir -p dist/components && cp snippets.json dist/components/presets.json",
|
|
43
43
|
"build-tokens": "kickstartDS tokens compile && yarn build-tokens-business && yarn build-tokens-ngo && yarn build-tokens-telekom && yarn build-tokens-google && yarn && yarn copyTokensCss",
|
|
44
44
|
"build-tokens-business": "kickstartDS tokens compile --token-dictionary-path src/token-business/dictionary --sd-config-path sd.config-business.cjs",
|
|
45
45
|
"build-tokens-ngo": "kickstartDS tokens compile --token-dictionary-path src/token-ngo/dictionary --sd-config-path sd.config-ngo.cjs",
|
|
@@ -49,45 +49,44 @@
|
|
|
49
49
|
"copyTokensCss": "cp src/token/tokens.css static/tokens.css && cp src/token-business/tokens.css static/tokens-business.css && cp src/token-google/tokens.css static/tokens-google.css && cp src/token-telekom/tokens.css static/tokens-telekom.css && cp src/token-ngo/tokens.css static/tokens-ngo.css",
|
|
50
50
|
"init-tokens": "kickstartDS tokens init",
|
|
51
51
|
"playroom": "run-p watch:* playroom:start",
|
|
52
|
-
"playroom:snippets": "rimraf tmp && node scripts/generatePlayroomSnippets.js",
|
|
53
52
|
"playroom:start": "playroom start",
|
|
54
53
|
"playroom:build": "playroom build",
|
|
54
|
+
"presets": "vitest run scripts/generatePresets.test.ts",
|
|
55
55
|
"husky:precommit": "yarn schema && rollup -c",
|
|
56
56
|
"prepare": "patch-package && husky install",
|
|
57
|
-
"prepublishOnly": "rm -rf dist && yarn build-tokens && yarn schema && rollup -c",
|
|
57
|
+
"prepublishOnly": "rm -rf dist && yarn build-tokens && yarn schema && rollup -c && yarn build-storybook",
|
|
58
58
|
"schema": "run-p schema:*",
|
|
59
59
|
"schema:dereference-schemas": "kickstartDS schema dereference --schema-domain schema.mydesignsystem.com",
|
|
60
60
|
"schema:generate-props": "kickstartDS schema types",
|
|
61
61
|
"schema:layer-types": "kickstartDS schema layer",
|
|
62
62
|
"start": "run-p watch:* storybook",
|
|
63
63
|
"storybook": "storybook dev -p 6006",
|
|
64
|
+
"create-component-previews": "yarn test && rimraf static/img/screenshots && mkdir -p static/img/screenshots && cp __snapshots__/*.png static/img/screenshots",
|
|
65
|
+
"test": "rimraf __snapshots__ && run-p -r test:*",
|
|
66
|
+
"test:server": "npx http-server storybook-static --port 6006 --silent",
|
|
67
|
+
"test:suite": "npx wait-on http://127.0.0.1:6006 && test-storybook",
|
|
64
68
|
"token": "node scripts/customPropertyExtract.js",
|
|
65
69
|
"watch:schema": "yarn schema && chokidar \"src/**/*.schema.json\" -c \"yarn schema\"",
|
|
66
70
|
"watch:token": "yarn token && chokidar \"src/**/*-tokens.scss\" -c \"yarn token {path}\"",
|
|
67
71
|
"watch:dictionary": "yarn build-tokens && chokidar \"src/token/dictionary/*.json\" -c \"yarn build-tokens\""
|
|
68
72
|
},
|
|
69
73
|
"resolutions": {
|
|
70
|
-
"@kickstartds/style-dictionary": "
|
|
74
|
+
"@kickstartds/style-dictionary": "^3.0.0-next.1"
|
|
71
75
|
},
|
|
72
76
|
"dependencies": {
|
|
73
77
|
"@bedrock-layout/primitives": "^3.0.23",
|
|
74
78
|
"@bedrock-layout/spacing-constants": "^3.2.5",
|
|
75
|
-
"@kickstartds/base": "2.3.0-canary.1615.6674.0",
|
|
76
|
-
"@kickstartds/blog": "2.3.0-canary.1615.6674.0",
|
|
77
|
-
"@kickstartds/content": "3.0.0-next.7",
|
|
78
|
-
"@kickstartds/core": "2.3.0-canary.1615.6674.0",
|
|
79
|
-
"@kickstartds/form": "2.3.0-canary.1615.6674.0",
|
|
80
|
-
"@kickstartds/style-dictionary": "2.3.0-canary.1615.6674.0",
|
|
81
79
|
"classnames": "^2.3.2",
|
|
82
|
-
"lazysizes": "^5.3.2",
|
|
83
|
-
"react": "18.2.0",
|
|
84
|
-
"react-dom": "18.2.0",
|
|
85
80
|
"react-markdown": "^8.0.7"
|
|
86
81
|
},
|
|
87
82
|
"devDependencies": {
|
|
88
83
|
"@auto-it/npm": "^11.0.1",
|
|
89
84
|
"@auto-it/released": "^11.0.1",
|
|
90
|
-
"@
|
|
85
|
+
"@kickstartds/base": "2.3.0-beta.1",
|
|
86
|
+
"@kickstartds/blog": "2.3.0-beta.1",
|
|
87
|
+
"@kickstartds/content": "3.0.0-next.7",
|
|
88
|
+
"@kickstartds/core": "3.0.0-beta.0",
|
|
89
|
+
"@kickstartds/form": "2.3.0-beta.1",
|
|
91
90
|
"@kickstartds/storybook-addon-component-tokens": "1.0.0",
|
|
92
91
|
"@kickstartds/storybook-addon-html": "^0.0.2",
|
|
93
92
|
"@kickstartds/storybook-addon-jsonschema": "^2.0.1",
|
|
@@ -100,6 +99,10 @@
|
|
|
100
99
|
"@storybook/core-webpack": "^7.6.7",
|
|
101
100
|
"@storybook/react": "^7.6.7",
|
|
102
101
|
"@storybook/react-vite": "^7.6.7",
|
|
102
|
+
"@storybook/test-runner": "^0.16.0",
|
|
103
|
+
"@testing-library/react": "^14.1.2",
|
|
104
|
+
"@types/jest": "^29.5.11",
|
|
105
|
+
"@types/jest-image-snapshot": "^6.4.0",
|
|
103
106
|
"@types/react": "^18.2.21",
|
|
104
107
|
"auto": "^11.0.1",
|
|
105
108
|
"change-case": "^4.1.2",
|
|
@@ -110,14 +113,18 @@
|
|
|
110
113
|
"deepmerge": "^4.3.1",
|
|
111
114
|
"fast-glob": "^3.3.1",
|
|
112
115
|
"fs-extra": "^11.1.1",
|
|
113
|
-
"
|
|
116
|
+
"happy-dom": "^13.3.1",
|
|
114
117
|
"husky": "^8.0.3",
|
|
118
|
+
"jest-image-snapshot": "^6.4.0",
|
|
115
119
|
"kickstartds": "^3.0.0-next.7",
|
|
120
|
+
"lazysizes": "^5.3.2",
|
|
116
121
|
"npm-run-all": "^4.1.5",
|
|
117
122
|
"patch-package": "^8.0.0",
|
|
118
123
|
"playroom": "^0.34.1",
|
|
119
124
|
"postcss": "^8.4.29",
|
|
120
125
|
"postcss-url": "^10.1.3",
|
|
126
|
+
"react": "18.2.0",
|
|
127
|
+
"react-dom": "18.2.0",
|
|
121
128
|
"rollup": "^3.28.1",
|
|
122
129
|
"rollup-plugin-copy": "^3.4.0",
|
|
123
130
|
"rollup-plugin-node-externals": "^6.1.1",
|
|
@@ -128,7 +135,16 @@
|
|
|
128
135
|
"storybook-addon-playroom": "^5.0.0",
|
|
129
136
|
"storybook-design-token": "3.0.0-beta.3",
|
|
130
137
|
"style-loader": "^3.3.3",
|
|
131
|
-
"typescript": "^5.2.2"
|
|
138
|
+
"typescript": "^5.2.2",
|
|
139
|
+
"vitest": "^1.2.1"
|
|
140
|
+
},
|
|
141
|
+
"peerDependencies": {
|
|
142
|
+
"@kickstartds/base": "2.3.0-beta.0",
|
|
143
|
+
"@kickstartds/blog": "2.3.0-beta.0",
|
|
144
|
+
"@kickstartds/core": "3.0.0-beta.0",
|
|
145
|
+
"@kickstartds/form": "2.3.0-beta.0",
|
|
146
|
+
"react": "^17 || ^18",
|
|
147
|
+
"react-dom": "^17 || ^18"
|
|
132
148
|
},
|
|
133
149
|
"publishConfig": {
|
|
134
150
|
"access": "public",
|
|
File without changes
|