@patternfly/react-styles 6.0.0-alpha.4 → 6.0.0-alpha.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/css/assets/images/pf-background.svg +22 -0
  3. package/css/components/AboutModalBox/about-modal-box.css +4 -2
  4. package/css/components/BackgroundImage/background-image.css +5 -1
  5. package/css/components/Button/button.css +369 -348
  6. package/css/components/Button/button.d.ts +9 -7
  7. package/css/components/Button/button.js +9 -7
  8. package/css/components/Button/button.mjs +9 -7
  9. package/css/components/Check/check.css +17 -16
  10. package/css/components/DataList/data-list.css +101 -158
  11. package/css/components/DataList/data-list.d.ts +1 -2
  12. package/css/components/DataList/data-list.js +1 -2
  13. package/css/components/DataList/data-list.mjs +1 -2
  14. package/css/components/Divider/divider.css +97 -177
  15. package/css/components/Divider/divider.d.ts +1 -0
  16. package/css/components/Divider/divider.js +1 -0
  17. package/css/components/Divider/divider.mjs +1 -0
  18. package/css/components/Form/form.css +62 -114
  19. package/css/components/Form/form.d.ts +2 -6
  20. package/css/components/Form/form.js +2 -6
  21. package/css/components/Form/form.mjs +2 -6
  22. package/css/components/FormControl/form-control.css +86 -111
  23. package/css/components/FormControl/form-control.d.ts +1 -2
  24. package/css/components/FormControl/form-control.js +1 -2
  25. package/css/components/FormControl/form-control.mjs +1 -2
  26. package/css/components/Masthead/masthead.css +267 -435
  27. package/css/components/Masthead/masthead.d.ts +2 -38
  28. package/css/components/Masthead/masthead.js +2 -38
  29. package/css/components/Masthead/masthead.mjs +2 -38
  30. package/css/components/NotificationDrawer/notification-drawer.css +104 -115
  31. package/css/components/NotificationDrawer/notification-drawer.d.ts +3 -3
  32. package/css/components/NotificationDrawer/notification-drawer.js +3 -3
  33. package/css/components/NotificationDrawer/notification-drawer.mjs +3 -3
  34. package/css/components/Panel/panel.css +27 -23
  35. package/css/components/Panel/panel.d.ts +2 -2
  36. package/css/components/Panel/panel.js +2 -2
  37. package/css/components/Panel/panel.mjs +2 -2
  38. package/css/components/Progress/progress.css +31 -45
  39. package/css/components/Progress/progress.d.ts +1 -2
  40. package/css/components/Progress/progress.js +1 -2
  41. package/css/components/Progress/progress.mjs +1 -2
  42. package/css/components/Radio/radio.css +15 -11
  43. package/css/components/SimpleList/simple-list.css +1 -1
  44. package/css/components/Skeleton/skeleton.css +18 -20
  45. package/css/components/Skeleton/skeleton.d.ts +1 -2
  46. package/css/components/Skeleton/skeleton.js +1 -2
  47. package/css/components/Skeleton/skeleton.mjs +1 -2
  48. package/css/components/Slider/slider.css +34 -30
  49. package/css/components/Spinner/spinner.css +17 -34
  50. package/css/components/Switch/switch.css +41 -37
  51. package/css/components/Switch/switch.d.ts +1 -2
  52. package/css/components/Switch/switch.js +1 -2
  53. package/css/components/Switch/switch.mjs +1 -2
  54. package/css/components/TabContent/tab-content.css +17 -11
  55. package/css/components/TabContent/tab-content.d.ts +1 -1
  56. package/css/components/TabContent/tab-content.js +1 -1
  57. package/css/components/TabContent/tab-content.mjs +1 -1
  58. package/css/docs/components/Button/examples/Button.css +4 -0
  59. package/css/docs/components/Divider/examples/Divider.css +3 -1
  60. package/package.json +3 -3
