@lucca-front/scss 20.3.2 → 20.3.3-rc.3

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.
Files changed (50) hide show
  1. package/dist/lucca-front.min.css +1 -1
  2. package/package.json +2 -2
  3. package/src/components/breadcrumbs/component.scss +2 -1
  4. package/src/components/breadcrumbs/index.scss +2 -1
  5. package/src/components/breadcrumbs/mods.scss +2 -1
  6. package/src/components/button/index.scss +1 -1
  7. package/src/components/calendar/component.scss +3 -1
  8. package/src/components/callout/component.scss +0 -1
  9. package/src/components/calloutPopover/component.scss +13 -10
  10. package/src/components/calloutPopover/mods.scss +2 -5
  11. package/src/components/calloutPopover/vars.scss +0 -1
  12. package/src/components/chip/component.scss +5 -0
  13. package/src/components/chip/index.scss +4 -0
  14. package/src/components/chip/mods.scss +4 -0
  15. package/src/components/clear/component.scss +1 -1
  16. package/src/components/clear/index.scss +18 -5
  17. package/src/components/clear/mods.scss +1 -1
  18. package/src/components/clear/states.scss +10 -1
  19. package/src/components/clear/vars.scss +1 -0
  20. package/src/components/dataTable/component.scss +7 -6
  21. package/src/components/dataTable/mods.scss +4 -4
  22. package/src/components/dataTable/vars.scss +0 -1
  23. package/src/components/dataTableSticked/index.scss +10 -0
  24. package/src/components/dataTableSticked/mods.scss +4 -8
  25. package/src/components/dataTableSticked/states.scss +7 -0
  26. package/src/components/dataTableSticked/vars.scss +2 -0
  27. package/src/components/dropdown/mods.scss +4 -4
  28. package/src/components/filterPill/component.scss +0 -1
  29. package/src/components/filterPill/states.scss +3 -2
  30. package/src/components/filterPill/vars.scss +0 -1
  31. package/src/components/form/component.scss +6 -2
  32. package/src/components/highlightData/mods.scss +1 -1
  33. package/src/components/indexTable/mods.scss +3 -3
  34. package/src/components/inputFramed/component.scss +17 -11
  35. package/src/components/inputFramed/index.scss +7 -5
  36. package/src/components/inputFramed/mods.scss +10 -0
  37. package/src/components/inputFramed/states.scss +0 -8
  38. package/src/components/inputFramed/vars.scss +8 -2
  39. package/src/components/multiSelect/component.scss +0 -7
  40. package/src/components/plgPush/component.scss +4 -0
  41. package/src/components/richText/component.scss +35 -1
  42. package/src/components/richText/index.scss +0 -29
  43. package/src/components/richText/states.scss +0 -29
  44. package/src/components/scrollBox/component.scss +4 -0
  45. package/src/components/tableFixed/mods.scss +3 -3
  46. package/src/components/tableOfContent/component.scss +2 -1
  47. package/src/components/tableOfContent/index.scss +2 -1
  48. package/src/components/textfields/index.scss +3 -3
  49. package/src/components/textfields/states.scss +3 -3
  50. package/src/components/tooltip/component.scss +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lucca-front/scss",
3
- "version": "20.3.2",
3
+ "version": "20.3.3-rc.3",
4
4
  "description": "A Sass framework for Lucca products.",
5
5
  "main": "src/main.scss",
6
6
  "scripts": {},
@@ -23,6 +23,6 @@
23
23
  "normalize.css": "^8.0.0"
24
24
  },
25
25
  "peerDependencies": {
26
- "@lucca-front/icons": "20.3.2"
26
+ "@lucca-front/icons": "20.3.3-rc.3"
27
27
  }
28
28
  }
@@ -31,7 +31,8 @@
31
31
  }
32
32
  }
33
33
 
34
- .breadcrumbs-list-item-action {
34
+ // Second selector to get rid of breadcrumbs-list-item-action on angular component
35
+ .breadcrumbs-list-item-action, .breadcrumbs-list-item > a {
35
36
  color: var(--pr-t-color-text-subtle);
36
37
  transition-duration: var(--commons-animations-durations-fast);
37
38
  transition-property: color;
@@ -14,7 +14,8 @@
14
14
  }
15
15
  }
16
16
 
