Skip to content

Commit de2c04b

Browse files
committed
build(release): next version [skip_build]
1 parent 8f20604 commit de2c04b

8 files changed

Lines changed: 469 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 206 additions & 0 deletions
Large diffs are not rendered by default.

apps/styleguide/CHANGELOG.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# 13.0.0 (2025-12-09)
7+
8+
### Bug Fixes
9+
10+
- **click-outside.directive:** make it work ([1c3a49b](https://github.com/shiftcode/sc-ng-commons-public/commit/1c3a49ba38191e8b5c176122253c4218ab1b00c3))
11+
- **local-storage:** handle when LS is not available ([fb22eee](https://github.com/shiftcode/sc-ng-commons-public/commit/fb22eee39bc4681a921291676c4e226238b1e67d))
12+
- remove our ng-dev-mode type, since this is no part of @angular/core ([ba7a44f](https://github.com/shiftcode/sc-ng-commons-public/commit/ba7a44f2ed02efcf2eb203a21d9b2a4ce3d737ca))
13+
14+
### Code Refactoring
15+
16+
- **smooth-height:** use native animation and MutationObserver ([f366f81](https://github.com/shiftcode/sc-ng-commons-public/commit/f366f81496a7ce67d6a19d3e00caa510a32bf330))
17+
18+
### Features
19+
20+
- **angular:** update to angular 14.0.0 ([bf3346f](https://github.com/shiftcode/sc-ng-commons-public/commit/bf3346fe8a2004666cc297dff0ab4d56e32a6418))
21+
- **angular:** update to angular@15 ([c848401](https://github.com/shiftcode/sc-ng-commons-public/commit/c848401fc4776d87dbbfa3892062f7efefcf742a))
22+
- **angular:** use angular 19 ([2907ec9](https://github.com/shiftcode/sc-ng-commons-public/commit/2907ec944420ce01e38b11a9e2fb6b03a8543a7f))
23+
- **logger:** implement base logger from @shiftcode/logger ([8561742](https://github.com/shiftcode/sc-ng-commons-public/commit/8561742b0053c5c41a324c8d479d5ea3ebcc0c34))
24+
- **logger:** support Feature pattern to provide LogTransports ([9e97248](https://github.com/shiftcode/sc-ng-commons-public/commit/9e972485fed0fabfee6f537357a38b215c5732db))
25+
- **navigation-class-handler:** styleguide page ([d531901](https://github.com/shiftcode/sc-ng-commons-public/commit/d5319011d9e43e1d440522605a0a5116e48dfc5f))
26+
- replace tslint to eslint ([ad6c76c](https://github.com/shiftcode/sc-ng-commons-public/commit/ad6c76cc40b89ab3fd3833dc0e8679a1a2165503))
27+
- **root:** tslint -> eslint and yarn -> npm migrations ([e6c4786](https://github.com/shiftcode/sc-ng-commons-public/commit/e6c47865872529e169848b6f4ea5e421a76a24fb))
28+
- run @angular/core:inject migration ([dafceb0](https://github.com/shiftcode/sc-ng-commons-public/commit/dafceb0c74a8559c7cd3c3e3d267c0b57393e383))
29+
- **styleguide:** remove node console transport ([bb396fb](https://github.com/shiftcode/sc-ng-commons-public/commit/bb396fb423e7b66a1da7a7b440d5729128e9a6c7))
30+
- **tooltip:** use css custom prop for padding ([bb0ea75](https://github.com/shiftcode/sc-ng-commons-public/commit/bb0ea7556c171d0e261603baf1a00850a5784c8e))
31+
- update to angular 20 ([0ff5267](https://github.com/shiftcode/sc-ng-commons-public/commit/0ff5267a5e666153a4714bd80978a0a944f486a0))
32+
- update to angular 21 ([b6940b5](https://github.com/shiftcode/sc-ng-commons-public/commit/b6940b5869c834ebbe463cf958c3ecbebb414cb1))
33+
- update to angular17 (@angular/core) ([858c2e9](https://github.com/shiftcode/sc-ng-commons-public/commit/858c2e9665096fba7695bb92106eb4b66b8c73b9))
34+
35+
### BREAKING CHANGES
36+
37+
- **smooth-height:** no more `trigger` input for `smooth-height` component. instead a MutationObserver is used
38+
- Requires Angular ^21
39+
- Requires Angular ^20
40+
- **angular:** requires angular@19
41+
- Requires angular@^17.1.1 to be installed
42+
- **click-outside.directive:** scClickOutside directive API change
43+
no longer supports [scClickOutside] boolean input for activation but `[scClickOutsideDisabled]` for disabling
44+
- **local-storage:** It's necessary to call `provideLocalStorage` or to provide an implementation for LocalStorage on your own
45+
- **angular:** now requires angular@15
46+
- **angular:** now requires @angular/core@^14.0.0

apps/styleguide/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
"lint": "eslint --fix --cache ./src",
66
"lint:ci": "eslint ./src",
77
"lint:staged": "eslint --fix --cache"
8-
}
8+
},
9+
"version": "13.0.0"
910
}

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"useNx": false,
33
"packages": ["libs/*", "apps/*"],
4-
"version": "13.0.0-pr63.21",
4+
"version": "13.0.0",
55
"command": {
66
"version": {
77
"allowBranch": "*",

libs/components/CHANGELOG.md

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,114 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# 13.0.0 (2025-12-09)
7+
8+
### Bug Fixes
9+
10+
- add essential ts-ignores ([197606f](https://github.com/shiftcode/sc-ng-commons-public/commit/197606f7412314f030290e6a927884b653fb6d46))
11+
- **angular:** use and require version with fixed xss gap ([6c23165](https://github.com/shiftcode/sc-ng-commons-public/commit/6c23165a80009faf50076d8e8320f89ff97df372))
12+
- **auto-focus-directive:** use ngAfterViewInit lifecycle hook to focus the element ([fdbaa72](https://github.com/shiftcode/sc-ng-commons-public/commit/fdbaa729922ea0dc1c3ab612c03cf0815c1d7d16))
13+
- **auto-focus.directive:** no longer set tabindex=-1 when element is already focusable ([1aa4706](https://github.com/shiftcode/sc-ng-commons-public/commit/1aa4706f7de0ba92313a8aa48f1cee09f8d0aaa4))
14+
- **autofocus-directive:** no longer set tabindex=-1 when element is already focusable ([4725ea4](https://github.com/shiftcode/sc-ng-commons-public/commit/4725ea4fa6ad3b090a63abde81a949a4113d4f2a))
15+
- **aws:** update nx-components version ([803591d](https://github.com/shiftcode/sc-ng-commons-public/commit/803591dccfba4b143b97a62d7e7aa8677efe0c9f))
16+
- **click-outside.directive:** make it work ([1c3a49b](https://github.com/shiftcode/sc-ng-commons-public/commit/1c3a49ba38191e8b5c176122253c4218ab1b00c3))
17+
- **components:** update ngx-core ([70d927c](https://github.com/shiftcode/sc-ng-commons-public/commit/70d927ce9dc1fc302922f9969d181d207bbd4f4c))
18+
- **libs:** solve review comments ([1216b96](https://github.com/shiftcode/sc-ng-commons-public/commit/1216b9698f8d9e147accd35853613ac9483b7ccb))
19+
- remove our ng-dev-mode type, since this is no part of @angular/core ([ba7a44f](https://github.com/shiftcode/sc-ng-commons-public/commit/ba7a44f2ed02efcf2eb203a21d9b2a4ce3d737ca))
20+
- remove unnecessary eslint rules ([5423000](https://github.com/shiftcode/sc-ng-commons-public/commit/542300063c58fd917a96765304e7e480bcb2f92e))
21+
- revert version of --fix flag command and prettier scripts ([26d0f73](https://github.com/shiftcode/sc-ng-commons-public/commit/26d0f73a07905d6bc1bc29e40b3c0715c6f51d27))
22+
- **svg-registry:** remove svg request from cache when timed out ([795f8a3](https://github.com/shiftcode/sc-ng-commons-public/commit/795f8a3892e18a833b907c9ee0f7b03875dfeca5))
23+
- **tooltip:** register touch events as passive listeners ([eda8376](https://github.com/shiftcode/sc-ng-commons-public/commit/eda837617130ac519d1d686623d08cf83e002725))
24+
- **tooltip:** update source to satisfy constraints from super class ([118ba89](https://github.com/shiftcode/sc-ng-commons-public/commit/118ba89a55e88defdd9e04c7a360f0db461b5ddb))
25+
- update version range for rxjs ([b6a8f74](https://github.com/shiftcode/sc-ng-commons-public/commit/b6a8f748168eaeb8079e67e18641fe242692b8cb))
26+
27+
### Build System
28+
29+
- **components:** update @shiftcode/ngx-core version to ^9.0.0 || ^9.0.0-pr46 ([1f167b0](https://github.com/shiftcode/sc-ng-commons-public/commit/1f167b0fa500c3f81d1ce429d222dd29b219c358))
30+
- **components:** update peer dependency version ([1bdcbac](https://github.com/shiftcode/sc-ng-commons-public/commit/1bdcbacbb83b270daf35026134961afc2bc6d59c))
31+
- **deps:** update @shiftcode/logger to version 1.1.0 ([558223d](https://github.com/shiftcode/sc-ng-commons-public/commit/558223de7a250531ce8d1c2cd0f0003f7ad1ee8d))
32+
33+
### Code Refactoring
34+
35+
- **dependencies:** add @angular/router to peer dependencies ([0251132](https://github.com/shiftcode/sc-ng-commons-public/commit/0251132a0ebf2bfbe7f14734fb43568f5b401bee))
36+
- **flying-focus:** use inject() ([d62d011](https://github.com/shiftcode/sc-ng-commons-public/commit/d62d0118501d27bcd48503aeefe7c734f3815627))
37+
- **modules:** remove deprecated ng modules ([9449828](https://github.com/shiftcode/sc-ng-commons-public/commit/9449828b9bc639e9292979024e1416098a15c80b))
38+
- **smooth-height:** use native animation and MutationObserver ([f366f81](https://github.com/shiftcode/sc-ng-commons-public/commit/f366f81496a7ce67d6a19d3e00caa510a32bf330))
39+
- **svg.component:** make url input required ([8b518aa](https://github.com/shiftcode/sc-ng-commons-public/commit/8b518aa264b125c60d1f8a969a11a1160d18128b))
40+
- **svg:** remove constructor arguments ([c3173ae](https://github.com/shiftcode/sc-ng-commons-public/commit/c3173ae9f096729b6653e8e1955e1cef76763a1b))
41+
42+
### Features
43+
44+
- **angular:** migrating to signals ([73abe3e](https://github.com/shiftcode/sc-ng-commons-public/commit/73abe3e2072d9bfa517a4dd45030f4f93d942f50))
45+
- **angular:** refactoring ([448d673](https://github.com/shiftcode/sc-ng-commons-public/commit/448d673c27aaace5c3ec89389e8094140462ba8c))
46+
- **angular:** update to angular 14.0.0 ([bf3346f](https://github.com/shiftcode/sc-ng-commons-public/commit/bf3346fe8a2004666cc297dff0ab4d56e32a6418))
47+
- **angular:** update to angular@15 ([c848401](https://github.com/shiftcode/sc-ng-commons-public/commit/c848401fc4776d87dbbfa3892062f7efefcf742a))
48+
- **angular:** updating to angular 21 ([0ac6e00](https://github.com/shiftcode/sc-ng-commons-public/commit/0ac6e0075e79fe4078e387668d561cd4dc51727d))
49+
- **angular:** updating to angular 21 ([7108822](https://github.com/shiftcode/sc-ng-commons-public/commit/710882206cae284ce1a4603b3a0031675b8fc7f1))
50+
- **angular:** upgrading dependencies ([a5b375d](https://github.com/shiftcode/sc-ng-commons-public/commit/a5b375daa2b70ca01802acb5c7ae9d9594a2965b))
51+
- **angular:** use angular 16 ([6d34a53](https://github.com/shiftcode/sc-ng-commons-public/commit/6d34a534d7ce2a88f2ecfee6429b226ce493d20b))
52+
- **angular:** use angular 18 ([4610203](https://github.com/shiftcode/sc-ng-commons-public/commit/46102035f219c1c54cd5799879216cfd3e15f32e))
53+
- **angular:** use angular 19 ([2907ec9](https://github.com/shiftcode/sc-ng-commons-public/commit/2907ec944420ce01e38b11a9e2fb6b03a8543a7f))
54+
- **angular:** using signals ([8aa6817](https://github.com/shiftcode/sc-ng-commons-public/commit/8aa6817e69e143b37854095656449a108923b33e))
55+
- **auto-focus:** make directive standalone ([4ec0f7b](https://github.com/shiftcode/sc-ng-commons-public/commit/4ec0f7b752cf9f0dcf0cf55a7a86dc63d7673a1d))
56+
- **aws/components:** update to ngx-core^7.1.0 ([f89cc4b](https://github.com/shiftcode/sc-ng-commons-public/commit/f89cc4be66f3d2441a06328334691015da996cd0))
57+
- **button:** emit actual event in action output ([9ae67d4](https://github.com/shiftcode/sc-ng-commons-public/commit/9ae67d47e899d4af31b0a559745d11e2d150ffb8))
58+
- **button:** make component standalone ([1596a62](https://github.com/shiftcode/sc-ng-commons-public/commit/1596a62beac6f568616e6a456f022b67c624debe))
59+
- **click-outside:** make directive standalone ([5402c11](https://github.com/shiftcode/sc-ng-commons-public/commit/5402c11d3d155a2df3768eb55465fa0a848a0eeb))
60+
- **components:** update angular to version 17 ([c07933d](https://github.com/shiftcode/sc-ng-commons-public/commit/c07933ddb30658e1798a456ba77ee439c3fb6772))
61+
- **components:** update to angular 20 ([6188a11](https://github.com/shiftcode/sc-ng-commons-public/commit/6188a1104053a9d0c5c5b4f894cc13b8c27aa2da))
62+
- **dependencies:** require @shiftcode/ngx-core@^12.0.0 ([5c93d4b](https://github.com/shiftcode/sc-ng-commons-public/commit/5c93d4bdfd9cada0c76f9eecbb4d4e358f163199))
63+
- **dependencies:** use @shiftcode/ngx-core@^12.0.0 ([8a75739](https://github.com/shiftcode/sc-ng-commons-public/commit/8a75739de97439247307d4e99a7cb640d0212c10))
64+
- extend eslintrc files ([5bec34b](https://github.com/shiftcode/sc-ng-commons-public/commit/5bec34bbb18006127f13a763dc24a367f7fd6aad))
65+
- **flying-focus:** make component standalone ([0499d43](https://github.com/shiftcode/sc-ng-commons-public/commit/0499d43b94bd72a30441dc4a5eea4b7ddba0385b))
66+
- **insert-view-ref.directive:** add new directive ([c9367d2](https://github.com/shiftcode/sc-ng-commons-public/commit/c9367d2d784c8c1bc239bdc1236fb7aa332f84be))
67+
- **insert-view-ref.directive:** add public `insert` and `detach` methods + `hasAttachedView` getter ([69b0c83](https://github.com/shiftcode/sc-ng-commons-public/commit/69b0c83daeaaf18ddade008da7f624b790df07fb))
68+
- **lint:** update eslint configs to only include necessary rules ([21af752](https://github.com/shiftcode/sc-ng-commons-public/commit/21af752ef3e939260bdcd3dbb91fe28098fd81bf))
69+
- **logger:** implement base logger from @shiftcode/logger ([8561742](https://github.com/shiftcode/sc-ng-commons-public/commit/8561742b0053c5c41a324c8d479d5ea3ebcc0c34))
70+
- **navigation-class-handler:** new utility to add/remove a css class on the body while navigating ([6dd1466](https://github.com/shiftcode/sc-ng-commons-public/commit/6dd14668c9b146f4645b3ebc5b2a50d9d7dc6345))
71+
- remove tslint, add .eslintrc.cjs files ([8bebbd9](https://github.com/shiftcode/sc-ng-commons-public/commit/8bebbd9aa3cd17d8a6e3d7ed8f81bce9147eb87a))
72+
- replace tslint to eslint ([ad6c76c](https://github.com/shiftcode/sc-ng-commons-public/commit/ad6c76cc40b89ab3fd3833dc0e8679a1a2165503))
73+
- **root:** migrate to npm ([94a6d6d](https://github.com/shiftcode/sc-ng-commons-public/commit/94a6d6d7e75b33ceebddcde3e5f08a23858e676d))
74+
- **root:** tslint -> eslint and yarn -> npm migrations ([e6c4786](https://github.com/shiftcode/sc-ng-commons-public/commit/e6c47865872529e169848b6f4ea5e421a76a24fb))
75+
- run @angular/core:inject migration ([dafceb0](https://github.com/shiftcode/sc-ng-commons-public/commit/dafceb0c74a8559c7cd3c3e3d267c0b57393e383))
76+
- **rx-let:** rx-angular inspired directive ([1edf9cc](https://github.com/shiftcode/sc-ng-commons-public/commit/1edf9cc3bab763bcdf7b46bb250d29b095584e03))
77+
- **sc-rx-if.directive:** new directive for if/else with observables ([6b0834f](https://github.com/shiftcode/sc-ng-commons-public/commit/6b0834f8271554a0dc600f97ee996d1ea4d14c44))
78+
- **smooth-height:** make component standalone ([d521472](https://github.com/shiftcode/sc-ng-commons-public/commit/d521472f96ff987247c9b834ab23826219f87ee8))
79+
- **svg-animate.directive:** add directive to animate svgs ([d8115fc](https://github.com/shiftcode/sc-ng-commons-public/commit/d8115fcfb5524a98a4e81ee65c77c17c2731c452))
80+
- **svg-animate:** make directive standalone ([d7a92f3](https://github.com/shiftcode/sc-ng-commons-public/commit/d7a92f3f8063c08a586bfc824fcebcef20a8948c))
81+
- **svg-component:** change log level in case of no internet ([b644f4c](https://github.com/shiftcode/sc-ng-commons-public/commit/b644f4c2c4df1474b07d19cc64e4a76986490345))
82+
- **svg:** make component standalone ([337a091](https://github.com/shiftcode/sc-ng-commons-public/commit/337a091b2f4408e9d655523ff223d424d2b01d83))
83+
- **textarea-autosize:** make directive standalone ([dba48be](https://github.com/shiftcode/sc-ng-commons-public/commit/dba48beb0c08988683b6c1231901091194480725))
84+
- **tooltip.directive:** make standalone ([de18daf](https://github.com/shiftcode/sc-ng-commons-public/commit/de18dafdbabc526a9e76646fe7d5d67aa350f3cb))
85+
- **tooltip:** use css custom prop for padding ([bb0ea75](https://github.com/shiftcode/sc-ng-commons-public/commit/bb0ea7556c171d0e261603baf1a00850a5784c8e))
86+
- update @shiftcode/logger to version ^3.0.0 and @shiftcode/utilities to version ^4.0.0 ([727a2cb](https://github.com/shiftcode/sc-ng-commons-public/commit/727a2cb68d00a0993dfb8a9c755d6c8283aab44f))
87+
- update to angular 20 ([0ff5267](https://github.com/shiftcode/sc-ng-commons-public/commit/0ff5267a5e666153a4714bd80978a0a944f486a0))
88+
89+
### BREAKING CHANGES
90+
91+
- **smooth-height:** no more `trigger` input for `smooth-height` component. instead a MutationObserver is used
92+
- **dependencies:** require @shiftcode/ngx-core@^12.0.0
93+
- **components:** Requires Angular ^20
94+
- Requires Angular ^20
95+
- **components:** requires @shiftcode/ngx-core ^10.0.0
96+
- **components:** requires @shiftcode/ngx-core version to ^9.0.0
97+
- requires @shiftcode/logger ^3.0.0,
98+
requires @shiftcode/utilities ^4.0.0
99+
- **deps:** Implementing @shiftcode/logger leads to the consumer having to change the imports
100+
- **angular:** requires angular@19
101+
- **angular:** requires angular@18
102+
- **dependencies:** requires the `@angular/router` as peer dependency
103+
- **components:** requires angular 17.1.1 as a peer dependency
104+
- **modules:** All ng-module classes have been removed. Import standalone Components/Directives directly.
105+
- **svg.component:** url input now required for sc-svg component
106+
- **flying-focus:** all constructor arguments removed
107+
- **click-outside.directive:** scClickOutside directive API change
108+
no longer supports [scClickOutside] boolean input for activation but `[scClickOutsideDisabled]` for disabling
109+
- **angular:** requires angular@16
110+
- **svg:** SvgComponent no longer requires any constructor arguments. Only applies when extending the SvgComponent
111+
- **angular:** now requires angular@15
112+
- **angular:** now requires @angular/core@^14.0.0
113+
6114
## [12.0.2](https://github.com/shiftcode/sc-ng-commons-public/compare/@shiftcode/ngx-components@12.0.1...@shiftcode/ngx-components@12.0.2) (2025-11-13)
7115

8116
**Note:** Version bump only for package @shiftcode/ngx-components

libs/components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shiftcode/ngx-components",
3-
"version": "13.0.0-pr63.21",
3+
"version": "13.0.0",
44
"repository": "https://github.com/shiftcode/sc-ng-commons-public",
55
"license": "MIT",
66
"author": "shiftcode GmbH <team@shiftcode.ch>",

0 commit comments

Comments
 (0)