@@ -1,102 +1,88 @@
1
+ :root,
1
2
  .pf-v5-c-form {
2
- --pf-v5-c-form--GridGap: var(--pf-v5-global--gutter--md);
3
- --pf-v5-c-form__group--m-action--MarginTop: var(--pf-v5-global--spacer--xl);
3
+ --pf-v5-c-form--GridGap: var(--pf-t--global--spacer--lg);
4
+ --pf-v5-c-form__group--Gap: var(--pf-t--global--spacer--sm);
5
+ --pf-v5-c-form__group--m-action--MarginTop: var(--pf-t--global--spacer--xl);
4
6
  --pf-v5-c-form--m-horizontal__group-label--md--GridColumnWidth: 9.375rem;
5
- --pf-v5-c-form--m-horizontal__group-label--md--GridColumnGap: var(--pf-v5-global--spacer--md);
7
+ --pf-v5-c-form--m-horizontal__group-label--md--GridColumnGap: var(--pf-t--global--spacer--md);
6
8
  --pf-v5-c-form--m-horizontal__group-control--md--GridColumnWidth: 1fr;
7
9
  --pf-v5-c-form--m-limit-width--MaxWidth: 55rem;
8
- --pf-v5-c-form--m-horizontal__group-label--md--PaddingTop: calc((((((var(--pf-v5-global--FontSize--md) * var(--pf-v5-global--LineHeight--md)) + (2 * var(--pf-v5-global--BorderWidth--sm))) - var(--pf-v5-global--FontSize--md)) / 2) + var(--pf-v5-global--FontSize--md)) - ((((var(--pf-v5-global--FontSize--sm) * var(--pf-v5-global--LineHeight--sm)) - var(--pf-v5-global--FontSize--sm)) / 2) + var(--pf-v5-global--FontSize--sm)) + var(--pf-v5-global--BorderWidth--sm));
9
- --pf-v5-c-form__group-label--PaddingBottom: var(--pf-v5-global--spacer--sm);
10
+ --pf-v5-c-form--m-horizontal__group-label--md--PaddingTop: calc((((((var(--pf-t--global--font--size--body--default) * var(--pf-t--global--font--line-height--body)) + (2 * var(--pf-t--global--border--width--control--default))) - var(--pf-t--global--font--size--body--default)) / 2) + var(--pf-t--global--font--size--body--default)) - ((((var(--pf-t--global--font--size--body--sm) * var(--pf-t--global--font--line-height--body)) - var(--pf-t--global--font--size--body--sm)) / 2) + var(--pf-t--global--font--size--body--sm)) + var(--pf-t--global--border--width--control--default));
11
+ --pf-v5-c-form__group-label--PaddingBottom: var(--pf-t--global--spacer--sm);
10
12
  --pf-v5-c-form--m-horizontal__group-label--m-no-padding--md--PaddingTop: 0;
11
- --pf-v5-c-form--m-horizontal__group-label--m-no-padding--md--TranslateY: calc(((((var(--pf-v5-global--FontSize--sm) * var(--pf-v5-global--LineHeight--sm)) - var(--pf-v5-global--FontSize--sm)) / 2) + var(--pf-v5-global--FontSize--sm)) - ((((var(--pf-v5-global--FontSize--md) * var(--pf-v5-global--LineHeight--sm)) - var(--pf-v5-global--FontSize--md)) / 2) + var(--pf-v5-global--FontSize--md)));
12
- --pf-v5-c-form__label--FontSize: var(--pf-v5-global--FontSize--sm);
13
- --pf-v5-c-form__label--LineHeight: var(--pf-v5-global--LineHeight--sm);
14
- --pf-v5-c-form__label--m-disabled--Color: var(--pf-v5-global--disabled-color--100);
13
+ --pf-v5-c-form--m-horizontal__group-label--m-no-padding--md--TranslateY: calc(((((var(--pf-t--global--font--size--body--sm) * var(--pf-t--global--font--line-height--body)) - var(--pf-t--global--font--size--body--sm)) / 2) + var(--pf-t--global--font--size--body--sm)) - ((((var(--pf-t--global--font--size--body--default) * var(--pf-t--global--font--line-height--body)) - var(--pf-t--global--font--size--body--default)) / 2) + var(--pf-t--global--font--size--body--default)));
14
+ --pf-v5-c-form__label--FontSize: var(--pf-t--global--font--size--body--sm);
15
+ --pf-v5-c-form__label--LineHeight: var(--pf-t--global--font--line-height--body);
16
+ --pf-v5-c-form__label--m-disabled--Color: var(--pf-t--global--text--color--disabled);
15
17
  --pf-v5-c-form__label--hover--Cursor: pointer;
16
18
  --pf-v5-c-form__label--m-disabled--hover--Cursor: not-allowed;
17
- --pf-v5-c-form__label-text--FontWeight: var(--pf-v5-global--FontWeight--bold);
18
- --pf-v5-c-form__label-required--MarginLeft: var(--pf-v5-global--spacer--xs);
19
- --pf-v5-c-form__label-required--FontSize: var(--pf-v5-global--FontSize--sm);
20
- --pf-v5-c-form__label-required--Color: var(--pf-v5-global--danger-color--100);
21
- --pf-v5-c-form__group-label-help--BackgroundColor: transparent;
22
- --pf-v5-c-form__group-label-help--PaddingTop: var(--pf-v5-global--spacer--xs);
23
- --pf-v5-c-form__group-label-help--PaddingRight: var(--pf-v5-global--spacer--xs);
24
- --pf-v5-c-form__group-label-help--PaddingBottom: var(--pf-v5-global--spacer--xs);
25
- --pf-v5-c-form__group-label-help--PaddingLeft: var(--pf-v5-global--spacer--xs);
26
- --pf-v5-c-form__group-label-help--MarginTop: calc(var(--pf-v5-c-form__group-label-help--PaddingTop) * -1);
27
- --pf-v5-c-form__group-label-help--MarginRight: calc(var(--pf-v5-c-form__group-label-help--PaddingRight) * -1);
28
- --pf-v5-c-form__group-label-help--MarginBottom: calc(var(--pf-v5-c-form__group-label-help--PaddingBottom) * -1);
29
- --pf-v5-c-form__group-label-help--MarginLeft: calc(var(--pf-v5-c-form__group-label-help--PaddingLeft) * -1 + var(--pf-v5-global--spacer--xs));
30
- --pf-v5-c-form__group-label-help--FontSize: var(--pf-v5-global--FontSize--sm);
31
- --pf-v5-c-form__group-label-help--TranslateY: 0.125rem;
32
- --pf-v5-c-form__group-label-help--Color: var(--pf-v5-global--Color--200);
33
- --pf-v5-c-form__group-label-help--hover--Color: var(--pf-v5-global--Color--100);
34
- --pf-v5-c-form__group-label-help--focus--Color: var(--pf-v5-global--Color--100);
35
- --pf-v5-c-form__group-label-info--MarginLeft: var(--pf-v5-global--spacer--sm);
36
- --pf-v5-c-form__group-label-info--FontSize: var(--pf-v5-global--FontSize--sm);
37
- --pf-v5-c-form__group-control--m-inline--child--MarginRight: var(--pf-v5-global--spacer--lg);
38
- --pf-v5-c-form__group-control__helper-text--MarginBottom: var(--pf-v5-global--spacer--xs);
39
- --pf-v5-c-form__group-control--m-stack--Gap: var(--pf-v5-global--spacer--sm);
19
+ --pf-v5-c-form__label-text--FontWeight: var(--pf-t--global--font--weight--body--bold);
20
+ --pf-v5-c-form__label-required--MarginLeft: var(--pf-t--global--spacer--xs);
21
+ --pf-v5-c-form__label-required--FontSize: var(--pf-t--global--font--size--body--sm);
22
+ --pf-v5-c-form__label-required--Color: var(--pf-t--global--color--status--danger--default);
23
+ --pf-v5-c-form__group-label-help--FontSize: var(--pf-t--global--font--size--body--sm);
24
+ --pf-v5-c-form__group-label-info--MarginLeft: var(--pf-t--global--spacer--sm);
25
+ --pf-v5-c-form__group-label-info--FontSize: var(--pf-t--global--font--size--body--sm);
26
+ --pf-v5-c-form__group-control--m-inline--child--MarginRight: var(--pf-t--global--spacer--lg);
27
+ --pf-v5-c-form__group-control__helper-text--MarginBottom: var(--pf-t--global--spacer--xs);
28
+ --pf-v5-c-form__group-control--Gap: var(--pf-t--global--spacer--sm);
29
+ --pf-v5-c-form__group-control--m-stack--Gap: var(--pf-t--global--spacer--sm);
40
30
  --pf-v5-c-form__group-control--m-stack__helper-text--MarginTop: calc(var(--pf-v5-c-form__group-control--m-stack--Gap) * -1 + var(--pf-v5-c-form__helper-text--MarginTop--base));
41
- --pf-v5-c-form__actions--child--MarginTop: var(--pf-v5-global--spacer--sm);
42
- --pf-v5-c-form__actions--child--MarginRight: var(--pf-v5-global--spacer--sm);
43
- --pf-v5-c-form__actions--child--MarginBottom: var(--pf-v5-global--spacer--sm);
44
- --pf-v5-c-form__actions--child--MarginLeft: var(--pf-v5-global--spacer--sm);
31
+ --pf-v5-c-form__actions--child--MarginTop: var(--pf-t--global--spacer--sm);
32
+ --pf-v5-c-form__actions--child--MarginRight: var(--pf-t--global--spacer--sm);
33
+ --pf-v5-c-form__actions--child--MarginBottom: var(--pf-t--global--spacer--sm);
34
+ --pf-v5-c-form__actions--child--MarginLeft: var(--pf-t--global--spacer--sm);
45
35
  --pf-v5-c-form__actions--MarginTop: calc(var(--pf-v5-c-form__actions--child--MarginTop) * -1);
46
36
  --pf-v5-c-form__actions--MarginRight: calc(var(--pf-v5-c-form__actions--child--MarginRight) * -1);
47
37
  --pf-v5-c-form__actions--MarginBottom: calc(var(--pf-v5-c-form__actions--child--MarginBottom) * -1);
48
38
  --pf-v5-c-form__actions--MarginLeft: calc(var(--pf-v5-c-form__actions--child--MarginLeft) * -1);
49
- --pf-v5-c-form__helper-text--MarginTop--base: var(--pf-v5-global--spacer--xs);
39
+ --pf-v5-c-form__helper-text--MarginTop--base: var(--pf-t--global--spacer--xs);
50
40
  --pf-v5-c-form__helper-text--MarginTop: var(--pf-v5-c-form__helper-text--MarginTop--base);
51
- --pf-v5-c-form__helper-text--FontSize: var(--pf-v5-global--FontSize--sm);
52
- --pf-v5-c-form__helper-text--Color: var(--pf-v5-global--Color--100);
53
- --pf-v5-c-form__helper-text-icon--FontSize: var(--pf-v5-global--FontSize--md);
54
- --pf-v5-c-form__helper-text-icon--MarginRight: var(--pf-v5-global--spacer--xs);
55
- --pf-v5-c-form__helper-text--m-success--Color: var(--pf-v5-global--success-color--200);
56
- --pf-v5-c-form__helper-text--m-warning--Color: var(--pf-v5-global--warning-color--200);
57
- --pf-v5-c-form__helper-text--m-error--Color: var(--pf-v5-global--danger-color--100);
58
- --pf-v5-c-form__section--MarginTop: var(--pf-v5-global--spacer--xl);
59
- --pf-v5-c-form__section--Gap: var(--pf-v5-global--gutter--md);
60
- --pf-v5-c-form__section-title--FontSize: var(--pf-v5-global--FontSize--lg);
61
- --pf-v5-c-form__section-title--FontWeight: var(--pf-v5-global--FontWeight--bold);
62
- --pf-v5-c-form__section-title--MarginBottom: calc(var(--pf-v5-global--spacer--sm) * -1);
63
- --pf-v5-c-form__field-group--border-width-base: var(--pf-v5-global--BorderWidth--sm);
41
+ --pf-v5-c-form__section--MarginTop: var(--pf-t--global--spacer--xl);
42
+ --pf-v5-c-form__section--Gap: var(--pf-t--global--spacer--md);
43
+ --pf-v5-c-form__section-title--FontSize: var(--pf-t--global--font--size--heading--xs);
44
+ --pf-v5-c-form__section-title--FontWeight: var(--pf-t--global--font--weight--heading);
45
+ --pf-v5-c-form__section-title--MarginBottom: calc(var(--pf-t--global--spacer--sm) * -1);
46
+ --pf-v5-c-form__field-group--border-width-base: var(--pf-t--global--border--width--divider--default);
64
47
  --pf-v5-c-form__field-group--BorderTopWidth: var(--pf-v5-c-form__field-group--border-width-base);
65
- --pf-v5-c-form__field-group--BorderTopColor: var(--pf-v5-global--BorderColor--100);
48
+ --pf-v5-c-form__field-group--BorderTopColor: var(--pf-t--global--border--color--default);
66
49
  --pf-v5-c-form__field-group--BorderBottomWidth: var(--pf-v5-c-form__field-group--border-width-base);
67
- --pf-v5-c-form__field-group--BorderBottomColor: var(--pf-v5-global--BorderColor--100);
50
+ --pf-v5-c-form__field-group--BorderBottomColor: var(--pf-t--global--border--color--default);
68
51
  --pf-v5-c-form__field-group--field-group--MarginTop: calc(var(--pf-v5-c-form--GridGap) * -1);
69
- --pf-v5-c-form__field-group--GridTemplateColumns--toggle: calc(var(--pf-v5-global--spacer--md) * 2 + var(--pf-v5-c-form__field-group-toggle-icon--MinWidth) + var(--pf-v5-global--spacer--xs));
70
- --pf-v5-c-form__field-group-toggle--PaddingTop: var(--pf-v5-global--spacer--md);
71
- --pf-v5-c-form__field-group-toggle--PaddingRight: var(--pf-v5-global--spacer--xs);
72
- --pf-v5-c-form__field-group__field-group__field-group-toggle--PaddingTop: var(--pf-v5-global--spacer--lg);
73
- --pf-v5-c-form__field-group-header-toggle--BorderWidth--base: var(--pf-v5-global--BorderWidth--sm);
52
+ --pf-v5-c-form__field-group--GridTemplateColumns--toggle: calc(var(--pf-t--global--spacer--md) * 2 + var(--pf-v5-c-form__field-group-toggle-icon--MinWidth) + var(--pf-t--global--spacer--xs));
53
+ --pf-v5-c-form__field-group-toggle--PaddingTop: var(--pf-t--global--spacer--sm);
54
+ --pf-v5-c-form__field-group-toggle--PaddingRight: var(--pf-t--global--spacer--xs);
55
+ --pf-v5-c-form__field-group__field-group__field-group-toggle--PaddingTop: var(--pf-t--global--spacer--md);
56
+ --pf-v5-c-form__field-group-header-toggle--BorderWidth--base: var(--pf-t--global--border--width--divider--default);
74
57
  --pf-v5-c-form__field-group__field-group--field-group__field-group-toggle--after--BorderTopWidth: var(--pf-v5-c-form__field-group-header-toggle--BorderWidth--base);
75
- --pf-v5-c-form__field-group-toggle-button--MarginTop: calc(var(--pf-v5-global--spacer--form-element) * -1);
76
- --pf-v5-c-form__field-group-toggle-button--MarginBottom: calc(var(--pf-v5-global--spacer--form-element) * -1);
58
+ --pf-v5-c-form__field-group-toggle-button--MarginTop: calc(var(--pf-t--global--spacer--form-element) * -1);
59
+ --pf-v5-c-form__field-group-toggle-button--MarginBottom: calc(var(--pf-t--global--spacer--form-element) * -1);
77
60
  --pf-v5-c-form__field-group-toggle-icon--Transition: var(--pf-v5-global--Transition);
78
- --pf-v5-c-form__field-group-toggle-icon--MinWidth: var(--pf-v5-global--FontSize--md);
61
+ --pf-v5-c-form__field-group-toggle-icon--MinWidth: var(--pf-t--global--font--size--body--default);
79
62
  --pf-v5-c-form__field-group-toggle-icon--Rotate: 0;
80
63
  --pf-v5-c-form__field-group--m-expanded__toggle-icon--Rotate: 90deg;
81
- --pf-v5-c-form__field-group-header--PaddingTop: var(--pf-v5-global--spacer--md);
82
- --pf-v5-c-form__field-group-header--PaddingBottom: var(--pf-v5-global--spacer--md);
64
+ --pf-v5-c-form__field-group-header--PaddingTop: var(--pf-t--global--spacer--md);
65
+ --pf-v5-c-form__field-group-header--PaddingBottom: var(--pf-t--global--spacer--md);
83
66
  --pf-v5-c-form__field-group-header--GridColumn: 1 / 3;
84
- --pf-v5-c-form__field-group__field-group__field-group-header--PaddingTop: var(--pf-v5-global--spacer--lg);
85
- --pf-v5-c-form__field-group__field-group__field-group-header--PaddingBottom: var(--pf-v5-global--spacer--lg);
67
+ --pf-v5-c-form__field-group__field-group__field-group-header--PaddingTop: var(--pf-t--global--spacer--lg);
68
+ --pf-v5-c-form__field-group__field-group__field-group-header--PaddingBottom: var(--pf-t--global--spacer--lg);
86
69
  --pf-v5-c-form__field-group-toggle--field-group-header--GridColumn: 2 / 3;
87
70
  --pf-v5-c-form__field-group__field-group--field-group__field-group-header--after--BorderTopWidth: var(--pf-v5-c-form__field-group-header-toggle--BorderWidth--base);
88
- --pf-v5-c-form__field-group-header-description--MarginTop: var(--pf-v5-global--spacer--xs);
89
- --pf-v5-c-form__field-group-header-description--Color: var(--pf-v5-global--Color--200);
90
- --pf-v5-c-form__field-group-header-actions--MarginTop: calc(var(--pf-v5-global--spacer--form-element) * -1);
91
- --pf-v5-c-form__field-group-header-actions--MarginBottom: calc(var(--pf-v5-global--spacer--form-element) * -1);
92
- --pf-v5-c-form__field-group-header-actions--MarginLeft: var(--pf-v5-global--spacer--sm);
93
- --pf-v5-c-form__field-group-body--PaddingTop: var(--pf-v5-global--spacer--lg);
94
- --pf-v5-c-form__field-group-body--PaddingBottom: var(--pf-v5-global--spacer--lg);
71
+ --pf-v5-c-form__field-group-header-description--MarginTop: var(--pf-t--global--spacer--xs);
72
+ --pf-v5-c-form__field-group-header-description--Color: var(--pf-t--global--text--color--subtle);
73
+ --pf-v5-c-form__field-group-header-actions--MarginTop: calc(var(--pf-t--global--spacer--form-element) * -1);
74
+ --pf-v5-c-form__field-group-header-actions--MarginBottom: calc(var(--pf-t--global--spacer--form-element) * -1);
75
+ --pf-v5-c-form__field-group-header-actions--MarginLeft: var(--pf-t--global--spacer--sm);
76
+ --pf-v5-c-form__field-group-body--PaddingTop: var(--pf-t--global--spacer--lg);
77
+ --pf-v5-c-form__field-group-body--PaddingBottom: var(--pf-t--global--spacer--lg);
95
78
  --pf-v5-c-form__field-group-body--Gap: var(--pf-v5-c-form--GridGap);
96
79
  --pf-v5-c-form__field-group-body--GridColumn: 2 / 3;
97
80
  --pf-v5-c-form__field-group__field-group__field-group-body--GridColumn: 1 / 3;
98
81
  --pf-v5-c-form__field-group__field-group__field-group-toggle--field-group-body--GridColumn: 2 / 3;
99
82
  --pf-v5-c-form__field-group-body__field-group--last-child--MarginBottom: calc(var(--pf-v5-c-form__field-group-body--PaddingBottom) * -1);
83
+ }
84
+
85
+ .pf-v5-c-form {
100
86
  display: grid;
101
87
  gap: var(--pf-v5-c-form--GridGap);
102
88
  }
