Releases: RedHat-UX/red-hat-design-system
v1.0.0-beta.12
Patch Changes
- 17d5bf8: Fixes rh-footer primary columns not being equal.
v1.0.0-beta.11
Patch Changes
- b04d8c8: Include lib directory in npm package
v1.0.0-beta.10
v1.0.0-beta.9
Major Changes
-
58831e0: Adds
<rh-global-footer>
standalone componentGlobal footer only
<rh-global-footer> ... </rh-global-footer>
Usage in
<rh-footer> ... <rh-global-footer slot="global">...</rh-global-footer> </rh-footer>
Adds font-size initial and em values instead of px values for a11y.
Allow user stylesheet to increase and decrease font-size.Fixes double border on mobile.
Removes
is-mobile
attribute
v1.0.0-beta.8
Minor Changes
-
de7fd69: Added
rh-context-provider
component, which is meant to be used internally within rh-elements shadow templates to override colour context.
Inrh-dialog
, fix the colour context overrides for slotted content. See patternfly/patternfly-elements#2036 (comment)
Inrh-dialog
, changed the attributevariant="video"
totype="video"
, because<pfe-modal>
uses variant for width. -
3248990: Add
rh-stat
An element which can be used to display statistics inside of an app.
<rh-stat size="large" icon="rh-atom"> <span slot="title">Stat Title</span> <span slot="statistic">Stat</span> <span slot="description" >Stat body text that includes two lines and a footnote<sup>2</sup></span > </rh-stat>
v1.0.0-beta.7
Patch Changes
- da9ba6d: Remove patch-package dev dependency
v1.0.0-beta.6
Patch Changes
- ce2ce34: Add missing devDependencies which prevent installing the package
v1.0.0-beta.5
v1.0.0-beta.4
Minor Changes
-
e59ecea: Add
RHDSScreenSizeController
import { RHDSScreenSizeController } from '../../lib/RHDSScreenSizeController.js'; export class RhPagination extends LitElement { #screenSize = new RHDSScreenSizeController(this); render() { const { mobile, size } = this.#screenSize; return html` <div id="container" class=${classMap({ mobile, [size as string]: true })}> ... </div> ` } }
Patch Changes
- fd78f88: Fix
<rh-footer>
styles when used on redhat.com
v1.0.0-beta.3
Patch Changes
- 69abc30: Include lightdom styles in the package. Prevent custom-element double-registration error by removing pfe-1.0 dependencies.