@db-ux/ngx-core-components 4.10.1 → 4.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @db-ux/ngx-core-components
2
2
 
3
+ ## 4.11.0
4
+
5
+ ### Minor Changes
6
+
7
+ - feat: add DBTable, DBTableHead, DBTableBody, DBTableFooter, DBTableRow, DBTableHeaderCell, and DBTableDataCell components - [see commit f64b6e0](https://github.com/db-ux-design-system/core-web/commit/f64b6e0f4b36ea4987c1d9ac7a0328bf317cdcad)
8
+
9
+ ### Patch Changes
10
+
11
+ - fix: Add missing `propertyName` parameter to all `getBooleanAsString` calls across components for consistent string-based boolean parsing. - [see commit 6c11be5](https://github.com/db-ux-design-system/core-web/commit/6c11be54397c425607103f44b987b752efffb6d5)
12
+
13
+ - fix: Remove unwanted whitespace characters from rendered output to prevent layout shifts - [see commit a0f23a4](https://github.com/db-ux-design-system/core-web/commit/a0f23a4a3e715414de3d045b59b88dc3ac28d5e7)
14
+
15
+ ## 4.10.2
16
+
17
+ _version bump_
18
+
3
19
  ## 4.10.1
4
20
 
5
21
  ### Patch Changes
package/README.md CHANGED
@@ -209,7 +209,7 @@ Contributions are very welcome, please refer to the [contribution guide](https:/
209
209
  ## Code of conduct
210
210
 
211
211
  We as members, contributors, and leaders pledge to make participation in our
212
- community a harassment-free experience for everyone – have a look at our [Contributor Covenant Code of Conduct](https://github.com/db-ux-design-system/core-web/blob/main/CODE-OF-CONDUCT.md).
212
+ community a harassment-free experience for everyone – have a look at our [Contributor Covenant Code of Conduct](https://github.com/db-ux-design-system/.github/blob/main/CODE-OF-CONDUCT.md).
213
213
 
214
214
  ## License
215
215
 
@@ -3,7 +3,7 @@
3
3
  # Accordion Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBAccordion } from "../index";
@@ -3,7 +3,7 @@
3
3
  # AccordionItem Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBAccordionItem } from "../index";
package/agent/Badge.md CHANGED
@@ -3,7 +3,7 @@
3
3
  # Badge Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBBadge } from "../index";
package/agent/Brand.md CHANGED
@@ -3,7 +3,7 @@
3
3
  # Brand Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBBrand } from "../index";
package/agent/Button.md CHANGED
@@ -3,7 +3,7 @@
3
3
  # Button Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBButton } from "../index";
package/agent/Card.md CHANGED
@@ -3,7 +3,7 @@
3
3
  # Card Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBCard } from "../index";
package/agent/Checkbox.md CHANGED
@@ -3,7 +3,7 @@
3
3
  # Checkbox Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBCheckbox } from "../index";
@@ -3,7 +3,7 @@
3
3
  # CustomSelect Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBCustomSelect } from "../index";
package/agent/Divider.md CHANGED
@@ -3,7 +3,7 @@
3
3
  # Divider Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBDivider } from "../index";
package/agent/Drawer.md CHANGED
@@ -11,7 +11,7 @@
11
11
  # Drawer Examples (angular)
12
12
 
13
13
  ```ts
14
- import { Component, effect, signal } from "@angular/core";
14
+ import { Component, effect, VERSION, signal } from "@angular/core";
15
15
  import { CommonModule } from "@angular/common";
16
16
 
17
17
  import { DBButton } from "../../button";
package/agent/Header.md CHANGED
@@ -3,7 +3,7 @@
3
3
  # Header Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect, signal } from "@angular/core";
6
+ import { Component, effect, VERSION, signal } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBNavigation } from "../../navigation";
package/agent/Icon.md CHANGED
@@ -3,7 +3,7 @@
3
3
  # Icon Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBIcon } from "../index";
package/agent/Infotext.md CHANGED
@@ -3,7 +3,7 @@
3
3
  # Infotext Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBInfotext } from "../index";
package/agent/Input.md CHANGED
@@ -3,7 +3,7 @@
3
3
  # Input Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBInput } from "../index";
package/agent/Link.md CHANGED
@@ -3,7 +3,7 @@
3
3
  # Link Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBLink } from "../index";
@@ -3,7 +3,7 @@
3
3
  # Navigation Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBNavigationItem } from "../../navigation-item/index";
@@ -3,7 +3,7 @@
3
3
  # NavigationItem Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBNavigationItem } from "../index";
@@ -3,7 +3,7 @@
3
3
  # Notification Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBNotification } from "../index";
package/agent/Page.md CHANGED
@@ -3,7 +3,7 @@
3
3
  # Page Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBPage } from "../index";
package/agent/Popover.md CHANGED
@@ -3,7 +3,7 @@
3
3
  # Popover Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBButton } from "../../button/index";
package/agent/Radio.md CHANGED
@@ -3,7 +3,7 @@
3
3
  # Radio Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBRadio } from "../index";
package/agent/Section.md CHANGED
@@ -3,7 +3,7 @@
3
3
  # Section Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBSection } from "../index";
package/agent/Select.md CHANGED
@@ -3,7 +3,7 @@
3
3
  # Select Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBSelect } from "../index";
package/agent/Stack.md CHANGED
@@ -3,7 +3,7 @@
3
3
  # Stack Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBStack } from "../index";
package/agent/Switch.md CHANGED
@@ -3,7 +3,7 @@
3
3
  # Switch Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBSwitch } from "../index";
package/agent/TabItem.md CHANGED
@@ -3,7 +3,7 @@
3
3
  # TabItem Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBTabItem } from "../index";
package/agent/Tabs.md CHANGED
@@ -3,7 +3,7 @@
3
3
  # Tabs Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBTabItem } from "../../tab-item/index";
package/agent/Tag.md CHANGED
@@ -3,7 +3,7 @@
3
3
  # Tag Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBButton } from "../../button";
package/agent/Textarea.md CHANGED
@@ -3,7 +3,7 @@
3
3
  # Textarea Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBTextarea } from "../index";
package/agent/Tooltip.md CHANGED
@@ -3,7 +3,7 @@
3
3
  # Tooltip Examples (angular)
4
4
 
5
5
  ```ts
6
- import { Component, effect } from "@angular/core";
6
+ import { Component, effect, VERSION } from "@angular/core";
7
7
  import { CommonModule } from "@angular/common";
8
8
 
9
9
  import { DBButton } from "../../button";