@@ -248,6 +234,9 @@
248
234
  }
249
235
 
250
236
  .pf-v5-c-form__group {
237
+ display: flex;
238
+ flex-direction: column;
239
+ gap: var(--pf-v5-c-form__group--Gap);
251
240
  min-width: 0;
252
241
  }
253
242
  .pf-v5-c-form__group.pf-m-action {
@@ -271,7 +260,6 @@
271
260
 
272
261
  .pf-v5-c-form__group-label {
273
262
  --pf-v5-c-form__helper-text--MarginTop: 0;
274
- padding-block-end: var(--pf-v5-c-form__group-label--PaddingBottom);
275
263
  }
276
264
  .pf-v5-c-form__group-label.pf-m-info {
277
265
  display: flex;
@@ -314,28 +302,8 @@
314
302
  color: var(--pf-v5-c-form__label-required--Color);
315
303
  }
316
304
 
317
- .pf-v5-c-form__group-label-help {
318
- padding-block-start: var(--pf-v5-c-form__group-label-help--PaddingTop);
319
- padding-block-end: var(--pf-v5-c-form__group-label-help--PaddingBottom);
320
- padding-inline-start: var(--pf-v5-c-form__group-label-help--PaddingLeft);
321
- padding-inline-end: var(--pf-v5-c-form__group-label-help--PaddingRight);
322
- margin-block-start: var(--pf-v5-c-form__group-label-help--MarginTop);
323
- margin-block-end: var(--pf-v5-c-form__group-label-help--MarginBottom);
324
- margin-inline-start: var(--pf-v5-c-form__group-label-help--MarginLeft);
325
- margin-inline-end: var(--pf-v5-c-form__group-label-help--MarginRight);
326
- font-size: var(--pf-v5-c-form__group-label-help--FontSize);
327
- line-height: 1;
328
- color: var(--pf-v5-c-form__group-label-help--Color);
329
- cursor: pointer;
330
- background-color: var(--pf-v5-c-form__group-label-help--BackgroundColor);
331
- border: 0;
332
- transform: translateY(var(--pf-v5-c-form__group-label-help--TranslateY));
333
- }
334
- .pf-v5-c-form__group-label-help:hover {
335
- --pf-v5-c-form__group-label-help--Color: var(--pf-v5-c-form__group-label-help--hover--Color);
336
- }
337
- .pf-v5-c-form__group-label-help:focus-within {
338
- --pf-v5-c-form__group-label-help--Color: var(--pf-v5-c-form__group-label-help--focus--Color);
305
+ .pf-v5-c-form__group-label-help .pf-v5-c-button {
306
+ --pf-v5-c-button--FontSize: var(--pf-v5-c-form__group-label-help--FontSize);
339
307
  }
340
308
 
341
309
  .pf-v5-c-form__group-control {
@@ -363,17 +331,6 @@
363
331
 
364
332
  .pf-v5-c-form__helper-text {
365
333
  margin-block-start: var(--pf-v5-c-form__helper-text--MarginTop);
366
- font-size: var(--pf-v5-c-form__helper-text--FontSize);
367
- color: var(--pf-v5-c-form__helper-text--Color);
368
- }
369
- .pf-v5-c-form__helper-text.pf-m-error {
370
- --pf-v5-c-form__helper-text--Color: var(--pf-v5-c-form__helper-text--m-error--Color);
371
- }
372
- .pf-v5-c-form__helper-text.pf-m-success {
373
- --pf-v5-c-form__helper-text--Color: var(--pf-v5-c-form__helper-text--m-success--Color);
374
- }
375
- .pf-v5-c-form__helper-text.pf-m-warning {
376
- --pf-v5-c-form__helper-text--Color: var(--pf-v5-c-form__helper-text--m-warning--Color);
377
334
  }
378
335
  .pf-v5-c-form__helper-text.pf-m-inactive {
379
336
  display: none;
@@ -383,11 +340,6 @@
383
340
  opacity: 0;
384
341
  }
385
342
 
386
- .pf-v5-c-form__helper-text-icon {
387
- margin-inline-end: var(--pf-v5-c-form__helper-text-icon--MarginRight);
388
- font-size: var(--pf-v5-c-form__helper-text-icon--FontSize);
389
- }
390
-
391
343
  .pf-v5-c-form__fieldset {
392
344
  border: 0;
393
345
  }
@@ -511,8 +463,4 @@
511
463
  }
512
464
  .pf-v5-c-form__field-group-body > .pf-v5-c-form__field-group:last-child {
513
465
  margin-block-end: var(--pf-v5-c-form__field-group-body__field-group--last-child--MarginBottom);
514
- }
515
-
516
- :where(.pf-v5-theme-dark) .pf-v5-c-form {
517
- --pf-v5-c-form__helper-text--m-success--Color: var(--pf-v5-global--success-color--100);
518
466
  }
@@ -1,5 +1,6 @@
1
1
  import './form.css';
2
2
  declare const _default: {
3
+ "button": "pf-v5-c-button",
3
4
  "dirRtl": "pf-v5-m-dir-rtl",
4
5
  "form": "pf-v5-c-form",
5
6
  "formActions": "pf-v5-c-form__actions",
@@ -22,7 +23,6 @@ declare const _default: {
22
23
  "formGroupLabelInfo": "pf-v5-c-form__group-label-info",
23
24
  "formGroupLabelMain": "pf-v5-c-form__group-label-main",
24
25
  "formHelperText": "pf-v5-c-form__helper-text",
25
- "formHelperTextIcon": "pf-v5-c-form__helper-text-icon",
26
26
  "formLabel": "pf-v5-c-form__label",
27
27
  "formLabelRequired": "pf-v5-c-form__label-required",
28
28
  "formLabelText": "pf-v5-c-form__label-text",
@@ -44,13 +44,9 @@ declare const _default: {
44
44
  "disabled": "pf-m-disabled",
45
45
  "inline": "pf-m-inline",
46
46
  "stack": "pf-m-stack",
47
- "error": "pf-m-error",
48
- "success": "pf-m-success",
49
- "warning": "pf-m-warning",
50
47
  "inactive": "pf-m-inactive",
51
48
  "hidden": "pf-m-hidden",
52
49
  "expanded": "pf-m-expanded"
53
- },
54
- "themeDark": "pf-v5-theme-dark"
50
+ }
55
51
  };
56
52
  export default _default;
@@ -2,6 +2,7 @@
2
2
  exports.__esModule = true;
3
3
  require('./form.css');
4
4
  exports.default = {
5
+ "button": "pf-v5-c-button",
5
6
  "dirRtl": "pf-v5-m-dir-rtl",
6
7
  "form": "pf-v5-c-form",
7
8
  "formActions": "pf-v5-c-form__actions",
@@ -24,7 +25,6 @@ exports.default = {
24
25
  "formGroupLabelInfo": "pf-v5-c-form__group-label-info",
25
26
  "formGroupLabelMain": "pf-v5-c-form__group-label-main",
26
27
  "formHelperText": "pf-v5-c-form__helper-text",
27
- "formHelperTextIcon": "pf-v5-c-form__helper-text-icon",
28
28
  "formLabel": "pf-v5-c-form__label",
29
29
  "formLabelRequired": "pf-v5-c-form__label-required",
30
30
  "formLabelText": "pf-v5-c-form__label-text",
@@ -46,12 +46,8 @@ exports.default = {
46
46
  "disabled": "pf-m-disabled",
47
47
  "inline": "pf-m-inline",
48
48
  "stack": "pf-m-stack",
49
- "error": "pf-m-error",
50
- "success": "pf-m-success",
51
- "warning": "pf-m-warning",
52
49
  "inactive": "pf-m-inactive",
53
50
  "hidden": "pf-m-hidden",
54
51
  "expanded": "pf-m-expanded"
55
- },
56
- "themeDark": "pf-v5-theme-dark"
52
+ }
57
53
  };
@@ -1,5 +1,6 @@
1
1
  import './form.css';
2
2
  export default {
3
+ "button": "pf-v5-c-button",
3
4
  "dirRtl": "pf-v5-m-dir-rtl",
4
5
  "form": "pf-v5-c-form",
5
6
  "formActions": "pf-v5-c-form__actions",
@@ -22,7 +23,6 @@ export default {
22
23
  "formGroupLabelInfo": "pf-v5-c-form__group-label-info",
23
24
  "formGroupLabelMain": "pf-v5-c-form__group-label-main",
24
25
  "formHelperText": "pf-v5-c-form__helper-text",
25
- "formHelperTextIcon": "pf-v5-c-form__helper-text-icon",
26
26
  "formLabel": "pf-v5-c-form__label",
27
27
  "formLabelRequired": "pf-v5-c-form__label-required",
28
28
  "formLabelText": "pf-v5-c-form__label-text",
@@ -44,12 +44,8 @@ export default {
44
44
  "disabled": "pf-m-disabled",
45
45
  "inline": "pf-m-inline",
46
46
  "stack": "pf-m-stack",
47
- "error": "pf-m-error",
48
- "success": "pf-m-success",
49
- "warning": "pf-m-warning",
50
47
  "inactive": "pf-m-inactive",
51
48
  "hidden": "pf-m-hidden",
52
49
  "expanded": "pf-m-expanded"
53
- },
54
- "themeDark": "pf-v5-theme-dark"
50
+ }
55
51
  };