@ks89/angular-modal-gallery 14.0.0 → 15.0.0-alpha.1
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 +21 -0
- package/README.md +3 -2
- package/fesm2022/ks89-angular-modal-gallery.mjs +1062 -1010
- package/fesm2022/ks89-angular-modal-gallery.mjs.map +1 -1
- package/index.d.ts +493 -546
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
# 15.0.0-alpha.1
|
|
2
|
+
|
|
3
|
+
Why this major release? Because I want to upgrade/rewrite to code to the latest angular features.
|
|
4
|
+
This requires a lot or refactoring and changes, so I prefer to release the new version as major release.
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
### Refactor
|
|
8
|
+
|
|
9
|
+
- migrate to inject() function instead of using the constructor
|
|
10
|
+
- migrate to output<> syntax
|
|
11
|
+
- migrate to input<> syntax
|
|
12
|
+
- migrate to self-closing tags
|
|
13
|
+
- partial migration to signals
|
|
14
|
+
- huge refactor to tests to use the new syntax
|
|
15
|
+
- force 'strictTemplates: true' and 'noPropertyAccessFromIndexSignature: true' in tsconfig (recommended values) and adapt the library code to work with
|
|
16
|
+
|
|
17
|
+
### Examples
|
|
18
|
+
|
|
19
|
+
- upgrade all examples to the new syntax
|
|
20
|
+
|
|
21
|
+
|
|
1
22
|
# 14.0.0
|
|
2
23
|
|
|
3
24
|
### Features
|
package/README.md
CHANGED
|
@@ -173,7 +173,7 @@ From version @ks89/angular-modal-gallery >= 11.0.0, **mousetrap and hammerjs hav
|
|
|
173
173
|
| Angular 17 | = 11.1.1 | optional |
|
|
174
174
|
| Angular 18 | = 12.0.0 | optional |
|
|
175
175
|
| Angular 19 | = 13.0.0 | optional |
|
|
176
|
-
| Angular 20 | >=
|
|
176
|
+
| Angular 20 | >= 15.0.0 | optional |
|
|
177
177
|
|
|
178
178
|
<br>
|
|
179
179
|
|
|
@@ -181,7 +181,8 @@ From version @ks89/angular-modal-gallery >= 11.0.0, **mousetrap and hammerjs hav
|
|
|
181
181
|
|
|
182
182
|
**More than 100 releases in two years**, and more to come... :)
|
|
183
183
|
|
|
184
|
-
-
|
|
184
|
+
- 12/09/2025 - 15.0.0-alpha.1 - @ks89/angular-modal-gallery - [HERE](https://github.com/Ks89/angular-modal-gallery/releases)
|
|
185
|
+
- 20/08/2025 - 14.0.0 - @ks89/angular-modal-gallery - [HERE](https://github.com/Ks89/angular-modal-gallery/releases)
|
|
185
186
|
- 22/12/2024 - 13.0.0 - @ks89/angular-modal-gallery - [HERE](https://github.com/Ks89/angular-modal-gallery/releases)
|
|
186
187
|
- 31/05/2024 - 12.0.0 - @ks89/angular-modal-gallery - [HERE](https://github.com/Ks89/angular-modal-gallery/releases)
|
|
187
188
|
- 31/01/2024 - 11.1.2 - @ks89/angular-modal-gallery - [HERE](https://github.com/Ks89/angular-modal-gallery/releases)
|