ez-vid-ang 21.2.0 → 21.2.2
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 +16 -4
- package/fesm2022/ez-vid-ang.mjs +1436 -1203
- package/fesm2022/ez-vid-ang.mjs.map +1 -1
- package/package.json +3 -2
- package/types/ez-vid-ang.d.ts +503 -329
package/README.md
CHANGED
|
@@ -19,13 +19,12 @@ Example project can be found on [Stackblitz](https://stackblitz.com/edit/stackbl
|
|
|
19
19
|
|
|
20
20
|
## Version compatibility
|
|
21
21
|
|
|
22
|
-
EzVidAng
|
|
22
|
+
EzVidAng updates and develops the library for the 2 latest versions.
|
|
23
23
|
|
|
24
24
|
| EzVidAng | Angular | Node.js |
|
|
25
25
|
| ----------- | ---------- | --------------------------------- |
|
|
26
|
-
| ^
|
|
27
|
-
| ^
|
|
28
|
-
| ^21.0.0 | ^21.0.0 | [According to Angular docs](https://angular.dev/reference/releases#actively-supported-versions) |
|
|
26
|
+
| ^21.2.x | ^21.2.x | [According to Angular docs](https://angular.dev/reference/versions#actively-supported-versions) |
|
|
27
|
+
| ^22.0.0 | ^22.0.0 | [According to Angular docs](https://angular.dev/reference/versions#actively-supported-versions) |
|
|
29
28
|
|
|
30
29
|
|
|
31
30
|
## Installing and preparation
|
|
@@ -159,6 +158,19 @@ export class HomePage {}
|
|
|
159
158
|
|
|
160
159
|
```
|
|
161
160
|
|
|
161
|
+
## Development
|
|
162
|
+
|
|
163
|
+
### Linting
|
|
164
|
+
|
|
165
|
+
The project uses a strict ESLint configuration with type-aware TypeScript rules and Angular-specific template rules. All available rule presets are enabled.
|
|
166
|
+
|
|
167
|
+
```bash
|
|
168
|
+
npm run lint # Check for errors
|
|
169
|
+
npx ng lint --fix # Auto-fix fixable errors
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
All magic numbers are centralized in `src/lib/constants.ts`. See [linting documentation](documentation/core/linting.md) and [constants documentation](documentation/core/constants.md) for details.
|
|
173
|
+
|
|
162
174
|
## Components
|
|
163
175
|
|
|
164
176
|
Library has four groups of components. You can click on the name to go to the documentation:
|