ez-vid-ang 0.0.8 → 0.0.10

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.
Files changed (2) hide show
  1. package/README.md +68 -1
  2. package/package.json +6 -2
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
- <br/>
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
+ [![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](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.8",
3
+ "version": "0.0.10",
4
4
  "license": "MIT",
5
5
  "exports": {
6
6
  "./assets/styling.scss": {
@@ -34,11 +34,15 @@
34
34
  "homepage": "https://github.com/PatrikHorvatic/ez-vid-ang",
35
35
  "keywords": [
36
36
  "EzVidAng",
37
+ "eva",
38
+ "Easy Video Angular",
37
39
  "video",
38
40
  "player",
39
41
  "angular",
42
+ "standalone",
40
43
  "signals",
41
- "zoneless"
44
+ "zoneless",
45
+ "multilanguage"
42
46
  ],
43
47
  "module": "fesm2022/ez-vid-ang.mjs",
44
48
  "typings": "types/ez-vid-ang.d.ts"