@clickview/player 0.0.10-rc.6 → 0.0.10-rc.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/dist/libs/shared/src/components/actions/ActionButton.d.ts +1 -0
- package/dist/libs/shared/src/components/actions/Actions.d.ts +1 -0
- package/dist/libs/shared/src/components/icon-button/IconButton.d.ts +1 -0
- package/dist/libs/shared/src/images/svg/ImportedSvgs.d.ts +2 -2
- package/dist/libs/shared/src/images/svg/actions/index.d.ts +1 -2
- package/dist/libs/shared/src/images/svg/objects/index.d.ts +2 -1
- package/dist/player-app.js +2 -2
- package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-item.d.ts +2 -2
- package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-items.d.ts +2 -2
- package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-load-progress.d.ts +2 -2
- package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-play-progress.d.ts +2 -2
- package/dist/projects/player/src/components/chapters-button/chapter-menu-item.d.ts +2 -2
- package/dist/projects/player/src/components/landing-splash/landing-splash.d.ts +2 -2
- package/dist/projects/player/src/components/landing-splash/metadata/splash-metadata.d.ts +2 -2
- package/dist/projects/player/src/components/landing-splash/metadata/splash-title/splash-title.d.ts +2 -2
- package/dist/projects/player/src/components/landing-splash/metadata/splash-warning/splash-warning.d.ts +2 -2
- package/dist/projects/player/src/components/subs-caps-button/SubCapsMenuItem.d.ts +2 -2
- package/dist/projects/player/src/components/subs-caps-button/subtitle-search-menu-item.d.ts +2 -2
- package/dist/projects/player/src/components/subs-caps-button/subtitle-size-menu-item.d.ts +2 -2
- package/dist/projects/player/src/components/text-track-settings/text-track-settings.d.ts +2 -2
- package/dist/projects/player/src/components/thumbnail-display/thumbnail-display.d.ts +2 -2
- package/dist/projects/player/src/plugins/chromecast-plugin/session-manager.d.ts +2 -2
- package/dist/projects/player/src/plugins/chromecast-plugin/tech/chromecast-tech-ui/chromecast-tech-ui.d.ts +2 -2
- package/dist/projects/player/src/plugins/create-clip-plugin/components/clip-timepoint-selector/clip-timepoint-selector-handle.d.ts +2 -2
- package/dist/projects/player/src/plugins/create-clip-plugin/components/clip-timepoint-selector/clip-timepoint-selector.d.ts +2 -2
- package/dist/projects/player/src/plugins/engagement-overlay-plugin/components/engagement-overlay/engagement-overlay.d.ts +2 -2
- package/dist/projects/player/src/plugins/interactive-plugin/components/seek-bar/interactive-bar-items.d.ts +2 -2
- package/dist/projects/player/src/plugins/points-of-interest-plugin/components/point-of-interest-indicator/point-of-interest-indicator.d.ts +2 -2
- package/dist/projects/player/src/plugins/touch-controls-plugin/components/touch-controls/touch-controls.d.ts +2 -2
- package/dist/projects/player/src/plugins/whiteboard-mode-plugin/components/drag-handle/drag-handle.d.ts +2 -2
- package/dist/projects/player/src/plugins/whiteboard-mode-plugin/components/drag-targets/drag-targets.d.ts +2 -2
- package/package.json +3 -3
|
@@ -5,6 +5,7 @@ import { AnalyticsOptions } from 'libs/analytics/interfaces';
|
|
|
5
5
|
import { SvgContainerSize } from 'libs/shared/components/svg-container/SvgContainer';
|
|
6
6
|
interface ActionButtonProps {
|
|
7
7
|
appLink?: Core.AppLink;
|
|
8
|
+
href?: string;
|
|
8
9
|
onClick?: (e: React.MouseEvent) => void;
|
|
9
10
|
svgName?: string;
|
|
10
11
|
svgSize?: SvgContainerSize;
|
|
@@ -96,10 +96,10 @@ export declare enum localSvgs {
|
|
|
96
96
|
CrossCircleFilled = "cross-circle-filled",
|
|
97
97
|
Hamburger = "hamburger",
|
|
98
98
|
Library = "library",
|
|
99
|
-
InteractiveResults = "interactive-results",
|
|
100
99
|
House = "house",
|
|
101
100
|
MonitorPlay = "monitor-play",
|
|
102
101
|
MonitorChart = "monitor-chart",
|
|
103
102
|
Anonymous = "anonymous",
|
|
104
|
-
Retry = "retry"
|
|
103
|
+
Retry = "retry",
|
|
104
|
+
Chart = "chart"
|
|
105
105
|
}
|
|
@@ -24,6 +24,5 @@ import Print from './print.svg';
|
|
|
24
24
|
import CreateInteractive from './create-interactive.svg';
|
|
25
25
|
import Play from './play.svg';
|
|
26
26
|
import PlayCircle from './play-circle.svg';
|
|
27
|
-
import InteractiveResults from './interactive-results.svg';
|
|
28
27
|
import Retry from './retry.svg';
|
|
29
|
-
export { AddToPlaylist, Close, Delete, Edit, Expand, Minus, More, NewWindow, Plus, Preview, Search, Share, Upload, Down, Right, UpDown, VisibleOff, VisibleOn, NoEdit, EditClickView, Share2, Download, Print, CreateInteractive, Play, PlayCircle,
|
|
28
|
+
export { AddToPlaylist, Close, Delete, Edit, Expand, Minus, More, NewWindow, Plus, Preview, Search, Share, Upload, Down, Right, UpDown, VisibleOff, VisibleOn, NoEdit, EditClickView, Share2, Download, Print, CreateInteractive, Play, PlayCircle, Retry };
|
|
@@ -37,6 +37,7 @@ import Library from './library.svg';
|
|
|
37
37
|
import MonitorPlay from './monitor-play.svg';
|
|
38
38
|
import MonitorChart from './monitor-chart.svg';
|
|
39
39
|
import Anonymous from './anonymous.svg';
|
|
40
|
+
import Chart from './chart.svg';
|
|
40
41
|
import File from './file.svg';
|
|
41
42
|
import FilePDF from './file-pdf.svg';
|
|
42
43
|
import FileImg from './file-img.svg';
|
|
@@ -46,4 +47,4 @@ import FileZip from './file-zip.svg';
|
|
|
46
47
|
import FileExcel from './file-excel.svg';
|
|
47
48
|
import Twitter from './twitter.svg';
|
|
48
49
|
import Facebook from './facebook.svg';
|
|
49
|
-
export { Archive, Bell, Bookmark, Broadcast, Calendar, Cog, CrossCircle, CrossCircleFilled, Folder, Handle, Interactive, Link, Playlist, PublisherArchive, Resources, StarOutline, Star, Tag, Time, Video, Subject, Series, File, Image, FilePDF, FileImg, FilePowerpoint, FileWord, FileZip, FileExcel, Heart, HeartOutline, WhiteWave, Compass, History, Email, YearLevel, Subjects, Twitter, Facebook, Classrooms, Group, Hamburger, Library, House, MonitorPlay, MonitorChart, Anonymous };
|
|
50
|
+
export { Archive, Bell, Bookmark, Broadcast, Calendar, Cog, CrossCircle, CrossCircleFilled, Folder, Handle, Interactive, Link, Playlist, PublisherArchive, Resources, StarOutline, Star, Tag, Time, Video, Subject, Series, File, Image, FilePDF, FileImg, FilePowerpoint, FileWord, FileZip, FileExcel, Heart, HeartOutline, WhiteWave, Compass, History, Email, YearLevel, Subjects, Twitter, Facebook, Classrooms, Group, Hamburger, Library, House, MonitorPlay, MonitorChart, Anonymous, Chart };
|