ez-vid-ang 0.0.8 → 21.0.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/README.md +68 -1
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -16,6 +16,9 @@ Highly configurable, performant and easy-to-use Angular component library for vi
|
|
|
16
16
|
▶️ **Inspired by modern players** – Familiar UX similar to popular platforms<br/>
|
|
17
17
|
📱 **Responsive design** - Works across all screen sizes and devices<br/>
|
|
18
18
|
|
|
19
|
+
## Example project
|
|
20
|
+
|
|
21
|
+
Example project can be found on [Stackblitz](https://stackblitz.com/edit/stackblitz-starters-sr5wp23n)
|
|
19
22
|
|
|
20
23
|
## Version compatibility
|
|
21
24
|
|
|
@@ -55,7 +58,57 @@ Add the required styles to your angular.json:
|
|
|
55
58
|
```
|
|
56
59
|
> [!NOTE]
|
|
57
60
|
> *eva-icons-and-fonts.scss* is optional if you provide custom icons and fonts for all components. It includes a prepared *.woff* file and utility classes for default icon usage.
|
|
58
|
-
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
> [!IMPORTANT]
|
|
64
|
+
> **If you want to use HLS streaming directive you must install latest version of the hls.js.**
|
|
65
|
+
>
|
|
66
|
+
> ```
|
|
67
|
+
> npm i hls.js
|
|
68
|
+
>```
|
|
69
|
+
> **And add the required script to your angular.json**
|
|
70
|
+
> ```
|
|
71
|
+
> {
|
|
72
|
+
> "projects": {
|
|
73
|
+
> "your_project": {
|
|
74
|
+
> "architect": {
|
|
75
|
+
> "build": {
|
|
76
|
+
> "options": {
|
|
77
|
+
> "scripts": [
|
|
78
|
+
> "node_modules/hls.js/dist/hls.min.js"
|
|
79
|
+
> ]
|
|
80
|
+
> }
|
|
81
|
+
> }
|
|
82
|
+
> }
|
|
83
|
+
> }
|
|
84
|
+
> }
|
|
85
|
+
> }
|
|
86
|
+
> ```
|
|
87
|
+
|
|
88
|
+
> [!IMPORTANT]
|
|
89
|
+
> **If you want to use DASH streaming directive you must install v5 of the dash.js.**
|
|
90
|
+
>
|
|
91
|
+
> ```
|
|
92
|
+
> npm i dashjs
|
|
93
|
+
>```
|
|
94
|
+
> **And add the required script to your angular.json**
|
|
95
|
+
> ```
|
|
96
|
+
> {
|
|
97
|
+
> "projects": {
|
|
98
|
+
> "your_project": {
|
|
99
|
+
> "architect": {
|
|
100
|
+
> "build": {
|
|
101
|
+
> "options": {
|
|
102
|
+
> "scripts": [
|
|
103
|
+
> "node_modules/dashjs/dist/modern/esm/dash.all.min.js"
|
|
104
|
+
> ]
|
|
105
|
+
> }
|
|
106
|
+
> }
|
|
107
|
+
> }
|
|
108
|
+
> }
|
|
109
|
+
> }
|
|
110
|
+
> }
|
|
111
|
+
> ```
|
|
59
112
|
|
|
60
113
|
Import the needed components and types into your standalone component or NgModule:
|
|
61
114
|
```
|
|
@@ -116,3 +169,17 @@ Library has four groups of components. You can click on the name to go to the do
|
|
|
116
169
|
- [**EvaControls**](documentation/controls) – Video control components and pipes
|
|
117
170
|
- [**EvaBuffering**](documentation/buffering) – Loading and buffering indicators
|
|
118
171
|
- [**EvaStreaming**](documentation/streaming) – Directives for live streaming support
|
|
172
|
+
|
|
173
|
+
---
|
|
174
|
+
### 💖 Support This Project
|
|
175
|
+
|
|
176
|
+
If you wish to make a donation you can click the widget.
|
|
177
|
+
[](https://ko-fi.com/K3K01AFMO6)
|
|
178
|
+
|
|
179
|
+
Your support helps:
|
|
180
|
+
- Maintain the project
|
|
181
|
+
- Add new features
|
|
182
|
+
- Fix bugs
|
|
183
|
+
- Provide long-term updates
|
|
184
|
+
|
|
185
|
+
Thank you for your generosity! 🙏
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ez-vid-ang",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "21.0.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./assets/styling.scss": {
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
17
|
"peerDependencies": {
|
|
18
|
-
"@angular/common": "^21.1.0",
|
|
19
18
|
"@angular/core": "^21.1.0"
|
|
20
19
|
},
|
|
21
20
|
"dependencies": {
|
|
@@ -34,11 +33,15 @@
|
|
|
34
33
|
"homepage": "https://github.com/PatrikHorvatic/ez-vid-ang",
|
|
35
34
|
"keywords": [
|
|
36
35
|
"EzVidAng",
|
|
36
|
+
"eva",
|
|
37
|
+
"Easy Video Angular",
|
|
37
38
|
"video",
|
|
38
39
|
"player",
|
|
39
40
|
"angular",
|
|
41
|
+
"standalone",
|
|
40
42
|
"signals",
|
|
41
|
-
"zoneless"
|
|
43
|
+
"zoneless",
|
|
44
|
+
"multilanguage"
|
|
42
45
|
],
|
|
43
46
|
"module": "fesm2022/ez-vid-ang.mjs",
|
|
44
47
|
"typings": "types/ez-vid-ang.d.ts"
|