17
- .breadcrumbs-list-item-action {
17
+ // Second selector to get rid of breadcrumbs-list-item-action on angular component
18
+ .breadcrumbs-list-item-action, .breadcrumbs-list-item > a {
18
19
  @layer mods {
19
20
  // .active is deprecated
20
21
  &.is-active,
@@ -10,7 +10,8 @@
10
10
  }
11
11
 
12
12
  &:first-child {
13
- .breadcrumbs-list-item-action {
13
+ // Second selector to get rid of breadcrumbs-list-item-action on angular component
14
+ .breadcrumbs-list-item-action, .breadcrumbs-list-item > a {
14
15
  &::before {
15
16
  @include icon.generate('arrow_left');
16
17
 
@@ -192,7 +192,7 @@
192
192
  // .disabled is deprecated
193
193
  &.is-disabled,
194
194
  &.disabled,
195
- &[aria-disabled="true"] {
195
+ &[aria-disabled] {
196
196
  @include disabled;
197
197
  }
198
198
  }
@@ -182,6 +182,8 @@
182
182
  .calendar-table-head-row-cell,
183
183
  .calendar-table-body-row-cell {
184
184
  padding: var(--pr-t-spacings-25);
185
+ block-size: var(--pr-t-spacings-400);
186
+ box-sizing: content-box;
185
187
  }
186
188
 
187
189
  .calendar-table-head-row-cell {
@@ -216,7 +218,7 @@
216
218
  color: var(--components-calendar-table-body-row-cell-actionColor);
217
219
  background-color: var(--components-calendar-table-body-row-cell-actionHighlight);
218
220
  display: var(--components-calendar-table-body-row-cell-actionDisplay);
219
- block-size: var(--pr-t-spacings-400);
221
+ block-size: 100%;
220
222
  text-transform: lowercase;
221
223
  box-shadow:
222
224
  0 0 0 1px var(--components-calendar-table-body-row-cell-actionHighlight),
@@ -48,7 +48,6 @@
48
48
 
49
49
  }
50
50
 
51
-
52
51
  .callout-content-description-actions {
53
52
  display: flex;
54
53
  gap: var(--pr-t-spacings-75);
@@ -22,6 +22,12 @@
22
22
  }
23
23
 
24
24
  @at-root ($atRoot) {
25
+ .calloutPopover-content {
26
+ &:empty {
27
+ display: none;
28
+ }
29
+ }
30
+
25
31
  .calloutPopover-icon {
26
32
  color: var(--palettes-700, var(--palettes-neutral-700));
27
33
  }
@@ -29,33 +35,30 @@
29
35
  .calloutPopover-overlay {
30
36
  inline-size: var(--components-calloutPopover-width);
31
37
  max-inline-size: 100vw;
32
- }
33
-
34
- .calloutPopover-overlay-head {
35
38
  display: flex;
36
39
  gap: var(--pr-t-spacings-100);
37
40
  }
38
41
 
39
42
  .calloutPopover-overlay-head-title {
43
+ display: block;
40
44
  font: var(--pr-t-font-body-M);
41
45
  font-weight: var(--pr-t-font-fontWeight-semibold);
42
- margin: 0;
43
46
  padding: 0;
47
+ margin: 0;
48
+ padding-block-end: var(--pr-t-spacings-100);
49
+ margin-block-end: var(--pr-t-spacings-100);
50
+ border-block-end: var(--commons-divider-width) solid var(--palettes-neutral-200);
44
51
  }
45
52
 
46
- .calloutPopover-overlay-head-icon {
53
+ .calloutPopover-overlay-icon {
47
54
  @include icon.M;
48
55
 
49
56
  color: var(--palettes-700, var(--palettes-neutral-700));
57
+
50
58
  }
51
59
 
52
60
  .calloutPopover-overlay-content {
53
- margin-block-start: var(--pr-t-spacings-100);
54
- margin-inline-end: var(--pr-t-spacings-150);
55
61
  margin-block-end: var(--pr-t-spacings-100);
56
- margin-inline-start: var(--components-calloutPopover-content-margin);
57
- padding-block-start: var(--pr-t-spacings-100);
58
- border-block-start: var(--commons-divider-width) solid var(--palettes-neutral-200);
59
62
  }
60
63
  }
61
64
  }
@@ -24,9 +24,8 @@
24
24
 
25
25
  @mixin overlayS {
26
26
  --components-calloutPopover-width: 20rem;
27
- --components-calloutPopover-content-margin: 1.75rem;
28
27
 
29
- .calloutPopover-overlay-head-icon {
28
+ .calloutPopover-overlay-icon {
30
29
  @include icon.S;
31
30
  }
32
31
 
@@ -41,9 +40,7 @@
41
40
  }
42
41
 
43
42
  @mixin overlayIconless {
44
- --components-calloutPopover-content-margin: 0;
45
-
46
- .calloutPopover-overlay-head-icon {
43
+ .calloutPopover-overlay-icon {
47
44
  display: none;
48
45
  }
49
46
  }
@@ -4,7 +4,6 @@
4
4
  @at-root ($atRoot) {
5
5
  :root {
6
6
  --components-calloutPopover-width: 30rem;
7
- --components-calloutPopover-content-margin: 2rem;
8
7
  }
9
8
  }
10
9
  }
@@ -15,8 +15,13 @@
15
15
  padding-block: calc(var(--pr-t-spacings-50) / 2);
16
16
  padding-inline: var(--pr-t-spacings-100);
17
17
  font: var(--components-chip-font);
18
+ max-inline-size: 100%;
18
19
 
19
20
  @at-root ($atRoot) {
21
+ .chip-content {
22
+ outline: none;
23
+ }
24
+
20
25
  .chip-kill {
21
26
  @include reset.button;
22
27
 
@@ -28,5 +28,9 @@
28
28
  &.is-disabled {
29
29
  @include disabled;
30
30
  }
31
+
32
+ &:has(.chip-content:focus-visible) {
33
+ @include focusVisible;
34
+ }
31
35
  }
32
36
  }
@@ -38,3 +38,7 @@
38
38
  background-color: var(--palettes-600, var(--palettes-neutral-100));
39
39
  }
40
40
  }
41
+
42
+ @mixin focusVisible {
43
+ @include a11y.focusVisible;
44
+ }
@@ -5,7 +5,7 @@
5
5
  @mixin component {
6
6
  @include reset.button;
7
7
 
8
- display: grid;
8
+ display: var(--components-clear-display);
9
9
  grid-template-columns: 1fr;
10
10
  grid-template-rows: 1fr;
11
11
  grid-template-areas: 'main';
@@ -12,23 +12,36 @@
12
12
  }
13
13
 
14
14
  // .palette-primary is deprecated
15
- &.palette-product:not([disabled]),
16
- &.palette-primary:not([disabled]) {
15
+ &.palette-product,
16
+ &.palette-primary {
17
17
  @include product;
18
18
  }
19
19
 
20
- &.mod-inverted:not([disabled]) {
20
+ &.mod-inverted {
21
21
  @include inverted;
22
22
 
23
- &.palette-product:not([disabled]) {
23
+ &:where(.palette-product) {
24
24
  @include invertedProduct;
25
25
  }
26
26
  }
27
27
 
28
28
  &[disabled] {
29
+ cursor: default;
30
+
29
31
  @include disabled;
32
+ }
30
33
 
31
- cursor: default;
34
+ &[hidden],
35
+ .filterPill[disabled] &,
36
+ .filterPill:not(.is-filled) &,
37
+ .textfield-input[disabled] &,
38
+ .textfield-input:not(.is-filled) &,
39
+ .textfield-input:not(.is-selected) & {
40
+ @include hidden;
41
+ }
42
+
43
+ .multiSelect.is-selected:has(.multipleSelect-clear) & {
44
+ --components-clear-display: grid;
32
45
  }
33
46
  }
34
47
  }
@@ -38,6 +38,6 @@
38
38
  }
39
39
 
40
40
  &:active {
41
- --components-clear-background: var(--palettes-product-50);
41
+ --components-clear-background: var(--palettes-product-100);
42
42
  }
43
43
  }
@@ -1,4 +1,13 @@
1
1
  @mixin disabled {
2
2
  --components-clear-cross-color: var(--palettes-neutral-500); // disabled token candidate
3
- --components-clear-background: var(--palettes-neutral-300); // disabled token candidate
3
+
4
+ &,
5
+ &:hover,
6
+ &:active {
7
+ --components-clear-background: var(--palettes-neutral-300); // disabled token candidate
8
+ }
9
+ }
10
+
11
+ @mixin hidden {
12
+ --components-clear-display: none;
4
13
  }
@@ -1,4 +1,5 @@
1
1
  @mixin vars {
2
+ --components-clear-display: grid;
2
3
  --components-clear-size: 1rem;
3
4
  --components-clear-background: var(--palettes-neutral-700);
4
5
  --components-clear-cross-color: var(--palettes-neutral-0);
@@ -19,7 +19,7 @@
19
19
  .dataTableWrapper {
20
20
  border-radius: var(--components-dataTable-borderRadius);
21
21
  border: 1px solid var(--commons-border-200);
22
- overflow: var(--components-dataTable-overflow);
22
+ overflow: auto;
23
23
  background-color: var(--components-dataTable-cell-background);
24
24
  contain: paint; // Fix overflow on webkit when table has scroll
25
25
  display: block;
@@ -80,10 +80,6 @@
80
80
 
81
81
  &:first-child {
82
82
  inline-size: var(--components-dataTable-cellFirst-width);
83
-
84
- .checkboxField {
85
- --component-checkboxField-top: 0;
86
- }
87
83
  }
88
84
  }
89
85
 
@@ -104,6 +100,12 @@
104
100
 
105
101
  .dataTable-body-row-cell {
106
102
  vertical-align: var(--components-dataTable-cell-verticalAlign);
103
+
104
+ &:first-child {
105
+ &:has(.checkboxField-input) {
106
+ padding-bottom: var(--pr-t-spacings-150);
107
+ }
108
+ }
107
109
  }
108
110
 
109
111
  .dataTable-foot-row-cell {
@@ -114,7 +116,6 @@
114
116
  display: flex;
115
117
  gap: var(--pr-t-spacings-100);
116
118
  align-items: flex-start;
117
- font-weight: var(--pr-t-font-fontWeight-semibold);
118
119
  }
119
120
 
120
121
  .dataTable-body-row-cell-expand-button.button {
@@ -95,7 +95,7 @@
95
95
 
96
96
  @mixin actions {
97
97
  padding-block: 0;
98
- padding-inline: var(--pr-t-spacings-50);
98
+ padding-inline: 0 var(--pr-t-spacings-50);
99
99
  text-align: end;
100
100
  white-space: nowrap;
101
101
 
@@ -142,7 +142,7 @@
142
142
  }
143
143
  }
144
144
 
145
- @mixin cellFixedWidth {
145
+ @mixin cellInlineSize {
146
146
  min-inline-size: var(--dataTable-layoutFixed-width, auto);
147
147
  inline-size: var(--dataTable-layoutFixed-width, auto);
148
148
  }
@@ -152,7 +152,7 @@
152
152
  .dataTable-head-row-cell,
153
153
  .dataTable-body-row-cell,
154
154
  .dataTable-foot-row-cell {
155
- @include cellFixedWidth;
155
+ @include cellInlineSize;
156
156
  }
157
157
  }
158
158
 
@@ -162,7 +162,7 @@
162
162
  .dataTable-head-row-cell,
163
163
  .dataTable-body-row-cell,
164
164
  .dataTable-foot-row-cell {
165
- @include cellFixedWidth;
165
+ @include cellInlineSize;
166
166
  }
167
167
  }
168
168
  }
@@ -11,7 +11,6 @@
11
11
  --components-dataTable-tableLayout: auto;
12
12
  --components-dataTable-cellFirst-width: auto;
13
13
  --components-dataTable-row-display: table-row;
14
- --components-dataTable-overflow: hidden;
15
14
  --components-dataTable-expand-rotation: 180deg;
16
15
  --components-dataTable-borderRadius: var(--pr-t-border-radius-structure);
17
16
  }
@@ -12,10 +12,12 @@
12
12
  @include stickyHeader;
13
13
  }
14
14
 
15
+ &:has(.dataTableShadows),
15
16
  &:has(.dataTable.mod-columnsOverflow) {
16
17
  @include columnsOverflow;
17
18
  }
18
19
 
20
+ &:has(.dataTableShadows),
19
21
  &:has(.dataTable.mod-rowsOverflow) {
20
22
  @include rowsOverflow;
21
23
  }
@@ -43,6 +45,14 @@
43
45
  @include stickyColumnBorder;
44
46
  }
