@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.
- package/base/patternfly-common.css +35 -0
- package/base/patternfly-common.scss +46 -1
- package/components/Accordion/accordion.css +1 -1
- package/components/Accordion/accordion.scss +1 -1
- package/components/DualListSelector/dual-list-selector.css +1 -1
- package/components/DualListSelector/dual-list-selector.scss +1 -1
- package/components/ExpandableSection/expandable-section.css +1 -1
- package/components/ExpandableSection/expandable-section.scss +1 -1
- package/components/Form/form.css +1 -1
- package/components/Form/form.scss +1 -1
- package/components/FormControl/form-control.css +16 -0
- package/components/FormControl/form-control.scss +9 -0
- package/components/Nav/nav.css +1 -1
- package/components/Nav/nav.scss +1 -1
- package/components/Progress/progress.css +16 -0
- package/components/Progress/progress.scss +11 -1
- package/components/Table/table.css +52 -25
- package/components/Table/table.scss +73 -22
- package/components/TextInputGroup/text-input-group.css +16 -0
- package/components/TextInputGroup/text-input-group.scss +8 -0
- package/components/TreeView/tree-view.css +1 -1
- package/components/TreeView/tree-view.scss +1 -1
- package/components/_index.css +106 -31
- package/docs/components/Table/examples/Table.md +8586 -5760
- package/docs/demos/Card/examples/Card.md +1 -1
- package/docs/demos/Table/examples/Table.md +2 -2
- package/package.json +2 -2
- package/patternfly-base-no-globals.css +34 -0
- package/patternfly-base.css +34 -0
- package/patternfly-no-globals.css +140 -31
- package/patternfly.css +140 -31
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- 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: ();
|