Skip to content

Releases: RedHat-UX/red-hat-design-system

v1.0.0-beta.12

28 Jul 14:58
b4e1691
Compare
Choose a tag to compare
v1.0.0-beta.12 Pre-release
Pre-release

Patch Changes

  • 17d5bf8: Fixes rh-footer primary columns not being equal.

v1.0.0-beta.11

22 Jul 13:35
21a6db1
Compare
Choose a tag to compare
v1.0.0-beta.11 Pre-release
Pre-release

Patch Changes

  • b04d8c8: Include lib directory in npm package

v1.0.0-beta.10

20 Jul 15:36
Compare
Choose a tag to compare
v1.0.0-beta.10 Pre-release
Pre-release

Minor Changes

  • bdc1121: Ship components unbundled

Patch Changes

  • c6d26a4: Typescript: Map footer element classes to tagnames

v1.0.0-beta.9

05 Jul 19:30
7fd7e57
Compare
Choose a tag to compare
v1.0.0-beta.9 Pre-release
Pre-release

Major Changes

  • 58831e0: Adds <rh-global-footer> standalone component

    Global 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.

    #312

    Fixes double border on mobile.

    #392

    Removes is-mobile attribute

v1.0.0-beta.8

22 Jun 18:56
a51a3b0
Compare
Choose a tag to compare
v1.0.0-beta.8 Pre-release
Pre-release

Minor Changes

  • de7fd69: Added rh-context-provider component, which is meant to be used internally within rh-elements shadow templates to override colour context.
    In rh-dialog, fix the colour context overrides for slotted content. See patternfly/patternfly-elements#2036 (comment)
    In rh-dialog, changed the attribute variant="video" to type="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

09 Jun 17:11
Compare
Choose a tag to compare
v1.0.0-beta.7 Pre-release
Pre-release

Patch Changes

  • da9ba6d: Remove patch-package dev dependency

v1.0.0-beta.6

09 Jun 16:23
Compare
Choose a tag to compare
v1.0.0-beta.6 Pre-release
Pre-release

Patch Changes

  • ce2ce34: Add missing devDependencies which prevent installing the package

v1.0.0-beta.5

25 May 08:09
Compare
Choose a tag to compare
v1.0.0-beta.5 Pre-release
Pre-release

Patch Changes

  • 5247670: Fixed [bug] <rh-footer> links should be styled to match dark context colors. #307
    Fixed the social-links slot to not override the social-links internal rh-footer-links
    Fixed the social-links hrefs to point to the default RHDC links

v1.0.0-beta.4

24 May 11:34
Compare
Choose a tag to compare
v1.0.0-beta.4 Pre-release
Pre-release

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

19 May 14:07
Compare
Choose a tag to compare
v1.0.0-beta.3 Pre-release
Pre-release

Patch Changes

  • 69abc30: Include lightdom styles in the package. Prevent custom-element double-registration error by removing pfe-1.0 dependencies.