ez-vid-ang 0.0.5 → 0.0.7
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 +40 -8
- package/fesm2022/ez-vid-ang.mjs +517 -75
- package/fesm2022/ez-vid-ang.mjs.map +1 -1
- package/package.json +2 -1
- package/types/ez-vid-ang.d.ts +376 -32
package/README.md
CHANGED
|
@@ -57,29 +57,61 @@ Add the required styles to your angular.json:
|
|
|
57
57
|
> *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
58
|
<br/>
|
|
59
59
|
|
|
60
|
-
Import the needed
|
|
60
|
+
Import the needed components and types into your standalone component or NgModule:
|
|
61
61
|
```
|
|
62
62
|
import { Component } from '@angular/core';
|
|
63
|
-
import {
|
|
63
|
+
import {
|
|
64
|
+
EvaActiveChapter,
|
|
65
|
+
EvaBackward,
|
|
66
|
+
EvaBuffering,
|
|
67
|
+
EvaChapterMarker,
|
|
68
|
+
EvaOverlayPlay,
|
|
69
|
+
EvaControlsContainer, EvaControlsDivider,
|
|
70
|
+
EvaForward, EvaFullscreen, EvaHlsDirective,
|
|
71
|
+
EvaMute, EvaMuteAria, EvaPlaybackSpeed, EvaPlayer,
|
|
72
|
+
EvaPlayPause, EvaQualitySelector, EvaScrubBar,
|
|
73
|
+
EvaScrubBarBufferingTime, EvaScrubBarCurrentTime,
|
|
74
|
+
EvaSubtitleDisplay,EvaPictureInPicture,
|
|
75
|
+
EvaTimeDisplay, EvaTrack, EvaTrackSelector,
|
|
76
|
+
EvaVideoElementConfiguration, EvaVideoSource, EvaVolume
|
|
77
|
+
} from "ez-vid-ang";
|
|
64
78
|
|
|
65
79
|
@Component({
|
|
66
80
|
selector: 'lt-home-page',
|
|
67
81
|
templateUrl: './home-page.html',
|
|
68
82
|
styleUrl: './home-page.scss',
|
|
69
83
|
imports: [
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
84
|
+
EvaActiveChapter,
|
|
85
|
+
EvaBackward,
|
|
86
|
+
EvaBuffering,
|
|
87
|
+
EvaOverlayPlay,
|
|
88
|
+
EvaControlsContainer,
|
|
89
|
+
EvaControlsDivider,
|
|
90
|
+
EvaForward,
|
|
91
|
+
EvaFullscreen,
|
|
92
|
+
EvaHlsDirective,
|
|
93
|
+
EvaMute,
|
|
94
|
+
EvaPlaybackSpeed,
|
|
95
|
+
EvaPlayer,
|
|
96
|
+
EvaPlayPause,
|
|
97
|
+
EvaPictureInPicture,
|
|
98
|
+
EvaQualitySelector,
|
|
99
|
+
EvaScrubBar,
|
|
100
|
+
EvaScrubBarBufferingTime,
|
|
101
|
+
EvaScrubBarCurrentTime,
|
|
102
|
+
EvaSubtitleDisplay,
|
|
103
|
+
EvaTimeDisplay,
|
|
104
|
+
EvaTrackSelector,
|
|
105
|
+
EvaVolume
|
|
74
106
|
]
|
|
75
107
|
})
|
|
76
108
|
export class HomePage {}
|
|
77
109
|
|
|
78
110
|
```
|
|
79
111
|
|
|
80
|
-
##
|
|
112
|
+
## Components
|
|
81
113
|
|
|
82
|
-
Library has four groups of
|
|
114
|
+
Library has four groups of components. You can click on the name to go to the documentation:
|
|
83
115
|
- [**EvaCore**](documentation/core) – Main player component, directives, and providers
|
|
84
116
|
- [**EvaControls**](documentation/controls) – Video control components and pipes
|
|
85
117
|
- [**EvaBuffering**](documentation/buffering) – Loading and buffering indicators
|