@kaizen/components 2.0.7 → 2.1.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/cjs/src/__alpha__/SingleSelect/subcomponents/ComboBoxTrigger/ComboBoxTrigger.cjs +3 -3
- package/dist/esm/src/__alpha__/SingleSelect/subcomponents/ComboBoxTrigger/ComboBoxTrigger.mjs +3 -3
- package/dist/styles.css +57 -53
- package/locales/ar.json +3 -3
- package/locales/bg.json +3 -3
- package/locales/cs.json +3 -3
- package/locales/cy.json +3 -3
- package/locales/da.json +3 -3
- package/locales/de.json +3 -3
- package/locales/el.json +3 -3
- package/locales/en-GB.json +3 -3
- package/locales/en.json +3 -3
- package/locales/es-419.json +3 -3
- package/locales/es.json +3 -3
- package/locales/et.json +3 -3
- package/locales/fi.json +3 -3
- package/locales/fr-CA.json +3 -3
- package/locales/fr.json +3 -3
- package/locales/he.json +3 -3
- package/locales/hi.json +3 -3
- package/locales/ht.json +3 -3
- package/locales/hu.json +3 -3
- package/locales/id.json +3 -3
- package/locales/it.json +3 -3
- package/locales/ja.json +3 -3
- package/locales/km-KH.json +3 -3
- package/locales/ko.json +3 -3
- package/locales/lt.json +3 -3
- package/locales/lv.json +3 -3
- package/locales/mi.json +3 -3
- package/locales/ms.json +3 -3
- package/locales/nb.json +3 -3
- package/locales/nl.json +3 -3
- package/locales/pl.json +3 -3
- package/locales/pt-BR.json +3 -3
- package/locales/pt.json +3 -3
- package/locales/ro.json +3 -3
- package/locales/ru.json +3 -3
- package/locales/si-LK.json +3 -3
- package/locales/sk.json +2 -2
- package/locales/sr.json +3 -3
- package/locales/sv.json +3 -3
- package/locales/th.json +3 -3
- package/locales/tl.json +3 -3
- package/locales/tr.json +3 -3
- package/locales/uk.json +3 -3
- package/locales/vi.json +3 -3
- package/locales/zh-TW.json +3 -3
- package/locales/zh.json +3 -3
- package/package.json +1 -1
- package/src/TitleBlock/TitleBlock.module.scss +13 -8
- package/src/TitleBlock/_docs/{TitkeBlock--usage-guidelines.mdx → TitleBlock--usage-guidelines.mdx} +9 -1
- package/src/TitleBlock/_docs/TitleBlock.stories.tsx +71 -0
- package/src/TitleBlock/_mixins.scss +6 -6
- package/src/TitleBlock/subcomponents/NavigationTabs.module.scss +0 -1
- package/src/__alpha__/SingleSelect/_docs/SingleSelect.spec.stories.tsx +1 -1
- package/src/__alpha__/SingleSelect/subcomponents/ComboBoxTrigger/ComboBoxTrigger.tsx +4 -3
|
@@ -31,6 +31,7 @@ const meta = {
|
|
|
31
31
|
component: TitleBlock,
|
|
32
32
|
parameters: {
|
|
33
33
|
chromatic: { disable: false },
|
|
34
|
+
layout: 'fullscreen',
|
|
34
35
|
},
|
|
35
36
|
args: {
|
|
36
37
|
title: 'Page title',
|
|
@@ -145,6 +146,76 @@ export const HasLongTitle: Story = {
|
|
|
145
146
|
args: { title: 'A long title with over thirty characters' },
|
|
146
147
|
}
|
|
147
148
|
|
|
149
|
+
export const AdminVariant: Story = {
|
|
150
|
+
parameters: {
|
|
151
|
+
viewport: {
|
|
152
|
+
viewports: {
|
|
153
|
+
default: {
|
|
154
|
+
name: 'Above or equal to 1366',
|
|
155
|
+
styles: { width: '1366px', height: '800px' },
|
|
156
|
+
type: 'desktop',
|
|
157
|
+
},
|
|
158
|
+
under1366: {
|
|
159
|
+
name: 'Under 1366',
|
|
160
|
+
styles: { width: '1365px', height: '800px' },
|
|
161
|
+
type: 'desktop',
|
|
162
|
+
},
|
|
163
|
+
},
|
|
164
|
+
defaultViewport: 'default',
|
|
165
|
+
},
|
|
166
|
+
chromatic: {
|
|
167
|
+
disable: false,
|
|
168
|
+
viewports: [1365, 1366],
|
|
169
|
+
},
|
|
170
|
+
},
|
|
171
|
+
args: {
|
|
172
|
+
variant: 'admin',
|
|
173
|
+
navigationTabs: [
|
|
174
|
+
<NavigationTab key="1" variant="admin" text="Label" href="#" active />,
|
|
175
|
+
<NavigationTab key="2" variant="admin" text="Label" href="#" />,
|
|
176
|
+
<NavigationTab key="3" variant="admin" text="Label" href="#" />,
|
|
177
|
+
<NavigationTab key="4" variant="admin" text="Label" href="#" />,
|
|
178
|
+
<NavigationTab key="5" variant="admin" text="Label" href="#" />,
|
|
179
|
+
<NavigationTab key="6" variant="admin" text="Label" href="#" />,
|
|
180
|
+
],
|
|
181
|
+
},
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
export const EducationVariant: Story = {
|
|
185
|
+
parameters: {
|
|
186
|
+
viewport: {
|
|
187
|
+
viewports: {
|
|
188
|
+
default: {
|
|
189
|
+
name: 'Above or equal to 1366',
|
|
190
|
+
styles: { width: '1366px', height: '800px' },
|
|
191
|
+
type: 'desktop',
|
|
192
|
+
},
|
|
193
|
+
under1366: {
|
|
194
|
+
name: 'Under 1366',
|
|
195
|
+
styles: { width: '1365px', height: '800px' },
|
|
196
|
+
type: 'desktop',
|
|
197
|
+
},
|
|
198
|
+
},
|
|
199
|
+
defaultViewport: 'default',
|
|
200
|
+
},
|
|
201
|
+
chromatic: {
|
|
202
|
+
disable: false,
|
|
203
|
+
viewports: [1365, 1366],
|
|
204
|
+
},
|
|
205
|
+
},
|
|
206
|
+
args: {
|
|
207
|
+
variant: 'education',
|
|
208
|
+
navigationTabs: [
|
|
209
|
+
<NavigationTab key="1" variant="education" text="Label" href="#" active />,
|
|
210
|
+
<NavigationTab key="2" variant="education" text="Label" href="#" />,
|
|
211
|
+
<NavigationTab key="3" variant="education" text="Label" href="#" />,
|
|
212
|
+
<NavigationTab key="4" variant="education" text="Label" href="#" />,
|
|
213
|
+
<NavigationTab key="5" variant="education" text="Label" href="#" />,
|
|
214
|
+
<NavigationTab key="6" variant="education" text="Label" href="#" />,
|
|
215
|
+
],
|
|
216
|
+
},
|
|
217
|
+
}
|
|
218
|
+
|
|
148
219
|
export const StickerSheetBreadcrumbs: Story = {
|
|
149
220
|
name: 'Sticker Sheet (Breadcrumb)',
|
|
150
221
|
parameters: {
|
|
@@ -1,37 +1,37 @@
|
|
|
1
1
|
@import '~@kaizen/design-tokens/sass/layout';
|
|
2
2
|
|
|
3
3
|
@mixin title-block-under-1645 {
|
|
4
|
-
@
|
|
4
|
+
@container (max-width: 1644px) {
|
|
5
5
|
@content;
|
|
6
6
|
}
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
@mixin title-block-under-1440 {
|
|
10
|
-
@
|
|
10
|
+
@container (max-width: 1439px) {
|
|
11
11
|
@content;
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
@mixin title-block-under-1366 {
|
|
16
|
-
@
|
|
16
|
+
@container (max-width: 1365px) {
|
|
17
17
|
@content;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
@mixin title-block-medium-and-small {
|
|
22
|
-
@
|
|
22
|
+
@container (max-width: calc(#{$layout-breakpoints-large} - 1px)) {
|
|
23
23
|
@content;
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
@mixin title-block-under-1024 {
|
|
28
|
-
@
|
|
28
|
+
@container (max-width: 1023px) {
|
|
29
29
|
@content;
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
@mixin title-block-small {
|
|
34
|
-
@
|
|
34
|
+
@container (max-width: calc(#{$layout-breakpoints-medium} - 1px)) {
|
|
35
35
|
@content;
|
|
36
36
|
}
|
|
37
37
|
}
|
|
@@ -87,7 +87,7 @@ export const XButtonClearsSelection: Story = {
|
|
|
87
87
|
await userEvent.click(options[0])
|
|
88
88
|
|
|
89
89
|
const clearButton = await screen.findByRole('button', {
|
|
90
|
-
name: 'Clear Choose a coffee
|
|
90
|
+
name: 'Clear selection: Choose a coffee',
|
|
91
91
|
})
|
|
92
92
|
await waitFor(() => expect(clearButton).toBeVisible())
|
|
93
93
|
await userEvent.click(clearButton)
|
|
@@ -19,9 +19,10 @@ const ClearButton = ({ clearButtonRef, inputRef }: ClearButtonProps): JSX.Elemen
|
|
|
19
19
|
|
|
20
20
|
const clearButtonAlt = formatMessage(
|
|
21
21
|
{
|
|
22
|
-
id: 'singleSelect.
|
|
23
|
-
defaultMessage: 'Clear {field}
|
|
24
|
-
description:
|
|
22
|
+
id: 'singleSelect.clearButtonAlt_v2',
|
|
23
|
+
defaultMessage: 'Clear selection: {field}',
|
|
24
|
+
description:
|
|
25
|
+
'Alt text for the clear selection button. The button clears the selection the user has made via a dropdown. The field placeholder is the label of the dropdown.',
|
|
25
26
|
},
|
|
26
27
|
{ field: fieldLabel },
|
|
27
28
|
)
|