UNPKG

@rxap/data-source

Version:

Provides a set of classes and decorators for creating and managing data sources in Angular applications, including base classes, static data sources, observable data sources, and method data sources. It also includes a component for displaying data source

643 lines (632 loc) 58 kB
<!doctype html> <html class="no-js" lang=""> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>angular-data-source</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-data-source</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/data-source@19.1.0-dev.2...@rxap/data-source@19.1.0">19.1.0</a> (2025-05-16)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@19.1.0-dev.1...@rxap/data-source@19.1.0-dev.2">19.1.0-dev.2</a> (2025-05-09)</h1> <h3>Features</h3> <ul> <li><strong>table:</strong> add support for empty and error templates in data source directive (<a href="https://gitlab.com/rxap/packages/commit/545db362848145f73bfe177fb70d2919d486f5c3">545db36</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@19.1.0-dev.0...@rxap/data-source@19.1.0-dev.1">19.1.0-dev.1</a> (2025-05-09)</h1> <h3>Features</h3> <ul> <li><strong>table:</strong> add support for empty and error templates in data source directive (<a href="https://gitlab.com/rxap/packages/commit/50114b588c09fb22af03822ddea25a878405a91e">50114b5</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@19.0.4-dev.0...@rxap/data-source@19.1.0-dev.0">19.1.0-dev.0</a> (2025-04-02)</h1> <h3>Features</h3> <ul> <li><strong>table-data-source:</strong> add support for dynamic parameters (<a href="https://gitlab.com/rxap/packages/commit/e830c262d0ec28bf8a3d76ef6d634335b8532b3c">e830c26</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@19.0.3...@rxap/data-source@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/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@19.0.3-dev.1...@rxap/data-source@19.0.3">19.0.3</a> (2025-03-07)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@19.0.3-dev.0...@rxap/data-source@19.0.3-dev.1">19.0.3-dev.1</a> (2025-02-28)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@19.0.2...@rxap/data-source@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/data-source@19.0.2-dev.3...@rxap/data-source@19.0.2">19.0.2</a> (2025-02-23)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@19.0.2-dev.2...@rxap/data-source@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/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@19.0.2-dev.1...@rxap/data-source@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/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@19.0.2-dev.0...@rxap/data-source@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/data-source@19.0.1...@rxap/data-source@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/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@19.0.1-dev.6...@rxap/data-source@19.0.1">19.0.1</a> (2025-02-13)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@19.0.1-dev.5...@rxap/data-source@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/data-source@19.0.1-dev.4...@rxap/data-source@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/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@19.0.1-dev.3...@rxap/data-source@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/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@19.0.1-dev.2...@rxap/data-source@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/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@19.0.1-dev.1...@rxap/data-source@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/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@19.0.1-dev.0...@rxap/data-source@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/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@19.0.0...@rxap/data-source@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/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@19.0.0-dev.2...@rxap/data-source@19.0.0">19.0.0</a> (2025-01-08)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@19.0.0-dev.1...@rxap/data-source@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/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@18.1.6-dev.0...@rxap/data-source@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/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@18.1.5...@rxap/data-source@18.1.6-dev.0">18.1.6-dev.0</a> (2024-12-10)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@18.1.5-dev.0...@rxap/data-source@18.1.5">18.1.5</a> (2024-10-28)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@18.1.4...@rxap/data-source@18.1.5-dev.0">18.1.5-dev.0</a> (2024-10-04)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@18.1.4-dev.0...@rxap/data-source@18.1.4">18.1.4</a> (2024-08-22)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@18.1.3...@rxap/data-source@18.1.4-dev.0">18.1.4-dev.0</a> (2024-08-22)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@18.1.3-dev.1...@rxap/data-source@18.1.3">18.1.3</a> (2024-07-30)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@18.1.3-dev.0...@rxap/data-source@18.1.3-dev.1">18.1.3-dev.1</a> (2024-07-25)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@18.1.2...@rxap/data-source@18.1.3-dev.0">18.1.3-dev.0</a> (2024-07-09)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@18.1.2-dev.0...@rxap/data-source@18.1.2">18.1.2</a> (2024-06-30)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@18.1.1...@rxap/data-source@18.1.2-dev.0">18.1.2-dev.0</a> (2024-06-30)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@18.1.1-dev.3...@rxap/data-source@18.1.1">18.1.1</a> (2024-06-28)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@18.1.1-dev.2...@rxap/data-source@18.1.1-dev.3">18.1.1-dev.3</a> (2024-06-25)</h2> <h3>Bug Fixes</h3> <ul> <li>ensure the execution utility method are used (<a href="https://gitlab.com/rxap/packages/commit/b3f04c3cec8aee2d7d0a24a2d5f4385eb5d64bb9">b3f04c3</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@18.1.1-dev.1...@rxap/data-source@18.1.1-dev.2">18.1.1-dev.2</a> (2024-06-24)</h2> <h3>Bug Fixes</h3> <ul> <li>support string viewer (<a href="https://gitlab.com/rxap/packages/commit/e1ceced601c23d17690312f11b9a61ca22db6aa6">e1ceced</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@18.1.1-dev.0...@rxap/data-source@18.1.1-dev.1">18.1.1-dev.1</a> (2024-06-21)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@18.1.0...@rxap/data-source@18.1.1-dev.0">18.1.1-dev.0</a> (2024-06-20)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@18.1.0-dev.2...@rxap/data-source@18.1.0">18.1.0</a> (2024-06-18)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@18.1.0-dev.1...@rxap/data-source@18.1.0-dev.2">18.1.0-dev.2</a> (2024-06-17)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@18.1.0-dev.0...@rxap/data-source@18.1.0-dev.1">18.1.0-dev.1</a> (2024-06-17)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@18.0.2-dev.0...@rxap/data-source@18.1.0-dev.0">18.1.0-dev.0</a> (2024-06-10)</h1> <h3>Features</h3> <ul> <li>add loading and hasError signal outputs (<a href="https://gitlab.com/rxap/packages/commit/2ff6285cd71de1de8b99ae08747d1aa6153aa82e">2ff6285</a>)</li> <li>add loading and hasError signal outputs (<a href="https://gitlab.com/rxap/packages/commit/fc69e4da90c116834e4907192382a7f38f389054">fc69e4d</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@18.0.1...@rxap/data-source@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/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@18.0.1-dev.0...@rxap/data-source@18.0.1">18.0.1</a> (2024-05-30)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@17.0.1...@rxap/data-source@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/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@17.0.1...@rxap/data-source@17.0.1">17.0.1</a> (2024-05-29)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@17.0.1...@rxap/data-source@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/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@17.0.1-dev.0...@rxap/data-source@17.0.1">17.0.1</a> (2024-05-29)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.2.1...@rxap/data-source@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/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.2.1-dev.0...@rxap/data-source@16.2.1">16.2.1</a> (2024-05-28)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.2.0...@rxap/data-source@16.2.1-dev.0">16.2.1-dev.0</a> (2024-05-28)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.2.0-dev.1...@rxap/data-source@16.2.0">16.2.0</a> (2024-05-27)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.2.0-dev.0...@rxap/data-source@16.2.0-dev.1">16.2.0-dev.1</a> (2024-05-27)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.1.0...@rxap/data-source@16.2.0-dev.0">16.2.0-dev.0</a> (2024-04-28)</h1> <h3>Features</h3> <ul> <li>add last refresh date concept (<a href="https://gitlab.com/rxap/packages/commit/012f64cb4de47f6fc1f2351a47bdf9b2833a169d">012f64c</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.1.0-dev.8...@rxap/data-source@16.1.0">16.1.0</a> (2024-04-17)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.1.0-dev.7...@rxap/data-source@16.1.0-dev.8">16.1.0-dev.8</a> (2024-04-16)</h1> <h3>Bug Fixes</h3> <ul> <li>add div wrapper around buttons (<a href="https://gitlab.com/rxap/packages/commit/fa60214c3edc4332b4bfe1070365d42ccc03b2b9">fa60214</a>)</li> <li>support refresh, reset and retry data source methods (<a href="https://gitlab.com/rxap/packages/commit/ea5e971d3617494cc9b34b22a31afcf92c052bbd">ea5e971</a>)</li> <li>use correct button label (<a href="https://gitlab.com/rxap/packages/commit/a78ae370cd9555c86b34927bd2c6df8d324b61f6">a78ae37</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.1.0-dev.6...@rxap/data-source@16.1.0-dev.7">16.1.0-dev.7</a> (2024-04-09)</h1> <h3>Bug Fixes</h3> <ul> <li>ensure embedded view refs are cleanup (<a href="https://gitlab.com/rxap/packages/commit/173a44921c3f013185a74f66c65cea26cd47dc7d">173a449</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.1.0-dev.5...@rxap/data-source@16.1.0-dev.6">16.1.0-dev.6</a> (2024-04-09)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.1.0-dev.4...@rxap/data-source@16.1.0-dev.5">16.1.0-dev.5</a> (2024-03-11)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.1.0-dev.3...@rxap/data-source@16.1.0-dev.4">16.1.0-dev.4</a> (2024-03-08)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.1.0-dev.2...@rxap/data-source@16.1.0-dev.3">16.1.0-dev.3</a> (2024-03-08)</h1> <h3>Bug Fixes</h3> <ul> <li>ensure deep equal is used only if required (<a href="https://gitlab.com/rxap/packages/commit/bb1a700b25e39c417997c494decc22aa0104515f">bb1a700</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.1.0-dev.1...@rxap/data-source@16.1.0-dev.2">16.1.0-dev.2</a> (2024-03-07)</h1> <h3>Bug Fixes</h3> <ul> <li>correctly apply the filter (<a href="https://gitlab.com/rxap/packages/commit/ab79d3e389a21ebd211a5225c6399390a804057f">ab79d3e</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.1.0-dev.0...@rxap/data-source@16.1.0-dev.1">16.1.0-dev.1</a> (2024-03-05)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.1-dev.3...@rxap/data-source@16.1.0-dev.0">16.1.0-dev.0</a> (2024-03-01)</h1> <h3>Features</h3> <ul> <li>support tree table filters (<a href="https://gitlab.com/rxap/packages/commit/9050131d84011e87b5acfd9ba5222597b56b1848">9050131</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.1-dev.2...@rxap/data-source@16.0.1-dev.3">16.0.1-dev.3</a> (2024-02-22)</h2> <h3>Bug Fixes</h3> <ul> <li>remove the injection token accordion method (<a href="https://gitlab.com/rxap/packages/commit/11ce98fa748f3a780490d473dbe41b0b40cc7c35">11ce98f</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.1-dev.1...@rxap/data-source@16.0.1-dev.2">16.0.1-dev.2</a> (2024-02-22)</h2> <h3>Bug Fixes</h3> <ul> <li>simplify and generalize the accordion data source (<a href="https://gitlab.com/rxap/packages/commit/a28f9ecaf7a59ae5437b3f765b75c5ab34fe3977">a28f9ec</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.1-dev.0...@rxap/data-source@16.0.1-dev.1">16.0.1-dev.1</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> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0...@rxap/data-source@16.0.1-dev.0">16.0.1-dev.0</a> (2024-02-09)</h2> <h3>Bug Fixes</h3> <ul> <li>use the MethodWithParameters type (<a href="https://gitlab.com/rxap/packages/commit/4d285d17927742e48d69b7ab6b725aebb1a0eb52">4d285d1</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.35...@rxap/data-source@16.0.0">16.0.0</a> (2024-02-07)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.34...@rxap/data-source@16.0.0-dev.35">16.0.0-dev.35</a> (2024-01-30)</h1> <h3>Bug Fixes</h3> <ul> <li>enforce that the method accepts a parameter (<a href="https://gitlab.com/rxap/packages/commit/0a737125ae955107fef7d51079964a6740c2a796">0a73712</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.33...@rxap/data-source@16.0.0-dev.34">16.0.0-dev.34</a> (2024-01-30)</h1> <h3>Bug Fixes</h3> <ul> <li>enforce that the method accepts a parameter (<a href="https://gitlab.com/rxap/packages/commit/a0c7a6800985956331f89006f96ed9898476bc60">a0c7a68</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.32...@rxap/data-source@16.0.0-dev.33">16.0.0-dev.33</a> (2023-10-29)</h1> <h3>Bug Fixes</h3> <ul> <li>clone attached observable (<a href="https://gitlab.com/rxap/packages/commit/386d3aab8d545dc2f162bab971ed5884d35e086d">386d3aa</a>)</li> <li>use correct method return types (<a href="https://gitlab.com/rxap/packages/commit/3d7ab6381800c847023bd28140103bc186a9eda7">3d7ab63</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.31...@rxap/data-source@16.0.0-dev.32">16.0.0-dev.32</a> (2023-10-29)</h1> <h3>Features</h3> <ul> <li>add attach method to BaseDataSource (<a href="https://gitlab.com/rxap/packages/commit/334b1a8610a04b06d0401969eaa51348f3d7567d">334b1a8</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.30...@rxap/data-source@16.0.0-dev.31">16.0.0-dev.31</a> (2023-10-29)</h1> <h3>Features</h3> <ul> <li>support viewChange in MethodDataSources (<a href="https://gitlab.com/rxap/packages/commit/2ad13504bcaf0e021e36be5c73458e3a60aa8c48">2ad1350</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.29...@rxap/data-source@16.0.0-dev.30">16.0.0-dev.30</a> (2023-10-26)</h1> <h3>Bug Fixes</h3> <ul> <li><strong>pipe-data-source:</strong> copy loading observable from parent data source (<a href="https://gitlab.com/rxap/packages/commit/e429e91752594c9b9928b5c211b2de4f12b419f1">e429e91</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.28...@rxap/data-source@16.0.0-dev.29">16.0.0-dev.29</a> (2023-10-26)</h1> <h3>Bug Fixes</h3> <ul> <li>support custom operations (<a href="https://gitlab.com/rxap/packages/commit/a92d9dcf109756431dec5817ce679f785504ae3a">a92d9dc</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.27...@rxap/data-source@16.0.0-dev.28">16.0.0-dev.28</a> (2023-10-18)</h1> <h3>Bug Fixes</h3> <ul> <li>add missing type attr to button elements (<a href="https://gitlab.com/rxap/packages/commit/7e1ec238905a8bbdfcefc742f4147dc90725d8c7">7e1ec23</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.26...@rxap/data-source@16.0.0-dev.27">16.0.0-dev.27</a> (2023-10-11)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.26...@rxap/data-source@16.0.0-dev.26">16.0.0-dev.26</a> (2023-10-11)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.5...@rxap/data-source@16.0.0-dev.26">16.0.0-dev.26</a> (2023-10-11)</h1> <h3>Bug Fixes</h3> <ul> <li>adapt to node parent concept (<a href="https://gitlab.com/rxap/packages/commit/5211c5a50f3a328b32225eb148ef986ce4900af0">5211c5a</a>)</li> <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>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>improve error and loading handling (<a href="https://gitlab.com/rxap/packages/commit/83e807b6bbef38c5fa944b94dac591d815f79165">83e807b</a>)</li> <li>peer dependency issue (<a href="https://gitlab.com/rxap/packages/commit/ee95415370d9ef2396916d6c25061a0df791034a">ee95415</a>)</li> <li>refactor the generic retry function and error handling (<a href="https://gitlab.com/rxap/packages/commit/b8068acd190c3be0e17a9bfd438becd46fe5639d">b8068ac</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>remove error logs (<a href="https://gitlab.com/rxap/packages/commit/7eb577787a04103415164e60b836a45c8d751f76">7eb5777</a>)</li> <li>table event property start and end are always defined (<a href="https://gitlab.com/rxap/packages/commit/6bc270490c241d05c8afef462752340f37967e1e">6bc2704</a>)</li> </ul> <h3>Features</h3> <ul> <li>add MethodDataSource class (<a href="https://gitlab.com/rxap/packages/commit/917ff4407a25d03242b3823312ba93be5906b41c">917ff44</a>)</li> <li>add restore from local storage feature (<a href="https://gitlab.com/rxap/packages/commit/cff8b255bb09593a0b11e4b7ac6174b60145c365">cff8b25</a>)</li> <li>add RxapPipeDataSource decorator (<a href="https://gitlab.com/rxap/packages/commit/7e5d66416078438c4635a23fce44a4c0a33b0cd9">7e5d664</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.24...@rxap/data-source@16.0.0-dev.25">16.0.0-dev.25</a> (2023-10-08)</h1> <h3>Bug Fixes</h3> <ul> <li>adapt to node parent concept (<a href="https://gitlab.com/rxap/packages/commit/7182ae21432168b43199baed7f39026457408ca4">7182ae2</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.23...@rxap/data-source@16.0.0-dev.24">16.0.0-dev.24</a> (2023-10-03)</h1> <h3>Bug Fixes</h3> <ul> <li>table event property start and end are always defined (<a href="https://gitlab.com/rxap/packages/commit/2ce3d48c4b8669cd2c62c4d200f9569361a566fd">2ce3d48</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.22...@rxap/data-source@16.0.0-dev.23">16.0.0-dev.23</a> (2023-10-01)</h1> <h3>Bug Fixes</h3> <ul> <li>improve error and loading handling (<a href="https://gitlab.com/rxap/packages/commit/ecfb8639b68fede430f314b456aa74208bc2fe02">ecfb863</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.21...@rxap/data-source@16.0.0-dev.22">16.0.0-dev.22</a> (2023-09-30)</h1> <h3>Features</h3> <ul> <li>add restore from local storage feature (<a href="https://gitlab.com/rxap/packages/commit/254385207bc8fd98a5fb0d6d2ddf6f10d05cbb8e">2543852</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.20...@rxap/data-source@16.0.0-dev.21">16.0.0-dev.21</a> (2023-09-27)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.19...@rxap/data-source@16.0.0-dev.20">16.0.0-dev.20</a> (2023-09-22)</h1> <h3>Bug Fixes</h3> <ul> <li>remove error logs (<a href="https://gitlab.com/rxap/packages/commit/f06c789074d77d60665ce4a8b11ae1a81db94683">f06c789</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.18...@rxap/data-source@16.0.0-dev.19">16.0.0-dev.19</a> (2023-09-22)</h1> <h3>Bug Fixes</h3> <ul> <li>refactor the generic retry function and error handling (<a href="https://gitlab.com/rxap/packages/commit/c2b691591a86e49288f17548f315522b92564c25">c2b6915</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.17...@rxap/data-source@16.0.0-dev.18">16.0.0-dev.18</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/data-source@16.0.0-dev.16...@rxap/data-source@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/data-source@16.0.0-dev.15...@rxap/data-source@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/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.14...@rxap/data-source@16.0.0-dev.15">16.0.0-dev.15</a> (2023-09-11)</h1> <h3>Features</h3> <ul> <li>add MethodDataSource class (<a href="https://gitlab.com/rxap/packages/commit/f37aba0bcea913b1c1fc6fe4b6ec44f32f63184e">f37aba0</a>)</li> <li>add RxapPipeDataSource decorator (<a href="https://gitlab.com/rxap/packages/commit/d49a45c9e1af5511a2f099e3f9f4dde857389c4f">d49a45c</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.13...@rxap/data-source@16.0.0-dev.14">16.0.0-dev.14</a> (2023-09-07)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.12...@rxap/data-source@16.0.0-dev.13">16.0.0-dev.13</a> (2023-09-03)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.11...@rxap/data-source@16.0.0-dev.12">16.0.0-dev.12</a> (2023-09-03)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.10...@rxap/data-source@16.0.0-dev.11">16.0.0-dev.11</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/data-source@16.0.0-dev.9...@rxap/data-source@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/data-source@16.0.0-dev.8...@rxap/data-source@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/data-source@16.0.0-dev.7...@rxap/data-source@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/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.6...@rxap/data-source@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>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/data-source@16.0.0-dev.4...@rxap/data-source@16.0.0-dev.5">16.0.0-dev.5</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/data-source@16.0.0-dev.3...@rxap/data-source@16.0.0-dev.4">16.0.0-dev.4</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/data-source@16.0.0-dev.2...@rxap/data-source@16.0.0-dev.3">16.0.0-dev.3</a> (2023-05-31)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.1...@rxap/data-source@16.0.0-dev.2">16.0.0-dev.2</a> (2023-05-30)</h1> <h3>Bug Fixes</h3> <ul> <li>support paginator set length with idmapper (<a href="https://gitlab.com/rxap/packages/commit/e318860a15abe5ed30ce4232a260e677f344c52b">e318860</a>)</li> <li>use the set methods forDynamicTableDataSource (<a href="https://gitlab.com/rxap/packages/commit/6a8b8d2fda0cb78b6e4d6c0973e4a7387b697e24">6a8b8d2</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@16.0.0-dev.0...@rxap/data-source@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/data-source@15.0.0...@rxap/data-source@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/data-source@14.2.0...@rxap/data-source@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/data-source@14.2.0-dev.1...@rxap/data-source@14.2.0">14.2.0</a> (2023-05-17)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@14.2.0-dev.0...@rxap/data-source@14.2.0-dev.1">14.2.0-dev.1</a> (2023-05-17)</h1> <h3>Features</h3> <ul> <li><strong>pipe-data-source:</strong> support custom metadata in factoryfunction (<a href="https://gitlab.com/rxap/packages/commit/8e0e48a5ad54c785d1a99ff30fd2676e90ad8ae1">8e0e48a</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@14.1.3...@rxap/data-source@14.2.0-dev.0">14.2.0-dev.0</a> (2023-04-18)</h1> <h3>Bug Fixes</h3> <ul> <li>handle hasError and loadingstats (<a href="https://gitlab.com/rxap/packages/commit/9c3ad26e12863db8c78693869e7214b5a41c576c">9c3ad26</a>)</li> <li><strong>directives:</strong> support error template in data source collectiondirective (<a href="https://gitlab.com/rxap/packages/commit/92f76533ffae9ed07eeda605bf1ae06543072c1a">92f7653</a>)</li> <li>remove error suppression (<a href="https://gitlab.com/rxap/packages/commit/3a9be76342c79b8cb33902bdeb960a3f731b22f2">3a9be76</a>)</li> <li>remove error suppression (<a href="https://gitlab.com/rxap/packages/commit/2301653434653a6db4eedb36e821086eb7e6d08c">2301653</a>)</li> </ul> <h3>Features</h3> <ul> <li>add handleError method (<a href="https://gitlab.com/rxap/packages/commit/4547aa6c004bd81f90cf5be06b2d790e5e649e45">4547aa6</a>)</li> <li>introduce dataSourceretry (<a href="https://gitlab.com/rxap/packages/commit/835195620a8cf6b022f17e28cff593152d78a0c2">8351956</a>)</li> <li>support data source retryfeature (<a href="https://gitlab.com/rxap/packages/commit/58a6c9e8af577c61472907aeb9393ec571918cf4">58a6c9e</a>)</li> <li><strong>data-source:</strong> introduce errorTemplateconcept (<a href="https://gitlab.com/rxap/packages/commit/d1bc29f7e86ea574c1e0cc60b7758fa622256bd9">d1bc29f</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@14.1.2...@rxap/data-source@14.1.3">14.1.3</a> (2022-12-14)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@14.1.1...@rxap/data-source@14.1.2">14.1.2</a> (2022-12-13)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@14.1.0...@rxap/data-source@14.1.1">14.1.1</a> (2022-12-13)</h2> <h3>Bug Fixes</h3> <ul> <li>refresh pipe data sourceoperations (<a href="https://gitlab.com/rxap/packages/commit/5fe91d9944b41c317bd201482c1e26fddc966529">5fe91d9</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@14.0.0...@rxap/data-source@14.1.0">14.1.0</a> (2022-11-07)</h1> <h3>Features</h3> <ul> <li>support multi use of DynamicTableDataSources in materialtables (<a href="https://gitlab.com/rxap/packages/commit/98f8dd15ed59e5bb2cfb94c05e4e702c1bf54545">98f8dd1</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@13.0.0...@rxap/data-source@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/data-source@13.0.0-next.3...@rxap/data-source@13.0.0">13.0.0</a> (2022-09-11)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@13.0.0-next.2...@rxap/data-source@13.0.0-next.3">13.0.0-next.3</a> (2022-04-26)</h1> <h3>Bug Fixes</h3> <ul> <li>replace RXAP_TABLE_REMOTE_METHOD withRXAP_TABLE_METHOD (<a href="https://gitlab.com/rxap/packages/commit/67416a10c5a103301b6a7612f22ab6ea78bc52c7">67416a1</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@13.0.0-next.1...@rxap/data-source@13.0.0-next.2">13.0.0-next.2</a> (2022-03-30)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@13.0.0-next.0...@rxap/data-source@13.0.0-next.1">13.0.0-next.1</a> (2022-03-29)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@12.1.4...@rxap/data-source@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/data-source@12.1.3...@rxap/data-source@12.1.4">12.1.4</a> (2021-12-21)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>data-source-collection-directive:</strong> support loadedevent (<a href="https://gitlab.com/rxap/packages/commit/9058aa4cca53c6623502e35a3d62991c018effd8">9058aa4</a>)</li> <li><strong>data-source-directive:</strong> support templatetype (<a href="https://gitlab.com/rxap/packages/commit/c30399536c9f5a36a577a0fceb3659fce50be278">c303995</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@12.1.3-next.1...@rxap/data-source@12.1.3">12.1.3</a> (2021-10-11)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@12.1.3-next.0...@rxap/data-source@12.1.3-next.1">12.1.3-next.1</a> (2021-10-11)</h2> <h3>Bug Fixes</h3> <ul> <li>support data sourcetrackBy (<a href="https://gitlab.com/rxap/packages/commit/901df0d65908b33730aa34b3bda457cff78273ec">901df0d</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@12.1.2...@rxap/data-source@12.1.3-next.0">12.1.3-next.0</a> (2021-09-13)</h2> <h3>Bug Fixes</h3> <ul> <li>update input alias (<a href="https://gitlab.com/rxap/packages/commit/f59a20e2d32e80367e89555c44693b20a8478c2f">f59a20e</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@12.1.2-next.0...@rxap/data-source@12.1.2">12.1.2</a> (2021-09-03)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@12.1.1...@rxap/data-source@12.1.2-next.0">12.1.2-next.0</a> (2021-08-19)</h2> <h3>Bug Fixes</h3> <ul> <li>reset page on filterchange (<a href="https://gitlab.com/rxap/packages/commit/3cc9fa25341f63cc09b54bca9a620feaa6afce0f">3cc9fa2</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@12.1.0...@rxap/data-source@12.1.1">12.1.1</a> (2021-08-02)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>static-data-source:</strong> if the provided data is null or undefined use the metadata datavalue (<a href="https://gitlab.com/rxap/packages/commit/97fdb102c862febb4f167bcb2b322f6132f0f56f">97fdb10</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@12.1.0-next.0...@rxap/data-source@12.1.0">12.1.0</a> (2021-07-22)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@12.0.11-next.0...@rxap/data-source@12.1.0-next.0">12.1.0-next.0</a> (2021-07-21)</h1> <h3>Features</h3> <ul> <li>support filter string (<a href="https://gitlab.com/rxap/packages/commit/3062bf1d1430d182343ac985a4b33cd2a076451d">3062bf1</a>)</li> <li>support filter string (<a href="https://gitlab.com/rxap/packages/commit/d879a16b0ad11a639f348ba7a97f2bc491583d2e">d879a16</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@12.0.11-next.0...@rxap/data-source@12.0.11-alpha.0">12.0.11-alpha.0</a> (2021-07-20)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@12.0.10...@rxap/data-source@12.0.11-next.0">12.0.11-next.0</a> (2021-07-19)</h2> <h3>Bug Fixes</h3> <ul> <li>handle method exception (<a href="https://gitlab.com/rxap/packages/commit/a475cda593b226fd25868b3d897981e85ef48d87">a475cda</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@12.0.9...@rxap/data-source@12.0.10">12.0.10</a> (2021-07-12)</h2> <h3>Bug Fixes</h3> <ul> <li>log template rendererror (<a href="https://gitlab.com/rxap/packages/commit/fc8592e7174466b22ccae46080970aebeca71cca">fc8592e</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@12.0.9-next.0...@rxap/data-source@12.0.9">12.0.9</a> (2021-07-09)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@12.0.8...@rxap/data-source@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/data-source@12.0.7...@rxap/data-source@12.0.8">12.0.8</a> (2021-06-24)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@12.0.6...@rxap/data-source@12.0.7">12.0.7</a> (2021-06-23)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@12.0.5...@rxap/data-source@12.0.6">12.0.6</a> (2021-06-23)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@12.0.4...@rxap/data-source@12.0.5">12.0.5</a> (2021-06-18)</h2> <h3>Bug Fixes</h3> <ul> <li>allow null for static datasources (<a href="https://gitlab.com/rxap/packages/commit/4035420b8244b1ae22bf4197e28144780686367f">4035420</a>)</li> <li>allow null for static datasources (<a href="https://gitlab.com/rxap/packages/commit/7d2a562bfe9b94429c541ea53d20b3f44029d4d3">7d2a562</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@12.0.3...@rxap/data-source@12.0.4">12.0.4</a> (2021-06-14)</h2> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@12.0.2...@rxap/data-source@12.0.3">12.0.3</a> (2021-06-10)</h2> <h3>Bug Fixes</h3> <ul> <li>remove rxap uuidfunction (<a href="https://gitlab.com/rxap/packages/commit/0a7e17b89470bb946b7806ac074a681838195c91">0a7e17b</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@11.2.2...@rxap/data-source@12.0.2">12.0.2</a> (2021-06-09)</h2> <h3>Bug Fixes</h3> <ul> <li>add data source readmegenerator (<a href="https://gitlab.com/rxap/packages/commit/351fe166a8c83ceb0f30c5f098ea96a8e74accde">351fe16</a>)</li> </ul> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@12.0.0...@rxap/data-source@12.0.1">12.0.1</a> (2021-05-24)</h2> <h3>Bug Fixes</h3> <ul> <li>add data source readmegenerator (<a href="https://gitlab.com/rxap/packages/commit/351fe166a8c83ceb0f30c5f098ea96a8e74accde">351fe16</a>)</li> </ul> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@11.2.1...@rxap/data-source@12.0.0">12.0.0</a> (2021-05-24)</h1> <p><strong>Note:</strong> Version bump only for package @rxap/data-source</p> <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@11.2.0...@rxap/data-source@11.2.1">11.2.1</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> <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/data-source@11.1.1...@rxap/data-source@11.2.0">11.