UNPKG

@rxap/layout

Version:

This library provides a set of Angular components and services for creating consistent and configurable application layouts, including headers, footers, side navigation, and content areas. It offers features such as dynamic navigation, external applicatio

611 lines (600 loc) 70.5 kB
<!doctype html> <html class="no-js" lang=""> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>angular-layout</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="icon" type="image/x-icon" href="./images/favicon.ico"> <link rel="stylesheet" href="./styles/style.css"> <link rel="stylesheet" href="./styles/dark.css"> </head> <body> <script> // Blocking script to avoid flickering dark mode // Dark mode toggle button var useDark = window.matchMedia('(prefers-color-scheme: dark)'); var darkModeState = useDark.matches; var $darkModeToggleSwitchers = document.querySelectorAll('.dark-mode-switch input'); var $darkModeToggles = document.querySelectorAll('.dark-mode-switch'); var darkModeStateLocal = localStorage.getItem('compodoc_darkmode-state'); function checkToggle(check) { for (var i = 0; i < $darkModeToggleSwitchers.length; i++) { $darkModeToggleSwitchers[i].checked = check; } } function toggleDarkMode(state) { if (window.localStorage) { localStorage.setItem('compodoc_darkmode-state', state); } checkToggle(state); const hasClass = document.body.classList.contains('dark'); if (state) { for (var i = 0; i < $darkModeToggles.length; i++) { $darkModeToggles[i].classList.add('dark'); } if (!hasClass) { document.body.classList.add('dark'); } } else { for (var i = 0; i < $darkModeToggles.length; i++) { $darkModeToggles[i].classList.remove('dark'); } if (hasClass) { document.body.classList.remove('dark'); } } } useDark.addEventListener('change', function (evt) { toggleDarkMode(evt.matches); }); if (darkModeStateLocal) { darkModeState = darkModeStateLocal === 'true'; } toggleDarkMode(darkModeState); </script> <div class="navbar navbar-default navbar-fixed-top d-md-none p-0"> <div class="d-flex"> <a href="./" class="navbar-brand">angular-layout</a> <button type="button" class="btn btn-default btn-menu ion-ios-menu" id="btn-menu"></button> </div> </div> <div class="xs-menu menu" id="mobile-menu"> <div id="book-search-input" role="search"><input type="text" placeholder="Type to search"></div> <compodoc-menu></compodoc-menu> </div> <div class="container-fluid main"> <div class="row main"> <div class="d-none d-md-block menu"> <compodoc-menu mode="normal"></compodoc-menu> </div> <!-- START CONTENT --> <div class="content getting-started"> <div class="content-data"> <h1>Change Log</h1> <p>All notable changes to this project will be documented in this file. See <a href="https://conventionalcommits.org">Conventional Commits</a> for commit guidelines.</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.1.0-dev.4...@rxap/layout@19.1.0">19.1.0</a> (2025-05-16)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.1.0-dev.3...@rxap/layout@19.1.0-dev.4">19.1.0-dev.4</a> (2025-05-16)</h1> <h3>Bug Fixes</h3> <ul> <li>remove deprecated property (<a href="https://gitlab.com/rxap/packages/commit/e03d8a2c567ba714428e137bf8dea7db425cf681">e03d8a2</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.1.0-dev.2...@rxap/layout@19.1.0-dev.3">19.1.0-dev.3</a> (2025-05-12)</h1> <h3>Bug Fixes</h3> <ul> <li>provide the logo service at root (<a href="https://gitlab.com/rxap/packages/commit/1b77b420066f60d036b6bc70cbd841ba88b6e63e">1b77b42</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.1.0-dev.1...@rxap/layout@19.1.0-dev.2">19.1.0-dev.2</a> (2025-05-09)</h1> <h3>Features</h3> <ul> <li><strong>layout:</strong> enhance navigation responsiveness for mobile and collapsed states (<a href="https://gitlab.com/rxap/packages/commit/0884432174dadc54c503535af3c67f1a29dcedb5">0884432</a>)</li> <li><strong>layout:</strong> make mobile query configurable in navigation config (<a href="https://gitlab.com/rxap/packages/commit/549eca12a27bb6b12b853e54bcd7408a710c42a6">549eca1</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.1.0-dev.0...@rxap/layout@19.1.0-dev.1">19.1.0-dev.1</a> (2025-04-30)</h1> <h3>Features</h3> <ul> <li><strong>sidenav:</strong> add openedChange event handling (<a href="https://gitlab.com/rxap/packages/commit/2302d857a92fc24ebbcc713afcd0f5831514c298">2302d85</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.4-dev.5...@rxap/layout@19.1.0-dev.0">19.1.0-dev.0</a> (2025-04-29)</h1> <h3>Features</h3> <ul> <li><strong>layout:</strong> add support for default logo and navigation config tokens (<a href="https://gitlab.com/rxap/packages/commit/bbdfdf85a55a0964451eb132c49b22a1c6797d2b">bbdfdf8</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.4-dev.4...@rxap/layout@19.0.4-dev.5">19.0.4-dev.5</a> (2025-04-14)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.4-dev.3...@rxap/layout@19.0.4-dev.4">19.0.4-dev.4</a> (2025-04-07)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>layout:</strong> add missing multi-provider flag for header components (<a href="https://gitlab.com/rxap/packages/commit/8fde796a868ca67eb682bff5ad3eff2ba177acd8">8fde796</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.4-dev.2...@rxap/layout@19.0.4-dev.3">19.0.4-dev.3</a> (2025-04-02)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>layout:</strong> ensure sidenav collapsable style applies correctly (<a href="https://gitlab.com/rxap/packages/commit/82c61b0b3131454521fa343524128323d825741f">82c61b0</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.4-dev.1...@rxap/layout@19.0.4-dev.2">19.0.4-dev.2</a> (2025-03-26)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.4-dev.0...@rxap/layout@19.0.4-dev.1">19.0.4-dev.1</a> (2025-03-12)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.3...@rxap/layout@19.0.4-dev.0">19.0.4-dev.0</a> (2025-03-12)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.3-dev.2...@rxap/layout@19.0.3">19.0.3</a> (2025-03-07)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.3-dev.1...@rxap/layout@19.0.3-dev.2">19.0.3-dev.2</a> (2025-02-28)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>layout:</strong> update profile token fallback logic for displayName (<a href="https://gitlab.com/rxap/packages/commit/46021141c0aad1422234bec1b26d00b401c1496c">4602114</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.3-dev.0...@rxap/layout@19.0.3-dev.1">19.0.3-dev.1</a> (2025-02-26)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.2...@rxap/layout@19.0.3-dev.0">19.0.3-dev.0</a> (2025-02-25)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.2-dev.5...@rxap/layout@19.0.2">19.0.2</a> (2025-02-23)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.2-dev.4...@rxap/layout@19.0.2-dev.5">19.0.2-dev.5</a> (2025-02-23)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.2-dev.3...@rxap/layout@19.0.2-dev.4">19.0.2-dev.4</a> (2025-02-23)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.2-dev.2...@rxap/layout@19.0.2-dev.3">19.0.2-dev.3</a> (2025-02-18)</h2> <h3>Bug Fixes</h3> <ul> <li>update package groups (<a href="https://gitlab.com/rxap/packages/commit/4afd316e33c6edab0e500d7ddc572ae8e48f8c34">4afd316</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.2-dev.1...@rxap/layout@19.0.2-dev.2">19.0.2-dev.2</a> (2025-02-18)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.2-dev.0...@rxap/layout@19.0.2-dev.1">19.0.2-dev.1</a> (2025-02-18)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.1...@rxap/layout@19.0.2-dev.0">19.0.2-dev.0</a> (2025-02-17)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.1-dev.15...@rxap/layout@19.0.1">19.0.1</a> (2025-02-13)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.1-dev.14...@rxap/layout@19.0.1-dev.15">19.0.1-dev.15</a> (2025-02-13)</h2> <h3>Bug Fixes</h3> <ul> <li>update package groups (<a href="https://gitlab.com/rxap/packages/commit/21378b776550fac07c12e59e98c1466e80ea1232">21378b7</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.1-dev.13...@rxap/layout@19.0.1-dev.14">19.0.1-dev.14</a> (2025-02-13)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.1-dev.12...@rxap/layout@19.0.1-dev.13">19.0.1-dev.13</a> (2025-02-11)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.1-dev.11...@rxap/layout@19.0.1-dev.12">19.0.1-dev.12</a> (2025-02-11)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.1-dev.10...@rxap/layout@19.0.1-dev.11">19.0.1-dev.11</a> (2025-02-10)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.1-dev.9...@rxap/layout@19.0.1-dev.10">19.0.1-dev.10</a> (2025-02-07)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.1-dev.8...@rxap/layout@19.0.1-dev.9">19.0.1-dev.9</a> (2025-01-30)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.1-dev.7...@rxap/layout@19.0.1-dev.8">19.0.1-dev.8</a> (2025-01-29)</h2> <h3>Bug Fixes</h3> <ul> <li>header buttons (<a href="https://gitlab.com/rxap/packages/commit/624721ce05f0eb2d69191e6888727d1c14e2708e">624721c</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.1-dev.6...@rxap/layout@19.0.1-dev.7">19.0.1-dev.7</a> (2025-01-29)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.1-dev.5...@rxap/layout@19.0.1-dev.6">19.0.1-dev.6</a> (2025-01-29)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.1-dev.4...@rxap/layout@19.0.1-dev.5">19.0.1-dev.5</a> (2025-01-29)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.1-dev.3...@rxap/layout@19.0.1-dev.4">19.0.1-dev.4</a> (2025-01-28)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.1-dev.2...@rxap/layout@19.0.1-dev.3">19.0.1-dev.3</a> (2025-01-28)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.1-dev.1...@rxap/layout@19.0.1-dev.2">19.0.1-dev.2</a> (2025-01-22)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.1-dev.0...@rxap/layout@19.0.1-dev.1">19.0.1-dev.1</a> (2025-01-21)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.0...@rxap/layout@19.0.1-dev.0">19.0.1-dev.0</a> (2025-01-08)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.0-dev.3...@rxap/layout@19.0.0">19.0.0</a> (2025-01-08)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.0-dev.2...@rxap/layout@19.0.0-dev.3">19.0.0-dev.3</a> (2025-01-04)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@19.0.0-dev.1...@rxap/layout@19.0.0-dev.2">19.0.0-dev.2</a> (2025-01-03)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.3.4-dev.0...@rxap/layout@19.0.0-dev.1">19.0.0-dev.1</a> (2024-12-11)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.3.3...@rxap/layout@18.3.4-dev.0">18.3.4-dev.0</a> (2024-12-10)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.3.3-dev.1...@rxap/layout@18.3.3">18.3.3</a> (2024-12-10)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.3.3-dev.0...@rxap/layout@18.3.3-dev.1">18.3.3-dev.1</a> (2024-11-05)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.3.2...@rxap/layout@18.3.3-dev.0">18.3.3-dev.0</a> (2024-11-04)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.3.2-dev.3...@rxap/layout@18.3.2">18.3.2</a> (2024-10-28)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.3.2-dev.2...@rxap/layout@18.3.2-dev.3">18.3.2-dev.3</a> (2024-10-25)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.3.2-dev.1...@rxap/layout@18.3.2-dev.2">18.3.2-dev.2</a> (2024-10-25)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.3.2-dev.0...@rxap/layout@18.3.2-dev.1">18.3.2-dev.1</a> (2024-10-04)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.3.1...@rxap/layout@18.3.2-dev.0">18.3.2-dev.0</a> (2024-09-18)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.3.1-dev.1...@rxap/layout@18.3.1">18.3.1</a> (2024-09-18)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.3.1-dev.0...@rxap/layout@18.3.1-dev.1">18.3.1-dev.1</a> (2024-09-09)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.3.0...@rxap/layout@18.3.1-dev.0">18.3.1-dev.0</a> (2024-08-30)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.3.0-dev.4...@rxap/layout@18.3.0">18.3.0</a> (2024-08-22)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.3.0-dev.3...@rxap/layout@18.3.0-dev.4">18.3.0-dev.4</a> (2024-08-22)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.3.0-dev.2...@rxap/layout@18.3.0-dev.3">18.3.0-dev.3</a> (2024-08-21)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.3.0-dev.1...@rxap/layout@18.3.0-dev.2">18.3.0-dev.2</a> (2024-08-16)</h1> <h3>Features</h3> <ul> <li>support lazy component imports (<a href="https://gitlab.com/rxap/packages/commit/c308e328bc99f08b34811fbf0ecb91abcdd5a3d0">c308e32</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.3.0-dev.0...@rxap/layout@18.3.0-dev.1">18.3.0-dev.1</a> (2024-08-15)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.2.1-dev.2...@rxap/layout@18.3.0-dev.0">18.3.0-dev.0</a> (2024-08-15)</h1> <h3>Features</h3> <ul> <li>support custom header items (<a href="https://gitlab.com/rxap/packages/commit/d25a43064ddde547c95183dab50f28c52a70a35a">d25a430</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.2.1-dev.1...@rxap/layout@18.2.1-dev.2">18.2.1-dev.2</a> (2024-08-12)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.2.1-dev.0...@rxap/layout@18.2.1-dev.1">18.2.1-dev.1</a> (2024-08-12)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.2.0...@rxap/layout@18.2.1-dev.0">18.2.1-dev.0</a> (2024-08-07)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.2.0-dev.3...@rxap/layout@18.2.0">18.2.0</a> (2024-07-30)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.2.0-dev.2...@rxap/layout@18.2.0-dev.3">18.2.0-dev.3</a> (2024-07-30)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.2.0-dev.1...@rxap/layout@18.2.0-dev.2">18.2.0-dev.2</a> (2024-07-25)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.2.0-dev.0...@rxap/layout@18.2.0-dev.1">18.2.0-dev.1</a> (2024-07-24)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.1.2-dev.6...@rxap/layout@18.2.0-dev.0">18.2.0-dev.0</a> (2024-07-24)</h1> <h3>Features</h3> <ul> <li>provide ExternalApps as root service (<a href="https://gitlab.com/rxap/packages/commit/be0523923ff3ae759557fbd6fb88ec144ff810fa">be05239</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.1.2-dev.5...@rxap/layout@18.1.2-dev.6">18.1.2-dev.6</a> (2024-07-09)</h2> <h3>Bug Fixes</h3> <ul> <li>use static pub sub topics (<a href="https://gitlab.com/rxap/packages/commit/780d3f9aae3b272713ad9946e7938f1f13dd91a4">780d3f9</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.1.2-dev.4...@rxap/layout@18.1.2-dev.5">18.1.2-dev.5</a> (2024-07-03)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.1.2-dev.3...@rxap/layout@18.1.2-dev.4">18.1.2-dev.4</a> (2024-07-03)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.1.2-dev.2...@rxap/layout@18.1.2-dev.3">18.1.2-dev.3</a> (2024-07-03)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.1.2-dev.1...@rxap/layout@18.1.2-dev.2">18.1.2-dev.2</a> (2024-07-03)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.1.2-dev.0...@rxap/layout@18.1.2-dev.1">18.1.2-dev.1</a> (2024-07-03)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.1.1...@rxap/layout@18.1.2-dev.0">18.1.2-dev.0</a> (2024-07-02)</h2> <h3>Bug Fixes</h3> <ul> <li>improve support for router link types (<a href="https://gitlab.com/rxap/packages/commit/069f87e3a5b9615111cedca779f6a3c8ee0e13ea">069f87e</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.1.1-dev.0...@rxap/layout@18.1.1">18.1.1</a> (2024-06-30)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.1.0...@rxap/layout@18.1.1-dev.0">18.1.1-dev.0</a> (2024-06-30)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.1.0-dev.3...@rxap/layout@18.1.0">18.1.0</a> (2024-06-28)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.1.0-dev.2...@rxap/layout@18.1.0-dev.3">18.1.0-dev.3</a> (2024-06-25)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.1.0-dev.1...@rxap/layout@18.1.0-dev.2">18.1.0-dev.2</a> (2024-06-25)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.1.0-dev.0...@rxap/layout@18.1.0-dev.1">18.1.0-dev.1</a> (2024-06-25)</h1> <h3>Features</h3> <ul> <li>support static external apps (<a href="https://gitlab.com/rxap/packages/commit/c005399314a3d7131d4bee429fc9ce85f92d87d5">c005399</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.0.3-dev.1...@rxap/layout@18.1.0-dev.0">18.1.0-dev.0</a> (2024-06-24)</h1> <h3>Bug Fixes</h3> <ul> <li>move language selector (<a href="https://gitlab.com/rxap/packages/commit/8cfbe0ddc8417caa955dbe22dd5e85976149de51">8cfbe0d</a>)</li> </ul> <h3>Features</h3> <ul> <li>add signal (<a href="https://gitlab.com/rxap/packages/commit/8f9e8680e17e1a21a74a157516928b4b871561f9">8f9e868</a>)</li> <li>support custom settings components (<a href="https://gitlab.com/rxap/packages/commit/9349248f0e64e314e4a1daffa4de835eb48c4d5c">9349248</a>)</li> <li>support router link for app buttons (<a href="https://gitlab.com/rxap/packages/commit/51b75025338d76cbdbfbc2f9654181b47fef122f">51b7502</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.0.3-dev.0...@rxap/layout@18.0.3-dev.1">18.0.3-dev.1</a> (2024-06-21)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.0.2...@rxap/layout@18.0.3-dev.0">18.0.3-dev.0</a> (2024-06-20)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.0.2-dev.2...@rxap/layout@18.0.2">18.0.2</a> (2024-06-18)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.0.2-dev.1...@rxap/layout@18.0.2-dev.2">18.0.2-dev.2</a> (2024-06-17)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.0.2-dev.0...@rxap/layout@18.0.2-dev.1">18.0.2-dev.1</a> (2024-06-17)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.0.1...@rxap/layout@18.0.2-dev.0">18.0.2-dev.0</a> (2024-06-05)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@18.0.1-dev.0...@rxap/layout@18.0.1">18.0.1</a> (2024-05-30)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@17.0.1...@rxap/layout@18.0.1-dev.0">18.0.1-dev.0</a> (2024-05-30)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@17.0.1...@rxap/layout@17.0.1">17.0.1</a> (2024-05-29)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@17.0.1...@rxap/layout@17.0.1-dev.0">17.0.1-dev.0</a> (2024-05-29)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@17.0.1-dev.0...@rxap/layout@17.0.1">17.0.1</a> (2024-05-29)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.3...@rxap/layout@17.0.1-dev.0">17.0.1-dev.0</a> (2024-05-29)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.3-dev.0...@rxap/layout@16.0.3">16.0.3</a> (2024-05-28)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.2...@rxap/layout@16.0.3-dev.0">16.0.3-dev.0</a> (2024-05-28)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.2-dev.2...@rxap/layout@16.0.2">16.0.2</a> (2024-05-27)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.2-dev.1...@rxap/layout@16.0.2-dev.2">16.0.2-dev.2</a> (2024-05-27)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.2-dev.0...@rxap/layout@16.0.2-dev.1">16.0.2-dev.1</a> (2024-04-29)</h2> <h3>Bug Fixes</h3> <ul> <li>disable theme and font menu point if property is false (<a href="https://gitlab.com/rxap/packages/commit/2999fac0ddac677a73318d24ffc726812c9b599e">2999fac</a>)</li> <li>return null if explicit set to false (<a href="https://gitlab.com/rxap/packages/commit/285b99c01c6cd051238747150f0c11f0764239c2">285b99c</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.1...@rxap/layout@16.0.2-dev.0">16.0.2-dev.0</a> (2024-04-28)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.1-dev.4...@rxap/layout@16.0.1">16.0.1</a> (2024-04-17)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.1-dev.3...@rxap/layout@16.0.1-dev.4">16.0.1-dev.4</a> (2024-04-09)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.1-dev.2...@rxap/layout@16.0.1-dev.3">16.0.1-dev.3</a> (2024-03-11)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.1-dev.1...@rxap/layout@16.0.1-dev.2">16.0.1-dev.2</a> (2024-03-05)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.1-dev.0...@rxap/layout@16.0.1-dev.1">16.0.1-dev.1</a> (2024-03-04)</h2> <h3>Bug Fixes</h3> <ul> <li>use correct tailwind class for hidden (<a href="https://gitlab.com/rxap/packages/commit/e56611cfdf62e135d25d28614c5b4641855fa635">e56611c</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0...@rxap/layout@16.0.1-dev.0">16.0.1-dev.0</a> (2024-02-09)</h2> <h3>Bug Fixes</h3> <ul> <li>remove FlexLayout dependency (<a href="https://gitlab.com/rxap/packages/commit/1fea895ea326d64e3ca230386175d1cd71d25ace">1fea895</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.43...@rxap/layout@16.0.0">16.0.0</a> (2024-02-07)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.42...@rxap/layout@16.0.0-dev.43">16.0.0-dev.43</a> (2023-11-23)</h1> <h3>Bug Fixes</h3> <ul> <li>always show the selected language (<a href="https://gitlab.com/rxap/packages/commit/78d02b7c9918104e9cdf750b7d29a04e60a68187">78d02b7</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.41...@rxap/layout@16.0.0-dev.42">16.0.0-dev.42</a> (2023-10-30)</h1> <h3>Bug Fixes</h3> <ul> <li>only add lang string if in production (<a href="https://gitlab.com/rxap/packages/commit/f4b555cd17c054aef64efffedec6cf3aefcaf212">f4b555c</a>)</li> </ul> <h3>Features</h3> <ul> <li>add getAppUrlOrThrow method (<a href="https://gitlab.com/rxap/packages/commit/7e0c816b95c1ef0be7883e0d0ac450569ff36e37">7e0c816</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.40...@rxap/layout@16.0.0-dev.41">16.0.0-dev.41</a> (2023-10-11)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.39...@rxap/layout@16.0.0-dev.40">16.0.0-dev.40</a> (2023-10-11)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.5...@rxap/layout@16.0.0-dev.39">16.0.0-dev.39</a> (2023-10-11)</h1> <h3>Bug Fixes</h3> <ul> <li>add browser-tailwind as imp dep if project has tailwind configuration (<a href="https://gitlab.com/rxap/packages/commit/3d906604470f4f26d157f4683afe72b3dd8baae3">3d90660</a>)</li> <li>add licence file to publishable packages (<a href="https://gitlab.com/rxap/packages/commit/d7de1cb9db1bd1628f37084e3b0ffd1755aa75f6">d7de1cb</a>)</li> <li>apply restored theme config in the correct order (<a href="https://gitlab.com/rxap/packages/commit/59f9b7e7b83e948e236f1afbc8ac9dbfff670d1b">59f9b7e</a>)</li> <li>change overscroll-contain to overscroll-auto (<a href="https://gitlab.com/rxap/packages/commit/88340559e9dcaa45f8d88c4468e77965ba92e2d3">8834055</a>)</li> <li>close sidenav if change to collapsed mode (<a href="https://gitlab.com/rxap/packages/commit/d42cf017c7b5af95fd1f627667f15bb7413b8c94">d42cf01</a>)</li> <li>darkMode property was changed to a single (<a href="https://gitlab.com/rxap/packages/commit/ed6002e2566d84d5d33226306e77e28a2aabc712">ed6002e</a>)</li> <li>disable i18n check in development mode (<a href="https://gitlab.com/rxap/packages/commit/3394767dd304a9046a9c70004e73dac74a38643d">3394767</a>)</li> <li>ensure min padding for navigation items (<a href="https://gitlab.com/rxap/packages/commit/2a50b096226e79a6956c71112205a1bc8dacbd72">2a50b09</a>)</li> <li>ensure sidenav container is always fulling the screen (<a href="https://gitlab.com/rxap/packages/commit/706dad36ccb7e4b1ca8b1cbc2167d5354f318675">706dad3</a>)</li> <li>ensure the project name is not included in the project tag list (<a href="https://gitlab.com/rxap/packages/commit/46d44798258ea1b20df9d4408b9c0809f55027b2">46d4479</a>)</li> <li>ensure the username is always fully visible (<a href="https://gitlab.com/rxap/packages/commit/6c8560a06bcdc80bd02d98b738bfa63965bd3ee2">6c8560a</a>)</li> <li>generate readme with peer dependencies to install (<a href="https://gitlab.com/rxap/packages/commit/27c2cd7d98f0c8a499b8c30719f49d69e4970ae9">27c2cd7</a>)</li> <li>improve dynamic theme handling (<a href="https://gitlab.com/rxap/packages/commit/77c62dfe77a38bdc00da6a176b09f99c38de2147">77c62df</a>)</li> <li>initial state issues (<a href="https://gitlab.com/rxap/packages/commit/80f4aae6fbbc7c2479c506b37f267507e4f6d38b">80f4aae</a>)</li> <li>move status infiltrator to layout component (<a href="https://gitlab.com/rxap/packages/commit/7ee22eebcf0b544df6e718205bd3fc353032cac9">7ee22ee</a>)</li> <li>move theme related code to the project angular-theme (<a href="https://gitlab.com/rxap/packages/commit/c0fd3bc6de2b1b43ddafa0743bc9efe3e144ea72">c0fd3bc</a>)</li> <li>only add margin to sidenav content if in collapsed mode (<a href="https://gitlab.com/rxap/packages/commit/96e00c459627077438f27299b29cc68419ac2b6a">96e00c4</a>)</li> <li>peer dependency issue (<a href="https://gitlab.com/rxap/packages/commit/ee95415370d9ef2396916d6c25061a0df791034a">ee95415</a>)</li> <li>refactor user service use (<a href="https://gitlab.com/rxap/packages/commit/3b30276a4847c009bab9e3322dde1efb54e80125">3b30276</a>)</li> <li>remove @Required decorator (<a href="https://gitlab.com/rxap/packages/commit/bcd9988f0667bf4563a0e5b91977becfd29b1597">bcd9988</a>)</li> <li>remove css class usage of container (<a href="https://gitlab.com/rxap/packages/commit/472cc12f824acc10bca596e4a34e8bc13e809eaa">472cc12</a>)</li> <li>set default layout header color to undefined (<a href="https://gitlab.com/rxap/packages/commit/569488a897a8df9f18e12eabe7a7da2ef1f1dc16">569488a</a>)</li> <li>start user settings theme sync (<a href="https://gitlab.com/rxap/packages/commit/6049e53bf4cfe54515430b48200e80f5ca993dae">6049e53</a>)</li> <li>support advanced settings for layout sidenav (<a href="https://gitlab.com/rxap/packages/commit/0a4a33de6af3c853fb86f1311b2da7c32d41e63f">0a4a33d</a>)</li> <li>use authorization service directly (<a href="https://gitlab.com/rxap/packages/commit/71024c3c64edc19ddd3b08c4b29dc28ed7ca598b">71024c3</a>)</li> <li>use mdi icons (<a href="https://gitlab.com/rxap/packages/commit/55afb8b4fbfecc588190d86bb61bb0635550d5fa">55afb8b</a>)</li> <li>use new angular-theme project (<a href="https://gitlab.com/rxap/packages/commit/67e9290c693b0f1c5ac087453897c0ee3d43521e">67e9290</a>)</li> <li>use relative path as default (<a href="https://gitlab.com/rxap/packages/commit/66d39a40be24c5d1db805ca493b9b4d1d523059e">66d39a4</a>)</li> <li>use tailwind to create a bundled theme.css (<a href="https://gitlab.com/rxap/packages/commit/da870f0ece624653a9ae1bc34b455e2f8f8ffc60">da870f0</a>)</li> </ul> <h3>Features</h3> <ul> <li>add changelog button (<a href="https://gitlab.com/rxap/packages/commit/582830bbf6192414b0f65cb5e20c3c77987de05f">582830b</a>)</li> <li>add language utility services (<a href="https://gitlab.com/rxap/packages/commit/4c248be9cf00e8e96c859ffa86bff2bd19d4c9f6">4c248be</a>)</li> <li>load icons on layout component creation (<a href="https://gitlab.com/rxap/packages/commit/29a5462000a690826b031d05575bbf1868474ef8">29a5462</a>)</li> <li>restore theme settings from user settings (<a href="https://gitlab.com/rxap/packages/commit/fd3270834279958e6650c099e55a812bde9c1c19">fd32708</a>)</li> <li>support custom menu items for the layout header component (<a href="https://gitlab.com/rxap/packages/commit/2e2c3518d7bd2a5cc11608cdbacacb0ccb27383f">2e2c351</a>)</li> <li>support dynamic font families and theme density (<a href="https://gitlab.com/rxap/packages/commit/6a549982461755f4470123ce90f9fb70990ee206">6a54998</a>)</li> <li>support dynamic theme configuration (<a href="https://gitlab.com/rxap/packages/commit/ce4f5c454ce267a79cd004351a2165063da1da1c">ce4f5c4</a>)</li> <li>use status indicator component (<a href="https://gitlab.com/rxap/packages/commit/cfdce4e9730f44963280153ede64b8219fdd3600">cfdce4e</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.37...@rxap/layout@16.0.0-dev.38">16.0.0-dev.38</a> (2023-10-01)</h1> <h3>Bug Fixes</h3> <ul> <li>ensure sidenav container is always fulling the screen (<a href="https://gitlab.com/rxap/packages/commit/31c72a17bea1e05b7f0b3b0bdcb1cc3697a55515">31c72a1</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.36...@rxap/layout@16.0.0-dev.37">16.0.0-dev.37</a> (2023-09-30)</h1> <h3>Bug Fixes</h3> <ul> <li>apply restored theme config in the correct order (<a href="https://gitlab.com/rxap/packages/commit/95c5dc07dbadfd82dbfa0ab44e4bf5f7f3fec0f4">95c5dc0</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.35...@rxap/layout@16.0.0-dev.36">16.0.0-dev.36</a> (2023-09-30)</h1> <h3>Bug Fixes</h3> <ul> <li>darkMode property was changed to a single (<a href="https://gitlab.com/rxap/packages/commit/f4979504c4bdbdc1d59e67756691380f835f0ee0">f497950</a>)</li> <li>start user settings theme sync (<a href="https://gitlab.com/rxap/packages/commit/14545bffba3de0afd2fd3a1a22c06507b15be3d6">14545bf</a>)</li> </ul> <h3>Features</h3> <ul> <li>restore theme settings from user settings (<a href="https://gitlab.com/rxap/packages/commit/35d2fefa3e5cd1c63962a6d9a1ba854679ee60c2">35d2fef</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.34...@rxap/layout@16.0.0-dev.35">16.0.0-dev.35</a> (2023-09-29)</h1> <h3>Bug Fixes</h3> <ul> <li>move theme related code to the project angular-theme (<a href="https://gitlab.com/rxap/packages/commit/dff497a36e7dab5de535050c5ddafa7082bfa399">dff497a</a>)</li> <li>use new angular-theme project (<a href="https://gitlab.com/rxap/packages/commit/4d99def8e1b70a5c27e19bc5f5452ee1d5eadfa8">4d99def</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.33...@rxap/layout@16.0.0-dev.34">16.0.0-dev.34</a> (2023-09-28)</h1> <h3>Bug Fixes</h3> <ul> <li>improve dynamic theme handling (<a href="https://gitlab.com/rxap/packages/commit/7ffd28b0a6d86cd6690cac1d750bda104108fb74">7ffd28b</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.32...@rxap/layout@16.0.0-dev.33">16.0.0-dev.33</a> (2023-09-28)</h1> <h3>Features</h3> <ul> <li>support dynamic font families and theme density (<a href="https://gitlab.com/rxap/packages/commit/a21236669cfe89f51b5946cd2d28e72411481dc9">a212366</a>)</li> <li>support dynamic theme configuration (<a href="https://gitlab.com/rxap/packages/commit/2c0cf1d14803dc4f1e7db47cd269c3e8b57de2d4">2c0cf1d</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.31...@rxap/layout@16.0.0-dev.32">16.0.0-dev.32</a> (2023-09-27)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.30...@rxap/layout@16.0.0-dev.31">16.0.0-dev.31</a> (2023-09-22)</h1> <h3>Bug Fixes</h3> <ul> <li>initial state issues (<a href="https://gitlab.com/rxap/packages/commit/f390f65c83d131bf71cbc2930e80c11743380241">f390f65</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.29...@rxap/layout@16.0.0-dev.30">16.0.0-dev.30</a> (2023-09-21)</h1> <h3>Bug Fixes</h3> <ul> <li>change overscroll-contain to overscroll-auto (<a href="https://gitlab.com/rxap/packages/commit/0a8db9ff3d131b98d207ad40aef411927ebdc837">0a8db9f</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.28...@rxap/layout@16.0.0-dev.29">16.0.0-dev.29</a> (2023-09-21)</h1> <h3>Bug Fixes</h3> <ul> <li>close sidenav if change to collapsed mode (<a href="https://gitlab.com/rxap/packages/commit/7a356602e2228360f85bae8cb9346e3228e0fe29">7a35660</a>)</li> <li>only add margin to sidenav content if in collapsed mode (<a href="https://gitlab.com/rxap/packages/commit/c72febe141f8c11f126f99b3ef23b753599a5a47">c72febe</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.27...@rxap/layout@16.0.0-dev.28">16.0.0-dev.28</a> (2023-09-21)</h1> <h3>Bug Fixes</h3> <ul> <li>move status infiltrator to layout component (<a href="https://gitlab.com/rxap/packages/commit/1d1f69b22ae171a9d69b7d6d9e3f4e9f2e0849ee">1d1f69b</a>)</li> <li>support advanced settings for layout sidenav (<a href="https://gitlab.com/rxap/packages/commit/65ff765b66f799de5089c954d34532bc9b4a7e77">65ff765</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.26...@rxap/layout@16.0.0-dev.27">16.0.0-dev.27</a> (2023-09-19)</h1> <h3>Bug Fixes</h3> <ul> <li>refactor user service use (<a href="https://gitlab.com/rxap/packages/commit/cf553c96765bfbc0ded49c6611e4d57903e55647">cf553c9</a>)</li> <li>use authorization service directly (<a href="https://gitlab.com/rxap/packages/commit/35ec333dc0f2959302f9fa74160de8a8d1437a7f">35ec333</a>)</li> </ul> <h3>Features</h3> <ul> <li>add language utility services (<a href="https://gitlab.com/rxap/packages/commit/96e67855bfcb27f274393526d1ab81f6d7c2f24a">96e6785</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.25...@rxap/layout@16.0.0-dev.26">16.0.0-dev.26</a> (2023-09-18)</h1> <h3>Bug Fixes</h3> <ul> <li>use relative path as default (<a href="https://gitlab.com/rxap/packages/commit/42f1a8e68794926635c33371dabded7a1bcc8682">42f1a8e</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.24...@rxap/layout@16.0.0-dev.25">16.0.0-dev.25</a> (2023-09-17)</h1> <h3>Features</h3> <ul> <li>add changelog button (<a href="https://gitlab.com/rxap/packages/commit/ccd3b2b4467ed82cc1a5efdcdf948ef83537de06">ccd3b2b</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.23...@rxap/layout@16.0.0-dev.24">16.0.0-dev.24</a> (2023-09-14)</h1> <h3>Bug Fixes</h3> <ul> <li>remove css class usage of container (<a href="https://gitlab.com/rxap/packages/commit/9a1969f8748a08d6d948f9e7d4f4b511c1349352">9a1969f</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.22...@rxap/layout@16.0.0-dev.23">16.0.0-dev.23</a> (2023-09-12)</h1> <h3>Bug Fixes</h3> <ul> <li>peer dependency issue (<a href="https://gitlab.com/rxap/packages/commit/e67e2b8eb884b598536d16c2c544a9ad9be5b53e">e67e2b8</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.21...@rxap/layout@16.0.0-dev.22">16.0.0-dev.22</a> (2023-09-12)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.20...@rxap/layout@16.0.0-dev.21">16.0.0-dev.21</a> (2023-09-07)</h1> <h3>Bug Fixes</h3> <ul> <li>ensure the username is always fully visible (<a href="https://gitlab.com/rxap/packages/commit/48fc3f5f4906485961351b7e13d44a77b6aa37b8">48fc3f5</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.19...@rxap/layout@16.0.0-dev.20">16.0.0-dev.20</a> (2023-09-07)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.18...@rxap/layout@16.0.0-dev.19">16.0.0-dev.19</a> (2023-09-03)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.17...@rxap/layout@16.0.0-dev.18">16.0.0-dev.18</a> (2023-09-03)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.16...@rxap/layout@16.0.0-dev.17">16.0.0-dev.17</a> (2023-09-03)</h1> <h3>Bug Fixes</h3> <ul> <li>use mdi icons (<a href="https://gitlab.com/rxap/packages/commit/abc10a146c502bebda62568a9627ca2771142d2c">abc10a1</a>)</li> </ul> <h3>Features</h3> <ul> <li>load icons on layout component creation (<a href="https://gitlab.com/rxap/packages/commit/0143fc37d5eb9da95e87cd28edfcd1cb4734dc1a">0143fc3</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.15...@rxap/layout@16.0.0-dev.16">16.0.0-dev.16</a> (2023-09-01)</h1> <h3>Features</h3> <ul> <li>use status indicator component (<a href="https://gitlab.com/rxap/packages/commit/a95c8add48196bbec87904e41b26b664c7e14b1c">a95c8ad</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.14...@rxap/layout@16.0.0-dev.15">16.0.0-dev.15</a> (2023-08-31)</h1> <h3>Bug Fixes</h3> <ul> <li>ensure the project name is not included in the project tag list (<a href="https://gitlab.com/rxap/packages/commit/b131ac3bd92b3b8799d62f15bbd30a1997d7c753">b131ac3</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.13...@rxap/layout@16.0.0-dev.14">16.0.0-dev.14</a> (2023-08-24)</h1> <h3>Features</h3> <ul> <li>support custom menu items for the layout header component (<a href="https://gitlab.com/rxap/packages/commit/97ce8d0ea58cff709c5e8516733be866b89b3999">97ce8d0</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.12...@rxap/layout@16.0.0-dev.13">16.0.0-dev.13</a> (2023-08-07)</h1> <h3>Bug Fixes</h3> <ul> <li>set default layout header color to undefined (<a href="https://gitlab.com/rxap/packages/commit/21b6199f047f2345de3e716a038306b2303e6dc6">21b6199</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.11...@rxap/layout@16.0.0-dev.12">16.0.0-dev.12</a> (2023-08-06)</h1> <h3>Bug Fixes</h3> <ul> <li>disable i18n check in development mode (<a href="https://gitlab.com/rxap/packages/commit/69f92d3f66599ac8f07f72b4a7a4331e486d965a">69f92d3</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.10...@rxap/layout@16.0.0-dev.11">16.0.0-dev.11</a> (2023-08-06)</h1> <h3>Bug Fixes</h3> <ul> <li>remove @Required decorator (<a href="https://gitlab.com/rxap/packages/commit/8df4bf33d4a9929f5bc65f8973963fbe1d7ce193">8df4bf3</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.9...@rxap/layout@16.0.0-dev.10">16.0.0-dev.10</a> (2023-08-04)</h1> <h3>Bug Fixes</h3> <ul> <li>add licence file to publishable packages (<a href="https://gitlab.com/rxap/packages/commit/ca6d4d509a743b89bad5ed7ae935d3007231705a">ca6d4d5</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.8...@rxap/layout@16.0.0-dev.9">16.0.0-dev.9</a> (2023-08-03)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/layout</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.7...@rxap/layout@16.0.0-dev.8">16.0.0-dev.8</a> (2023-08-03)</h1> <h3>Bug Fixes</h3> <ul> <li>add browser-tailwind as imp dep if project has tailwind configuration (<a href="https://gitlab.com/rxap/packages/commit/6ea13c5f9b4e652436bf1da879b564d1ed7b8061">6ea13c5</a>)</li> <li>ensure min padding for navigation items (<a href="https://gitlab.com/rxap/packages/commit/2667fd785e891e6145acd9c68918a9deb270aaf1">2667fd7</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.6...@rxap/layout@16.0.0-dev.7">16.0.0-dev.7</a> (2023-08-01)</h1> <h3>Bug Fixes</h3> <ul> <li>generate readme with peer dependencies to install (<a href="https://gitlab.com/rxap/packages/commit/e7039bb5e86ffeadfe7cc92d5fc71d32f8efb4fb">e7039bb</a>)</li> <li>use tailwind to create a bundled theme.css (<a href="https://gitlab.com/rxap/packages/commit/bfda0dc14c6d46f374e81871ab18307dc9f6d9b4">bfda0dc</a>)</li> </ul> <h1>16.0.0-dev.6 (2023-08-01)</h1> <h3>Bug Fixes</h3> <ul> <li>resolve circular dependency between NavigationItemComponent and NavigationComponent (<a href="https://gitlab.com/rxap/packages/commit/cc0eece415c86614f1cb29e973649daa4f9b1547">cc0eece</a>)</li> <li>restructure and merge mono repos packages, schematics, plugins and nest (<a href="https://gitlab.com/rxap/packages/commit/a057d77ca2acf9426a03a497da8532f8a2fe2c86">a057d77</a>)</li> <li>update package dependency versions (<a href="https://gitlab.com/rxap/packages/commit/45bd022d755c0c11f7d0bcc76d26b39928007941">45bd022</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.4...@rxap/layout@16.0.0-dev.5">16.0.0-dev.5</a> (2023-07-20)</h1> <h3>Bug Fixes</h3> <ul> <li>resolve circular dependency between NavigationItemComponent and NavigationComponent (<a href="https://git