@kickstartds/ds-agency-premium 1.1.3 → 1.2.0--canary.4.107.0
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/components/page/page.schema.dereffed.json +5 -5
- package/dist/components/page-wrapper/tokens.css +1 -1
- package/dist/components/section/index.d.ts +1 -1
- package/dist/components/section/index.js +1 -1
- package/dist/components/section/section.css +3 -15
- package/dist/components/section/section.schema.dereffed.json +5 -5
- package/dist/components/section/section.schema.json +2 -2
- package/dist/static/tokens-lughausen.css +1 -1
- package/dist/static/tokens.css +1 -1
- package/dist/tokens/tokens.css +1 -1
- package/dist/tokens/tokens.js +1 -1
- package/package.json +4 -4
|
@@ -217,13 +217,13 @@
|
|
|
217
217
|
"title": "Tile Width",
|
|
218
218
|
"description": "Set min-width for the tiles in the grid",
|
|
219
219
|
"enum": [
|
|
220
|
-
"
|
|
221
|
-
"
|
|
222
|
-
"narrow",
|
|
220
|
+
"smallest",
|
|
221
|
+
"default",
|
|
223
222
|
"medium",
|
|
224
|
-
"
|
|
223
|
+
"large",
|
|
224
|
+
"largest"
|
|
225
225
|
],
|
|
226
|
-
"default": "
|
|
226
|
+
"default": "default"
|
|
227
227
|
}
|
|
228
228
|
},
|
|
229
229
|
"additionalProperties": false
|
|
@@ -102,7 +102,7 @@ type Mode = "default" | "tile" | "list" | "slider";
|
|
|
102
102
|
/**
|
|
103
103
|
* Set min-width for the tiles in the grid
|
|
104
104
|
*/
|
|
105
|
-
type TileWidth = "
|
|
105
|
+
type TileWidth = "smallest" | "default" | "medium" | "large" | "largest";
|
|
106
106
|
/**
|
|
107
107
|
* Allowed components for content
|
|
108
108
|
*/
|
|
@@ -29,7 +29,7 @@ const Section = forwardRef(({ headline, content, headerSpacing, width = "default
|
|
|
29
29
|
? "symmetric-glow"
|
|
30
30
|
: style === "anchorGlow"
|
|
31
31
|
? "anchor-glow"
|
|
32
|
-
: style}`, headerSpacing && "l-section--header-spacing", spotlight && "l-section--spotlight",
|
|
32
|
+
: style}`, headerSpacing && "l-section--header-spacing", spotlight && "l-section--spotlight", className), background: backgroundColor, content: content, headline: {
|
|
33
33
|
...headlineRest,
|
|
34
34
|
spaceAfter: "large",
|
|
35
35
|
// @ts-expect-error
|
|
@@ -61,6 +61,9 @@
|
|
|
61
61
|
--l-section--spotlight-top: 0;
|
|
62
62
|
--l-section--spotlight-color: var(--ks-color-primary-alpha-5);
|
|
63
63
|
}
|
|
64
|
+
.l-section__content {
|
|
65
|
+
--l-section_tile-width--default: 20rem;
|
|
66
|
+
}
|
|
64
67
|
|
|
65
68
|
:root .l-section {
|
|
66
69
|
background-image: var(--l-section--background-image);
|
|
@@ -76,21 +79,6 @@
|
|
|
76
79
|
:root .l-section--header-spacing.l-section--space-before-small {
|
|
77
80
|
padding-top: calc(var(--g-header-height) + var(--l-section--space-small));
|
|
78
81
|
}
|
|
79
|
-
:root .l-section--tiles-control .l-section__content {
|
|
80
|
-
--l-section_col--min-width: var(--l-section--tile-width-control);
|
|
81
|
-
}
|
|
82
|
-
:root .l-section--tiles-card .l-section__content {
|
|
83
|
-
--l-section_col--min-width: var(--l-section--tile-width-card);
|
|
84
|
-
}
|
|
85
|
-
:root .l-section--tiles-narrow .l-section__content {
|
|
86
|
-
--l-section_col--min-width: var(--l-section--tile-width-narrow);
|
|
87
|
-
}
|
|
88
|
-
:root .l-section--tiles-medium .l-section__content {
|
|
89
|
-
--l-section_col--min-width: var(--l-section--tile-width-medium);
|
|
90
|
-
}
|
|
91
|
-
:root .l-section--tiles-wide .l-section__content {
|
|
92
|
-
--l-section_col--min-width: var(--l-section--tile-width-wide);
|
|
93
|
-
}
|
|
94
82
|
:root .l-section--spotlight {
|
|
95
83
|
position: relative;
|
|
96
84
|
}
|
|
@@ -203,13 +203,13 @@
|
|
|
203
203
|
"title": "Tile Width",
|
|
204
204
|
"description": "Set min-width for the tiles in the grid",
|
|
205
205
|
"enum": [
|
|
206
|
-
"
|
|
207
|
-
"
|
|
208
|
-
"narrow",
|
|
206
|
+
"smallest",
|
|
207
|
+
"default",
|
|
209
208
|
"medium",
|
|
210
|
-
"
|
|
209
|
+
"large",
|
|
210
|
+
"largest"
|
|
211
211
|
],
|
|
212
|
-
"default": "
|
|
212
|
+
"default": "default"
|
|
213
213
|
}
|
|
214
214
|
},
|
|
215
215
|
"additionalProperties": false
|
|
@@ -150,8 +150,8 @@
|
|
|
150
150
|
"type": "string",
|
|
151
151
|
"title": "Tile Width",
|
|
152
152
|
"description": "Set min-width for the tiles in the grid",
|
|
153
|
-
"enum": ["
|
|
154
|
-
"default": "
|
|
153
|
+
"enum": ["smallest", "default", "medium", "large", "largest"],
|
|
154
|
+
"default": "default"
|
|
155
155
|
}
|
|
156
156
|
},
|
|
157
157
|
"additionalProperties": false
|
package/dist/static/tokens.css
CHANGED
package/dist/tokens/tokens.css
CHANGED
package/dist/tokens/tokens.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kickstartds/ds-agency-premium",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0--canary.4.107.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"homepage": "https://github.com/kickstartDS/ds-agency-premium#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -68,11 +68,11 @@
|
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"@bedrock-layout/primitives": "^3.0.23",
|
|
70
70
|
"@bedrock-layout/spacing-constants": "^3.2.5",
|
|
71
|
-
"@kickstartds/base": "2.3.0-
|
|
72
|
-
"@kickstartds/blog": "2.3.0-
|
|
71
|
+
"@kickstartds/base": "2.3.0-canary.1586.6599.0",
|
|
72
|
+
"@kickstartds/blog": "2.3.0-canary.1586.6599.0",
|
|
73
73
|
"@kickstartds/content": "3.0.0-next.7",
|
|
74
74
|
"@kickstartds/core": "3.0.0-beta.0",
|
|
75
|
-
"@kickstartds/form": "2.3.0-
|
|
75
|
+
"@kickstartds/form": "2.3.0-canary.1586.6599.0",
|
|
76
76
|
"classnames": "^2.3.2",
|
|
77
77
|
"lazysizes": "^5.3.2",
|
|
78
78
|
"react": "18.2.0",
|