Skip to content

Commit 16036ac

Browse files
committed
chore: release 6.0.88
1 parent 7728f5d commit 16036ac

38 files changed

+1560
-310
lines changed

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*.yaml
2+
*.json
3+
*.css

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,3 +188,28 @@ Currently, grouping is supported for:
188188
## Publishing manifest file via CLI
189189

190190
1. Run `npm run uniform:publish` to publish the manifest with A/B testing and personalization configuration.
191+
192+
## Optional Integrations
193+
194+
### Uniform Insights
195+
196+
To enable [**Uniform Insights**](https://docs.uniform.app/docs/integrations/data/insights), add the following variables to your `.env` file:
197+
198+
```bash
199+
UNIFORM_INSIGHTS_ENDPOINT=
200+
UNIFORM_INSIGHTS_KEY=
201+
```
202+
203+
> Refer to the [Uniform Insights documentation](https://docs.uniform.app/docs/integrations/data/insights) for detailed configuration and usage instructions.
204+
205+
---
206+
207+
### Google Analytics
208+
209+
To integrate [**Google Analytics**](https://docs.uniform.app/docs/integrations/data/google-analytics), include this variable in your `.env` file:
210+
211+
```bash
212+
GOOGLE_ANALYTICS_ID=
213+
```
214+
215+
> Learn more in the [Google Analytics integration guide](https://docs.uniform.app/docs/integrations/data/google-analytics).
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
asset:
2+
type: image
3+
_id: 0aafe2e9-468c-43e1-81f3-fda6c02388e7
4+
_name: ''
5+
fields:
6+
title:
7+
type: text
8+
value: man.png
9+
file:
10+
type: file
11+
value: 5bb4fe79-4e64-4b7c-9c5b-350cd801296b
12+
mediaType:
13+
value: image/png
14+
type: text
15+
url:
16+
value: >-
17+
https://img.uniform.global/p/h7VVOiFOSWyx2snFx06-Sw/xBYy0MwzRHqiYe2NXV3tgg-man.png
18+
type: text
19+
size:
20+
value: 1251800
21+
type: number
22+
width:
23+
value: 1059
24+
type: number
25+
height:
26+
value: 1059
27+
type: number
28+
custom: {}
29+
created: '2025-05-19T08:12:12.766978+00:00'
30+
modified: '2025-05-19T08:12:12.766978+00:00'

content/component/accordion.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ parameters:
2020
- border
2121
- fluidContent
2222
- fullHeight
23+
- fitHeight
2324
- id: backgroundColor
2425
name: Background Color
2526
type: dex-color-palette-parameter
@@ -48,6 +49,10 @@ parameters:
4849
name: Full Height
4950
type: checkbox
5051
typeConfig: null
52+
- id: fitHeight
53+
name: Fit Height
54+
type: checkbox
55+
typeConfig: null
5156
categoryId: 096fd5ed-5e2a-4bfa-834b-fb805d1d1ce9
5257
previewImageUrl: >-
5358
https://res.cloudinary.com/uniform-demos/image/upload/csk-v-next/baseline/preview-images/accordion.jpg

content/component/breadcrumbs.yaml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# yaml-language-server: $schema=<https://uniform.app/schemas/json-schema/component-definition/v1.json>
1+
# yaml-language-server: $schema=https://uniform.app/schemas/json-schema/component-definition/v1.json
22
$schema: https://uniform.app/schemas/json-schema/component-definition/v1.json
33
id: breadcrumbs
44
name: Breadcrumbs
@@ -25,22 +25,23 @@ parameters:
2525
typeConfig:
2626
allowedTypes:
2727
- breadcrumbLink
28+
- id: autoGenerate
29+
name: Auto Generate
30+
type: checkbox
31+
helpText: >-
32+
Enables automatic breadcrumb generation based on the project’s map
33+
structure
34+
typeConfig: null
2835
- id: 4fa3aa01-1d60-4c4d-ace3-c68c833126b3
2936
name: Presentation Settings
3037
type: group
3138
typeConfig:
3239
collapsed: true
3340
childrenParams:
34-
- alignment
3541
- size
3642
- color
37-
- weight
3843
- font
3944
- transform
40-
- decoration
41-
- letterSpacing
42-
- backgroundColor
43-
- spacing
4445
- id: size
4546
name: Size
4647
type: dex-segmented-control-parameter
@@ -89,5 +90,5 @@ useTeamPermissions: true
8990
slots: []
9091
titleParameter: displayName
9192
canBeComposition: false
92-
created: '2025-02-17T15:34:15.669745+00:00'
93-
updated: '2025-02-17T15:34:15.669745+00:00'
93+
created: '2025-03-20T12:55:43.600905+00:00'
94+
updated: '2025-06-02T08:35:49.777213+00:00'

content/component/card.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ parameters:
2020
- border
2121
- fluidContent
2222
- fullHeight
23+
- fitHeight
2324
- id: backgroundColor
2425
name: Background Color
2526
type: dex-color-palette-parameter
@@ -42,6 +43,10 @@ parameters:
4243
name: Full Height
4344
type: checkbox
4445
typeConfig: null
46+
- id: fitHeight
47+
name: Fit Height
48+
type: checkbox
49+
typeConfig: null
4550
categoryId: 096fd5ed-5e2a-4bfa-834b-fb805d1d1ce9
4651
previewImageUrl: >-
4752
https://res.cloudinary.com/uniform-demos/image/upload/csk-v-next/baseline/preview-images/card-default.jpg

content/component/carousel.yaml

Lines changed: 47 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# yaml-language-server: $schema=<https://uniform.app/schemas/json-schema/component-definition/v1.json>
1+
# yaml-language-server: $schema=https://uniform.app/schemas/json-schema/component-definition/v1.json
22
$schema: https://uniform.app/schemas/json-schema/component-definition/v1.json
33
id: carousel
44
name: Carousel
@@ -15,11 +15,46 @@ parameters:
1515
typeConfig:
1616
collapsed: true
1717
childrenParams:
18+
- itemsPerPage
19+
- gapX
1820
- backgroundColor
1921
- spacing
2022
- border
2123
- fluidContent
2224
- fullHeight
25+
- fitHeight
26+
- id: itemsPerPage
27+
name: Items Per Page
28+
type: dex-slider-control-parameter
29+
typeConfig:
30+
step: 1
31+
type: steps
32+
units: ''
33+
maxValue: 4
34+
minValue: 1
35+
defaultValue: '1'
36+
- id: gapX
37+
name: Gap X
38+
type: dex-slider-control-parameter
39+
typeConfig:
40+
step: 1
41+
type: custom
42+
unit: px
43+
options:
44+
- key: XSmall
45+
value: '2'
46+
- key: Small
47+
value: '4'
48+
- key: Medium
49+
value: '8'
50+
- key: Large
51+
value: '16'
52+
- key: XLarge
53+
value: '32'
54+
maxValue: 10
55+
minValue: 0
56+
defaultValue: {}
57+
withViewPort: true
2358
- id: backgroundColor
2459
name: Background Color
2560
type: dex-color-palette-parameter
@@ -48,6 +83,10 @@ parameters:
4883
name: Full Height
4984
type: checkbox
5085
typeConfig: null
86+
- id: fitHeight
87+
name: Fit Height
88+
type: checkbox
89+
typeConfig: null
5190
categoryId: 096fd5ed-5e2a-4bfa-834b-fb805d1d1ce9
5291
previewImageUrl: >-
5392
https://res.cloudinary.com/uniform-demos/image/upload/csk-v-next/baseline/preview-images/carousel-with-media.jpg
@@ -61,5 +100,10 @@ slots:
61100
patternsInAllowedComponents: false
62101
titleParameter: displayName
63102
canBeComposition: false
64-
created: '2025-01-29T10:47:01.262734+00:00'
65-
updated: '2025-02-19T10:34:31.98631+00:00'
103+
created: '2025-03-20T12:55:43.435513+00:00'
104+
updated: '2025-06-13T09:53:23.696497+00:00'
105+
variants:
106+
- id: brochure
107+
name: Brochure
108+
- id: numeric
109+
name: Numeric

content/component/container.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ parameters:
4343
name: Full Height
4444
type: checkbox
4545
typeConfig: null
46+
- id: fitHeight
47+
name: Fit Height
48+
type: checkbox
49+
typeConfig: null
4650
categoryId: ae15b0f6-4953-4ccb-9984-ad0525e77b01
4751
previewImageUrl: >-
4852
https://res.cloudinary.com/uniform-demos/image/upload/csk-v-next/baseline/preview-images/container-default.jpg

content/component/fixedHero.yaml

Lines changed: 44 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# yaml-language-server: $schema=<https://uniform.app/schemas/json-schema/component-definition/v1.json>
1+
# yaml-language-server: $schema=https://uniform.app/schemas/json-schema/component-definition/v1.json
22
$schema: https://uniform.app/schemas/json-schema/component-definition/v1.json
33
id: fixedHero
44
name: Fixed Hero
@@ -69,9 +69,9 @@ parameters:
6969
childrenParams:
7070
- contentAlignment
7171
- fullHeight
72-
- eyebrowTitleColor
73-
- titleColor
74-
- descriptionColor
72+
- fitHeight
73+
- textColor
74+
- enableOverlayAutoTint
7575
- id: contentAlignment
7676
name: Content Alignment
7777
type: dex-segmented-control-parameter
@@ -88,22 +88,57 @@ parameters:
8888
name: Full Height
8989
type: checkbox
9090
typeConfig: null
91+
- id: fitHeight
92+
name: Fit Height
93+
type: checkbox
94+
typeConfig: null
95+
- id: textColor
96+
name: Text Color
97+
type: dex-color-palette-parameter
98+
typeConfig:
99+
allowColors: []
100+
selectedGroup: text
101+
- id: enableOverlayAutoTint
102+
name: Enable Overlay Auto Tint
103+
type: checkbox
104+
helpText: >-
105+
Automatically generates a 30% transparent overlay from the title color.
106+
This applies only when the component is in its default variant.
107+
typeConfig: null
108+
- id: 60931dc3-7941-493e-86bc-2e83d49044b9
109+
name: Deprecated Parameters
110+
type: group
111+
typeConfig:
112+
collapsed: true
113+
childrenParams:
114+
- eyebrowTitleColor
115+
- titleColor
116+
- descriptionColor
91117
- id: eyebrowTitleColor
92-
name: Eyebrow Text Color
118+
name: Eyebrow Text Color (Deprecated)
93119
type: dex-color-palette-parameter
120+
helpText: >-
121+
This parameter is deprecated — please use the Text Color parameter to set
122+
the color for all text elements.
94123
typeConfig:
95124
allowColors: []
96125
selectedGroup: text
97126
allowThemeColors: []
98127
- id: titleColor
99-
name: Title Color
128+
name: Title Color (Deprecated)
100129
type: dex-color-palette-parameter
130+
helpText: >-
131+
This parameter is deprecated — please use the Text Color parameter to set
132+
the color for all text elements.
101133
typeConfig:
102134
allowColors: []
103135
selectedGroup: text
104136
- id: descriptionColor
105-
name: Description Color
137+
name: Description Color (Deprecated)
106138
type: dex-color-palette-parameter
139+
helpText: >-
140+
This parameter is deprecated — please use the Text Color parameter to set
141+
the color for all text elements.
107142
typeConfig:
108143
allowColors: []
109144
selectedGroup: text
@@ -115,8 +150,8 @@ useTeamPermissions: true
115150
slots: []
116151
titleParameter: displayName
117152
canBeComposition: false
118-
created: '2025-02-17T15:34:14.062996+00:00'
119-
updated: '2025-02-17T15:34:14.062996+00:00'
153+
created: '2025-01-29T10:47:01.402162+00:00'
154+
updated: '2025-06-12T06:46:59.727763+00:00'
120155
variants:
121156
- id: columns
122157
name: Columns

content/component/flex.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ parameters:
9090
- border
9191
- fluidContent
9292
- fullHeight
93+
- fitHeight
9394
- id: backgroundColor
9495
name: Background Color
9596
type: dex-color-palette-parameter
@@ -118,6 +119,10 @@ parameters:
118119
name: Full Height
119120
type: checkbox
120121
typeConfig: null
122+
- id: fitHeight
123+
name: Fit Height
124+
type: checkbox
125+
typeConfig: null
121126
categoryId: ae15b0f6-4953-4ccb-9984-ad0525e77b01
122127
previewImageUrl: >-
123128
https://res.cloudinary.com/uniform-demos/image/upload/csk-v-next/baseline/preview-images/flex.jpg

0 commit comments

Comments
 (0)