@patternfly/patternfly 6.3.0-prerelease.26 → 6.3.0-prerelease.28

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 (34) hide show
  1. package/base/patternfly-common.css +35 -0
  2. package/base/patternfly-common.scss +46 -1
  3. package/components/Accordion/accordion.css +1 -1
  4. package/components/Accordion/accordion.scss +1 -1
  5. package/components/DualListSelector/dual-list-selector.css +1 -1
  6. package/components/DualListSelector/dual-list-selector.scss +1 -1
  7. package/components/ExpandableSection/expandable-section.css +1 -1
  8. package/components/ExpandableSection/expandable-section.scss +1 -1
  9. package/components/Form/form.css +1 -1
  10. package/components/Form/form.scss +1 -1
  11. package/components/FormControl/form-control.css +16 -0
  12. package/components/FormControl/form-control.scss +9 -0
  13. package/components/Nav/nav.css +1 -1
  14. package/components/Nav/nav.scss +1 -1
  15. package/components/Progress/progress.css +16 -0
  16. package/components/Progress/progress.scss +11 -1
  17. package/components/Table/table.css +52 -25
  18. package/components/Table/table.scss +73 -22
  19. package/components/TextInputGroup/text-input-group.css +16 -0
  20. package/components/TextInputGroup/text-input-group.scss +8 -0
  21. package/components/TreeView/tree-view.css +1 -1
  22. package/components/TreeView/tree-view.scss +1 -1
  23. package/components/_index.css +106 -31
  24. package/docs/components/Table/examples/Table.md +8586 -5760
  25. package/docs/demos/Card/examples/Card.md +1 -1
  26. package/docs/demos/Table/examples/Table.md +2 -2
  27. package/package.json +2 -2
  28. package/patternfly-base-no-globals.css +34 -0
  29. package/patternfly-base.css +34 -0
  30. package/patternfly-no-globals.css +140 -31
  31. package/patternfly.css +140 -31
  32. package/patternfly.min.css +1 -1
  33. package/patternfly.min.css.map +1 -1
  34. package/sass-utilities/mixins.scss +19 -0
@@ -277,6 +277,25 @@
277
277
  }
278
278
  }
279
279
 
280
+ // Animate error state on form elements
281
+ @mixin pf-v6-animate-danger-jiggle {
282
+ translate: var(--#{$pf-global}--danger-jiggle--TranslateX, 0);
283
+ animation-name: #{$pf-global}-danger-jiggle-motion;
284
+ animation-duration: var(--#{$pf-global}--danger-jiggle--AnimationDuration--Transform);
285
+ animation-timing-function: var(--#{$pf-global}--danger-jiggle--AnimationTimingFunction--Transform);
286
+ animation-fill-mode: both;
287
+ }
288
+
289
+ // Animate default fade in/out
290
+ @mixin pf-v6-fade-default($element) {
291
+ --#{$element}--TransitionDuration--Opacity: var(--pf-t--global--motion--duration--fade--default);
292
+ --#{$element}--TransitionTimingFunction--Opacity: var(--pf-t--global--motion--timing-function--default);
293
+
294
+ animation-name: #{$pf-global}-fade-in;
295
+ animation-duration: var(--#{$element}--TransitionDuration--Opacity);
296
+ animation-timing-function: var(--#{$element}--TransitionTimingFunction--Opacity);
297
+ }
298
+
280
299
  // Build variable stack
281
300
  @mixin pf-v6-build-css-variable-stack($prop, $css-var, $breakpoint-map: $pf-v6-global--breakpoint-map, $important: false) {
282
301
  $list: ();