@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 +16 -0
- package/README.md +1 -1
- package/agent/Accordion.md +1 -1
- package/agent/AccordionItem.md +1 -1
- package/agent/Badge.md +1 -1
- package/agent/Brand.md +1 -1
- package/agent/Button.md +1 -1
- package/agent/Card.md +1 -1
- package/agent/Checkbox.md +1 -1
- package/agent/CustomSelect.md +1 -1
- package/agent/Divider.md +1 -1
- package/agent/Drawer.md +1 -1
- package/agent/Header.md +1 -1
- package/agent/Icon.md +1 -1
- package/agent/Infotext.md +1 -1
- package/agent/Input.md +1 -1
- package/agent/Link.md +1 -1
- package/agent/Navigation.md +1 -1
- package/agent/NavigationItem.md +1 -1
- package/agent/Notification.md +1 -1
- package/agent/Page.md +1 -1
- package/agent/Popover.md +1 -1
- package/agent/Radio.md +1 -1
- package/agent/Section.md +1 -1
- package/agent/Select.md +1 -1
- package/agent/Stack.md +1 -1
- package/agent/Switch.md +1 -1
- package/agent/TabItem.md +1 -1
- package/agent/Tabs.md +1 -1
- package/agent/Tag.md +1 -1
- package/agent/Textarea.md +1 -1
- package/agent/Tooltip.md +1 -1
- package/fesm2022/db-ux-ngx-core-components.mjs +1530 -581
- package/fesm2022/db-ux-ngx-core-components.mjs.map +1 -1
- package/package.json +3 -3
- package/types/db-ux-ngx-core-components.d.ts +457 -29
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/
|
|
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
|
|
package/agent/Accordion.md
CHANGED
package/agent/AccordionItem.md
CHANGED
package/agent/Badge.md
CHANGED
package/agent/Brand.md
CHANGED
package/agent/Button.md
CHANGED
package/agent/Card.md
CHANGED
package/agent/Checkbox.md
CHANGED
package/agent/CustomSelect.md
CHANGED
package/agent/Divider.md
CHANGED
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
package/agent/Infotext.md
CHANGED
package/agent/Input.md
CHANGED
package/agent/Link.md
CHANGED
package/agent/Navigation.md
CHANGED
|
@@ -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";
|
package/agent/NavigationItem.md
CHANGED
package/agent/Notification.md
CHANGED
package/agent/Page.md
CHANGED
package/agent/Popover.md
CHANGED
package/agent/Radio.md
CHANGED
package/agent/Section.md
CHANGED
package/agent/Select.md
CHANGED
package/agent/Stack.md
CHANGED
package/agent/Switch.md
CHANGED
package/agent/TabItem.md
CHANGED
package/agent/Tabs.md
CHANGED
package/agent/Tag.md
CHANGED
package/agent/Textarea.md
CHANGED
package/agent/Tooltip.md
CHANGED