@patternfly/react-styles 5.0.0-alpha.7 → 5.0.0-alpha.9

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # 5.0.0-alpha.9 (2023-05-05)
7
+
8
+ **Note:** Version bump only for package @patternfly/react-styles
9
+
10
+ # 5.0.0-alpha.8 (2023-04-25)
11
+
12
+ ### Bug Fixes
13
+
14
+ - bump dependencies and remove ssl option ([#8984](https://github.com/patternfly/patternfly-react/issues/8984)) ([f8f77d2](https://github.com/patternfly/patternfly-react/commit/f8f77d232b386ad8676af609273d9adff5a5feae))
15
+
6
16
  # 5.0.0-alpha.7 (2023-04-13)
7
17
 
8
18
  ### Bug Fixes
@@ -23,13 +23,23 @@
23
23
  --pf-c-card__header-toggle--MarginLeft: calc(var(--pf-global--spacer--md) * -1);
24
24
  --pf-c-card__header-toggle-icon--Transition: var(--pf-global--Transition);
25
25
  --pf-c-card--m-expanded__header-toggle-icon--Rotate: 90deg;
26
- --pf-c-card--m-hoverable--hover--BoxShadow: var(--pf-global--BoxShadow--lg);
26
+ --pf-c-card--m-selectable--BorderWidth: var(--pf-global--BorderWidth--sm);
27
+ --pf-c-card--m-selectable--m-selected--BackgroundColor: var(--pf-global--BackgroundColor--200);
28
+ --pf-c-card--m-selectable--m-selected--BorderColor: var(--pf-global--active-color--100);
29
+ --pf-c-card--m-selectable--hover--BackgroundColor: var(--pf-global--palette--black-150);
27
30
  --pf-c-card--m-selectable--hover--BoxShadow: var(--pf-global--BoxShadow--lg);
28
- --pf-c-card--m-selectable--focus--BoxShadow: var(--pf-global--BoxShadow--lg);
29
- --pf-c-card--m-selectable--active--BoxShadow: var(--pf-global--BoxShadow--lg);
30
- --pf-c-card--m-selectable--m-selected--BoxShadow: var(--pf-global--BoxShadow--lg);
31
- --pf-c-card--m-selectable--m-selected--before--Height: var(--pf-global--BorderWidth--lg);
32
- --pf-c-card--m-selectable--m-selected--before--BackgroundColor: var(--pf-global--active-color--100);
31
+ --pf-c-card--m-selectable--focus--BackgroundColor: var(--pf-global--palette--blue-100);
32
+ --pf-c-card--m-selectable--focus--BorderColor: var(--pf-global--active-color--100);
33
+ --pf-c-card--m-selectable--m-selected--focus--BorderColor: var(--pf-global--active-color--100);
34
+ --pf-c-card--m-selectable--m-disabled--BackgroundColor: var(--pf-global--palette--black-100);
35
+ --pf-c-card--m-selectable--m-disabled--BorderColor: var(--pf-global--BorderColor--100);
36
+ --pf-c-card--m-selectable--m-disabled--BoxShadow: var(--pf-global--BoxShadow--sm);
37
+ --pf-c-card--m-selectable--m-clickable--hover--BackgroundColor: var(--pf-global--BackgroundColor--100);
38
+ --pf-c-card--m-selectable--m-clickable--hover--BoxShadow: var(--pf-global--BoxShadow--sm);
39
+ --pf-c-card--m-selectable--m-clickable--m-selected--BorderColor: var(--pf-global--BorderColor--100);
40
+ --pf-c-card--m-selectable--m-clickable--m-selected--BackgroundColor: var(--pf-global--BackgroundColor--100);
41
+ --pf-c-card--m-selectable--m-clickable--m-current--BackgroundColor: var(--pf-global--palette--black-150);
42
+ --pf-c-card--m-selectable--m-clickable--m-current--BorderColor: var(--pf-global--active-color--100);
33
43
  --pf-c-card--m-hoverable-raised--hover--BoxShadow: var(--pf-global--BoxShadow--md);
34
44
  --pf-c-card--m-hoverable-raised--hover--before--BackgroundColor: var(--pf-global--active-color--400);
35
45
  --pf-c-card--m-selectable-raised--before--Right: 0;
@@ -89,41 +99,49 @@
89
99
  --pf-c-card__header--m-toggle-right--toggle--MarginLeft: var(--pf-global--spacer--xs);
90
100
  --pf-c-card__input--focus--BorderWidth: var(--pf-global--BorderWidth--md);
91
101
  --pf-c-card__input--focus--BorderColor: var(--pf-global--primary-color--100);
102
+ position: relative;
92
103
  display: flex;
93
104
  flex-direction: column;
94
105
  background-color: var(--pf-c-card--BackgroundColor);
95
106
  box-shadow: var(--pf-c-card--BoxShadow);
96
107
  }
97
- .pf-c-card.pf-m-hoverable:hover {
98
- box-shadow: var(--pf-c-card--m-hoverable--hover--BoxShadow);
108
+ .pf-c-card.pf-m-selectable, .pf-c-card.pf-m-clickable {
109
+ isolation: isolate;
110
+ box-shadow: none;
99
111
  }
100
- .pf-c-card.pf-m-selectable {
101
- position: relative;
102
- cursor: pointer;
112
+ .pf-c-card.pf-m-selectable.pf-m-clickable .pf-c-card__selectable-actions .pf-c-check__label,
113
+ .pf-c-card.pf-m-selectable.pf-m-clickable .pf-c-card__selectable-actions .pf-c-radio__label {
114
+ position: unset;
103
115
  }
104
- .pf-c-card.pf-m-selectable:hover {
105
- box-shadow: var(--pf-c-card--m-selectable--hover--BoxShadow);
116
+ .pf-c-card.pf-m-selectable.pf-m-clickable .pf-c-card__selectable-actions .pf-c-check__label::before,
117
+ .pf-c-card.pf-m-selectable.pf-m-clickable .pf-c-card__selectable-actions .pf-c-radio__label::before {
118
+ position: absolute;
119
+ inset: 0;
120
+ cursor: pointer;
106
121
  }
107
- .pf-c-card.pf-m-selectable:focus {
108
- box-shadow: var(--pf-c-card--m-selectable--focus--BoxShadow);
122
+ .pf-c-card.pf-m-selectable.pf-m-clickable .pf-c-card__selectable-actions .pf-c-check__input:where(:focus-visible) ~ .pf-c-check__label,
123
+ .pf-c-card.pf-m-selectable.pf-m-clickable .pf-c-card__selectable-actions .pf-c-radio__input:where(:focus-visible) ~ .pf-c-radio__label {
124
+ --pf-c-card--BackgroundColor: unset;
125
+ --pf-c-card--BorderColor: unset;
109
126
  }
110
- .pf-c-card.pf-m-selectable:active {
111
- box-shadow: var(--pf-c-card--m-selectable--active--BoxShadow);
127
+ .pf-c-card.pf-m-selectable.pf-m-clickable .pf-c-card__selectable-actions .pf-c-check__input:where(:checked) ~ .pf-c-check__label,
128
+ .pf-c-card.pf-m-selectable.pf-m-clickable .pf-c-card__selectable-actions .pf-c-radio__input:where(:checked) ~ .pf-c-radio__label, .pf-c-card.pf-m-selectable.pf-m-clickable.pf-m-selected {
129
+ --pf-c-card--BackgroundColor: var(--pf-c-card--m-selectable--m-clickable--m-selected--BackgroundColor);
130
+ --pf-c-card--BorderColor: var(--pf-c-card--m-selectable--m-clickable--m-selected--BorderColor);
112
131
  }
113
- .pf-c-card.pf-m-selectable.pf-m-selected {
114
- box-shadow: var(--pf-c-card--m-selectable--m-selected--BoxShadow);
132
+ .pf-c-card.pf-m-selectable.pf-m-clickable.pf-m-current {
133
+ --pf-c-card--BackgroundColor: var(--pf-c-card--m-selectable--m-clickable--m-current--BackgroundColor);
134
+ --pf-c-card--BorderColor: var(--pf-c-card--m-selectable--m-clickable--m-current--BorderColor);
115
135
  }
116
- .pf-c-card.pf-m-selectable.pf-m-selected::before {
117
- position: absolute;
118
- top: 0;
119
- right: 0;
120
- left: 0;
121
- height: var(--pf-c-card--m-selectable--m-selected--before--Height);
122
- content: "";
123
- background-color: var(--pf-c-card--m-selectable--m-selected--before--BackgroundColor);
136
+ .pf-c-card.pf-m-selectable.pf-m-clickable.pf-m-current.pf-m-selected, .pf-c-card.pf-m-selectable.pf-m-clickable.pf-m-current .pf-c-card__selectable-actions .pf-c-check__input:where(:checked) ~ .pf-c-check__label, .pf-c-card.pf-m-selectable.pf-m-clickable.pf-m-current .pf-c-card__selectable-actions .pf-c-radio__input:where(:checked) ~ .pf-c-radio__label {
137
+ --pf-c-card--BackgroundColor: var(--pf-c-card--m-selectable--m-clickable--m-current--BackgroundColor);
138
+ --pf-c-card--BorderColor: var(--pf-c-card--m-selectable--m-clickable--m-current--BorderColor);
124
139
  }
125
- .pf-c-card.pf-m-hoverable-raised, .pf-c-card.pf-m-selectable-raised, .pf-c-card.pf-m-non-selectable-raised {
126
- position: relative;
140
+ .pf-c-card.pf-m-selectable.pf-m-clickable .pf-c-card__selectable-actions .pf-c-check__input:where(:disabled) ~ .pf-c-check__label,
141
+ .pf-c-card.pf-m-selectable.pf-m-clickable .pf-c-card__selectable-actions .pf-c-radio__input:where(:disabled) ~ .pf-c-radio__label, .pf-c-card.pf-m-selectable.pf-m-clickable.pf-m-disabled {
142
+ --pf-c-card--BackgroundColor: var(--pf-c-card--m-selectable--m-disabled--BackgroundColor);
143
+ --pf-c-card--BorderColor: var(--pf-c-card--m-selectable--m-disabled--BorderColor);
144
+ --pf-c-card--BoxShadow: var(--pf-c-card--m-selectable--m-disabled--BoxShadow);
127
145
  }
128
146
  .pf-c-card.pf-m-hoverable-raised::before, .pf-c-card.pf-m-selectable-raised::before, .pf-c-card.pf-m-non-selectable-raised::before {
129
147
  position: absolute;
@@ -276,6 +294,54 @@
276
294
  --pf-c-card__actions--MarginBottom: 0;
277
295
  }
278
296
 
297
+ .pf-c-card__selectable-actions .pf-c-check__label,
298
+ .pf-c-card__selectable-actions .pf-c-radio__label {
299
+ position: absolute;
300
+ inset: 0;
301
+ cursor: pointer;
302
+ }
303
+ .pf-c-card__selectable-actions .pf-c-check__label::before,
304
+ .pf-c-card__selectable-actions .pf-c-radio__label::before {
305
+ position: absolute;
306
+ inset: 0;
307
+ z-index: -1;
308
+ content: "";
309
+ background-color: var(--pf-c-card--BackgroundColor, transparent);
310
+ border: var(--pf-c-card--m-selectable--BorderWidth) solid var(--pf-c-card--BorderColor, transparent);
311
+ box-shadow: var(--pf-c-card--BoxShadow, none);
312
+ }
313
+ .pf-c-card__selectable-actions .pf-c-check__label:hover,
314
+ .pf-c-card__selectable-actions .pf-c-radio__label:hover {
315
+ --pf-c-card--BackgroundColor: var(--pf-c-card--m-selectable--hover--BackgroundColor);
316
+ --pf-c-card--BoxShadow: var(--pf-c-card--m-selectable--hover--BoxShadow);
317
+ }
318
+
319
+ .pf-c-card__selectable-actions .pf-c-check__input:where(:checked) ~ .pf-c-check__label,
320
+ .pf-c-card__selectable-actions .pf-c-radio__input:where(:checked) ~ .pf-c-radio__label,
321
+ .pf-c-card.pf-m-selected {
322
+ --pf-c-card--BorderColor: var(--pf-c-card--m-selectable--m-selected--BorderColor);
323
+ --pf-c-card--BackgroundColor: var(--pf-c-card--m-selectable--m-selected--BackgroundColor);
324
+ }
325
+
326
+ .pf-c-card__selectable-actions .pf-c-check__input:where(:focus-visible) ~ .pf-c-check__label,
327
+ .pf-c-card__selectable-actions .pf-c-radio__input:where(:focus-visible) ~ .pf-c-radio__label {
328
+ --pf-c-card--BorderColor: var(--pf-c-card--m-selectable--focus--BorderColor);
329
+ --pf-c-card--BackgroundColor: var(--pf-c-card--m-selectable--focus--BackgroundColor);
330
+ }
331
+
332
+ .pf-c-card__selectable-actions .pf-c-check__input:where(:focus-visible):where(:checked) ~ .pf-c-check__label,
333
+ .pf-c-card__selectable-actions .pf-c-radio__input:where(:focus-visible):where(:checked) ~ .pf-c-radio__label {
334
+ --pf-c-card--BorderColor: var(--pf-c-card--m-selectable--m-selected--focus--BorderColor);
335
+ }
336
+
337
+ .pf-c-card__selectable-actions .pf-c-check__input:where(:disabled) ~ .pf-c-check__label,
338
+ .pf-c-card__selectable-actions .pf-c-radio__input:where(:disabled) ~ .pf-c-radio__label,
339
+ .pf-c-card.pf-m-disabled {
340
+ --pf-c-card--BackgroundColor: var(--pf-c-card--m-selectable--m-disabled--BackgroundColor);
341
+ --pf-c-card--BorderColor: var(--pf-c-card--m-selectable--m-disabled--BorderColor);
342
+ --pf-c-card--BoxShadow: var(--pf-c-card--m-selectable--m-disabled--BoxShadow);
343
+ }
344
+
279
345
  .pf-c-card__header,
280
346
  .pf-c-card__title,
281
347
  .pf-c-card__body,
@@ -9,14 +9,19 @@ declare const _default: {
9
9
  "cardHeaderMain": "pf-c-card__header-main",
10
10
  "cardHeaderToggle": "pf-c-card__header-toggle",
11
11
  "cardHeaderToggleIcon": "pf-c-card__header-toggle-icon",
12
+ "cardSelectableActions": "pf-c-card__selectable-actions",
12
13
  "cardSrInput": "pf-c-card__sr-input",
13
14
  "cardTitle": "pf-c-card__title",
14
15
  "cardTitleText": "pf-c-card__title-text",
16
+ "checkInput": "pf-c-check__input",
17
+ "checkLabel": "pf-c-check__label",
15
18
  "divider": "pf-c-divider",
16
19
  "modifiers": {
17
- "hoverable": "pf-m-hoverable",
18
20
  "selectable": "pf-m-selectable",
21
+ "clickable": "pf-m-clickable",
19
22
  "selected": "pf-m-selected",
23
+ "current": "pf-m-current",
24
+ "disabled": "pf-m-disabled",
20
25
  "hoverableRaised": "pf-m-hoverable-raised",
21
26
  "selectableRaised": "pf-m-selectable-raised",
22
27
  "nonSelectableRaised": "pf-m-non-selectable-raised",
@@ -32,6 +37,8 @@ declare const _default: {
32
37
  "noOffset": "pf-m-no-offset",
33
38
  "noFill": "pf-m-no-fill"
34
39
  },
40
+ "radioInput": "pf-c-radio__input",
41
+ "radioLabel": "pf-c-radio__label",
35
42
  "themeDark": "pf-theme-dark"
36
43
  };
37
44
  export default _default;
@@ -11,14 +11,19 @@ exports.default = {
11
11
  "cardHeaderMain": "pf-c-card__header-main",
12
12
  "cardHeaderToggle": "pf-c-card__header-toggle",
13
13
  "cardHeaderToggleIcon": "pf-c-card__header-toggle-icon",
14
+ "cardSelectableActions": "pf-c-card__selectable-actions",
14
15
  "cardSrInput": "pf-c-card__sr-input",
15
16
  "cardTitle": "pf-c-card__title",
16
17
  "cardTitleText": "pf-c-card__title-text",
18
+ "checkInput": "pf-c-check__input",
19
+ "checkLabel": "pf-c-check__label",
17
20
  "divider": "pf-c-divider",
18
21
  "modifiers": {
19
- "hoverable": "pf-m-hoverable",
20
22
  "selectable": "pf-m-selectable",
23
+ "clickable": "pf-m-clickable",
21
24
  "selected": "pf-m-selected",
25
+ "current": "pf-m-current",
26
+ "disabled": "pf-m-disabled",
22
27
  "hoverableRaised": "pf-m-hoverable-raised",
23
28
  "selectableRaised": "pf-m-selectable-raised",
24
29
  "nonSelectableRaised": "pf-m-non-selectable-raised",
@@ -34,5 +39,7 @@ exports.default = {
34
39
  "noOffset": "pf-m-no-offset",
35
40
  "noFill": "pf-m-no-fill"
36
41
  },
42
+ "radioInput": "pf-c-radio__input",
43
+ "radioLabel": "pf-c-radio__label",
37
44
  "themeDark": "pf-theme-dark"
38
45
  };
@@ -9,14 +9,19 @@ export default {
9
9
  "cardHeaderMain": "pf-c-card__header-main",
10
10
  "cardHeaderToggle": "pf-c-card__header-toggle",
11
11
  "cardHeaderToggleIcon": "pf-c-card__header-toggle-icon",
12
+ "cardSelectableActions": "pf-c-card__selectable-actions",
12
13
  "cardSrInput": "pf-c-card__sr-input",
13
14
  "cardTitle": "pf-c-card__title",
14
15
  "cardTitleText": "pf-c-card__title-text",
16
+ "checkInput": "pf-c-check__input",
17
+ "checkLabel": "pf-c-check__label",
15
18
  "divider": "pf-c-divider",
16
19
  "modifiers": {
17
- "hoverable": "pf-m-hoverable",
18
20
  "selectable": "pf-m-selectable",
21
+ "clickable": "pf-m-clickable",
19
22
  "selected": "pf-m-selected",
23
+ "current": "pf-m-current",
24
+ "disabled": "pf-m-disabled",
20
25
  "hoverableRaised": "pf-m-hoverable-raised",
21
26
  "selectableRaised": "pf-m-selectable-raised",
22
27
  "nonSelectableRaised": "pf-m-non-selectable-raised",
@@ -32,5 +37,7 @@ export default {
32
37
  "noOffset": "pf-m-no-offset",
33
38
  "noFill": "pf-m-no-fill"
34
39
  },
40
+ "radioInput": "pf-c-radio__input",
41
+ "radioLabel": "pf-c-radio__label",
35
42
  "themeDark": "pf-theme-dark"
36
43
  };
@@ -498,25 +498,25 @@
498
498
  --pf-c-data-list--BorderTopWidth: var(--pf-global--spacer--sm);
499
499
  --pf-c-data-list--sm--BorderTopWidth: var(--pf-global--BorderWidth--sm);
500
500
  --pf-c-data-list--sm--BorderTopColor: var(--pf-global--BorderColor--100);
501
+ --pf-c-data-list--MarginLeft: var(--pf-global--spacer--md);
501
502
  --pf-c-data-list__item--BackgroundColor: var(--pf-global--BackgroundColor--100);
502
503
  --pf-c-data-list__item--m-selected--ZIndex: var(--pf-global--ZIndex--xs);
503
504
  --pf-c-data-list__item--m-expanded--before--BackgroundColor: var(--pf-global--active-color--100);
504
505
  --pf-c-data-list__item--m-selected--before--BackgroundColor: var(--pf-global--active-color--100);
505
506
  --pf-c-data-list__item--m-selected--BoxShadow: var(--pf-global--BoxShadow--sm-top), var(--pf-global--BoxShadow--sm-bottom);
506
- --pf-c-data-list__item--m-selectable--OutlineOffset: calc(-1 * var(--pf-global--spacer--xs));
507
- --pf-c-data-list__item--m-selectable--hover--ZIndex: calc(var(--pf-c-data-list__item--m-selected--ZIndex) + 1);
508
- --pf-c-data-list__item--m-selectable--hover--BoxShadow: var(--pf-global--BoxShadow--sm-top), var(--pf-global--BoxShadow--sm-bottom);
509
- --pf-c-data-list__item--m-selectable--focus--BoxShadow: var(--pf-global--BoxShadow--sm-top), var(--pf-global--BoxShadow--sm-bottom);
510
- --pf-c-data-list__item--m-selectable--active--BoxShadow: var(--pf-global--BoxShadow--sm-top), var(--pf-global--BoxShadow--sm-bottom);
511
- --pf-c-data-list__item--m-expanded--m-selectable--before--BackgroundColor: var(--pf-global--active-color--300);
507
+ --pf-c-data-list__item--m-clickable--OutlineOffset: calc(-1 * var(--pf-global--spacer--xs));
508
+ --pf-c-data-list__item--m-clickable--hover--ZIndex: calc(var(--pf-c-data-list__item--m-selected--ZIndex) + 1);
509
+ --pf-c-data-list__item--m-clickable--hover--BoxShadow: var(--pf-global--BoxShadow--sm-top), var(--pf-global--BoxShadow--sm-bottom);
510
+ --pf-c-data-list__item--m-clickable--focus--BoxShadow: var(--pf-global--BoxShadow--sm-top), var(--pf-global--BoxShadow--sm-bottom);
511
+ --pf-c-data-list__item--m-clickable--active--BoxShadow: var(--pf-global--BoxShadow--sm-top), var(--pf-global--BoxShadow--sm-bottom);
512
512
  --pf-c-data-list__item--BorderBottomColor: var(--pf-global--BorderColor--300);
513
513
  --pf-c-data-list__item--BorderBottomWidth: 0.5rem;
514
- --pf-c-data-list__item--m-selectable--hover--item--BorderTopColor: var(--pf-c-data-list__item--BorderBottomColor);
515
- --pf-c-data-list__item--m-selectable--hover--item--BorderTopWidth: var(--pf-c-data-list__item--BorderBottomWidth);
514
+ --pf-c-data-list__item--m-clickable--hover--item--BorderTopColor: var(--pf-c-data-list__item--BorderBottomColor);
515
+ --pf-c-data-list__item--m-clickable--hover--item--BorderTopWidth: var(--pf-c-data-list__item--BorderBottomWidth);
516
516
  --pf-c-data-list__item--sm--BorderBottomWidth: var(--pf-global--BorderWidth--sm);
517
517
  --pf-c-data-list__item--sm--BorderBottomColor: var(--pf-global--BorderColor--100);
518
518
  --pf-c-data-list__item--before--BackgroundColor: transparent;
519
- --pf-c-data-list__item--before--Width: var(--pf-global--BorderWidth--lg);
519
+ --pf-c-data-list__item--before--Width: calc(2 * var(--pf-global--BorderWidth--lg));
520
520
  --pf-c-data-list__item--before--Transition: var(--pf-global--Transition);
521
521
  --pf-c-data-list__item--before--Top: 0;
522
522
  --pf-c-data-list__item--before--sm--Top: calc(var(--pf-c-data-list__item--BorderBottomWidth) * -1);
@@ -576,8 +576,6 @@
576
576
  --pf-c-data-list__item-action__action--MarginTop: calc(var(--pf-global--spacer--form-element) * -1);
577
577
  --pf-c-data-list__action--MarginTop: var(--pf-c-data-list__item-action__action--MarginTop);
578
578
  --pf-c-data-list__item-action__action--MarginBottom: calc(var(--pf-global--spacer--form-element) * -1);
579
- --pf-c-data-list__expandable-content--BorderTopWidth: var(--pf-global--BorderWidth--sm);
580
- --pf-c-data-list__expandable-content--BorderTopColor: var(--pf-global--BorderColor--100);
581
579
  --pf-c-data-list__expandable-content--MarginRight: calc(var(--pf-c-data-list__expandable-content-body--PaddingRight) * -1);
582
580
  --pf-c-data-list__expandable-content--MarginLeft: calc(var(--pf-c-data-list__expandable-content-body--PaddingLeft) * -1);
583
581
  --pf-c-data-list__expandable-content--MaxHeight: 37.5rem;
@@ -709,28 +707,28 @@
709
707
  background-color: var(--pf-c-data-list__item--before--BackgroundColor);
710
708
  transition: var(--pf-c-data-list__item--before--Transition);
711
709
  }
712
- .pf-c-data-list__item.pf-m-selectable {
710
+ .pf-c-data-list__item.pf-m-clickable {
713
711
  cursor: pointer;
714
- outline-offset: var(--pf-c-data-list__item--m-selectable--OutlineOffset);
712
+ outline-offset: var(--pf-c-data-list__item--m-clickable--OutlineOffset);
715
713
  }
716
- .pf-c-data-list__item.pf-m-selectable:hover, .pf-c-data-list__item.pf-m-selectable:focus {
714
+ .pf-c-data-list__item.pf-m-clickable:hover, .pf-c-data-list__item.pf-m-clickable:focus {
717
715
  position: relative;
718
- z-index: var(--pf-c-data-list__item--m-selectable--hover--ZIndex);
716
+ z-index: var(--pf-c-data-list__item--m-clickable--hover--ZIndex);
719
717
  }
720
- .pf-c-data-list__item.pf-m-selectable:hover:not(.pf-m-selected):not(:last-child), .pf-c-data-list__item.pf-m-selectable:focus:not(.pf-m-selected):not(:last-child) {
718
+ .pf-c-data-list__item.pf-m-clickable:hover:not(.pf-m-selected):not(:last-child), .pf-c-data-list__item.pf-m-clickable:focus:not(.pf-m-selected):not(:last-child) {
721
719
  --pf-c-data-list__item--BorderBottomWidth: 0;
722
720
  }
723
- .pf-c-data-list__item.pf-m-selectable:hover:not(.pf-m-selected):not(:last-child) + .pf-c-data-list__item, .pf-c-data-list__item.pf-m-selectable:focus:not(.pf-m-selected):not(:last-child) + .pf-c-data-list__item {
724
- border-top: var(--pf-c-data-list__item--m-selectable--hover--item--BorderTopWidth) solid var(--pf-c-data-list__item--m-selectable--hover--item--BorderTopColor);
721
+ .pf-c-data-list__item.pf-m-clickable:hover:not(.pf-m-selected):not(:last-child) + .pf-c-data-list__item, .pf-c-data-list__item.pf-m-clickable:focus:not(.pf-m-selected):not(:last-child) + .pf-c-data-list__item {
722
+ border-top: var(--pf-c-data-list__item--m-clickable--hover--item--BorderTopWidth) solid var(--pf-c-data-list__item--m-clickable--hover--item--BorderTopColor);
725
723
  }
726
- .pf-c-data-list__item.pf-m-selectable:hover {
727
- box-shadow: var(--pf-c-data-list__item--m-selectable--hover--BoxShadow);
724
+ .pf-c-data-list__item.pf-m-clickable:hover {
725
+ box-shadow: var(--pf-c-data-list__item--m-clickable--hover--BoxShadow);
728
726
  }
729
- .pf-c-data-list__item.pf-m-selectable:focus {
730
- box-shadow: var(--pf-c-data-list__item--m-selectable--focus--BoxShadow);
727
+ .pf-c-data-list__item.pf-m-clickable:focus {
728
+ box-shadow: var(--pf-c-data-list__item--m-clickable--focus--BoxShadow);
731
729
  }
732
- .pf-c-data-list__item.pf-m-selectable:active {
733
- box-shadow: var(--pf-c-data-list__item--m-selectable--active--BoxShadow);
730
+ .pf-c-data-list__item.pf-m-clickable:active {
731
+ box-shadow: var(--pf-c-data-list__item--m-clickable--active--BoxShadow);
734
732
  }
735
733
  .pf-c-data-list__item.pf-m-selected {
736
734
  --pf-c-data-list__item--before--BackgroundColor: var(--pf-c-data-list__item--m-selected--before--BackgroundColor);
@@ -750,10 +748,6 @@
750
748
  }
751
749
  .pf-c-data-list__item.pf-m-expanded {
752
750
  --pf-c-data-list__toggle-icon--Rotate: var(--pf-c-data-list__item--m-expanded__toggle-icon--Rotate);
753
- --pf-c-data-list__item--before--BackgroundColor: var(--pf-c-data-list__item--m-expanded--before--BackgroundColor);
754
- }
755
- .pf-c-data-list__item.pf-m-expanded.pf-m-selectable:not(.pf-m-selected) {
756
- --pf-c-data-list__item--before--BackgroundColor: var(--pf-c-data-list__item--m-expanded--m-selectable--before--BackgroundColor);
757
751
  }
758
752
 
759
753
  .pf-c-data-list__item-row {
@@ -885,11 +879,22 @@
885
879
  .pf-c-data-list__expandable-content {
886
880
  max-height: var(--pf-c-data-list__expandable-content--MaxHeight);
887
881
  overflow-y: auto;
888
- border-top: var(--pf-c-data-list__expandable-content--BorderTopWidth) solid var(--pf-c-data-list__expandable-content--BorderTopColor);
889
882
  }
890
883
  .pf-c-data-list__expandable-content .pf-c-data-list__expandable-content-body {
891
884
  padding: var(--pf-c-data-list__expandable-content-body--PaddingTop) var(--pf-c-data-list__expandable-content-body--PaddingRight) var(--pf-c-data-list__expandable-content-body--PaddingBottom) var(--pf-c-data-list__expandable-content-body--PaddingLeft);
892
885
  }
886
+ .pf-c-data-list__expandable-content .pf-c-data-list__expandable-content-body > .pf-c-data-list {
887
+ margin-left: var(--pf-c-data-list--MarginLeft);
888
+ }
889
+ .pf-c-data-list__expandable-content .pf-c-data-list__expandable-content-body .pf-c-data-list__item:last-child {
890
+ border-bottom: 0;
891
+ }
892
+ .pf-c-data-list__expandable-content .pf-c-data-list__expandable-content-body .pf-c-data-list__item-row {
893
+ --pf-c-data-list__item-row--PaddingLeft: 0;
894
+ }
895
+ .pf-c-data-list__expandable-content .pf-c-data-list__expandable-content-body .pf-c-data-list__expandable-content-body {
896
+ --pf-c-data-list__expandable-content-body--PaddingLeft: 0;
897
+ }
893
898
  .pf-c-data-list__expandable-content .pf-c-data-list__expandable-content-body.pf-m-no-padding {
894
899
  padding: 0;
895
900
  }
@@ -46,7 +46,7 @@ declare const _default: {
46
46
  "truncate": "pf-m-truncate",
47
47
  "breakWord": "pf-m-break-word",
48
48
  "nowrap": "pf-m-nowrap",
49
- "selectable": "pf-m-selectable",
49
+ "clickable": "pf-m-clickable",
50
50
  "selected": "pf-m-selected",
51
51
  "ghostRow": "pf-m-ghost-row",
52
52
  "expanded": "pf-m-expanded",
@@ -48,7 +48,7 @@ exports.default = {
48
48
  "truncate": "pf-m-truncate",
49
49
  "breakWord": "pf-m-break-word",
50
50
  "nowrap": "pf-m-nowrap",
51
- "selectable": "pf-m-selectable",
51
+ "clickable": "pf-m-clickable",
52
52
  "selected": "pf-m-selected",
53
53
  "ghostRow": "pf-m-ghost-row",
54
54
  "expanded": "pf-m-expanded",
@@ -46,7 +46,7 @@ export default {
46
46
  "truncate": "pf-m-truncate",
47
47
  "breakWord": "pf-m-break-word",
48
48
  "nowrap": "pf-m-nowrap",
49
- "selectable": "pf-m-selectable",
49
+ "clickable": "pf-m-clickable",
50
50
  "selected": "pf-m-selected",
51
51
  "ghostRow": "pf-m-ghost-row",
52
52
  "expanded": "pf-m-expanded",
@@ -18,6 +18,7 @@
18
18
  --pf-c-form__label-required--MarginLeft: var(--pf-global--spacer--xs);
19
19
  --pf-c-form__label-required--FontSize: var(--pf-global--FontSize--sm);
20
20
  --pf-c-form__label-required--Color: var(--pf-global--danger-color--100);
21
+ --pf-c-form__group-label-help--BackgroundColor: transparent;
21
22
  --pf-c-form__group-label-help--PaddingTop: var(--pf-global--spacer--xs);
22
23
  --pf-c-form__group-label-help--PaddingRight: var(--pf-global--spacer--xs);
23
24
  --pf-c-form__group-label-help--PaddingBottom: var(--pf-global--spacer--xs);
@@ -323,6 +324,7 @@
323
324
  line-height: 1;
324
325
  color: var(--pf-c-form__group-label-help--Color);
325
326
  cursor: pointer;
327
+ background-color: var(--pf-c-form__group-label-help--BackgroundColor);
326
328
  border: 0;
327
329
  transform: translateY(var(--pf-c-form__group-label-help--TranslateY));
328
330
  }
@@ -28,135 +28,6 @@
28
28
  --pf-c-spinner--diameter: var(--pf-c-spinner--m-xl--diameter);
29
29
  }
30
30
 
31
- span.pf-c-spinner {
32
- --pf-c-spinner--AnimationDuration: 1.5s;
33
- --pf-c-spinner--AnimationTimingFunction: cubic-bezier(.77, .005, .315, 1);
34
- --pf-c-spinner--stroke-width-multiplier: .1;
35
- --pf-c-spinner--stroke-width: calc(var(--pf-c-spinner--diameter) * var(--pf-c-spinner--stroke-width-multiplier));
36
- --pf-c-spinner__clipper--Width: var(--pf-c-spinner--diameter);
37
- --pf-c-spinner__clipper--Height: var(--pf-c-spinner--diameter);
38
- --pf-c-spinner__clipper--after--BoxShadowColor: var(--pf-c-spinner--Color);
39
- --pf-c-spinner__clipper--after--Width: var(--pf-c-spinner--diameter);
40
- --pf-c-spinner__clipper--after--Height: var(--pf-c-spinner--diameter);
41
- --pf-c-spinner__clipper--after--BoxShadowSpreadRadius: var(--pf-c-spinner--stroke-width);
42
- --pf-c-spinner__lead-ball--after--BackgroundColor: var(--pf-c-spinner--Color);
43
- --pf-c-spinner__ball--after--Width: var(--pf-c-spinner--stroke-width);
44
- --pf-c-spinner__ball--after--Height: var(--pf-c-spinner--stroke-width);
45
- --pf-c-spinner__tail-ball--after--BackgroundColor: var(--pf-c-spinner--Color);
46
- position: relative;
47
- display: inline-block;
48
- text-align: left;
49
- animation: pf-animation-spinner-parent calc(var(--pf-c-spinner--AnimationDuration) * 2) var(--pf-c-spinner--AnimationTimingFunction) infinite;
50
- }
51
-
52
- @keyframes pf-animation-spinner-parent {
53
- 0% {
54
- transform: rotate(0deg);
55
- }
56
- 50% {
57
- transform: rotate(540deg);
58
- }
59
- 100% {
60
- transform: rotate(1080deg);
61
- }
62
- }
63
- .pf-c-spinner__clipper {
64
- position: absolute;
65
- width: var(--pf-c-spinner__clipper--Width);
66
- height: var(--pf-c-spinner__clipper--Height);
67
- clip-path: inset(0 0 50% 50%);
68
- animation: pf-animation-spinner__clipper var(--pf-c-spinner--AnimationDuration) linear infinite;
69
- }
70
-
71
- @keyframes pf-animation-spinner__clipper {
72
- 0% {
73
- transform: rotate(90deg);
74
- }
75
- 100% {
76
- transform: rotate(360deg);
77
- }
78
- }
79
- .pf-c-spinner__clipper::after {
80
- position: absolute;
81
- width: var(--pf-c-spinner__clipper--after--Width);
82
- height: var(--pf-c-spinner__clipper--after--Height);
83
- clip-path: inset(0 0 0 50%);
84
- content: "";
85
- border-radius: 50%;
86
- box-shadow: inset 0 0 0 var(--pf-c-spinner__clipper--after--BoxShadowSpreadRadius) var(--pf-c-spinner__clipper--after--BoxShadowColor);
87
- animation: pf-animation-spinner__clipper-after var(--pf-c-spinner--AnimationDuration) linear infinite;
88
- }
89
-
90
- @keyframes pf-animation-spinner__clipper-after {
91
- 0% {
92
- transform: rotate(-180deg);
93
- }
94
- 100% {
95
- transform: rotate(90deg);
96
- }
97
- }
98
- .pf-c-spinner__lead-ball {
99
- position: absolute;
100
- top: 0;
101
- left: 0;
102
- width: 100%;
103
- height: 100%;
104
- animation: pf-animation-spinner__lead-ball var(--pf-c-spinner--AnimationDuration) linear infinite;
105
- }
106
- .pf-c-spinner__lead-ball::after {
107
- position: absolute;
108
- top: calc(50% - var(--pf-c-spinner__ball--after--Height) / 2);
109
- right: 0;
110
- width: var(--pf-c-spinner__ball--after--Width);
111
- height: var(--pf-c-spinner__ball--after--Height);
112
- content: "";
113
- background-color: var(--pf-c-spinner__lead-ball--after--BackgroundColor);
114
- border-radius: 50%;
115
- transform-origin: top right;
116
- }
117
-
118
- @keyframes pf-animation-spinner__lead-ball {
119
- 0% {
120
- transform: rotate(0deg);
121
- }
122
- 33% {
123
- transform: rotate(180deg);
124
- }
125
- 100% {
126
- transform: rotate(360deg);
127
- }
128
- }
129
- .pf-c-spinner__tail-ball {
130
- position: absolute;
131
- top: 0;
132
- left: 0;
133
- width: 100%;
134
- height: 100%;
135
- animation: pf-animation-spinner__tail-ball var(--pf-c-spinner--AnimationDuration) linear infinite;
136
- }
137
- .pf-c-spinner__tail-ball::after {
138
- position: absolute;
139
- top: calc(50% - var(--pf-c-spinner__ball--after--Height) / 2);
140
- right: 0;
141
- width: var(--pf-c-spinner__ball--after--Width);
142
- height: var(--pf-c-spinner__ball--after--Height);
143
- content: "";
144
- background-color: var(--pf-c-spinner__tail-ball--after--BackgroundColor);
145
- border-radius: 50%;
146
- transform-origin: top right;
147
- }
148
-
149
- @keyframes pf-animation-spinner__tail-ball {
150
- 0% {
151
- transform: rotate(0deg);
152
- }
153
- 66% {
154
- transform: rotate(180deg);
155
- }
156
- 100% {
157
- transform: rotate(360deg);
158
- }
159
- }
160
31
  svg.pf-c-spinner {
161
32
  --pf-c-spinner--diameter: var(--pf-global--icon--FontSize--xl);
162
33
  --pf-c-spinner--AnimationDuration: 1.4s;
@@ -8,9 +8,6 @@ declare const _default: {
8
8
  "xl": "pf-m-xl"
9
9
  },
10
10
  "spinner": "pf-c-spinner",
11
- "spinnerClipper": "pf-c-spinner__clipper",
12
- "spinnerLeadBall": "pf-c-spinner__lead-ball",
13
- "spinnerPath": "pf-c-spinner__path",
14
- "spinnerTailBall": "pf-c-spinner__tail-ball"
11
+ "spinnerPath": "pf-c-spinner__path"
15
12
  };
16
13
  export default _default;
@@ -10,8 +10,5 @@ exports.default = {
10
10
  "xl": "pf-m-xl"
11
11
  },
12
12
  "spinner": "pf-c-spinner",
13
- "spinnerClipper": "pf-c-spinner__clipper",
14
- "spinnerLeadBall": "pf-c-spinner__lead-ball",
15
- "spinnerPath": "pf-c-spinner__path",
16
- "spinnerTailBall": "pf-c-spinner__tail-ball"
13
+ "spinnerPath": "pf-c-spinner__path"
17
14
  };
@@ -8,8 +8,5 @@ export default {
8
8
  "xl": "pf-m-xl"
9
9
  },
10
10
  "spinner": "pf-c-spinner",
11
- "spinnerClipper": "pf-c-spinner__clipper",
12
- "spinnerLeadBall": "pf-c-spinner__lead-ball",
13
- "spinnerPath": "pf-c-spinner__path",
14
- "spinnerTailBall": "pf-c-spinner__tail-ball"
11
+ "spinnerPath": "pf-c-spinner__path"
15
12
  };
@@ -215,43 +215,43 @@
215
215
  --pf-c-table--nested--first-last-child--PaddingRight: var(--pf-c-table--m-compact--cell--first-last-child--PaddingLeft);
216
216
  --pf-c-table--nested--first-last-child--PaddingLeft: var(--pf-c-table--m-compact--cell--first-last-child--PaddingRight);
217
217
  --pf-c-table__expandable-row--m-expanded--BorderBottomColor: var(--pf-global--BorderColor--100);
218
- --pf-c-table--tr--m-hoverable--BoxShadow--top: var(--pf-c-table--tr--BoxShadow--top--base);
219
- --pf-c-table--tr--m-hoverable--BackgroundColor: transparent;
220
- --pf-c-table--tr--m-hoverable--BoxShadow: none;
221
- --pf-c-table--tr--m-hoverable--OutlineOffset: calc(-1 * var(--pf-global--spacer--xs));
222
- --pf-c-table--tr--m-hoverable--hover--BoxShadow: var(--pf-c-table--tr--m-hoverable--BoxShadow--top), var(--pf-global--BoxShadow--sm-bottom);
223
- --pf-c-table--tr--m-hoverable--hover--BackgroundColor: var(--pf-global--BackgroundColor--100);
224
- --pf-c-table--tr--m-hoverable--focus--BoxShadow: var(--pf-c-table--tr--m-hoverable--BoxShadow--top), var(--pf-global--BoxShadow--sm-bottom);
225
- --pf-c-table--tr--m-hoverable--focus--BackgroundColor: var(--pf-global--BackgroundColor--100);
226
- --pf-c-table--tr--m-hoverable--active--BoxShadow: var(--pf-c-table--tr--m-hoverable--BoxShadow--top), var(--pf-global--BoxShadow--sm-bottom);
227
- --pf-c-table--tr--m-hoverable--active--BackgroundColor: var(--pf-global--BackgroundColor--100);
228
- --pf-c-table--tr--m-hoverable--m-selected--BoxShadow: var(--pf-global--BoxShadow--sm-bottom) inset, var(--pf-global--BoxShadow--sm-bottom);
218
+ --pf-c-table--tr--m-clickable--BoxShadow--top: var(--pf-c-table--tr--BoxShadow--top--base);
219
+ --pf-c-table--tr--m-clickable--BackgroundColor: transparent;
220
+ --pf-c-table--tr--m-clickable--BoxShadow: none;
221
+ --pf-c-table--tr--m-clickable--OutlineOffset: calc(-1 * var(--pf-global--spacer--xs));
222
+ --pf-c-table--tr--m-clickable--hover--BoxShadow: var(--pf-c-table--tr--m-clickable--BoxShadow--top), var(--pf-global--BoxShadow--sm-bottom);
223
+ --pf-c-table--tr--m-clickable--hover--BackgroundColor: var(--pf-global--BackgroundColor--100);
224
+ --pf-c-table--tr--m-clickable--focus--BoxShadow: var(--pf-c-table--tr--m-clickable--BoxShadow--top), var(--pf-global--BoxShadow--sm-bottom);
225
+ --pf-c-table--tr--m-clickable--focus--BackgroundColor: var(--pf-global--BackgroundColor--100);
226
+ --pf-c-table--tr--m-clickable--active--BoxShadow: var(--pf-c-table--tr--m-clickable--BoxShadow--top), var(--pf-global--BoxShadow--sm-bottom);
227
+ --pf-c-table--tr--m-clickable--active--BackgroundColor: var(--pf-global--BackgroundColor--100);
228
+ --pf-c-table--tr--m-clickable--m-selected--BoxShadow: var(--pf-global--BoxShadow--sm-bottom) inset, var(--pf-global--BoxShadow--sm-bottom);
229
229
  --pf-c-table--tr--m-selected--BoxShadow--top: var(--pf-c-table--tr--BoxShadow--top--base);
230
230
  --pf-c-table--tr--m-selected--BackgroundColor: var(--pf-global--BackgroundColor--100);
231
231
  --pf-c-table--tr--m-selected--BoxShadow: var(--pf-c-table--tr--m-selected--BoxShadow--top), var(--pf-global--BoxShadow--sm-bottom);
232
232
  --pf-c-table--tr--m-selected--OutlineOffset: calc(-1 * var(--pf-global--spacer--xs));
233
- --pf-c-table--tr--m-selected--after--BorderLeftWidth: var(--pf-c-table__expandable-row--after--border-width--base);
233
+ --pf-c-table--tr--m-selected--after--BorderLeftWidth: calc(2 * var(--pf-c-table__expandable-row--after--border-width--base));
234
234
  --pf-c-table--tr--m-selected--after--BorderLeftColor: var(--pf-global--active-color--100);
235
235
  --pf-c-table--tr--m-selected--m-selected--BoxShadow: var(--pf-global--BoxShadow--sm-bottom);
236
236
  --pf-c-table--tr--m-selected--hover--m-selected--BoxShadow: var(--pf-global--BoxShadow--sm-bottom) inset, var(--pf-global--BoxShadow--sm-bottom);
237
237
  --pf-c-table--tr--m-selected--tr--m-selected--hover--BoxShadow: var(--pf-c-table--tr--m-selected--BoxShadow--top), var(--pf-global--BoxShadow--sm-bottom);
238
- --pf-c-table--tbody--m-hoverable--BoxShadow--top: var(--pf-c-table--tr--BoxShadow--top--base);
239
- --pf-c-table--tbody--m-hoverable--BoxShadow: none;
240
- --pf-c-table--tbody--m-hoverable--BackgroundColor: transparent;
241
- --pf-c-table--tbody--m-hoverable--OutlineOffset: calc(-1 * var(--pf-global--spacer--xs));
242
- --pf-c-table--tbody--m-hoverable--hover--BoxShadow: var(--pf-c-table--tbody--m-hoverable--BoxShadow--top), var(--pf-global--BoxShadow--sm-bottom);
243
- --pf-c-table--tbody--m-hoverable--hover--BackgroundColor: var(--pf-global--BackgroundColor--100);
244
- --pf-c-table--tbody--m-hoverable--focus--BoxShadow: var(--pf-c-table--tbody--m-hoverable--BoxShadow--top), var(--pf-global--BoxShadow--sm-bottom);
245
- --pf-c-table--tbody--m-hoverable--focus--BackgroundColor: var(--pf-global--BackgroundColor--100);
246
- --pf-c-table--tbody--m-hoverable--active--BoxShadow: var(--pf-c-table--tbody--m-hoverable--BoxShadow--top), var(--pf-global--BoxShadow--sm-bottom);
247
- --pf-c-table--tbody--m-hoverable--active--BackgroundColor: var(--pf-global--BackgroundColor--100);
248
- --pf-c-table--tbody--m-hoverable--m-expanded--BorderColor: var(--pf-global--active-color--400);
249
- --pf-c-table--tbody--m-hoverable--m-selected--hover--tr--BoxShadow: var(--pf-global--BoxShadow--sm-bottom) inset, var(--pf-global--BoxShadow--sm-bottom);
238
+ --pf-c-table--tbody--m-clickable--BoxShadow--top: var(--pf-c-table--tr--BoxShadow--top--base);
239
+ --pf-c-table--tbody--m-clickable--BoxShadow: none;
240
+ --pf-c-table--tbody--m-clickable--BackgroundColor: transparent;
241
+ --pf-c-table--tbody--m-clickable--OutlineOffset: calc(-1 * var(--pf-global--spacer--xs));
242
+ --pf-c-table--tbody--m-clickable--hover--BoxShadow: var(--pf-c-table--tbody--m-clickable--BoxShadow--top), var(--pf-global--BoxShadow--sm-bottom);
243
+ --pf-c-table--tbody--m-clickable--hover--BackgroundColor: var(--pf-global--BackgroundColor--100);
244
+ --pf-c-table--tbody--m-clickable--focus--BoxShadow: var(--pf-c-table--tbody--m-clickable--BoxShadow--top), var(--pf-global--BoxShadow--sm-bottom);
245
+ --pf-c-table--tbody--m-clickable--focus--BackgroundColor: var(--pf-global--BackgroundColor--100);
246
+ --pf-c-table--tbody--m-clickable--active--BoxShadow: var(--pf-c-table--tbody--m-clickable--BoxShadow--top), var(--pf-global--BoxShadow--sm-bottom);
247
+ --pf-c-table--tbody--m-clickable--active--BackgroundColor: var(--pf-global--BackgroundColor--100);
248
+ --pf-c-table--tbody--m-clickable--m-expanded--BorderColor: var(--pf-global--active-color--400);
249
+ --pf-c-table--tbody--m-clickable--m-selected--hover--tr--BoxShadow: var(--pf-global--BoxShadow--sm-bottom) inset, var(--pf-global--BoxShadow--sm-bottom);
250
250
  --pf-c-table--tbody--m-selected--BackgroundColor: var(--pf-global--BackgroundColor--100);
251
251
  --pf-c-table--tbody--m-selected--BoxShadow--top: var(--pf-c-table--tr--BoxShadow--top--base);
252
252
  --pf-c-table--tbody--m-selected--BoxShadow: var(--pf-c-table--tbody--m-selected--BoxShadow--top), var(--pf-global--BoxShadow--sm-bottom);
253
253
  --pf-c-table--tbody--m-selected--OutlineOffset: calc(-1 * var(--pf-global--spacer--xs));
254
- --pf-c-table--tbody--m-selected--after--BorderLeftWidth: var(--pf-c-table__expandable-row--after--border-width--base);
254
+ --pf-c-table--tbody--m-selected--after--BorderLeftWidth: calc(2 * var(--pf-c-table__expandable-row--after--border-width--base));
255
255
  --pf-c-table--tbody--m-selected--after--BorderLeftColor: var(--pf-global--active-color--100);
256
256
  --pf-c-table--tbody--m-selected--m-selected--BoxShadow: var(--pf-global--BoxShadow--sm-bottom);
257
257
  --pf-c-table--tbody--m-selected--hover--tbody--m-selected--BoxShadow: var(--pf-global--BoxShadow--sm-bottom) inset, var(--pf-global--BoxShadow--sm-bottom);
@@ -448,6 +448,9 @@
448
448
  margin-top: var(--pf-c-table__check--input--MarginTop);
449
449
  vertical-align: top;
450
450
  }
451
+ .pf-c-table tbody.pf-m-expanded > :first-child:not(.pf-c-table__control-row) {
452
+ border-bottom-width: 0;
453
+ }
451
454
  .pf-c-table .pf-c-table__compound-expansion-toggle, .pf-c-table .pf-c-table__compound-expansion-toggle:first-child, .pf-c-table .pf-c-table__compound-expansion-toggle:last-child {
452
455
  padding: 0;
453
456
  }
@@ -507,26 +510,26 @@
507
510
  .pf-c-table.pf-m-no-border-rows > tbody .pf-c-table__control-row > .pf-c-table__compound-expansion-toggle:first-child > ::before {
508
511
  border-left-width: 0;
509
512
  }
510
- .pf-c-table tr.pf-m-hoverable {
513
+ .pf-c-table tr.pf-m-clickable {
511
514
  cursor: pointer;
512
- background-color: var(--pf-c-table--tr--m-hoverable--BackgroundColor);
513
- outline-offset: var(--pf-c-table--tr--m-hoverable--OutlineOffset);
514
- box-shadow: var(--pf-c-table--tr--m-hoverable--BoxShadow);
515
+ background-color: var(--pf-c-table--tr--m-clickable--BackgroundColor);
516
+ outline-offset: var(--pf-c-table--tr--m-clickable--OutlineOffset);
517
+ box-shadow: var(--pf-c-table--tr--m-clickable--BoxShadow);
515
518
  }
516
- .pf-c-table tr.pf-m-hoverable:hover:not(.pf-m-selected) + tr.pf-m-selected, .pf-c-table tr.pf-m-hoverable:focus:not(.pf-m-selected) + tr.pf-m-selected, .pf-c-table tr.pf-m-hoverable:active:not(.pf-m-selected) + tr.pf-m-selected {
517
- box-shadow: var(--pf-c-table--tr--m-hoverable--m-selected--BoxShadow);
519
+ .pf-c-table tr.pf-m-clickable:hover:not(.pf-m-selected) + tr.pf-m-selected, .pf-c-table tr.pf-m-clickable:focus:not(.pf-m-selected) + tr.pf-m-selected, .pf-c-table tr.pf-m-clickable:active:not(.pf-m-selected) + tr.pf-m-selected {
520
+ box-shadow: var(--pf-c-table--tr--m-clickable--m-selected--BoxShadow);
518
521
  }
519
- .pf-c-table tr.pf-m-hoverable:hover {
520
- --pf-c-table--tr--m-hoverable--BoxShadow: var(--pf-c-table--tr--m-hoverable--hover--BoxShadow);
521
- --pf-c-table--tr--m-hoverable--BackgroundColor: var(--pf-c-table--tr--m-hoverable--hover--BackgroundColor);
522
+ .pf-c-table tr.pf-m-clickable:hover {
523
+ --pf-c-table--tr--m-clickable--BoxShadow: var(--pf-c-table--tr--m-clickable--hover--BoxShadow);
524
+ --pf-c-table--tr--m-clickable--BackgroundColor: var(--pf-c-table--tr--m-clickable--hover--BackgroundColor);
522
525
  }
523
- .pf-c-table tr.pf-m-hoverable:focus {
524
- --pf-c-table--tr--m-hoverable--BoxShadow: var(--pf-c-table--tr--m-hoverable--focus--BoxShadow);
525
- --pf-c-table--tr--m-hoverable--BackgroundColor: var(--pf-c-table--tr--m-hoverable--focus--BackgroundColor);
526
+ .pf-c-table tr.pf-m-clickable:focus {
527
+ --pf-c-table--tr--m-clickable--BoxShadow: var(--pf-c-table--tr--m-clickable--focus--BoxShadow);
528
+ --pf-c-table--tr--m-clickable--BackgroundColor: var(--pf-c-table--tr--m-clickable--focus--BackgroundColor);
526
529
  }
527
- .pf-c-table tr.pf-m-hoverable:active {
528
- --pf-c-table--tr--m-hoverable--BoxShadow: var(--pf-c-table--tr--m-hoverable--active--BoxShadow);
529
- --pf-c-table--tr--m-hoverable--BackgroundColor: var(--pf-c-table--tr--m-hoverable--active--BackgroundColor);
530
+ .pf-c-table tr.pf-m-clickable:active {
531
+ --pf-c-table--tr--m-clickable--BoxShadow: var(--pf-c-table--tr--m-clickable--active--BoxShadow);
532
+ --pf-c-table--tr--m-clickable--BackgroundColor: var(--pf-c-table--tr--m-clickable--active--BackgroundColor);
530
533
  }
531
534
  .pf-c-table tr.pf-m-selected {
532
535
  --pf-c-table__expandable-row--after--BorderLeftWidth: var(--pf-c-table--tr--m-selected--after--BorderLeftWidth);
@@ -548,29 +551,29 @@
548
551
  .pf-c-table tr.pf-m-first-cell-offset-reset {
549
552
  --pf-c-table--cell--first-last-child--PaddingLeft: var(--pf-c-table--tr--m-first-cell-offset-reset--cell--PaddingLeft);
550
553
  }
551
- .pf-c-table tbody.pf-m-hoverable {
554
+ .pf-c-table tbody.pf-m-clickable {
552
555
  cursor: pointer;
553
- background-color: var(--pf-c-table--tbody--m-hoverable--BackgroundColor);
554
- outline-offset: var(--pf-c-table--tbody--m-hoverable--OutlineOffset);
555
- box-shadow: var(--pf-c-table--tbody--m-hoverable--BoxShadow);
556
+ background-color: var(--pf-c-table--tbody--m-clickable--BackgroundColor);
557
+ outline-offset: var(--pf-c-table--tbody--m-clickable--OutlineOffset);
558
+ box-shadow: var(--pf-c-table--tbody--m-clickable--BoxShadow);
556
559
  }
557
- .pf-c-table tbody.pf-m-hoverable.pf-m-expanded:not(.pf-m-selected) {
558
- --pf-c-table__expandable-row--after--BorderColor: var(--pf-c-table--tbody--m-hoverable--m-expanded--BorderColor);
560
+ .pf-c-table tbody.pf-m-clickable.pf-m-expanded:not(.pf-m-selected) {
561
+ --pf-c-table__expandable-row--after--BorderColor: var(--pf-c-table--tbody--m-clickable--m-expanded--BorderColor);
559
562
  }
560
- .pf-c-table tbody.pf-m-hoverable:hover:not(.pf-m-selected) + tbody.pf-m-selected, .pf-c-table tbody.pf-m-hoverable:focus:not(.pf-m-selected) + tbody.pf-m-selected, .pf-c-table tbody.pf-m-hoverable:active:not(.pf-m-selected) + tbody.pf-m-selected {
561
- box-shadow: var(--pf-c-table--tbody--m-hoverable--m-selected--hover--tr--BoxShadow);
563
+ .pf-c-table tbody.pf-m-clickable:hover:not(.pf-m-selected) + tbody.pf-m-selected, .pf-c-table tbody.pf-m-clickable:focus:not(.pf-m-selected) + tbody.pf-m-selected, .pf-c-table tbody.pf-m-clickable:active:not(.pf-m-selected) + tbody.pf-m-selected {
564
+ box-shadow: var(--pf-c-table--tbody--m-clickable--m-selected--hover--tr--BoxShadow);
562
565
  }
563
- .pf-c-table tbody.pf-m-hoverable:hover {
564
- --pf-c-table--tbody--m-hoverable--BoxShadow: var(--pf-c-table--tbody--m-hoverable--hover--BoxShadow);
565
- --pf-c-table--tbody--m-hoverable--BackgroundColor: var(--pf-c-table--tbody--m-hoverable--hover--BackgroundColor);
566
+ .pf-c-table tbody.pf-m-clickable:hover {
567
+ --pf-c-table--tbody--m-clickable--BoxShadow: var(--pf-c-table--tbody--m-clickable--hover--BoxShadow);
568
+ --pf-c-table--tbody--m-clickable--BackgroundColor: var(--pf-c-table--tbody--m-clickable--hover--BackgroundColor);
566
569
  }
567
- .pf-c-table tbody.pf-m-hoverable:focus {
568
- --pf-c-table--tbody--m-hoverable--BoxShadow: var(--pf-c-table--tbody--m-hoverable--focus--BoxShadow);
569
- --pf-c-table--tbody--m-hoverable--BackgroundColor: var(--pf-c-table--tbody--m-hoverable--focus--BackgroundColor);
570
+ .pf-c-table tbody.pf-m-clickable:focus {
571
+ --pf-c-table--tbody--m-clickable--BoxShadow: var(--pf-c-table--tbody--m-clickable--focus--BoxShadow);
572
+ --pf-c-table--tbody--m-clickable--BackgroundColor: var(--pf-c-table--tbody--m-clickable--focus--BackgroundColor);
570
573
  }
571
- .pf-c-table tbody.pf-m-hoverable:active {
572
- --pf-c-table--tbody--m-hoverable--BoxShadow: var(--pf-c-table--tbody--m-hoverable--active--BoxShadow);
573
- --pf-c-table--tbody--m-hoverable--BackgroundColor: var(--pf-c-table--tbody--m-hoverable--active--BackgroundColor);
574
+ .pf-c-table tbody.pf-m-clickable:active {
575
+ --pf-c-table--tbody--m-clickable--BoxShadow: var(--pf-c-table--tbody--m-clickable--active--BoxShadow);
576
+ --pf-c-table--tbody--m-clickable--BackgroundColor: var(--pf-c-table--tbody--m-clickable--active--BackgroundColor);
574
577
  }
575
578
  .pf-c-table tbody.pf-m-selected {
576
579
  --pf-c-table__expandable-row--after--BorderLeftWidth: var(--pf-c-table--tbody--m-selected--after--BorderLeftWidth);
@@ -938,12 +941,6 @@
938
941
  display: none;
939
942
  }
940
943
 
941
- .pf-c-table__compound-expansion-toggle.pf-m-expanded:first-child,
942
- .pf-c-table__expandable-row.pf-m-expanded > :first-child,
943
- .pf-c-table tbody.pf-m-expanded > tr > :not(.pf-c-table__compound-expansion-toggle) {
944
- --pf-c-table__expandable-row--after--BorderLeftWidth: var(--pf-c-table__expandable-row--after--border-width--base);
945
- }
946
-
947
944
  .pf-c-table .pf-c-table tr > *:first-child {
948
945
  --pf-c-table--cell--PaddingLeft: var(--pf-c-table--nested--first-last-child--PaddingLeft);
949
946
  }
@@ -26,14 +26,14 @@ declare const _default: {
26
26
  "favorite": "pf-m-favorite",
27
27
  "borderRight": "pf-m-border-right",
28
28
  "borderLeft": "pf-m-border-left",
29
+ "expanded": "pf-m-expanded",
29
30
  "truncate": "pf-m-truncate",
30
31
  "wrap": "pf-m-wrap",
31
32
  "nowrap": "pf-m-nowrap",
32
33
  "fitContent": "pf-m-fit-content",
33
34
  "breakWord": "pf-m-break-word",
34
35
  "noBorderRows": "pf-m-no-border-rows",
35
- "expanded": "pf-m-expanded",
36
- "hoverable": "pf-m-hoverable",
36
+ "clickable": "pf-m-clickable",
37
37
  "selected": "pf-m-selected",
38
38
  "firstCellOffsetReset": "pf-m-first-cell-offset-reset",
39
39
  "dragOver": "pf-m-drag-over",
@@ -28,14 +28,14 @@ exports.default = {
28
28
  "favorite": "pf-m-favorite",
29
29
  "borderRight": "pf-m-border-right",
30
30
  "borderLeft": "pf-m-border-left",
31
+ "expanded": "pf-m-expanded",
31
32
  "truncate": "pf-m-truncate",
32
33
  "wrap": "pf-m-wrap",
33
34
  "nowrap": "pf-m-nowrap",
34
35
  "fitContent": "pf-m-fit-content",
35
36
  "breakWord": "pf-m-break-word",
36
37
  "noBorderRows": "pf-m-no-border-rows",
37
- "expanded": "pf-m-expanded",
38
- "hoverable": "pf-m-hoverable",
38
+ "clickable": "pf-m-clickable",
39
39
  "selected": "pf-m-selected",
40
40
  "firstCellOffsetReset": "pf-m-first-cell-offset-reset",
41
41
  "dragOver": "pf-m-drag-over",
@@ -26,14 +26,14 @@ export default {
26
26
  "favorite": "pf-m-favorite",
27
27
  "borderRight": "pf-m-border-right",
28
28
  "borderLeft": "pf-m-border-left",
29
+ "expanded": "pf-m-expanded",
29
30
  "truncate": "pf-m-truncate",
30
31
  "wrap": "pf-m-wrap",
31
32
  "nowrap": "pf-m-nowrap",
32
33
  "fitContent": "pf-m-fit-content",
33
34
  "breakWord": "pf-m-break-word",
34
35
  "noBorderRows": "pf-m-no-border-rows",
35
- "expanded": "pf-m-expanded",
36
- "hoverable": "pf-m-hoverable",
36
+ "clickable": "pf-m-clickable",
37
37
  "selected": "pf-m-selected",
38
38
  "firstCellOffsetReset": "pf-m-first-cell-offset-reset",
39
39
  "dragOver": "pf-m-drag-over",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@patternfly/react-styles",
3
- "version": "5.0.0-alpha.7",
3
+ "version": "5.0.0-alpha.9",
4
4
  "main": "dist/js/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "types": "dist/esm/index.d.ts",
@@ -19,15 +19,15 @@
19
19
  "clean": "rimraf dist css"
20
20
  },
21
21
  "devDependencies": {
22
- "@patternfly/patternfly": "5.0.0-alpha.37",
22
+ "@patternfly/patternfly": "5.0.0-alpha.41",
23
23
  "camel-case": "^3.0.0",
24
24
  "css": "^2.2.3",
25
- "fs-extra": "^6.0.1",
25
+ "fs-extra": "^11.1.1",
26
26
  "glob": "^7.1.2",
27
27
  "jsdom": "^15.1.0",
28
28
  "rimraf": "^2.6.2",
29
29
  "typescript": "^4.7.4"
30
30
  },
31
31
  "license": "MIT",
32
- "gitHead": "dcfd911a774d1d3283d9bb857c7279e96dd8e043"
32
+ "gitHead": "fbd0e89df0722abba56a1752bd20000943dee2b3"
33
33
  }