@sinequa/atomic-angular 1.5.2 → 1.5.3
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/README.md +28 -0
- package/fesm2022/sinequa-atomic-angular.mjs +359 -199
- package/fesm2022/sinequa-atomic-angular.mjs.map +1 -1
- package/index.d.ts +132 -76
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -26,6 +26,34 @@ npm install @sinequa/atomic-angular
|
|
|
26
26
|
}
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
+
> ℹ️ The peer dependency above targets the **1.x** line (Angular 20). For the Angular 22
|
|
30
|
+
> line, see the compatibility table below.
|
|
31
|
+
|
|
32
|
+
## Versioning & Compatibility
|
|
33
|
+
|
|
34
|
+
`@sinequa/atomic-angular` is maintained across several **parallel version lines**, each
|
|
35
|
+
pinned to an Angular major and consumed by a specific product release. Pick the line that
|
|
36
|
+
matches the Angular version embedded in your product.
|
|
37
|
+
|
|
38
|
+
| Library line | Angular | Product release | Status | Install |
|
|
39
|
+
|---|---|---|---|---|
|
|
40
|
+
| **1.0.x** | 20 | 11.13.0 | 🩹 Maintenance — critical & bug fixes only | `npm i @sinequa/atomic-angular@~1.0` |
|
|
41
|
+
| **1.x** | 20 | 11.14.0 | ✅ Active — fixes + new features | `npm i @sinequa/atomic-angular@^1` |
|
|
42
|
+
| **2.x** | 22 | *future release* | 🚧 Upcoming — pre-release | `npm i @sinequa/atomic-angular@next` |
|
|
43
|
+
|
|
44
|
+
**How the lines work**
|
|
45
|
+
|
|
46
|
+
- **Each line is an independent version range.** A `1.0.x` patch and a `1.x` minor are
|
|
47
|
+
unrelated number spaces — upgrading within a line never crosses an Angular major.
|
|
48
|
+
- **`~1.0`** keeps you on patch releases of the 11.13 line (no minor jumps).
|
|
49
|
+
**`^1`** follows the active 1.x line (patches + minors, still Angular 20).
|
|
50
|
+
**`@next` / `^2`** is the Angular 22 line, for the upcoming product release.
|
|
51
|
+
- A fix relevant to several lines is applied to each supported line independently, so you
|
|
52
|
+
receive it on whichever line you track — without being forced onto a new Angular major.
|
|
53
|
+
|
|
54
|
+
> Maintainers: the branching and propagation process is documented in
|
|
55
|
+
> [`HOTFIX.md`](https://github.com/Product/sba-atomic-angular/blob/develop/HOTFIX.md).
|
|
56
|
+
|
|
29
57
|
## Features
|
|
30
58
|
|
|
31
59
|
### 🔐 Authentication & Authorization
|