45
47
  }
48
+
49
+ &:has(.dataTable.is-firstColumnVisibleAfterColsStart) {
50
+ @include firstColumnVisibleAfterColsStart;
51
+ }
52
+
53
+ &:has(.dataTable.is-lastColumnVisibleBeforeColsEnd) {
54
+ @include lastColumnVisibleBeforeColsEnd;
55
+ }
46
56
  }
47
57
 
48
58
  &:has(.dataTable-head.is-firstBodyRowVisible) {
@@ -1,8 +1,6 @@
1
1
  @use '@lucca-front/scss/src/commons/utils/color';
2
2
 
3
3
  @mixin stickyHeader {
4
- --components-dataTable-overflow: auto;
5
-
6
4
  .dataTable-head {
7
5
  position: sticky;
8
6
  inset-block-start: -1px;
@@ -22,8 +20,6 @@
22
20
  }
23
21
 
24
22
  @mixin columnsOverflow {
25
- --components-dataTable-overflow: auto;
26
-
27
23
  display: flex;
28
24
 
29
25
  &::before,
@@ -52,11 +48,10 @@
52
48
  }
53
49
 
54
50
  @mixin rowsOverflow {
55
- --components-dataTable-overflow: auto;
56
-
57
51
  .dataTableShadows {
58
52
  display: flex;
59
53
  flex-direction: column;
54
+ flex-grow: 1;
60
55
 
61
56
  &::before,
62
57
  &::after {
@@ -85,8 +80,6 @@
85
80
  }
86
81
 
87
82
  @mixin stickyColumn {
88
- --components-dataTable-overflow: auto;
89
-
90
83
  %addShadow {
91
84
  content: '';
92
85
  position: absolute;
@@ -130,6 +123,8 @@
130
123
  &:not(:has(+ :is(.dataTable-head-row-cell, .dataTable-body-row-cell, .dataTable-foot-row-cell).mod-stickyColumn)) {
131
124
  &::after {
132
125
  @extend %addShadow;
126
+
127
+ opacity: var(--components-dataTable-shadow-colsStart-opacity);
133
128
  }
134
129
  }
135
130
  }
@@ -143,6 +138,7 @@
143
138
  inset-inline-start: auto;
144
139
  inset-inline-end: 100%;
145
140
  transform: scaleX(-1);
141
+ opacity: var(--components-dataTable-shadow-colsEnd-opacity);
146
142
  }
147
143
 
148
144
  & ~ :is(.dataTable-head-row-cell, .dataTable-body-row-cell, .dataTable-foot-row-cell).mod-stickyColumn {
@@ -18,3 +18,10 @@
18
18
  --components-dataTable-header-shadow-opacity: 0;
19
19
  }
20
20
 
21
+ @mixin firstColumnVisibleAfterColsStart {
22
+ --components-dataTable-shadow-colsStart-opacity: 0;
23
+ }
24
+
25
+ @mixin lastColumnVisibleBeforeColsEnd {
26
+ --components-dataTable-shadow-colsEnd-opacity: 0;
27
+ }
@@ -4,4 +4,6 @@
4
4
  --components-dataTable-shadow-firstRowOpacity: 1;
5
5
  --components-dataTable-shadow-lastRowOpacity: 1;
6
6
  --components-dataTable-header-shadow-opacity: 1;
7
+ --components-dataTable-shadow-colsStart-opacity: 1;
8
+ --components-dataTable-shadow-colsEnd-opacity: 1;
7
9
  }
@@ -1,12 +1,12 @@
1
1
  @mixin critical {
2
- --components-dropdown-list-option-action-color: var(--pr-t-color-text-critical);
3
-
4
2
  &:hover,
5
3
  &:focus-visible {
6
- --components-dropdown-list-option-action-backgroundColor: var(--palettes-critical-50);
4
+ --components-dropdown-list-option-action-backgroundColor: var(--palettes-error-50);
5
+ --components-dropdown-list-option-action-color: var(--pr-t-color-text-critical);
7
6
  }
8
7
 
9
8
  &:active {
10
- --components-dropdown-list-option-action-backgroundColor: var(--palettes-critical-100);
9
+ --components-dropdown-list-option-action-color: var(--pr-t-color-text-critical);
10
+ --components-dropdown-list-option-action-backgroundColor: var(--palettes-error-100);
11
11
  }
12
12
  }
@@ -104,7 +104,6 @@
104
104
  margin-inline-end: var(--pr-t-spacings-25);
105
105
  position: relative;
106
106
  z-index: 1;
107
- display: var(--components-filterPill-clear-display);
108
107
 
109
108
  @include clear.product;
110
109
  }
@@ -1,4 +1,5 @@
1
1
  @use '@lucca-front/scss/src/commons/utils/a11y';
2
+ @use '@lucca-front/scss/src/components/clear/exports' as clear;
2
3
 
3
4
  @mixin checkboxChecked {
4
5
  --components-filterPill-borderColor: var(--palettes-product-300);
@@ -66,7 +67,6 @@
66
67
  --components-filterPill-backgroundColor: var(--palettes-product-50);
67
68
  --components-filterPill-color: var(--palettes-product-800);
68
69
  --components-filterPill-toggle-iconColor: var(--palettes-product-700);
69
- --components-filterPill-clear-display: grid;
70
70
  }
71
71
 
72
72
  @mixin notFilled {
@@ -91,7 +91,6 @@
91
91
  }
92
92
 
93
93
  @mixin disabled {
94
- --components-filterPill-clear-display: none;
95
94
  --components-filterPill-backgroundColor: var(--palettes-neutral-50);
96
95
  --components-filterPill-borderColor: var(--palettes-neutral-300) !important;
97
96
  --components-filterPill-color: var(--palettes-neutral-500);
@@ -102,6 +101,8 @@
102
101
 
103
102
  box-shadow: var(--components-filterPill-shadow);
104
103
 
104
+ @include clear.hidden;
105
+
105
106
  // TODO
106
107
  // --components-filterPill-checkbox-borderColor: var(--palettes-neutral-600);
107
108
  }
@@ -12,7 +12,6 @@
12
12
  --components-filterPill-checkbox-borderColor: var(--palettes-neutral-700);
13
13
  --components-filterPill-checkbox-icon-scale: 0;
14
14
  --components-filterPill-checkbox-icon-timingFonction: cubic-bezier(0.5, -0.5, 0.5, 0);
15
- --components-filterPill-clear-display: none;
16
15
  --components-filterPill-toggle-rotation: 0;
17
16
  --components-filterPill-toggle-iconColor: var(--palettes-neutral-600);
18
17
  --components-filterPill-shadow: 0 0 0 1px var(--components-filterPill-borderColor);
@@ -1,9 +1,12 @@
1
1
  @use '@lucca-front/scss/src/commons/utils/form';
2
2
  @use '@lucca-front/scss/src/components/formLabel/exports' as formLabel;
3
3
  @use '@lucca-front/scss/src/components/inlineMessage/exports' as inlineMessage;
4
+ @use '@lucca-front/scss/src/components/title/exports' as title;
4
5
  @use '@lucca-front/scss/src/commons/utils/namespace';
5
6
 
6
7
  @mixin component($atRoot: namespace.$defaultAtRoot) {
8
+ display: block;
9
+
7
10
  .divider {
8
11
  margin-block: var(--pr-t-spacings-300);
9
12
  }
@@ -34,12 +37,13 @@
34
37
 
35
38
  @at-root ($atRoot) {
36
39
  .form-header {
40
+ display: block;
37
41
  margin-block-end: var(--pr-t-spacings-300);
38
42
  }
39
43
 
40
44
  .form-header-title {
41
- margin: 0;
42
- padding: 0;
45
+ @include title.component;
46
+ @include title.h1;
43
47
  }
44
48
 
45
49
  .form-header-mandatory {
@@ -30,7 +30,7 @@
30
30
  @mixin illustrations {
31
31
  --components-highlightData-display: flex;
32
32
  --components-highlightData-alignItem: start;
33
- --components-highlightData-action-padding: var(--pr-t-spacings-100);
33
+ --components-highlightData-action-padding: var(--pr-t-spacings-150);
34
34
 
35
35
  padding-inline-end: calc(var(--components-highlightData-illustrations-width) + var(--components-highlightData-padding-inline));
36
36
  }
@@ -310,7 +310,7 @@
310
310
  .indexTable-head-row-cell,
311
311
  .indexTable-body-row-cell,
312
312
  .indexTable-foot-row-cell {
313
- @include cellFixedWidth;
313
+ @include cellInlineSize;
314
314
  }
315
315
  }
316
316
 
@@ -323,14 +323,14 @@
323
323
  .indexTable-head-row-cell,
324
324
  .indexTable-body-row-cell,
325
325
  .indexTable-foot-row-cell {
326
- @include cellFixedWidth;
326
+ @include cellInlineSize;
327
327
  }
328
328
  }
329
329
  }
330
330
  }
331
331
  }
332
332
 
333
- @mixin cellFixedWidth {
333
+ @mixin cellInlineSize {
334
334
  min-inline-size: var(--cell-width, auto);
335
335
  max-inline-size: var(--cell-width, auto);
336
336
  inline-size: var(--cell-width, auto);