Skip to content

v1.0.0-beta.4

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 24 May 11:34
· 870 commits to main since this 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