@kaizen/components 1.67.1 → 1.67.2
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/TextField/TextField.cjs +2 -2
- package/dist/cjs/TextField/TextField.module.scss.cjs +4 -6
- package/dist/esm/TextField/TextField.mjs +2 -2
- package/dist/esm/TextField/TextField.module.scss.mjs +4 -6
- package/dist/styles.css +245 -458
- package/package.json +3 -3
- package/src/Avatar/Avatar.module.scss +4 -4
- package/src/Checkbox/Checkbox/Checkbox.module.scss +2 -2
- package/src/Filter/FilterMultiSelect/subcomponents/SelectionControlButton/SelectionControlButton.module.scss +9 -10
- package/src/GuidanceBlock/GuidanceBlock.module.scss +4 -5
- package/src/Input/InputRange/InputRange.module.scss +4 -4
- package/src/Input/InputSearch/InputSearch.module.scss +21 -21
- package/src/LikertScaleLegacy/LikertScaleLegacy.module.scss +7 -8
- package/src/Modal/ContextModal/ContextModal.module.scss +4 -4
- package/src/Modal/GenericModal/GenericModal.module.scss +8 -8
- package/src/Modal/GenericModal/subcomponents/ModalHeader/ModalHeader.module.scss +2 -2
- package/src/Modal/InputEditModal/InputEditModal.module.scss +4 -4
- package/src/Notification/subcomponents/GenericNotification/_mixins.scss +7 -8
- package/src/RichTextEditor/RichTextEditor/RichTextEditor.module.scss +2 -2
- package/src/Select/Select.module.scss +7 -7
- package/src/Table/Table.module.scss +11 -7
- package/src/TextArea/TextArea.module.scss +4 -4
- package/src/TextField/TextField.module.scss +10 -36
- package/src/TextField/TextField.tsx +2 -4
- package/src/TextField/_docs/TextField.stickersheet.stories.tsx +9 -1
- package/src/Tile/subcomponents/GenericTile/GenericTile.module.scss +7 -8
- package/src/TitleBlockZen/TitleBlockZen.module.scss +14 -21
- package/src/TitleBlockZen/subcomponents/MobileActions.module.scss +2 -2
- package/src/__future__/Tag/RemovableTag/subcomponents/RemoveButton.module.scss +1 -2
|
@@ -115,14 +115,13 @@ $tab-container-height-medium-and-small-collapsed: 0;
|
|
|
115
115
|
align-items: center;
|
|
116
116
|
min-width: 0; // this is an important trick to prevent flexbox items from overflowing
|
|
117
117
|
z-index: $ca-z-index-dropdown; // this ensures the page switcher dropdown sits over nav tabs
|
|
118
|
+
transform: translateY(-0.0833em);
|
|
118
119
|
|
|
119
120
|
.hasSubtitle & {
|
|
120
121
|
@include title-block-under-1366 {
|
|
121
122
|
transform: translateY(-0.3833em);
|
|
122
123
|
}
|
|
123
124
|
}
|
|
124
|
-
|
|
125
|
-
transform: translateY(-0.0833em);
|
|
126
125
|
}
|
|
127
126
|
|
|
128
127
|
.titleAndSubtitleInner {
|
|
@@ -243,13 +242,12 @@ $tab-container-height-medium-and-small-collapsed: 0;
|
|
|
243
242
|
line-height: $typography-paragraph-small-line-height;
|
|
244
243
|
letter-spacing: $typography-paragraph-small-letter-spacing;
|
|
245
244
|
max-width: 230px;
|
|
245
|
+
margin-inline: var(--spacing-12) 0;
|
|
246
246
|
|
|
247
247
|
.adminVariant & {
|
|
248
248
|
color: $color-purple-800;
|
|
249
249
|
}
|
|
250
250
|
|
|
251
|
-
@include ca-margin($start: calc(#{$ca-grid} / 2));
|
|
252
|
-
|
|
253
251
|
@include title-block-under-1366 {
|
|
254
252
|
white-space: nowrap;
|
|
255
253
|
text-overflow: ellipsis;
|
|
@@ -285,9 +283,7 @@ $tab-container-height-medium-and-small-collapsed: 0;
|
|
|
285
283
|
|
|
286
284
|
.sectionTitleOverride.sectionTitleOverride {
|
|
287
285
|
white-space: nowrap;
|
|
288
|
-
|
|
289
|
-
@include ca-margin($end: $ca-grid);
|
|
290
|
-
|
|
286
|
+
margin-inline: 0 var(--spacing-24);
|
|
291
287
|
font-family: $typography-heading-2-font-family;
|
|
292
288
|
font-weight: $typography-heading-2-font-weight;
|
|
293
289
|
font-size: $typography-heading-2-font-size;
|
|
@@ -316,10 +312,6 @@ $tab-container-height-medium-and-small-collapsed: 0;
|
|
|
316
312
|
}
|
|
317
313
|
|
|
318
314
|
.sectionTitleDescription {
|
|
319
|
-
.sectionTitle + & {
|
|
320
|
-
margin-top: calc(#{$ca-grid} / 4);
|
|
321
|
-
}
|
|
322
|
-
|
|
323
315
|
color: $color-white;
|
|
324
316
|
max-width: 780px;
|
|
325
317
|
font-family: $typography-paragraph-small-font-family;
|
|
@@ -328,6 +320,10 @@ $tab-container-height-medium-and-small-collapsed: 0;
|
|
|
328
320
|
line-height: $typography-paragraph-small-line-height;
|
|
329
321
|
letter-spacing: $typography-paragraph-small-letter-spacing;
|
|
330
322
|
|
|
323
|
+
.sectionTitle + & {
|
|
324
|
+
margin-top: var(--spacing-6);
|
|
325
|
+
}
|
|
326
|
+
|
|
331
327
|
&.dark {
|
|
332
328
|
color: rgba($color-purple-800-rgb, 0.7);
|
|
333
329
|
}
|
|
@@ -360,30 +356,28 @@ $tab-container-height-medium-and-small-collapsed: 0;
|
|
|
360
356
|
}
|
|
361
357
|
|
|
362
358
|
.tag {
|
|
363
|
-
@include ca-margin($start: calc(#{$ca-grid} / 2));
|
|
364
|
-
|
|
365
359
|
display: flex;
|
|
366
360
|
align-items: center;
|
|
361
|
+
margin-inline: var(--spacing-12) 0;
|
|
367
362
|
|
|
368
363
|
@include title-block-medium-and-small {
|
|
369
364
|
display: none;
|
|
370
365
|
}
|
|
371
366
|
|
|
372
367
|
+ .pageSwitcherSelectNextToTitle {
|
|
373
|
-
|
|
368
|
+
margin-inline-start: 0;
|
|
374
369
|
}
|
|
375
370
|
}
|
|
376
371
|
|
|
377
372
|
.pageSwitcherSelectNextToTitle {
|
|
378
|
-
@include ca-margin($start: calc(#{$ca-grid} / 2));
|
|
379
|
-
|
|
380
373
|
flex-shrink: 0;
|
|
381
|
-
width:
|
|
374
|
+
width: var(--spacing-240);
|
|
375
|
+
margin-inline: var(--spacing-12) 0;
|
|
382
376
|
}
|
|
383
377
|
|
|
384
378
|
.pageSwitcherSelectUnderneathTitle {
|
|
385
379
|
flex-shrink: 0;
|
|
386
|
-
max-width:
|
|
380
|
+
max-width: var(--spacing-240);
|
|
387
381
|
}
|
|
388
382
|
|
|
389
383
|
.navigationTabsContainer {
|
|
@@ -558,11 +552,10 @@ $tab-container-height-medium-and-small-collapsed: 0;
|
|
|
558
552
|
|
|
559
553
|
@media only screen and (max-width: $breadcrumb-breakpoint-width) {
|
|
560
554
|
position: relative;
|
|
555
|
+
transform: translateY(0);
|
|
556
|
+
margin-inline: 0 var(--spacing-12);
|
|
561
557
|
|
|
562
|
-
@include ca-margin($end: calc(#{$ca-grid} / 2));
|
|
563
558
|
@include ca-position($start: 0);
|
|
564
|
-
|
|
565
|
-
transform: translateY(0);
|
|
566
559
|
}
|
|
567
560
|
|
|
568
561
|
@include title-block-medium-and-small {
|
|
@@ -77,8 +77,6 @@ $slide-up-duration: 0.4s;
|
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
.mobileActionsPrimaryLabel {
|
|
80
|
-
@include ca-padding($start: $ca-grid * 0.75);
|
|
81
|
-
|
|
82
80
|
text-align: left;
|
|
83
81
|
text-decoration: none;
|
|
84
82
|
color: $color-white;
|
|
@@ -87,6 +85,8 @@ $slide-up-duration: 0.4s;
|
|
|
87
85
|
font-size: $typography-button-primary-font-size;
|
|
88
86
|
line-height: $typography-button-primary-line-height;
|
|
89
87
|
letter-spacing: $typography-button-primary-letter-spacing;
|
|
88
|
+
|
|
89
|
+
@include ca-padding($start: $ca-grid * 0.75);
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
.mobileActionsPrimaryButton,
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
position: relative;
|
|
9
9
|
display: inline-flex;
|
|
10
10
|
border-radius: 50%;
|
|
11
|
+
color: rgba($color-purple-800-rgb, 0.7);
|
|
11
12
|
|
|
12
13
|
&:focus,
|
|
13
14
|
&:focus-visible {
|
|
@@ -34,8 +35,6 @@
|
|
|
34
35
|
border-radius: 50%;
|
|
35
36
|
}
|
|
36
37
|
|
|
37
|
-
color: rgba($color-purple-800-rgb, 0.7);
|
|
38
|
-
|
|
39
38
|
&:hover,
|
|
40
39
|
&:focus,
|
|
41
40
|
&:focus-visible {
|