UNPKG

@rxap/form-system

Version:

This package provides a set of directives, decorators, mixins, and validators to simplify the creation of dynamic forms in Angular applications. It offers features such as automatic control creation, data source integration, component customization, and h

689 lines (645 loc) 48.8 kB
<!doctype html> <html class="no-js" lang=""> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>angular-form-system</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-form-system</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> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@19.0.4-dev.0...@rxap/form-system@19.0.4">19.0.4</a> (2025-05-16)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@19.0.3...@rxap/form-system@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/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@19.0.3-dev.2...@rxap/form-system@19.0.3">19.0.3</a> (2025-03-07)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@19.0.3-dev.1...@rxap/form-system@19.0.3-dev.2">19.0.3-dev.2</a> (2025-02-28)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@19.0.3-dev.0...@rxap/form-system@19.0.3-dev.1">19.0.3-dev.1</a> (2025-02-26)</h2> <h3>Bug Fixes</h3> <ul> <li>update package groups (<a href="https://gitlab.com/rxap/packages/commit/5810ff609fe867842a6c9fc8531511dc1e97587a">5810ff6</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@19.0.2...@rxap/form-system@19.0.3-dev.0">19.0.3-dev.0</a> (2025-02-25)</h2> <h3>Bug Fixes</h3> <ul> <li>update package groups (<a href="https://gitlab.com/rxap/packages/commit/7060546f6e8c0c7644bd18f5ad6b1ed62c672fc2">7060546</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@19.0.2-dev.3...@rxap/form-system@19.0.2">19.0.2</a> (2025-02-23)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@19.0.2-dev.2...@rxap/form-system@19.0.2-dev.3">19.0.2-dev.3</a> (2025-02-23)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@19.0.2-dev.1...@rxap/form-system@19.0.2-dev.2">19.0.2-dev.2</a> (2025-02-23)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@19.0.2-dev.0...@rxap/form-system@19.0.2-dev.1">19.0.2-dev.1</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/form-system@19.0.1...@rxap/form-system@19.0.2-dev.0">19.0.2-dev.0</a> (2025-02-18)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@19.0.1-dev.6...@rxap/form-system@19.0.1">19.0.1</a> (2025-02-13)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@19.0.1-dev.5...@rxap/form-system@19.0.1-dev.6">19.0.1-dev.6</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/form-system@19.0.1-dev.4...@rxap/form-system@19.0.1-dev.5">19.0.1-dev.5</a> (2025-02-13)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@19.0.1-dev.3...@rxap/form-system@19.0.1-dev.4">19.0.1-dev.4</a> (2025-02-10)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@19.0.1-dev.2...@rxap/form-system@19.0.1-dev.3">19.0.1-dev.3</a> (2025-02-07)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@19.0.1-dev.1...@rxap/form-system@19.0.1-dev.2">19.0.1-dev.2</a> (2025-01-28)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@19.0.1-dev.0...@rxap/form-system@19.0.1-dev.1">19.0.1-dev.1</a> (2025-01-22)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@19.0.0...@rxap/form-system@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/form-system</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@19.0.0-dev.2...@rxap/form-system@19.0.0">19.0.0</a> (2025-01-08)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@19.0.0-dev.1...@rxap/form-system@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/form-system</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.2.2-dev.0...@rxap/form-system@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/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.2.1...@rxap/form-system@18.2.2-dev.0">18.2.2-dev.0</a> (2024-12-10)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.2.1-dev.0...@rxap/form-system@18.2.1">18.2.1</a> (2024-10-28)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.2.0...@rxap/form-system@18.2.1-dev.0">18.2.1-dev.0</a> (2024-10-04)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.2.0-dev.6...@rxap/form-system@18.2.0">18.2.0</a> (2024-09-18)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.2.0-dev.5...@rxap/form-system@18.2.0-dev.6">18.2.0-dev.6</a> (2024-08-29)</h1> <h3>Features</h3> <ul> <li>support custom toDisplay Function (<a href="https://gitlab.com/rxap/packages/commit/e8c40e41a7112c25726704ab5ea1314138efdba1">e8c40e4</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.2.0-dev.4...@rxap/form-system@18.2.0-dev.5">18.2.0-dev.5</a> (2024-08-29)</h1> <h3>Bug Fixes</h3> <ul> <li>use the correct types (<a href="https://gitlab.com/rxap/packages/commit/d4ecc4f284ceb70cb045f33e04524763126afa22">d4ecc4f</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.2.0-dev.3...@rxap/form-system@18.2.0-dev.4">18.2.0-dev.4</a> (2024-08-29)</h1> <h3>Bug Fixes</h3> <ul> <li>use the correct decorator (<a href="https://gitlab.com/rxap/packages/commit/ee5dd1bd2fde25e8bf48551efc13d869ad7f2fd1">ee5dd1b</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.2.0-dev.2...@rxap/form-system@18.2.0-dev.3">18.2.0-dev.3</a> (2024-08-29)</h1> <h3>Bug Fixes</h3> <ul> <li>add missing defaults (<a href="https://gitlab.com/rxap/packages/commit/5ff7af0cb80258da77a4474fb2241891f63c7da9">5ff7af0</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.2.0-dev.1...@rxap/form-system@18.2.0-dev.2">18.2.0-dev.2</a> (2024-08-29)</h1> <h3>Features</h3> <ul> <li>support custom is value function (<a href="https://gitlab.com/rxap/packages/commit/3cc456c5489c781414f18020190302fd634b2d4e">3cc456c</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.2.0-dev.0...@rxap/form-system@18.2.0-dev.1">18.2.0-dev.1</a> (2024-08-29)</h1> <h3>Bug Fixes</h3> <ul> <li>add NoopResolveMethod (<a href="https://gitlab.com/rxap/packages/commit/20654571d201861e3d9130de0dc36b724fde55c5">2065457</a>)</li> <li>prefer the ngControl from the next MatFormField (<a href="https://gitlab.com/rxap/packages/commit/c523354395c521750937eb52dcd34cdd2c1d596b">c523354</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.1.3...@rxap/form-system@18.2.0-dev.0">18.2.0-dev.0</a> (2024-08-27)</h1> <h3>Features</h3> <ul> <li>add autocomplete options directive (<a href="https://gitlab.com/rxap/packages/commit/f10476ea0c43d80f62315f5bd24cd87bafa37b31">f10476e</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.1.3-dev.1...@rxap/form-system@18.1.3">18.1.3</a> (2024-08-22)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.1.3-dev.0...@rxap/form-system@18.1.3-dev.1">18.1.3-dev.1</a> (2024-08-22)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.1.2...@rxap/form-system@18.1.3-dev.0">18.1.3-dev.0</a> (2024-08-19)</h2> <h3>Bug Fixes</h3> <ul> <li>add shouldTemporarilyDeleted input (<a href="https://gitlab.com/rxap/packages/commit/9c955c09002831e7dffb81e4f28de6a57b2843d8">9c955c0</a>)</li> <li>correctly access and add the delete control (<a href="https://gitlab.com/rxap/packages/commit/f420ff8667fb31a9897a4a7fc159bf90ff5a8613">f420ff8</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.1.2-dev.1...@rxap/form-system@18.1.2">18.1.2</a> (2024-07-30)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.1.2-dev.0...@rxap/form-system@18.1.2-dev.1">18.1.2-dev.1</a> (2024-07-25)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.1.1...@rxap/form-system@18.1.2-dev.0">18.1.2-dev.0</a> (2024-07-09)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.1.1-dev.0...@rxap/form-system@18.1.1">18.1.1</a> (2024-06-30)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.1.0...@rxap/form-system@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/form-system</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.0.3...@rxap/form-system@18.1.0">18.1.0</a> (2024-06-28)</h1> <h3>Features</h3> <ul> <li>support injection in adapter functions (<a href="https://gitlab.com/rxap/packages/commit/44acfdfed21cef20abce3d6d2c4fa2d3aab26d33">44acfdf</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.0.3-dev.1...@rxap/form-system@18.0.3">18.0.3</a> (2024-06-28)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.0.3-dev.0...@rxap/form-system@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/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.0.2...@rxap/form-system@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/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.0.2-dev.2...@rxap/form-system@18.0.2">18.0.2</a> (2024-06-18)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.0.2-dev.1...@rxap/form-system@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/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.0.2-dev.0...@rxap/form-system@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/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.0.1...@rxap/form-system@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/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@18.0.1-dev.0...@rxap/form-system@18.0.1">18.0.1</a> (2024-05-30)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@17.0.1...@rxap/form-system@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/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@17.0.1...@rxap/form-system@17.0.1">17.0.1</a> (2024-05-29)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@17.0.1...@rxap/form-system@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/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@17.0.1-dev.0...@rxap/form-system@17.0.1">17.0.1</a> (2024-05-29)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.1.2...@rxap/form-system@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/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.1.2-dev.0...@rxap/form-system@16.1.2">16.1.2</a> (2024-05-28)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.1.1...@rxap/form-system@16.1.2-dev.0">16.1.2-dev.0</a> (2024-05-28)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.1.1-dev.0...@rxap/form-system@16.1.1">16.1.1</a> (2024-05-27)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.1.0...@rxap/form-system@16.1.1-dev.0">16.1.1-dev.0</a> (2024-05-27)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.1.0-dev.4...@rxap/form-system@16.1.0">16.1.0</a> (2024-04-17)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.1.0-dev.3...@rxap/form-system@16.1.0-dev.4">16.1.0-dev.4</a> (2024-04-09)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.1.0-dev.2...@rxap/form-system@16.1.0-dev.3">16.1.0-dev.3</a> (2024-03-27)</h1> <h3>Bug Fixes</h3> <ul> <li>reduce type restriction (<a href="https://gitlab.com/rxap/packages/commit/20e17a03c3f8ce6a2e24d8d6c5a2f06659211325">20e17a0</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.1.0-dev.1...@rxap/form-system@16.1.0-dev.2">16.1.0-dev.2</a> (2024-03-26)</h1> <h3>Bug Fixes</h3> <ul> <li><strong>form-system:</strong> update ResolveByUuidParameter function to take an object as argument (<a href="https://gitlab.com/rxap/packages/commit/af356dcb89ac8f8c92df2e4725e82afe4b849fab">af356dc</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.1.0-dev.0...@rxap/form-system@16.1.0-dev.1">16.1.0-dev.1</a> (2024-03-11)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.0.1-dev.1...@rxap/form-system@16.1.0-dev.0">16.1.0-dev.0</a> (2024-03-07)</h1> <h3>Features</h3> <ul> <li>add UseOptionMethod decorator (<a href="https://gitlab.com/rxap/packages/commit/cca6ed600c616142595547fbc7145eae61787805">cca6ed6</a>)</li> <li>add UseOptionMethod decorator (<a href="https://gitlab.com/rxap/packages/commit/75496b225ff57ae186510d74253246db5c373e13">75496b2</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.0.1-dev.0...@rxap/form-system@16.0.1-dev.1">16.0.1-dev.1</a> (2024-03-05)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.0.0...@rxap/form-system@16.0.1-dev.0">16.0.1-dev.0</a> (2024-03-04)</h2> <h3>Bug Fixes</h3> <ul> <li>auto add deleted control (<a href="https://gitlab.com/rxap/packages/commit/654fd2d4ebafaa174e953b97ab4340c5e406a138">654fd2d</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.0.0-dev.22...@rxap/form-system@16.0.0">16.0.0</a> (2024-02-07)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.0.0-dev.21...@rxap/form-system@16.0.0-dev.22">16.0.0-dev.22</a> (2024-02-05)</h1> <h3>Bug Fixes</h3> <ul> <li>remove restrictive member scopes (<a href="https://gitlab.com/rxap/packages/commit/24dbc45d4e5508befe87ef2884c3642c34400677">24dbc45</a>)</li> <li>set default member scope to protected (<a href="https://gitlab.com/rxap/packages/commit/99c55916fd55f8300dbcf123d5d546f5bc1c2fc1">99c5591</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.0.0-dev.20...@rxap/form-system@16.0.0-dev.21">16.0.0-dev.21</a> (2023-10-18)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.0.0-dev.19...@rxap/form-system@16.0.0-dev.20">16.0.0-dev.20</a> (2023-10-11)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.0.0-dev.19...@rxap/form-system@16.0.0-dev.19">16.0.0-dev.19</a> (2023-10-11)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.0.0-dev.5...@rxap/form-system@16.0.0-dev.19">16.0.0-dev.19</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>add tailwind bundle build target and configurations (<a href="https://gitlab.com/rxap/packages/commit/de3825a0e2977389f81cc4ce63e510767ca25810">de3825a</a>)</li> <li>convert null context to empty object (<a href="https://gitlab.com/rxap/packages/commit/2f038be2a9de902d902b4d73b79c326d46952ecd">2f038be</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>generate readme with peer dependencies to install (<a href="https://gitlab.com/rxap/packages/commit/27c2cd7d98f0c8a499b8c30719f49d69e4970ae9">27c2cd7</a>)</li> <li>peer dependency issue (<a href="https://gitlab.com/rxap/packages/commit/ee95415370d9ef2396916d6c25061a0df791034a">ee95415</a>)</li> <li>remove @Required decorator (<a href="https://gitlab.com/rxap/packages/commit/bcd9988f0667bf4563a0e5b91977becfd29b1597">bcd9988</a>)</li> <li>use DataSource interface directly (<a href="https://gitlab.com/rxap/packages/commit/4e8a01b2670261a4c23b7f3bdf4d47e8b2098aca">4e8a01b</a>)</li> </ul> <h3>Features</h3> <ul> <li>add form array utility directives (<a href="https://gitlab.com/rxap/packages/commit/faf44ccb9e2c0c1a8b1f78520055ffce37e92484">faf44cc</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.0.0-dev.17...@rxap/form-system@16.0.0-dev.18">16.0.0-dev.18</a> (2023-09-27)</h1> <h3>Bug Fixes</h3> <ul> <li>use DataSource interface directly (<a href="https://gitlab.com/rxap/packages/commit/ab049b5be2b7e9b46c8ae94cab3f049b724ff2c9">ab049b5</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.0.0-dev.16...@rxap/form-system@16.0.0-dev.17">16.0.0-dev.17</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/form-system@16.0.0-dev.15...@rxap/form-system@16.0.0-dev.16">16.0.0-dev.16</a> (2023-09-12)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.0.0-dev.14...@rxap/form-system@16.0.0-dev.15">16.0.0-dev.15</a> (2023-09-07)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.0.0-dev.13...@rxap/form-system@16.0.0-dev.14">16.0.0-dev.14</a> (2023-09-03)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.0.0-dev.12...@rxap/form-system@16.0.0-dev.13">16.0.0-dev.13</a> (2023-09-03)</h1> <h3>Features</h3> <ul> <li>add form array utility directives (<a href="https://gitlab.com/rxap/packages/commit/908113c4a308d5468ae5924b5441090288c6707e">908113c</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.0.0-dev.11...@rxap/form-system@16.0.0-dev.12">16.0.0-dev.12</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/form-system@16.0.0-dev.10...@rxap/form-system@16.0.0-dev.11">16.0.0-dev.11</a> (2023-08-14)</h1> <h3>Bug Fixes</h3> <ul> <li>convert null context to empty object (<a href="https://gitlab.com/rxap/packages/commit/a8b237678a19e03769e65387ce54830bb8b7fb5a">a8b2376</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.0.0-dev.9...@rxap/form-system@16.0.0-dev.10">16.0.0-dev.10</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/form-system@16.0.0-dev.8...@rxap/form-system@16.0.0-dev.9">16.0.0-dev.9</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/form-system@16.0.0-dev.7...@rxap/form-system@16.0.0-dev.8">16.0.0-dev.8</a> (2023-08-03)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.0.0-dev.6...@rxap/form-system@16.0.0-dev.7">16.0.0-dev.7</a> (2023-08-01)</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>add tailwind bundle build target and configurations (<a href="https://gitlab.com/rxap/packages/commit/bec6b96be15bbc11ad072ccefdcaf7df9e8fea52">bec6b96</a>)</li> <li>generate readme with peer dependencies to install (<a href="https://gitlab.com/rxap/packages/commit/e7039bb5e86ffeadfe7cc92d5fc71d32f8efb4fb">e7039bb</a>)</li> </ul> <h1>16.0.0-dev.6 (2023-08-01)</h1> <h3>Bug Fixes</h3> <ul> <li>add missing utility modules (<a href="https://gitlab.com/rxap/packages/commit/782ea5d41816f476700a1e88918af83303f26fc9">782ea5d</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/form-system@16.0.0-dev.4...@rxap/form-system@16.0.0-dev.5">16.0.0-dev.5</a> (2023-07-11)</h1> <h3>Bug Fixes</h3> <ul> <li>add missing utility modules (<a href="https://gitlab.com/rxap/packages/commit/105b0952f4d90f6d6263b6ed07411cfdd8e4764c">105b095</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.0.0-dev.3...@rxap/form-system@16.0.0-dev.4">16.0.0-dev.4</a> (2023-07-10)</h1> <h3>Bug Fixes</h3> <ul> <li>update package dependency versions (<a href="https://gitlab.com/rxap/packages/commit/8479f5c405a885cc0f300cec6156584e4c65d59c">8479f5c</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.0.0-dev.2...@rxap/form-system@16.0.0-dev.3">16.0.0-dev.3</a> (2023-07-10)</h1> <h3>Bug Fixes</h3> <ul> <li>restructure and merge mono repos packages, schematics, plugins and nest (<a href="https://gitlab.com/rxap/packages/commit/653b4cd39fc92d322df9b3959651fea0aa6079da">653b4cd</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.0.0-dev.1...@rxap/form-system@16.0.0-dev.2">16.0.0-dev.2</a> (2023-05-31)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@16.0.0-dev.0...@rxap/form-system@16.0.0-dev.1">16.0.0-dev.1</a> (2023-05-18)</h1> <h3>Bug Fixes</h3> <ul> <li>update rxap packagedependencies (<a href="https://gitlab.com/rxap/packages/commit/6e12567c05ee3c504da5079cb393660f2ab4cd30">6e12567</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@15.0.0...@rxap/form-system@16.0.0-dev.0">16.0.0-dev.0</a> (2023-05-18)</h1> <h3>chore</h3> <ul> <li>upgrade to nrwl 16.x.x (<a href="https://gitlab.com/rxap/packages/commit/12dd87ef38d465c8af33cd26f7d5d7714bf7c392">12dd87e</a>)</li> </ul> <h3>BREAKING CHANGES</h3> <ul> <li>upgrade nrwl 16.x.x</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@14.1.0...@rxap/form-system@15.0.0">15.0.0</a> (2023-05-17)</h1> <h3>chore</h3> <ul> <li>upgrade to nrwl 15.x.x (<a href="https://gitlab.com/rxap/packages/commit/ad95577538adc5cd134cde8d1ff3b8fad52c9c2b">ad95577</a>)</li> </ul> <h3>BREAKING CHANGES</h3> <ul> <li>upgrade nrwl 15.x.x</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@14.1.0-dev.1...@rxap/form-system@14.1.0">14.1.0</a> (2023-05-17)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@14.1.0-dev.0...@rxap/form-system@14.1.0-dev.1">14.1.0-dev.1</a> (2023-05-11)</h1> <h3>Bug Fixes</h3> <ul> <li>only trigger a options reload if valuechanges (<a href="https://gitlab.com/rxap/packages/commit/fa5e248acc4c22232b454110e8affa4f11a78cda">fa5e248</a>)</li> <li>prevent call stack issue (<a href="https://gitlab.com/rxap/packages/commit/48d244d02824800c02b454ce9c9f2baf5bdef26d">48d244d</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@14.0.2...@rxap/form-system@14.1.0-dev.0">14.1.0-dev.0</a> (2023-04-18)</h1> <h3>Bug Fixes</h3> <ul> <li>add check for ngControlinstance (<a href="https://gitlab.com/rxap/packages/commit/045011ef4a695815b9e9b1414a2a212dc08b39fe">045011e</a>)</li> <li>trigger the mat autocomplete to displayfunction (<a href="https://gitlab.com/rxap/packages/commit/b16fbcc2fa931201640fd6c9847b0f2825f086d6">b16fbcc</a>)</li> <li><strong>form-system:</strong> ensure the InputSelectOptionsDirective settings isdefined (<a href="https://gitlab.com/rxap/packages/commit/b3ba44e88d22ab9d5c3bb86ba79e31f30e9fcd15">b3ba44e</a>)</li> <li><strong>form-system:</strong> expose useDataSourceValueproperty (<a href="https://gitlab.com/rxap/packages/commit/0543a9f5b2feb15d1bbb523f759b7a37178cbf52">0543a9f</a>)</li> </ul> <h3>Features</h3> <ul> <li><strong>form-system:</strong> addIsSelectableValueDirective (<a href="https://gitlab.com/rxap/packages/commit/878c34375316057a06a93a8a5c6311eb4b3af6e7">878c343</a>)</li> <li><strong>form-system:</strong> introduce generic extract options data sourcemixin (<a href="https://gitlab.com/rxap/packages/commit/e22d2e70e86e174c39922949862706e9267e5d29">e22d2e7</a>)</li> <li><strong>form-system:</strong> support filterOptions inInputSelectOptionsDirective (<a href="https://gitlab.com/rxap/packages/commit/fe79c7b6f4fdce4f86e679c66ec575cd75667098">fe79c7b</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@14.0.1...@rxap/form-system@14.0.2">14.0.2</a> (2022-12-14)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@14.0.0...@rxap/form-system@14.0.1">14.0.1</a> (2022-12-13)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@13.0.0...@rxap/form-system@14.0.0">14.0.0</a> (2022-09-16)</h1> <h3>chore</h3> <ul> <li>upgrade to 14.x.x (<a href="https://gitlab.com/rxap/packages/commit/66f0719ecac1378ca6f3edbf670de8de2fc33401">66f0719</a>)</li> </ul> <h3>BREAKING CHANGES</h3> <ul> <li>upgrade to 14.x.x</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@13.0.0-next.3...@rxap/form-system@13.0.0">13.0.0</a> (2022-09-11)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@13.0.0-next.2...@rxap/form-system@13.0.0-next.3">13.0.0-next.3</a> (2022-03-29)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@12.1.5...@rxap/form-system@13.0.0-next.2">13.0.0-next.2</a> (2022-03-24)</h1> <h3>Build System</h3> <ul> <li>upgrade to nrwl/angular13.x.x (<a href="https://gitlab.com/rxap/packages/commit/f8920e7dde7bd2d4b4efac2b7097543d51482f81">f8920e7</a>)</li> </ul> <h3>BREAKING CHANGES</h3> <ul> <li>update the core nrwl/angular packages to 13.x.x</li> </ul> <p>Signed-off-by: Merzough Münker <a href="mailto:mmuenker@digitaix.com">mmuenker@digitaix.com</a></p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@12.1.4...@rxap/form-system@12.1.5">12.1.5</a> (2022-03-17)</h2> <h3>Bug Fixes</h3> <ul> <li>allow that select value is not passed to the data source viewchange (<a href="https://gitlab.com/rxap/packages/commit/a79c25fbdd69ddd7a7151dd083fa7e9d653a1881">a79c25f</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@12.1.4...@rxap/form-system@13.0.0-next.1">13.0.0-next.1</a> (2022-03-17)</h1> <h3>Build System</h3> <ul> <li>upgrade to nrwl/angular13.x.x (<a href="https://gitlab.com/rxap/packages/commit/f8920e7dde7bd2d4b4efac2b7097543d51482f81">f8920e7</a>)</li> </ul> <h3>BREAKING CHANGES</h3> <ul> <li>update the core nrwl/angular packages to 13.x.x</li> </ul> <p>Signed-off-by: Merzough Münker <a href="mailto:mmuenker@digitaix.com">mmuenker@digitaix.com</a></p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@12.1.3...@rxap/form-system@12.1.4">12.1.4</a> (2022-03-07)</h2> <h3>Bug Fixes</h3> <ul> <li>reduce log population in productionmode (<a href="https://gitlab.com/rxap/packages/commit/2d7186bc32ae12f0df31d0293ade60ec25645355">2d7186b</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@12.1.3...@rxap/form-system@13.0.0-next.0">13.0.0-next.0</a> (2022-02-19)</h1> <h3>Build System</h3> <ul> <li>upgrade to nrwl/angular13.x.x (<a href="https://gitlab.com/rxap/packages/commit/f8920e7dde7bd2d4b4efac2b7097543d51482f81">f8920e7</a>)</li> </ul> <h3>BREAKING CHANGES</h3> <ul> <li>update the core nrwl/angular packages to 13.x.x</li> </ul> <p>Signed-off-by: Merzough Münker <a href="mailto:mmuenker@digitaix.com">mmuenker@digitaix.com</a></p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@12.1.2...@rxap/form-system@12.1.3">12.1.3</a> (2021-12-07)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>input-select-options:</strong> only show error message in devmode (<a href="https://gitlab.com/rxap/packages/commit/11e68f9904e8baaefe0cca2f53cda4a2992470cf">11e68f9</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@12.1.1...@rxap/form-system@12.1.2">12.1.2</a> (2021-12-07)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>input-select-options:</strong> only show error message in devmode (<a href="https://gitlab.com/rxap/packages/commit/7934549f0313265bcc3ea3abb975d693e8c803b5">7934549</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@12.1.0...@rxap/form-system@12.1.1">12.1.1</a> (2021-12-06)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>input-select-options:</strong> allow emptyoptions (<a href="https://gitlab.com/rxap/packages/commit/aa16f98216c56a9be068d7a59242940d3ed10b4d">aa16f98</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@12.0.11...@rxap/form-system@12.1.0">12.1.0</a> (2021-11-30)</h1> <h3>Features</h3> <ul> <li><strong>input-select-options:</strong> support matautocomplete (<a href="https://gitlab.com/rxap/packages/commit/da3e58b6bd8f672d4b474665d723ac2fc70c9bd9">da3e58b</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@12.0.10...@rxap/form-system@12.0.11">12.0.11</a> (2021-08-11)</h2> <h3>Bug Fixes</h3> <ul> <li>update types (<a href="https://gitlab.com/rxap/packages/commit/f9f4c5c94c3733844d313c7e535a34ee11e7dba3">f9f4c5c</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@12.0.9...@rxap/form-system@12.0.10">12.0.10</a> (2021-08-02)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>input-select-options:</strong> check if options areempty (<a href="https://gitlab.com/rxap/packages/commit/03068e626e6d14b9659a51a8adcc94d0ac3fff4f">03068e6</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@12.0.9-next.0...@rxap/form-system@12.0.9">12.0.9</a> (2021-07-09)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@12.0.8...@rxap/form-system@12.0.9-next.0">12.0.9-next.0</a> (2021-07-09)</h2> <h3>Bug Fixes</h3> <ul> <li>split into rxjs and reflect-metadata subpackages (<a href="https://gitlab.com/rxap/packages/commit/ab6e32562dbed73752165f3568624f8d3417d7ee">ab6e325</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@12.0.7...@rxap/form-system@12.0.8">12.0.8</a> (2021-06-24)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@12.0.6...@rxap/form-system@12.0.7">12.0.7</a> (2021-06-23)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@12.0.5...@rxap/form-system@12.0.6">12.0.6</a> (2021-06-23)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@12.0.4...@rxap/form-system@12.0.5">12.0.5</a> (2021-06-14)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@12.0.3...@rxap/form-system@12.0.4">12.0.4</a> (2021-06-10)</h2> <h3>Bug Fixes</h3> <ul> <li>remove ramda dependency (<a href="https://gitlab.com/rxap/packages/commit/cbaff8f5cc347ffb423468d663af64569da90d81">cbaff8f</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@12.0.2...@rxap/form-system@12.0.3">12.0.3</a> (2021-06-09)</h2> <h3>Bug Fixes</h3> <ul> <li>remove ng-mockspeerDependency (<a href="https://gitlab.com/rxap/packages/commit/0940f5f9a79d07c3ad82d7cf6ae17aeb28b23158">0940f5f</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@11.0.10...@rxap/form-system@12.0.2">12.0.2</a> (2021-06-09)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@12.0.0...@rxap/form-system@12.0.1">12.0.1</a> (2021-05-24)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@11.0.9...@rxap/form-system@12.0.0">12.0.0</a> (2021-05-24)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@11.0.8...@rxap/form-system@11.0.9">11.0.9</a> (2021-04-30)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>schematics:</strong> update module toesnext (<a href="https://gitlab.com/rxap/packages/commit/d1e2cd252f3866471935131187b3acaefe2cca82">d1e2cd2</a>)</li> <li><strong>schematics:</strong> update to general schematicstsconfig (<a href="https://gitlab.com/rxap/packages/commit/83e5f9a0cf1810686a503425d87a5e4ae30b8c84">83e5f9a</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@11.0.7...@rxap/form-system@11.0.8">11.0.8</a> (2021-03-19)</h2> <h3>Bug Fixes</h3> <ul> <li>update peer dependencies (<a href="https://gitlab.com/rxap/packages/commit/954fde47836ff0c1f25a77c33ff871ddc7685b6c">954fde4</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@11.0.6...@rxap/form-system@11.0.7">11.0.7</a> (2021-03-19)</h2> <h3>Bug Fixes</h3> <ul> <li>update peer dependencies (<a href="https://gitlab.com/rxap/packages/commit/dd22b0ce053bc266c7aea659a2faf3be39f424e7">dd22b0c</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@11.0.5...@rxap/form-system@11.0.6">11.0.6</a> (2021-03-19)</h2> <h3>Bug Fixes</h3> <ul> <li>update peer dependencies (<a href="https://gitlab.com/rxap/packages/commit/2eeb7eb85eedd6d610e855dc1724c7153cf01fd0">2eeb7eb</a>)</li> <li>update peer dependencies (<a href="https://gitlab.com/rxap/packages/commit/c7d12671f3efc198985cddee92caa2558e74b023">c7d1267</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@11.0.4...@rxap/form-system@11.0.5">11.0.5</a> (2021-02-25)</h2> <h3>Bug Fixes</h3> <ul> <li>add exception handling (<a href="https://gitlab.com/rxap/packages/commit/27c0f2990a505942bd20e6f7c8055c19ea3f2ba2">27c0f29</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@11.0.3...@rxap/form-system@11.0.4">11.0.4</a> (2021-02-04)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@11.0.2...@rxap/form-system@11.0.3">11.0.3</a> (2021-01-15)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@11.0.1...@rxap/form-system@11.0.2">11.0.2</a> (2021-01-12)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@11.0.0...@rxap/form-system@11.0.1">11.0.1</a> (2021-01-05)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/form-system@10.0.0...@rxap/form-system@11.0.0">11.0.0</a> (2021-01-03)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/form-system</p> <h1>10.0.0 (2021-01-03)</h1> <h3>Bug Fixes</h3> <ul> <li><strong>InputSelectOptions:</strong> add change detection afterrender (<a href="https://gitlab.com/rxap/packages/commit/3ea56662c326f0b82672303b2fcf63e87a8392a3">3ea5666</a>)</li> <li>addComposeOptionsTransformers (<a href="https://gitlab.com/rxap/packages/commit/ee7053b2bb5d1dab2e784a0ffd719ac8d8df5e7f">ee7053b</a>)</li> <li>custom property keygeneration (<a href="https://gitlab.com/rxap/packages/commit/b6e6d23215f0b35e0de2d35003b186a3d435b8e4">b6e6d23</a>)</li> <li>expose form directives with ownmodules (<a href="https://gitlab.com/rxap/packages/commit/6e1f90bd6deedcdfb90ed2a44931f7a52facaf3f">6e1f90b</a>)</li> <li><strong>UseDataSource:</strong> fix decoratortype (<a href="https://gitlab.com/rxap/packages/commit/4194c58f177ff606b7ac957791f04d9417680908">4194c58</a>)</li> <li><strong>UseDataSource:</strong> fix decoratortype (<a href="https://gitlab.com/rxap/packages/commit/743367e93b1c6937095c0196102e38575416bdc2">743367e</a>)</li> </ul> <h3>Features</h3> <ul> <li>add IsEqualToDirective (<a href="https://gitlab.com/rxap/packages/commit/615b46af681a49f9accdbb1964996ef16ce7c61d">615b46a</a>)</li> <li><strong>ControlHideShowDirective:</strong> add support for ngControlinjection (<a href="https://gitlab.com/rxap/packages/commit/8300c6103b7515272e7fdc9d3dc0fdd3447bf62f">8300c61</a>)</li> </ul> </div><div class="search-results"> <div class="has-results"> <h1 class="search-results-title"><span class='search-results-count'></span> results matching "<span class='search-query'></span>"</h1> <ul class="search-results-list"></ul> </div> <div class="no-results"> <h1 class="search-results-title">No results matching "<span class='search-query'></span>"</h1> </div> </div> </div> <!-- END CONTENT --> </div> </div> <label class="dark-mode-switch"> <input type="checkbox"> <span class="slider"> <svg class="slider-icon" viewBox="0 0 24 24" fill="none" height="20" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg"> <path d="M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"></path> </svg> </span> </label> <script> var COMPODOC_CURRENT_PAGE_DEPTH = 0; var COMPODOC_CURRENT_PAGE_CONTEXT = 'getting-started'; var COMPODOC_CURRENT_PAGE_URL = 'changelog.html'; var MAX_SEARCH_RESULTS = 15; </script> <script> $darkModeToggleSwitchers = document.querySelectorAll('.dark-mode-switch input'); checkToggle(darkModeState); if ($darkModeToggleSwitchers.length > 0) { for (var i = 0; i < $darkModeToggleSwitchers.length; i++) { $darkModeToggleSwitchers[i].addEventListener('change', function (event) { darkModeState = !darkModeState; toggleDarkMode(darkModeState); }); } } </script> <script src="./js/libs/custom-elements.min.js"></script> <script src="./js/libs/lit-html.js"></script> <script src="./js/menu-wc.js" defer></script> <script nomodule src="./js/menu-wc_es5.js" defer></script> <script src="./js/libs/bootstrap-native.js"></script> <script src="./js/libs/es6-shim.min.js"></script> <script src="./js/libs/EventDispatcher.js"></script> <script src="./js/libs/promise.min.js"></script> <script src="./js/libs/zepto.min.js"></script> <script src="./js/compodoc.js"></script> <script src="./js/tabs.js"></script> <script src="./js/menu.js"></script> <script src="./js/libs/clipboard.min.js"></script> <script src="./js/libs/prism.js"></script> <script src="./js/sourceCode.js"></script> <script src="./js/search/search.js"></script> <script src="./js/search/lunr.min.js"></script> <script src="./js/search/search-lunr.js"></script> <script src="./js/search/search_index.js"></script> <script src="./js/lazy-load-graphs.js"></script> </body> </html>