@patternfly/patternfly 6.0.0-alpha.76 → 6.0.0-alpha.78

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/base/patternfly-variables.css +26 -23
  2. package/base/tokens/_tokens-charts.scss +159 -0
  3. package/base/tokens/_tokens-dark.scss +7 -5
  4. package/base/tokens/_tokens-default.scss +27 -17
  5. package/base/tokens/_tokens-palette.scss +4 -4
  6. package/components/Button/button.css +2 -2
  7. package/components/Button/button.scss +2 -2
  8. package/components/CodeBlock/code-block.css +4 -0
  9. package/components/CodeBlock/code-block.scss +4 -0
  10. package/components/CodeEditor/code-editor.css +91 -73
  11. package/components/CodeEditor/code-editor.scss +99 -82
  12. package/components/FormControl/form-control.css +3 -3
  13. package/components/FormControl/form-control.scss +3 -3
  14. package/components/Icon/icon.css +27 -27
  15. package/components/Icon/icon.scss +27 -27
  16. package/components/Label/label-group.css +1 -1
  17. package/components/Label/label-group.scss +1 -1
  18. package/components/Label/label.css +2 -2
  19. package/components/Label/label.scss +2 -2
  20. package/components/MenuToggle/menu-toggle.css +4 -4
  21. package/components/MenuToggle/menu-toggle.scss +4 -4
  22. package/components/ProgressStepper/progress-stepper.css +2 -2
  23. package/components/ProgressStepper/progress-stepper.scss +2 -2
  24. package/components/Table/table-grid.css +29 -45
  25. package/components/Table/table-grid.scss +40 -53
  26. package/components/Table/table-scrollable.css +6 -6
  27. package/components/Table/table-scrollable.scss +8 -8
  28. package/components/Table/table-tree-view.css +76 -74
  29. package/components/Table/table-tree-view.scss +44 -39
  30. package/components/Table/table.css +54 -74
  31. package/components/Table/table.scss +68 -86
  32. package/components/Tile/tile.css +1 -1
  33. package/components/Tile/tile.scss +1 -1
  34. package/components/TreeView/tree-view.css +76 -97
  35. package/components/TreeView/tree-view.scss +82 -113
  36. package/docs/components/CodeEditor/examples/CodeEditor.md +144 -132
  37. package/docs/components/TreeView/examples/TreeView.md +7 -57
  38. package/package.json +1 -1
  39. package/patternfly-base-no-globals-theme-dark-unversioned.css +26 -23
  40. package/patternfly-base-no-globals.css +26 -23
  41. package/patternfly-base-theme-dark-unversioned.css +26 -23
  42. package/patternfly-base.css +26 -23
  43. package/patternfly-no-globals.css +404 -442
  44. package/patternfly-theme-dark-unversioned.css +404 -442
  45. package/patternfly.css +404 -442
  46. package/patternfly.min.css +1 -1
  47. package/patternfly.min.css.map +1 -1
  48. package/components/CodeEditor/themes/dark/code-editor.scss +0 -14
  49. package/components/TreeView/themes/dark/tree-view.scss +0 -8
@@ -1,14 +0,0 @@
1
- @import "../../../../sass-utilities/themes/dark/all";
2
-
3
- @mixin pf-v5-theme-dark-code-editor() {
4
- .#{$code-editor} {
5
- --#{$code-editor}--m-read-only__main--Color: var(--#{$pf-global}--disabled-color--300);
6
- --#{$code-editor}--m-read-only__main--BackgroundColor: var(--#{$pf-global}--disabled-color--200);
7
- }
8
-
9
- .#{$code-editor}__controls {
10
- > * + * {
11
- border-inline-start: 1px solid var(--#{$pf-global}--palette--black-700);
12
- }
13
- }
14
- }
@@ -1,8 +0,0 @@
1
- @import "../../../../sass-utilities/themes/dark/all";
2
-
3
- @mixin pf-v5-theme-dark-tree-view() {
4
- .#{$tree-view} {
5
- --#{$tree-view}__node--hover--BackgroundColor: var(--#{$pf-global}--BackgroundColor--300);
6
- --#{$tree-view}__node--focus--BackgroundColor: var(--#{$pf-global}--BackgroundColor--300);
7
- }
8
- }