@patternfly/react-styles 5.0.0-alpha.16 → 5.0.0-alpha.18

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/css/components/Consoles/AccessConsoles.css +3 -3
  3. package/css/components/Consoles/AccessConsoles.d.ts +2 -2
  4. package/css/components/Consoles/AccessConsoles.js +2 -2
  5. package/css/components/Consoles/AccessConsoles.mjs +2 -2
  6. package/css/components/Consoles/DesktopViewer.css +1 -1
  7. package/css/components/Consoles/DesktopViewer.d.ts +1 -1
  8. package/css/components/Consoles/DesktopViewer.js +1 -1
  9. package/css/components/Consoles/DesktopViewer.mjs +1 -1
  10. package/css/components/Consoles/SerialConsole.css +3 -3
  11. package/css/components/Consoles/SerialConsole.d.ts +2 -2
  12. package/css/components/Consoles/SerialConsole.js +2 -2
  13. package/css/components/Consoles/SerialConsole.mjs +2 -2
  14. package/css/components/Consoles/VncConsole.css +2 -2
  15. package/css/components/Consoles/VncConsole.d.ts +2 -2
  16. package/css/components/Consoles/VncConsole.js +2 -2
  17. package/css/components/Consoles/VncConsole.mjs +2 -2
  18. package/css/components/InputGroup/input-group.css +0 -2
  19. package/css/components/Masthead/masthead.css +2 -0
  20. package/css/components/NumberInput/number-input.css +4 -2
  21. package/css/components/Pagination/pagination.css +27 -27
  22. package/css/components/Pagination/pagination.d.ts +1 -2
  23. package/css/components/Pagination/pagination.js +1 -2
  24. package/css/components/Pagination/pagination.mjs +1 -2
  25. package/css/components/Table/inline-edit.css +30 -30
  26. package/css/components/Table/inline-edit.d.ts +2 -2
  27. package/css/components/Table/inline-edit.js +2 -2
  28. package/css/components/Table/inline-edit.mjs +2 -2
  29. package/css/components/Toolbar/toolbar.css +49 -15
  30. package/css/components/Toolbar/toolbar.d.ts +2 -0
  31. package/css/components/Toolbar/toolbar.js +2 -0
  32. package/css/components/Toolbar/toolbar.mjs +2 -0
  33. package/package.json +3 -3
  34. package/src/css/components/Consoles/AccessConsoles.css +3 -3
  35. package/src/css/components/Consoles/DesktopViewer.css +1 -1
  36. package/src/css/components/Consoles/SerialConsole.css +3 -3
  37. package/src/css/components/Consoles/VncConsole.css +2 -2
  38. package/src/css/components/Table/inline-edit.css +30 -30
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.18 (2023-06-01)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **react-styles:** updated class names to include versions ([#9173](https://github.com/patternfly/patternfly-react/issues/9173)) ([ae05e89](https://github.com/patternfly/patternfly-react/commit/ae05e89a361773223c3804fa352ea7eefab01c8a))
11
+
12
+ # 5.0.0-alpha.17 (2023-05-31)
13
+
14
+ **Note:** Version bump only for package @patternfly/react-styles
15
+
6
16
  # [5.0.0-alpha.16](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@5.0.0-alpha.15...@patternfly/react-styles@5.0.0-alpha.16) (2023-05-19)
7
17
 
8
18
  **Note:** Version bump only for package @patternfly/react-styles
@@ -1,14 +1,14 @@
1
- .pf-c-console {
1
+ .pf-v5-c-console {
2
2
  display: grid;
3
3
  grid-template-areas:
4
4
  'actions-main actions-extra'
5
5
  'main main';
6
6
  row-gap: var(--pf-v5-global--spacer--md);
7
7
  }
8
- .pf-c-console__actions {
8
+ .pf-v5-c-console__actions {
9
9
  grid-area: actions-main;
10
10
  display: flex;
11
11
  }
12
- .pf-c-console__actions > div {
12
+ .pf-v5-c-console__actions > div {
13
13
  margin-right: var(--pf-v5-global--spacer--sm);
14
14
  }
@@ -1,6 +1,6 @@
1
1
  import './AccessConsoles.css';
2
2
  declare const _default: {
3
- "console": "pf-c-console",
4
- "consoleActions": "pf-c-console__actions"
3
+ "console": "pf-v5-c-console",
4
+ "consoleActions": "pf-v5-c-console__actions"
5
5
  };
6
6
  export default _default;
@@ -2,6 +2,6 @@
2
2
  exports.__esModule = true;
3
3
  require('./AccessConsoles.css');
4
4
  exports.default = {
5
- "console": "pf-c-console",
6
- "consoleActions": "pf-c-console__actions"
5
+ "console": "pf-v5-c-console",
6
+ "consoleActions": "pf-v5-c-console__actions"
7
7
  };
@@ -1,5 +1,5 @@
1
1
  import './AccessConsoles.css';
2
2
  export default {
3
- "console": "pf-c-console",
4
- "consoleActions": "pf-c-console__actions"
3
+ "console": "pf-v5-c-console",
4
+ "consoleActions": "pf-v5-c-console__actions"
5
5
  };
@@ -1,4 +1,4 @@
1
- .pf-c-console__desktop-viewer {
1
+ .pf-v5-c-console__desktop-viewer {
2
2
  grid-area: main;
3
3
  display: grid;
4
4
  gap: var(--pf-v5-global--spacer--md);
@@ -1,5 +1,5 @@
1
1
  import './DesktopViewer.css';
2
2
  declare const _default: {
3
- "consoleDesktopViewer": "pf-c-console__desktop-viewer"
3
+ "consoleDesktopViewer": "pf-v5-c-console__desktop-viewer"
4
4
  };
5
5
  export default _default;
@@ -2,5 +2,5 @@
2
2
  exports.__esModule = true;
3
3
  require('./DesktopViewer.css');
4
4
  exports.default = {
5
- "consoleDesktopViewer": "pf-c-console__desktop-viewer"
5
+ "consoleDesktopViewer": "pf-v5-c-console__desktop-viewer"
6
6
  };
@@ -1,4 +1,4 @@
1
1
  import './DesktopViewer.css';
2
2
  export default {
3
- "consoleDesktopViewer": "pf-c-console__desktop-viewer"
3
+ "consoleDesktopViewer": "pf-v5-c-console__desktop-viewer"
4
4
  };
@@ -1,11 +1,11 @@
1
- .pf-c-console__serial {
1
+ .pf-v5-c-console__serial {
2
2
  grid-area: main;
3
3
  }
4
- .pf-c-console__actions-serial {
4
+ .pf-v5-c-console__actions-serial {
5
5
  grid-area: actions-extra;
6
6
  display: flex;
7
7
  justify-content: flex-end;
8
8
  }
9
- .pf-c-console__actions-serial > button {
9
+ .pf-v5-c-console__actions-serial > button {
10
10
  margin-right: var(--pf-v5-global--spacer--sm);
11
11
  }
@@ -1,6 +1,6 @@
1
1
  import './SerialConsole.css';
2
2
  declare const _default: {
3
- "consoleActionsSerial": "pf-c-console__actions-serial",
4
- "consoleSerial": "pf-c-console__serial"
3
+ "consoleActionsSerial": "pf-v5-c-console__actions-serial",
4
+ "consoleSerial": "pf-v5-c-console__serial"
5
5
  };
6
6
  export default _default;
@@ -2,6 +2,6 @@
2
2
  exports.__esModule = true;
3
3
  require('./SerialConsole.css');
4
4
  exports.default = {
5
- "consoleActionsSerial": "pf-c-console__actions-serial",
6
- "consoleSerial": "pf-c-console__serial"
5
+ "consoleActionsSerial": "pf-v5-c-console__actions-serial",
6
+ "consoleSerial": "pf-v5-c-console__serial"
7
7
  };
@@ -1,5 +1,5 @@
1
1
  import './SerialConsole.css';
2
2
  export default {
3
- "consoleActionsSerial": "pf-c-console__actions-serial",
4
- "consoleSerial": "pf-c-console__serial"
3
+ "consoleActionsSerial": "pf-v5-c-console__actions-serial",
4
+ "consoleSerial": "pf-v5-c-console__serial"
5
5
  };
@@ -1,7 +1,7 @@
1
- .pf-c-console__vnc {
1
+ .pf-v5-c-console__vnc {
2
2
  grid-area: main;
3
3
  }
4
- .pf-c-console__actions-vnc {
4
+ .pf-v5-c-console__actions-vnc {
5
5
  grid-area: actions-extra;
6
6
  display: flex;
7
7
  flex-wrap: wrap;
@@ -1,6 +1,6 @@
1
1
  import './VncConsole.css';
2
2
  declare const _default: {
3
- "consoleActionsVnc": "pf-c-console__actions-vnc",
4
- "consoleVnc": "pf-c-console__vnc"
3
+ "consoleActionsVnc": "pf-v5-c-console__actions-vnc",
4
+ "consoleVnc": "pf-v5-c-console__vnc"
5
5
  };
6
6
  export default _default;
@@ -2,6 +2,6 @@
2
2
  exports.__esModule = true;
3
3
  require('./VncConsole.css');
4
4
  exports.default = {
5
- "consoleActionsVnc": "pf-c-console__actions-vnc",
6
- "consoleVnc": "pf-c-console__vnc"
5
+ "consoleActionsVnc": "pf-v5-c-console__actions-vnc",
6
+ "consoleVnc": "pf-v5-c-console__vnc"
7
7
  };
@@ -1,5 +1,5 @@
1
1
  import './VncConsole.css';
2
2
  export default {
3
- "consoleActionsVnc": "pf-c-console__actions-vnc",
4
- "consoleVnc": "pf-c-console__vnc"
3
+ "consoleActionsVnc": "pf-v5-c-console__actions-vnc",
4
+ "consoleVnc": "pf-v5-c-console__vnc"
5
5
  };
@@ -20,8 +20,6 @@
20
20
  --pf-v5-c-input-group__item--m-disabled__text--Color: var(--pf-v5-global--disabled-color--100);
21
21
  --pf-v5-c-input-group__item--m-disabled--BorderBottomColor: transparent;
22
22
  --pf-v5-c-input-group__item--m-disabled--BackgroundColor: var(--pf-v5-global--disabled-color--300);
23
- --pf-v5-c-input-group--c-form-control--invalid--ZIndex: var(--pf-v5-global--ZIndex--xs);
24
- --pf-v5-c-input-group--c-form-control--MarginRight: 0;
25
23
  display: flex;
26
24
  width: 100%;
27
25
  }
@@ -89,6 +89,7 @@
89
89
  --pf-v5-c-masthead--c-menu-toggle--before--BorderLeftColor: var(--pf-v5-c-masthead--item-border-color--base);
90
90
  --pf-v5-c-masthead--c-menu-toggle--m-full-height--before--BorderTopColor: transparent;
91
91
  --pf-v5-c-masthead--c-menu-toggle--m-full-height--before--BorderBottomColor: transparent;
92
+ --pf-v5-c-masthead--c-toolbar--AlignItems--base: center;
92
93
  --pf-v5-c-masthead--c-toolbar__content--PaddingRight: 0;
93
94
  --pf-v5-c-masthead--c-toolbar__content--PaddingLeft: 0;
94
95
  --pf-v5-c-masthead--c-toolbar__expandable-content--PaddingTop: var(--pf-v5-global--spacer--md);
@@ -161,6 +162,7 @@
161
162
  --pf-v5-c-masthead__main--BorderBottomColor: var(--pf-v5-c-masthead--m-light-200__main--BorderBottomColor);
162
163
  }
163
164
  .pf-v5-c-masthead .pf-v5-c-toolbar {
165
+ --pf-v5-c-toolbar--AlignItems--base: var(--pf-v5-c-masthead--c-toolbar--AlignItems--base);
164
166
  --pf-v5-c-toolbar__content--PaddingRight: var(--pf-v5-c-masthead--c-toolbar__content--PaddingRight);
165
167
  --pf-v5-c-toolbar__content--PaddingLeft: var(--pf-v5-c-masthead--c-toolbar__content--PaddingLeft);
166
168
  --pf-v5-c-toolbar__expandable-content--PaddingTop: var(--pf-v5-c-masthead--c-toolbar__expandable-content--PaddingTop);
@@ -1,7 +1,7 @@
1
- .pf-v5-c-number-input .pf-v5-c-form-control {
1
+ .pf-v5-c-number-input .pf-v5-c-form-control > :is(input) {
2
2
  appearance: textfield;
3
3
  }
4
- .pf-v5-c-number-input .pf-v5-c-form-control::-webkit-inner-spin-button, .pf-v5-c-number-input .pf-v5-c-form-control::-webkit-outer-spin-button {
4
+ .pf-v5-c-number-input .pf-v5-c-form-control > :is(input)::-webkit-inner-spin-button, .pf-v5-c-number-input .pf-v5-c-form-control > :is(input)::-webkit-outer-spin-button {
5
5
  appearance: none;
6
6
  margin: 0;
7
7
  }
@@ -27,6 +27,8 @@
27
27
  }
28
28
  .pf-v5-c-number-input .pf-v5-c-form-control {
29
29
  width: var(--pf-v5-c-number-input--c-form-control--Width);
30
+ }
31
+ .pf-v5-c-number-input .pf-v5-c-form-control > :is(input) {
30
32
  text-align: right;
31
33
  }
32
34
 
@@ -1,7 +1,7 @@
1
- .pf-v5-c-pagination__nav-page-select .pf-v5-c-form-control {
1
+ .pf-v5-c-pagination__nav-page-select .pf-v5-c-form-control > :is(input) {
2
2
  appearance: textfield;
3
3
  }
4
- .pf-v5-c-pagination__nav-page-select .pf-v5-c-form-control::-webkit-inner-spin-button, .pf-v5-c-pagination__nav-page-select .pf-v5-c-form-control::-webkit-outer-spin-button {
4
+ .pf-v5-c-pagination__nav-page-select .pf-v5-c-form-control > :is(input)::-webkit-inner-spin-button, .pf-v5-c-pagination__nav-page-select .pf-v5-c-form-control > :is(input)::-webkit-outer-spin-button {
5
5
  appearance: none;
6
6
  margin: 0;
7
7
  }
@@ -16,7 +16,7 @@
16
16
  --pf-v5-c-pagination--m-bottom--child--MarginRight: 0;
17
17
  --pf-v5-c-pagination--m-bottom--child--md--MarginRight: var(--pf-v5-global--spacer--lg);
18
18
  --pf-v5-c-pagination--m-compact--child--MarginRight: var(--pf-v5-global--spacer--sm);
19
- --pf-v5-c-pagination--c-options-menu__toggle--FontSize: var(--pf-v5-global--FontSize--sm);
19
+ --pf-v5-c-pagination--c-menu-toggle--FontSize: var(--pf-v5-global--FontSize--sm);
20
20
  --pf-v5-c-pagination__nav--Display: none;
21
21
  --pf-v5-c-pagination--m-display-summary__nav--Display: none;
22
22
  --pf-v5-c-pagination--m-display-full__nav--Display: inline-flex;
@@ -60,9 +60,9 @@
60
60
  --pf-v5-c-pagination--m-bottom--xl--PaddingRight: var(--pf-v5-global--spacer--lg);
61
61
  --pf-v5-c-pagination--m-bottom--xl--PaddingLeft: var(--pf-v5-global--spacer--lg);
62
62
  --pf-v5-c-pagination--m-bottom--m-sticky--BoxShadow: var(--pf-v5-global--BoxShadow--sm-top);
63
- --pf-v5-c-pagination--c-options-menu--Display: none;
64
- --pf-v5-c-pagination--m-display-summary--c-options-menu--Display: none;
65
- --pf-v5-c-pagination--m-display-full--c-options-menu--Display: inline-flex;
63
+ --pf-v5-c-pagination--c-menu-toggle--Display: none;
64
+ --pf-v5-c-pagination--m-display-summary--c-menu-toggle--Display: none;
65
+ --pf-v5-c-pagination--m-display-full--c-menu-toggle--Display: inline-flex;
66
66
  display: flex;
67
67
  flex-wrap: wrap;
68
68
  align-items: center;
@@ -79,7 +79,7 @@
79
79
  --pf-v5-c-pagination--m-bottom--child--MarginRight: var(--pf-v5-c-pagination--m-bottom--child--md--MarginRight);
80
80
  --pf-v5-c-pagination--m-bottom__nav-control--c-button--OutlineOffset: 0;
81
81
  --pf-v5-c-pagination--m-bottom--BoxShadow: none;
82
- --pf-v5-c-pagination--c-options-menu--Display: inline-flex;
82
+ --pf-v5-c-pagination--c-menu-toggle--Display: inline-flex;
83
83
  --pf-v5-c-pagination__nav--Display: inline-flex;
84
84
  --pf-v5-c-pagination__total-items--Display: none;
85
85
  }
@@ -95,8 +95,9 @@
95
95
  .pf-v5-c-pagination > *:not(:last-child):not(.pf-v5-c-pagination__total-items) {
96
96
  margin-right: var(--pf-v5-c-pagination--child--MarginRight);
97
97
  }
98
- .pf-v5-c-pagination .pf-v5-c-options-menu {
99
- display: var(--pf-v5-c-pagination--c-options-menu--Display);
98
+ .pf-v5-c-pagination .pf-v5-c-menu-toggle {
99
+ display: var(--pf-v5-c-pagination--c-menu-toggle--Display);
100
+ font-size: var(--pf-v5-c-pagination--c-menu-toggle--FontSize);
100
101
  }
101
102
  .pf-v5-c-pagination.pf-m-bottom {
102
103
  --pf-v5-c-pagination--child--MarginRight: var(--pf-v5-c-pagination--m-bottom--child--MarginRight);
@@ -126,7 +127,7 @@
126
127
  .pf-v5-c-pagination.pf-m-bottom .pf-v5-c-pagination__nav-page-select {
127
128
  display: none;
128
129
  }
129
- .pf-v5-c-pagination.pf-m-bottom .pf-v5-c-options-menu {
130
+ .pf-v5-c-pagination.pf-m-bottom .pf-v5-c-menu-toggle {
130
131
  position: absolute;
131
132
  display: block;
132
133
  }
@@ -149,7 +150,10 @@
149
150
  .pf-v5-c-pagination.pf-m-bottom .pf-v5-c-pagination__nav-page-select {
150
151
  display: block;
151
152
  }
152
- .pf-v5-c-pagination.pf-m-bottom .pf-v5-c-options-menu {
153
+ .pf-v5-c-pagination.pf-m-bottom .pf-v5-c-pagination__nav-page-select {
154
+ display: inline-flex;
155
+ }
156
+ .pf-v5-c-pagination.pf-m-bottom .pf-v5-c-menu-toggle {
153
157
  position: relative;
154
158
  }
155
159
  .pf-v5-c-pagination.pf-m-bottom .pf-v5-c-pagination__nav {
@@ -174,9 +178,6 @@
174
178
  padding: var(--pf-v5-c-pagination--m-sticky--md--PaddingTop) var(--pf-v5-c-pagination--m-sticky--md--PaddingRight) var(--pf-v5-c-pagination--m-sticky--md--PaddingBottom) var(--pf-v5-c-pagination--m-sticky--md--PaddingLeft);
175
179
  }
176
180
  }
177
- .pf-v5-c-pagination .pf-v5-c-options-menu__toggle {
178
- font-size: var(--pf-v5-c-pagination--c-options-menu__toggle--FontSize);
179
- }
180
181
  .pf-v5-c-pagination.pf-m-compact {
181
182
  --pf-v5-c-pagination--child--MarginRight: var(--pf-v5-c-pagination--m-compact--child--MarginRight);
182
183
  }
@@ -214,19 +215,18 @@
214
215
  .pf-v5-c-pagination__nav-page-select .pf-v5-c-form-control {
215
216
  width: var(--pf-v5-c-pagination__nav-page-select--c-form-control--Width);
216
217
  }
217
-
218
218
  .pf-v5-c-pagination__total-items {
219
219
  display: var(--pf-v5-c-pagination__total-items--Display);
220
220
  }
221
221
 
222
222
  .pf-v5-c-pagination.pf-m-display-summary {
223
223
  --pf-v5-c-pagination__nav--Display: var(--pf-v5-c-pagination--m-display-summary__nav--Display);
224
- --pf-v5-c-pagination--c-options-menu--Display: var(--pf-v5-c-pagination--m-display-summary--c-options-menu--Display);
224
+ --pf-v5-c-pagination--c-menu-toggle--Display: var(--pf-v5-c-pagination--m-display-summary--c-menu-toggle--Display);
225
225
  --pf-v5-c-pagination__total-items--Display: var(--pf-v5-c-pagination--m-display-summary__total-items--Display);
226
226
  }
227
227
  .pf-v5-c-pagination.pf-m-display-full {
228
228
  --pf-v5-c-pagination__nav--Display: var(--pf-v5-c-pagination--m-display-full__nav--Display);
229
- --pf-v5-c-pagination--c-options-menu--Display: var(--pf-v5-c-pagination--m-display-full--c-options-menu--Display);
229
+ --pf-v5-c-pagination--c-menu-toggle--Display: var(--pf-v5-c-pagination--m-display-full--c-menu-toggle--Display);
230
230
  --pf-v5-c-pagination__total-items--Display: var(--pf-v5-c-pagination--m-display-full__total-items--Display);
231
231
  }
232
232
  .pf-v5-c-pagination.pf-m-inset-none {
@@ -250,12 +250,12 @@
250
250
  @media (min-width: 576px) {
251
251
  .pf-v5-c-pagination.pf-m-display-summary-on-sm {
252
252
  --pf-v5-c-pagination__nav--Display: var(--pf-v5-c-pagination--m-display-summary__nav--Display);
253
- --pf-v5-c-pagination--c-options-menu--Display: var(--pf-v5-c-pagination--m-display-summary--c-options-menu--Display);
253
+ --pf-v5-c-pagination--c-menu-toggle--Display: var(--pf-v5-c-pagination--m-display-summary--c-menu-toggle--Display);
254
254
  --pf-v5-c-pagination__total-items--Display: var(--pf-v5-c-pagination--m-display-summary__total-items--Display);
255
255
  }
256
256
  .pf-v5-c-pagination.pf-m-display-full-on-sm {
257
257
  --pf-v5-c-pagination__nav--Display: var(--pf-v5-c-pagination--m-display-full__nav--Display);
258
- --pf-v5-c-pagination--c-options-menu--Display: var(--pf-v5-c-pagination--m-display-full--c-options-menu--Display);
258
+ --pf-v5-c-pagination--c-menu-toggle--Display: var(--pf-v5-c-pagination--m-display-full--c-menu-toggle--Display);
259
259
  --pf-v5-c-pagination__total-items--Display: var(--pf-v5-c-pagination--m-display-full__total-items--Display);
260
260
  }
261
261
  .pf-v5-c-pagination.pf-m-inset-none-on-sm {
@@ -280,12 +280,12 @@
280
280
  @media (min-width: 768px) {
281
281
  .pf-v5-c-pagination.pf-m-display-summary-on-md {
282
282
  --pf-v5-c-pagination__nav--Display: var(--pf-v5-c-pagination--m-display-summary__nav--Display);
283
- --pf-v5-c-pagination--c-options-menu--Display: var(--pf-v5-c-pagination--m-display-summary--c-options-menu--Display);
283
+ --pf-v5-c-pagination--c-menu-toggle--Display: var(--pf-v5-c-pagination--m-display-summary--c-menu-toggle--Display);
284
284
  --pf-v5-c-pagination__total-items--Display: var(--pf-v5-c-pagination--m-display-summary__total-items--Display);
285
285
  }
286
286
  .pf-v5-c-pagination.pf-m-display-full-on-md {
287
287
  --pf-v5-c-pagination__nav--Display: var(--pf-v5-c-pagination--m-display-full__nav--Display);
288
- --pf-v5-c-pagination--c-options-menu--Display: var(--pf-v5-c-pagination--m-display-full--c-options-menu--Display);
288
+ --pf-v5-c-pagination--c-menu-toggle--Display: var(--pf-v5-c-pagination--m-display-full--c-menu-toggle--Display);
289
289
  --pf-v5-c-pagination__total-items--Display: var(--pf-v5-c-pagination--m-display-full__total-items--Display);
290
290
  }
291
291
  .pf-v5-c-pagination.pf-m-inset-none-on-md {
@@ -310,12 +310,12 @@
310
310
  @media (min-width: 992px) {
311
311
  .pf-v5-c-pagination.pf-m-display-summary-on-lg {
312
312
  --pf-v5-c-pagination__nav--Display: var(--pf-v5-c-pagination--m-display-summary__nav--Display);
313
- --pf-v5-c-pagination--c-options-menu--Display: var(--pf-v5-c-pagination--m-display-summary--c-options-menu--Display);
313
+ --pf-v5-c-pagination--c-menu-toggle--Display: var(--pf-v5-c-pagination--m-display-summary--c-menu-toggle--Display);
314
314
  --pf-v5-c-pagination__total-items--Display: var(--pf-v5-c-pagination--m-display-summary__total-items--Display);
315
315
  }
316
316
  .pf-v5-c-pagination.pf-m-display-full-on-lg {
317
317
  --pf-v5-c-pagination__nav--Display: var(--pf-v5-c-pagination--m-display-full__nav--Display);
318
- --pf-v5-c-pagination--c-options-menu--Display: var(--pf-v5-c-pagination--m-display-full--c-options-menu--Display);
318
+ --pf-v5-c-pagination--c-menu-toggle--Display: var(--pf-v5-c-pagination--m-display-full--c-menu-toggle--Display);
319
319
  --pf-v5-c-pagination__total-items--Display: var(--pf-v5-c-pagination--m-display-full__total-items--Display);
320
320
  }
321
321
  .pf-v5-c-pagination.pf-m-inset-none-on-lg {
@@ -340,12 +340,12 @@
340
340
  @media (min-width: 1200px) {
341
341
  .pf-v5-c-pagination.pf-m-display-summary-on-xl {
342
342
  --pf-v5-c-pagination__nav--Display: var(--pf-v5-c-pagination--m-display-summary__nav--Display);
343
- --pf-v5-c-pagination--c-options-menu--Display: var(--pf-v5-c-pagination--m-display-summary--c-options-menu--Display);
343
+ --pf-v5-c-pagination--c-menu-toggle--Display: var(--pf-v5-c-pagination--m-display-summary--c-menu-toggle--Display);
344
344
  --pf-v5-c-pagination__total-items--Display: var(--pf-v5-c-pagination--m-display-summary__total-items--Display);
345
345
  }
346
346
  .pf-v5-c-pagination.pf-m-display-full-on-xl {
347
347
  --pf-v5-c-pagination__nav--Display: var(--pf-v5-c-pagination--m-display-full__nav--Display);
348
- --pf-v5-c-pagination--c-options-menu--Display: var(--pf-v5-c-pagination--m-display-full--c-options-menu--Display);
348
+ --pf-v5-c-pagination--c-menu-toggle--Display: var(--pf-v5-c-pagination--m-display-full--c-menu-toggle--Display);
349
349
  --pf-v5-c-pagination__total-items--Display: var(--pf-v5-c-pagination--m-display-full__total-items--Display);
350
350
  }
351
351
  .pf-v5-c-pagination.pf-m-inset-none-on-xl {
@@ -370,12 +370,12 @@
370
370
  @media (min-width: 1450px) {
371
371
  .pf-v5-c-pagination.pf-m-display-summary-on-2xl {
372
372
  --pf-v5-c-pagination__nav--Display: var(--pf-v5-c-pagination--m-display-summary__nav--Display);
373
- --pf-v5-c-pagination--c-options-menu--Display: var(--pf-v5-c-pagination--m-display-summary--c-options-menu--Display);
373
+ --pf-v5-c-pagination--c-menu-toggle--Display: var(--pf-v5-c-pagination--m-display-summary--c-menu-toggle--Display);
374
374
  --pf-v5-c-pagination__total-items--Display: var(--pf-v5-c-pagination--m-display-summary__total-items--Display);
375
375
  }
376
376
  .pf-v5-c-pagination.pf-m-display-full-on-2xl {
377
377
  --pf-v5-c-pagination__nav--Display: var(--pf-v5-c-pagination--m-display-full__nav--Display);
378
- --pf-v5-c-pagination--c-options-menu--Display: var(--pf-v5-c-pagination--m-display-full--c-options-menu--Display);
378
+ --pf-v5-c-pagination--c-menu-toggle--Display: var(--pf-v5-c-pagination--m-display-full--c-menu-toggle--Display);
379
379
  --pf-v5-c-pagination__total-items--Display: var(--pf-v5-c-pagination--m-display-full__total-items--Display);
380
380
  }
381
381
  .pf-v5-c-pagination.pf-m-inset-none-on-2xl {
@@ -2,6 +2,7 @@ import './pagination.css';
2
2
  declare const _default: {
3
3
  "button": "pf-v5-c-button",
4
4
  "formControl": "pf-v5-c-form-control",
5
+ "menuToggle": "pf-v5-c-menu-toggle",
5
6
  "modifiers": {
6
7
  "bottom": "pf-m-bottom",
7
8
  "static": "pf-m-static",
@@ -59,8 +60,6 @@ declare const _default: {
59
60
  "insetXlOn_2xl": "pf-m-inset-xl-on-2xl",
60
61
  "inset_2xlOn_2xl": "pf-m-inset-2xl-on-2xl"
61
62
  },
62
- "optionsMenu": "pf-v5-c-options-menu",
63
- "optionsMenuToggle": "pf-v5-c-options-menu__toggle",
64
63
  "pagination": "pf-v5-c-pagination",
65
64
  "paginationNav": "pf-v5-c-pagination__nav",
66
65
  "paginationNavControl": "pf-v5-c-pagination__nav-control",
@@ -4,6 +4,7 @@ require('./pagination.css');
4
4
  exports.default = {
5
5
  "button": "pf-v5-c-button",
6
6
  "formControl": "pf-v5-c-form-control",
7
+ "menuToggle": "pf-v5-c-menu-toggle",
7
8
  "modifiers": {
8
9
  "bottom": "pf-m-bottom",
9
10
  "static": "pf-m-static",
@@ -61,8 +62,6 @@ exports.default = {
61
62
  "insetXlOn_2xl": "pf-m-inset-xl-on-2xl",
62
63
  "inset_2xlOn_2xl": "pf-m-inset-2xl-on-2xl"
63
64
  },
64
- "optionsMenu": "pf-v5-c-options-menu",
65
- "optionsMenuToggle": "pf-v5-c-options-menu__toggle",
66
65
  "pagination": "pf-v5-c-pagination",
67
66
  "paginationNav": "pf-v5-c-pagination__nav",
68
67
  "paginationNavControl": "pf-v5-c-pagination__nav-control",
@@ -2,6 +2,7 @@ import './pagination.css';
2
2
  export default {
3
3
  "button": "pf-v5-c-button",
4
4
  "formControl": "pf-v5-c-form-control",
5
+ "menuToggle": "pf-v5-c-menu-toggle",
5
6
  "modifiers": {
6
7
  "bottom": "pf-m-bottom",
7
8
  "static": "pf-m-static",
@@ -59,8 +60,6 @@ export default {
59
60
  "insetXlOn_2xl": "pf-m-inset-xl-on-2xl",
60
61
  "inset_2xlOn_2xl": "pf-m-inset-2xl-on-2xl"
61
62
  },
62
- "optionsMenu": "pf-v5-c-options-menu",
63
- "optionsMenuToggle": "pf-v5-c-options-menu__toggle",
64
63
  "pagination": "pf-v5-c-pagination",
65
64
  "paginationNav": "pf-v5-c-pagination__nav",
66
65
  "paginationNavControl": "pf-v5-c-pagination__nav-control",
@@ -1,60 +1,60 @@
1
1
  :root {
2
- --pf-v5-global--Blue--50: #def3ff;
3
- --pf-v5-global--Blue--200: #7dc3e8;
2
+ --pf-v5-global--palette--blue-50: #def3ff;
3
+ --pf-v5-global--palette--blue-200: #7dc3e8;
4
4
  }
5
5
 
6
- tr.pf-c-table__editable-row:hover,
7
- tr.pf-c-table__editable-row.pf-m-editing {
8
- background: var(--pf-v5-global--Blue--50) !important;
6
+ tr.pf-v5-c-table__editable-row:hover,
7
+ tr.pf-v5-c-table__editable-row.pf-m-editing {
8
+ background: var(--pf-v5-global--palette--blue-50) !important;
9
9
  }
10
- tr.pf-c-table__editable-row:hover td,
11
- tr.pf-c-table__editable-row.pf-m-editing td {
12
- border-bottom: 1px solid var(--pf-v5-global--Blue--200) !important;
13
- border-top: 1px solid var(--pf-v5-global--Blue--200) !important;
10
+ tr.pf-v5-c-table__editable-row:hover td,
11
+ tr.pf-v5-c-table__editable-row.pf-m-editing td {
12
+ border-bottom: 1px solid var(--pf-v5-global--palette--blue-200) !important;
13
+ border-top: 1px solid var(--pf-v5-global--palette--blue-200) !important;
14
14
  }
15
- tr.pf-c-table__editable-row:hover td:first-child,
16
- tr.pf-c-table__editable-row.pf-m-editing td:first-child {
17
- border-left: 1px solid var(--pf-v5-global--Blue--200) !important;
15
+ tr.pf-v5-c-table__editable-row:hover td:first-child,
16
+ tr.pf-v5-c-table__editable-row.pf-m-editing td:first-child {
17
+ border-left: 1px solid var(--pf-v5-global--palette--blue-200) !important;
18
18
  }
19
- tr.pf-c-table__editable-row:hover td:last-child,
20
- tr.pf-c-table__editable-row.pf-m-editing td:last-child {
21
- border-right: 1px solid var(--pf-v5-global--Blue--200) !important;
19
+ tr.pf-v5-c-table__editable-row:hover td:last-child,
20
+ tr.pf-v5-c-table__editable-row.pf-m-editing td:last-child {
21
+ border-right: 1px solid var(--pf-v5-global--palette--blue-200) !important;
22
22
  }
23
- tr.pf-c-table__editable-row.pf-m-table-editing-first-row {
24
- border-top: 3px solid var(--pf-v5-global--Blue--200) !important;
23
+ tr.pf-v5-c-table__editable-row.pf-m-table-editing-first-row {
24
+ border-top: 3px solid var(--pf-v5-global--palette--blue-200) !important;
25
25
  }
26
- tr.pf-c-table__editable-row.pf-m-table-editing-last-row {
27
- border-bottom: 3px solid var(--pf-v5-global--Blue--200) !important;
26
+ tr.pf-v5-c-table__editable-row.pf-m-table-editing-last-row {
27
+ border-bottom: 3px solid var(--pf-v5-global--palette--blue-200) !important;
28
28
  }
29
- tr.pf-c-table__editable-row input {
29
+ tr.pf-v5-c-table__editable-row input {
30
30
  display: block;
31
31
  background: var(--pf-v5-global--BackgroundColor--100);
32
- border: 1px solid var(--pf-v5-global--BorderColor);
32
+ border: 1px solid var(--pf-v5-global--BorderColor--100);
33
33
  }
34
- tr.pf-c-table__editable-row input:hover {
34
+ tr.pf-v5-c-table__editable-row input:hover {
35
35
  cursor: text;
36
36
  }
37
37
 
38
- .pf-c-table__inline-edit-buttons {
38
+ .pf-v5-c-table__inline-edit-buttons {
39
39
  position: fixed;
40
40
  z-index: 1000;
41
41
  padding: 4px;
42
42
  margin: 0;
43
- background: var(--pf-v5-global--Blue--50);
44
- border: 1px solid var(--pf-v5-global--Blue--200);
43
+ background: var(--pf-v5-global--palette--blue-50);
44
+ border: 1px solid var(--pf-v5-global--palette--blue-200);
45
45
  }
46
- .pf-c-table__inline-edit-buttons.pf-m-top {
46
+ .pf-v5-c-table__inline-edit-buttons.pf-m-top {
47
47
  border-bottom: 0;
48
48
  }
49
- .pf-c-table__inline-edit-buttons.pf-m-bottom {
49
+ .pf-v5-c-table__inline-edit-buttons.pf-m-bottom {
50
50
  border-top: 0;
51
51
  }
52
- .pf-c-table__inline-edit-buttons.pf-m-bold {
52
+ .pf-v5-c-table__inline-edit-buttons.pf-m-bold {
53
53
  border-width: 3px;
54
54
  }
55
- .pf-c-table__inline-edit-buttons button {
55
+ .pf-v5-c-table__inline-edit-buttons button {
56
56
  margin-left: 4px;
57
57
  }
58
- .pf-c-table__inline-edit-buttons button:first-child {
58
+ .pf-v5-c-table__inline-edit-buttons button:first-child {
59
59
  margin-left: 0;
60
60
  }
@@ -8,7 +8,7 @@ declare const _default: {
8
8
  "bottom": "pf-m-bottom",
9
9
  "bold": "pf-m-bold"
10
10
  },
11
- "tableEditableRow": "pf-c-table__editable-row",
12
- "tableInlineEditButtons": "pf-c-table__inline-edit-buttons"
11
+ "tableEditableRow": "pf-v5-c-table__editable-row",
12
+ "tableInlineEditButtons": "pf-v5-c-table__inline-edit-buttons"
13
13
  };
14
14
  export default _default;
@@ -10,6 +10,6 @@ exports.default = {
10
10
  "bottom": "pf-m-bottom",
11
11
  "bold": "pf-m-bold"
12
12
  },
13
- "tableEditableRow": "pf-c-table__editable-row",
14
- "tableInlineEditButtons": "pf-c-table__inline-edit-buttons"
13
+ "tableEditableRow": "pf-v5-c-table__editable-row",
14
+ "tableInlineEditButtons": "pf-v5-c-table__inline-edit-buttons"
15
15
  };
@@ -8,6 +8,6 @@ export default {
8
8
  "bottom": "pf-m-bottom",
9
9
  "bold": "pf-m-bold"
10
10
  },
11
- "tableEditableRow": "pf-c-table__editable-row",
12
- "tableInlineEditButtons": "pf-c-table__inline-edit-buttons"
11
+ "tableEditableRow": "pf-v5-c-table__editable-row",
12
+ "tableInlineEditButtons": "pf-v5-c-table__inline-edit-buttons"
13
13
  };
@@ -48,6 +48,7 @@
48
48
  }
49
49
 
50
50
  .pf-v5-c-toolbar {
51
+ --pf-v5-c-toolbar--AlignItems--base: flex-start;
51
52
  --pf-v5-c-toolbar--BackgroundColor: var(--pf-v5-global--BackgroundColor--100);
52
53
  --pf-v5-c-toolbar--RowGap--base: var(--pf-v5-global--spacer--lg);
53
54
  --pf-v5-c-toolbar--RowGap: var(--pf-v5-c-toolbar--RowGap--base);
@@ -57,18 +58,20 @@
57
58
  --pf-v5-c-toolbar__item--Display: block;
58
59
  --pf-v5-c-toolbar__item--MinWidth--base: auto;
59
60
  --pf-v5-c-toolbar__item--AlignSelf: auto;
61
+ --pf-v5-c-toolbar__item--AlignItems: var(--pf-v5-c-toolbar--AlignItems--base);
60
62
  --pf-v5-c-toolbar__group--Display: flex;
61
- --pf-v5-c-toolbar__group--AlignItems: baseline;
63
+ --pf-v5-c-toolbar__group--AlignItems: var(--pf-v5-c-toolbar--AlignItems--base);
62
64
  --pf-v5-c-toolbar__group--AlignSelf: auto;
63
65
  --pf-v5-c-toolbar__group--RowGap: var(--pf-v5-c-toolbar--item--RowGap--base);
64
66
  --pf-v5-c-toolbar--m-sticky--ZIndex: var(--pf-v5-global--ZIndex--xs);
65
67
  --pf-v5-c-toolbar--m-sticky--BoxShadow: var(--pf-v5-global--BoxShadow--sm-bottom);
66
68
  --pf-v5-c-toolbar__content--Display: flex;
69
+ --pf-v5-c-toolbar__content--AlignItems: var(--pf-v5-c-toolbar--AlignItems--base);
67
70
  --pf-v5-c-toolbar__content--RowGap: var(--pf-v5-c-toolbar--RowGap--base);
68
71
  --pf-v5-c-toolbar__content--PaddingRight: var(--pf-v5-global--spacer--md);
69
72
  --pf-v5-c-toolbar__content--PaddingLeft: var(--pf-v5-global--spacer--md);
70
73
  --pf-v5-c-toolbar__content-section--Display: flex;
71
- --pf-v5-c-toolbar__content-section--AlignItems: baseline;
74
+ --pf-v5-c-toolbar__content-section--AlignItems: var(--pf-v5-c-toolbar--AlignItems--base);
72
75
  --pf-v5-c-toolbar__content-section--RowGap: var(--pf-v5-c-toolbar--item--RowGap--base);
73
76
  --pf-v5-c-toolbar--m-page-insets--inset: var(--pf-v5-global--spacer--md);
74
77
  --pf-v5-c-toolbar--m-page-insets--xl--inset: var(--pf-v5-global--spacer--lg);
@@ -87,8 +90,8 @@
87
90
  --pf-v5-c-toolbar__group--m-chip-container__item--MarginTop: var(--pf-v5-global--spacer--md);
88
91
  --pf-v5-c-toolbar--spacer--base: var(--pf-v5-global--spacer--md);
89
92
  --pf-v5-c-toolbar__item--spacer: var(--pf-v5-c-toolbar--spacer--base);
90
- --pf-v5-c-toolbar__group--spacer: var(--pf-v5-c-toolbar--spacer--base);
91
93
  --pf-v5-c-toolbar__item--Width: auto;
94
+ --pf-v5-c-toolbar__group--spacer: var(--pf-v5-c-toolbar--spacer--base);
92
95
  --pf-v5-c-toolbar__group--m-toggle-group--spacer: var(--pf-v5-global--spacer--sm);
93
96
  --pf-v5-c-toolbar__group--m-toggle-group--m-show--spacer: var(--pf-v5-c-toolbar__group--spacer);
94
97
  --pf-v5-c-toolbar__group--m-icon-button-group--spacer: var(--pf-v5-c-toolbar__group--spacer);
@@ -113,7 +116,7 @@
113
116
  --pf-v5-c-toolbar--m-full-height--PaddingTop: 0;
114
117
  --pf-v5-c-toolbar--m-full-height--PaddingBottom: 0;
115
118
  --pf-v5-c-toolbar--m-full-height__item--Display: flex;
116
- --pf-v5-c-toolbar--m-full-height__item--AlignItems: center;
119
+ --pf-v5-c-toolbar--m-full-height__item--AlignItems: var(--pf-v5-c-toolbar__group--AlignItems);
117
120
  position: relative;
118
121
  display: grid;
119
122
  row-gap: var(--pf-v5-c-toolbar--RowGap);
@@ -163,8 +166,8 @@
163
166
  .pf-v5-c-toolbar.pf-m-full-height .pf-v5-c-toolbar__item {
164
167
  align-self: stretch;
165
168
  }
166
- .pf-v5-c-toolbar.pf-m-full-height .pf-v5-c-toolbar__item {
167
- align-items: var(--pf-v5-c-toolbar--m-full-height__item--AlignItems);
169
+ .pf-v5-c-toolbar.pf-m-full-height :where(.pf-v5-c-toolbar__item) {
170
+ --pf-v5-c-toolbar__item--AlignItems: var(--pf-v5-c-toolbar--m-full-height__item--AlignItems);
168
171
  }
169
172
  .pf-v5-c-toolbar.pf-m-static,
170
173
  .pf-v5-c-toolbar.pf-m-static .pf-v5-c-toolbar__content {
@@ -186,27 +189,39 @@
186
189
  .pf-v5-c-toolbar__group > .pf-v5-c-divider.pf-m-vertical:last-child {
187
190
  --pf-v5-c-toolbar--spacer: 0;
188
191
  }
189
-
190
- .pf-v5-c-toolbar__group {
191
- --pf-v5-c-toolbar--spacer: var(--pf-v5-c-toolbar__group--spacer);
192
- --pf-v5-hidden-visible--visible--Display: var(--pf-v5-c-toolbar__group--Display);
193
- row-gap: var(--pf-v5-c-toolbar__group--RowGap);
194
- align-items: var(--pf-v5-c-toolbar__group--AlignItems);
195
- align-self: var(--pf-v5-c-toolbar__group--AlignSelf);
196
- margin-right: var(--pf-v5-c-toolbar--spacer);
192
+ .pf-v5-c-toolbar__content-section.pf-m-align-items-start,
193
+ .pf-v5-c-toolbar__group.pf-m-align-items-start {
194
+ align-items: flex-start;
197
195
  }
196
+ .pf-v5-c-toolbar__content-section.pf-m-align-items-center,
198
197
  .pf-v5-c-toolbar__group.pf-m-align-items-center {
199
198
  align-items: center;
200
199
  }
200
+ .pf-v5-c-toolbar__content-section.pf-m-align-items-baseline,
201
201
  .pf-v5-c-toolbar__group.pf-m-align-items-baseline {
202
202
  align-items: baseline;
203
203
  }
204
+ .pf-v5-c-toolbar__content-section.pf-m-align-self-start,
205
+ .pf-v5-c-toolbar__group.pf-m-align-self-start {
206
+ align-self: flex-start;
207
+ }
208
+ .pf-v5-c-toolbar__content-section.pf-m-align-self-center,
204
209
  .pf-v5-c-toolbar__group.pf-m-align-self-center {
205
210
  align-self: center;
206
211
  }
212
+ .pf-v5-c-toolbar__content-section.pf-m-align-self-baseline,
207
213
  .pf-v5-c-toolbar__group.pf-m-align-self-baseline {
208
214
  align-self: baseline;
209
215
  }
216
+
217
+ .pf-v5-c-toolbar__group {
218
+ --pf-v5-c-toolbar--spacer: var(--pf-v5-c-toolbar__group--spacer);
219
+ --pf-v5-hidden-visible--visible--Display: var(--pf-v5-c-toolbar__group--Display);
220
+ row-gap: var(--pf-v5-c-toolbar__group--RowGap);
221
+ align-items: var(--pf-v5-c-toolbar__group--AlignItems);
222
+ align-self: var(--pf-v5-c-toolbar__group--AlignSelf);
223
+ margin-right: var(--pf-v5-c-toolbar--spacer);
224
+ }
210
225
  .pf-v5-c-toolbar__group.pf-m-button-group {
211
226
  --pf-v5-c-toolbar--spacer: var(--pf-v5-c-toolbar__group--m-button-group--spacer);
212
227
  }
@@ -247,6 +262,7 @@
247
262
  --pf-v5-c-toolbar__item--Width--base: var(--pf-v5-c-toolbar__item--Width);
248
263
  --pf-v5-c-toolbar__item--MinWidth--base: var(--pf-v5-c-toolbar__item--MinWidth);
249
264
  --pf-v5-hidden-visible--visible--Display: var(--pf-v5-c-toolbar__item--Display);
265
+ align-items: var(--pf-v5-c-toolbar__item--AlignItems);
250
266
  align-self: var(--pf-v5-c-toolbar__item--AlignSelf);
251
267
  width: var(--pf-v5-c-toolbar__item--Width--base);
252
268
  min-width: var(--pf-v5-c-toolbar__item--MinWidth--base);
@@ -302,6 +318,18 @@
302
318
  --pf-v5-c-toolbar__item--MinWidth--base: var(--pf-v5-c-toolbar__item--MinWidth-on-2xl, var(--pf-v5-c-toolbar__item--MinWidth-on-xl, var(--pf-v5-c-toolbar__item--MinWidth-on-lg, var(--pf-v5-c-toolbar__item--MinWidth-on-md, var(--pf-v5-c-toolbar__item--MinWidth-on-sm, var(--pf-v5-c-toolbar__item--MinWidth))))));
303
319
  }
304
320
  }
321
+ .pf-v5-c-toolbar__item.pf-m-align-items-start {
322
+ align-items: flex-start;
323
+ }
324
+ .pf-v5-c-toolbar__item.pf-m-align-items-center {
325
+ align-items: center;
326
+ }
327
+ .pf-v5-c-toolbar__item.pf-m-align-items-baseline {
328
+ align-items: baseline;
329
+ }
330
+ .pf-v5-c-toolbar__item.pf-m-align-self-start {
331
+ align-self: flex-start;
332
+ }
305
333
  .pf-v5-c-toolbar__item.pf-m-align-self-center {
306
334
  align-self: center;
307
335
  }
@@ -358,7 +386,7 @@
358
386
  --pf-v5-hidden-visible--visible--Display: var(--pf-v5-c-toolbar__content--Display);
359
387
  position: relative;
360
388
  row-gap: var(--pf-v5-c-toolbar__content--RowGap);
361
- align-items: center;
389
+ align-items: var(--pf-v5-c-toolbar__content--AlignItems);
362
390
  padding-right: var(--pf-v5-c-toolbar__content--PaddingRight);
363
391
  padding-left: var(--pf-v5-c-toolbar__content--PaddingLeft);
364
392
  }
@@ -369,9 +397,15 @@
369
397
  align-items: var(--pf-v5-c-toolbar__content-section--AlignItems);
370
398
  width: 100%;
371
399
  }
400
+ .pf-v5-c-toolbar__content-section.pf-m-align-items-start {
401
+ align-items: flex-start;
402
+ }
372
403
  .pf-v5-c-toolbar__content-section.pf-m-align-items-center {
373
404
  align-items: center;
374
405
  }
406
+ .pf-v5-c-toolbar__content-section.pf-m-align-items-baseline {
407
+ align-items: baseline;
408
+ }
375
409
 
376
410
  .pf-v5-c-toolbar__expandable-content {
377
411
  position: absolute;
@@ -20,8 +20,10 @@ declare const _default: {
20
20
  "fullHeight": "pf-m-full-height",
21
21
  "static": "pf-m-static",
22
22
  "vertical": "pf-m-vertical",
23
+ "alignItemsStart": "pf-m-align-items-start",
23
24
  "alignItemsCenter": "pf-m-align-items-center",
24
25
  "alignItemsBaseline": "pf-m-align-items-baseline",
26
+ "alignSelfStart": "pf-m-align-self-start",
25
27
  "alignSelfCenter": "pf-m-align-self-center",
26
28
  "alignSelfBaseline": "pf-m-align-self-baseline",
27
29
  "buttonGroup": "pf-m-button-group",
@@ -22,8 +22,10 @@ exports.default = {
22
22
  "fullHeight": "pf-m-full-height",
23
23
  "static": "pf-m-static",
24
24
  "vertical": "pf-m-vertical",
25
+ "alignItemsStart": "pf-m-align-items-start",
25
26
  "alignItemsCenter": "pf-m-align-items-center",
26
27
  "alignItemsBaseline": "pf-m-align-items-baseline",
28
+ "alignSelfStart": "pf-m-align-self-start",
27
29
  "alignSelfCenter": "pf-m-align-self-center",
28
30
  "alignSelfBaseline": "pf-m-align-self-baseline",
29
31
  "buttonGroup": "pf-m-button-group",
@@ -20,8 +20,10 @@ export default {
20
20
  "fullHeight": "pf-m-full-height",
21
21
  "static": "pf-m-static",
22
22
  "vertical": "pf-m-vertical",
23
+ "alignItemsStart": "pf-m-align-items-start",
23
24
  "alignItemsCenter": "pf-m-align-items-center",
24
25
  "alignItemsBaseline": "pf-m-align-items-baseline",
26
+ "alignSelfStart": "pf-m-align-self-start",
25
27
  "alignSelfCenter": "pf-m-align-self-center",
26
28
  "alignSelfBaseline": "pf-m-align-self-baseline",
27
29
  "buttonGroup": "pf-m-button-group",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@patternfly/react-styles",
3
- "version": "5.0.0-alpha.16",
3
+ "version": "5.0.0-alpha.18",
4
4
  "main": "dist/js/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "types": "dist/esm/index.d.ts",
@@ -19,7 +19,7 @@
19
19
  "clean": "rimraf dist css"
20
20
  },
21
21
  "devDependencies": {
22
- "@patternfly/patternfly": "5.0.0-alpha.64",
22
+ "@patternfly/patternfly": "5.0.0-alpha.69",
23
23
  "camel-case": "^3.0.0",
24
24
  "css": "^2.2.3",
25
25
  "fs-extra": "^11.1.1",
@@ -29,5 +29,5 @@
29
29
  "typescript": "^4.7.4"
30
30
  },
31
31
  "license": "MIT",
32
- "gitHead": "ff94267709508525b7fe8dd1da0b7ea6a33854aa"
32
+ "gitHead": "026c5f69bb0f7280c796d28f2d3fd52891793229"
33
33
  }
@@ -1,14 +1,14 @@
1
- .pf-c-console {
1
+ .pf-v5-c-console {
2
2
  display: grid;
3
3
  grid-template-areas:
4
4
  'actions-main actions-extra'
5
5
  'main main';
6
6
  row-gap: var(--pf-v5-global--spacer--md);
7
7
  }
8
- .pf-c-console__actions {
8
+ .pf-v5-c-console__actions {
9
9
  grid-area: actions-main;
10
10
  display: flex;
11
11
  }
12
- .pf-c-console__actions > div {
12
+ .pf-v5-c-console__actions > div {
13
13
  margin-right: var(--pf-v5-global--spacer--sm);
14
14
  }
@@ -1,4 +1,4 @@
1
- .pf-c-console__desktop-viewer {
1
+ .pf-v5-c-console__desktop-viewer {
2
2
  grid-area: main;
3
3
  display: grid;
4
4
  gap: var(--pf-v5-global--spacer--md);
@@ -1,11 +1,11 @@
1
- .pf-c-console__serial {
1
+ .pf-v5-c-console__serial {
2
2
  grid-area: main;
3
3
  }
4
- .pf-c-console__actions-serial {
4
+ .pf-v5-c-console__actions-serial {
5
5
  grid-area: actions-extra;
6
6
  display: flex;
7
7
  justify-content: flex-end;
8
8
  }
9
- .pf-c-console__actions-serial > button {
9
+ .pf-v5-c-console__actions-serial > button {
10
10
  margin-right: var(--pf-v5-global--spacer--sm);
11
11
  }
@@ -1,7 +1,7 @@
1
- .pf-c-console__vnc {
1
+ .pf-v5-c-console__vnc {
2
2
  grid-area: main;
3
3
  }
4
- .pf-c-console__actions-vnc {
4
+ .pf-v5-c-console__actions-vnc {
5
5
  grid-area: actions-extra;
6
6
  display: flex;
7
7
  flex-wrap: wrap;
@@ -1,60 +1,60 @@
1
1
  :root {
2
- --pf-v5-global--Blue--50: #def3ff;
3
- --pf-v5-global--Blue--200: #7dc3e8;
2
+ --pf-v5-global--palette--blue-50: #def3ff;
3
+ --pf-v5-global--palette--blue-200: #7dc3e8;
4
4
  }
5
5
 
6
- tr.pf-c-table__editable-row:hover,
7
- tr.pf-c-table__editable-row.pf-m-editing {
8
- background: var(--pf-v5-global--Blue--50) !important;
6
+ tr.pf-v5-c-table__editable-row:hover,
7
+ tr.pf-v5-c-table__editable-row.pf-m-editing {
8
+ background: var(--pf-v5-global--palette--blue-50) !important;
9
9
  }
10
- tr.pf-c-table__editable-row:hover td,
11
- tr.pf-c-table__editable-row.pf-m-editing td {
12
- border-bottom: 1px solid var(--pf-v5-global--Blue--200) !important;
13
- border-top: 1px solid var(--pf-v5-global--Blue--200) !important;
10
+ tr.pf-v5-c-table__editable-row:hover td,
11
+ tr.pf-v5-c-table__editable-row.pf-m-editing td {
12
+ border-bottom: 1px solid var(--pf-v5-global--palette--blue-200) !important;
13
+ border-top: 1px solid var(--pf-v5-global--palette--blue-200) !important;
14
14
  }
15
- tr.pf-c-table__editable-row:hover td:first-child,
16
- tr.pf-c-table__editable-row.pf-m-editing td:first-child {
17
- border-left: 1px solid var(--pf-v5-global--Blue--200) !important;
15
+ tr.pf-v5-c-table__editable-row:hover td:first-child,
16
+ tr.pf-v5-c-table__editable-row.pf-m-editing td:first-child {
17
+ border-left: 1px solid var(--pf-v5-global--palette--blue-200) !important;
18
18
  }
19
- tr.pf-c-table__editable-row:hover td:last-child,
20
- tr.pf-c-table__editable-row.pf-m-editing td:last-child {
21
- border-right: 1px solid var(--pf-v5-global--Blue--200) !important;
19
+ tr.pf-v5-c-table__editable-row:hover td:last-child,
20
+ tr.pf-v5-c-table__editable-row.pf-m-editing td:last-child {
21
+ border-right: 1px solid var(--pf-v5-global--palette--blue-200) !important;
22
22
  }
23
- tr.pf-c-table__editable-row.pf-m-table-editing-first-row {
24
- border-top: 3px solid var(--pf-v5-global--Blue--200) !important;
23
+ tr.pf-v5-c-table__editable-row.pf-m-table-editing-first-row {
24
+ border-top: 3px solid var(--pf-v5-global--palette--blue-200) !important;
25
25
  }
26
- tr.pf-c-table__editable-row.pf-m-table-editing-last-row {
27
- border-bottom: 3px solid var(--pf-v5-global--Blue--200) !important;
26
+ tr.pf-v5-c-table__editable-row.pf-m-table-editing-last-row {
27
+ border-bottom: 3px solid var(--pf-v5-global--palette--blue-200) !important;
28
28
  }
29
- tr.pf-c-table__editable-row input {
29
+ tr.pf-v5-c-table__editable-row input {
30
30
  display: block;
31
31
  background: var(--pf-v5-global--BackgroundColor--100);
32
- border: 1px solid var(--pf-v5-global--BorderColor);
32
+ border: 1px solid var(--pf-v5-global--BorderColor--100);
33
33
  }
34
- tr.pf-c-table__editable-row input:hover {
34
+ tr.pf-v5-c-table__editable-row input:hover {
35
35
  cursor: text;
36
36
  }
37
37
 
38
- .pf-c-table__inline-edit-buttons {
38
+ .pf-v5-c-table__inline-edit-buttons {
39
39
  position: fixed;
40
40
  z-index: 1000;
41
41
  padding: 4px;
42
42
  margin: 0;
43
- background: var(--pf-v5-global--Blue--50);
44
- border: 1px solid var(--pf-v5-global--Blue--200);
43
+ background: var(--pf-v5-global--palette--blue-50);
44
+ border: 1px solid var(--pf-v5-global--palette--blue-200);
45
45
  }
46
- .pf-c-table__inline-edit-buttons.pf-m-top {
46
+ .pf-v5-c-table__inline-edit-buttons.pf-m-top {
47
47
  border-bottom: 0;
48
48
  }
49
- .pf-c-table__inline-edit-buttons.pf-m-bottom {
49
+ .pf-v5-c-table__inline-edit-buttons.pf-m-bottom {
50
50
  border-top: 0;
51
51
  }
52
- .pf-c-table__inline-edit-buttons.pf-m-bold {
52
+ .pf-v5-c-table__inline-edit-buttons.pf-m-bold {
53
53
  border-width: 3px;
54
54
  }
55
- .pf-c-table__inline-edit-buttons button {
55
+ .pf-v5-c-table__inline-edit-buttons button {
56
56
  margin-left: 4px;
57
57
  }
58
- .pf-c-table__inline-edit-buttons button:first-child {
58
+ .pf-v5-c-table__inline-edit-buttons button:first-child {
59
59
  margin-left: 0;
60
60
  }