@clickview/online 0.0.4-dev.0 → 0.0.4-rc.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/dist/en.json +1 -1
- package/dist/libs/analytics/src/clients/CollectionApiClient.d.ts +0 -1
- package/dist/libs/analytics/src/interfaces/AnalyticsTypes.d.ts +6 -5
- package/dist/libs/analytics/src/interfaces/User.d.ts +0 -11
- package/dist/libs/analytics/src/models/CollectionEvent.d.ts +0 -6
- package/dist/libs/analytics/src/utils/CollectionApiClientHelper.d.ts +1 -1
- package/dist/libs/shared/src/components/actions/ActionButton.d.ts +2 -6
- package/dist/libs/shared/src/components/actions/ActionsDropdown.d.ts +1 -2
- package/dist/libs/shared/src/components/widgets/fixed-widget/FixedWidgetUtils.d.ts +1 -1
- package/dist/libs/shared/src/hooks/UseLazyLoad.d.ts +1 -1
- package/dist/libs/shared/src/interfaces/models/Library.d.ts +0 -2
- package/dist/libs/shared/src/interfaces/models/Video.d.ts +2 -1
- package/dist/libs/shared/src/interfaces/models/Widget.d.ts +1 -2
- package/dist/online-app.css +2 -6
- package/dist/online-app.js +3 -3
- package/dist/online-app.js.map +1 -1
- package/dist/projects/online/src/index.d.ts +1 -6
- package/dist/projects/online/src/shared/constants/Actions.d.ts +0 -19
- package/dist/projects/online/src/shared/constants/RadioChannels.d.ts +0 -2
- package/package.json +3 -3
- package/typings/libs/FutureCoreHelper.d.ts +0 -5
- package/dist/projects/online/src/shared/services/LanguageDataService.d.ts +0 -11
|
@@ -5,8 +5,6 @@ import './apps/content-updates/views/content-updates/content-updates.lang.json';
|
|
|
5
5
|
import './apps/dashboard/components/hero-widget/hero-widget.lang.json';
|
|
6
6
|
import './apps/dashboard/views/dashboard/dashboard.lang.json';
|
|
7
7
|
import './apps/dashboard/views/error/error.lang.json';
|
|
8
|
-
import './apps/libraries/views/libraries/libraries.lang.json';
|
|
9
|
-
import './apps/movies-and-tv/views/movies-and-tv/movies-and-tv.lang.json';
|
|
10
8
|
import './apps/playlists/components/left-nav/left-nav.lang.json';
|
|
11
9
|
import './apps/playlists/components/new-playlist-button/new-playlist-button.lang.json';
|
|
12
10
|
import './apps/playlists/components/playlist-actions/playlist-actions.lang.json';
|
|
@@ -77,8 +75,6 @@ export * from './apps/subjects/SubjectApplication';
|
|
|
77
75
|
export * from './apps/subjects/SubjectPlaylistsApplication';
|
|
78
76
|
export * from './apps/content-updates/ContentUpdatesApplication';
|
|
79
77
|
export * from './apps/dashboard/OnlineDashboardApplication';
|
|
80
|
-
export * from './apps/movies-and-tv/MoviesAndTvApplication';
|
|
81
|
-
export * from './apps/libraries/LibrariesApplication';
|
|
82
78
|
import { Core } from "../../../libs/common/src/backbone";
|
|
83
79
|
import { InstanceManager } from "../../../libs/common/src/backbone/services/InstanceManager";
|
|
84
80
|
import { AlertType, BaseAlertService } from "../../../libs/common/src/backbone/services/BaseAlertService";
|
|
@@ -91,7 +87,6 @@ import { NotImplementedError } from "../../../libs/common/src/backbone/errors/No
|
|
|
91
87
|
import { CommonServices } from "../../../libs/common/src/backbone/constants/CommonServices";
|
|
92
88
|
import { LanguageService } from "../../../libs/common/src/backbone/services/LanguageService";
|
|
93
89
|
import { Flight } from "../../../libs/common/src/react";
|
|
94
|
-
import { ViewModelReducer } from "../../../libs/common/src/react/reducers/ViewModelReducer";
|
|
95
90
|
import { ScrollService } from "../../../libs/common/src/backbone/services/ScrollService";
|
|
96
91
|
import { CacheDurations } from "../../../libs/shared/src/constants/CacheDurations";
|
|
97
92
|
import { SharedDataServices } from "../../../libs/shared/src/constants/SharedServices";
|
|
@@ -111,4 +106,4 @@ import { CollectionApiClientHelper } from "../../../libs/analytics/src/utils/Col
|
|
|
111
106
|
import { CountryRegionMapping } from "../../../libs/analytics/src/constants/CountryRegionMapping";
|
|
112
107
|
import { CoreContextEnricher } from "../../../libs/analytics/src/enrichers/CoreContextEnricher";
|
|
113
108
|
import { UserDataEnricher } from "../../../libs/analytics/src/enrichers/UserDataEnricher";
|
|
114
|
-
export { Core, InstanceManager, BaseAlertService, AlertType, FifoMemoryCache, AjaxDataProvider, ConcurrencyHelper, UrlHelper, DevError, NotImplementedError, CommonServices, LanguageService, Flight,
|
|
109
|
+
export { Core, InstanceManager, BaseAlertService, AlertType, FifoMemoryCache, AjaxDataProvider, ConcurrencyHelper, UrlHelper, DevError, NotImplementedError, CommonServices, LanguageService, Flight, ScrollService, CacheDurations, SharedDataServices, ConfigDataService, UserDataService, LanguageDataService, ImageUrlService, AnalyticsService, DebuggerClient, EventTransport, CollectionApiClient, CollectionApiClientHelper, CountryRegionMapping, CoreContextEnricher, UserDataEnricher, AppOptionsService, AlertError, DialogError, ErrorPageError };
|
|
@@ -42,7 +42,6 @@ export declare const Actions: {
|
|
|
42
42
|
ContentUpdates: {
|
|
43
43
|
CONTENT_UPDATES: string;
|
|
44
44
|
CLASSIFICATION_UPDATE: string;
|
|
45
|
-
CLASSIFICATION: string;
|
|
46
45
|
};
|
|
47
46
|
Dashboard: {
|
|
48
47
|
HOME: string;
|
|
@@ -56,23 +55,5 @@ export declare const Actions: {
|
|
|
56
55
|
CONTENT_UPDATES: string;
|
|
57
56
|
USER_CHANNELS: string;
|
|
58
57
|
USER_CHANNEL: string;
|
|
59
|
-
LATEST_RELEASES: string;
|
|
60
|
-
};
|
|
61
|
-
MoviesAndTv: {
|
|
62
|
-
HOME: string;
|
|
63
|
-
WIDGET: string;
|
|
64
|
-
VIDEO: string;
|
|
65
|
-
SERIES: string;
|
|
66
|
-
ADD_TO_PLAYLIST: string;
|
|
67
|
-
};
|
|
68
|
-
Libraries: {
|
|
69
|
-
HOME: string;
|
|
70
|
-
LIBRARY: string;
|
|
71
|
-
CONTENT_UPDATES: string;
|
|
72
|
-
LATEST_RELEASES: string;
|
|
73
|
-
SERIES: string;
|
|
74
|
-
VIDEO: string;
|
|
75
|
-
INTERACTVIES: string;
|
|
76
|
-
MOST_RECENT: string;
|
|
77
58
|
};
|
|
78
59
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clickview/online",
|
|
3
|
-
"version": "0.0.4-
|
|
3
|
+
"version": "0.0.4-rc.0",
|
|
4
4
|
"description": "Online",
|
|
5
5
|
"main": "dist/online-app.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -20,14 +20,14 @@
|
|
|
20
20
|
"author": "",
|
|
21
21
|
"license": "ISC",
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"@clickview/tooling": "0.0.
|
|
23
|
+
"@clickview/tooling": "0.0.17",
|
|
24
24
|
"@types/linkifyjs": "2.1.3",
|
|
25
25
|
"@types/react-sortable-hoc": "0.7.1",
|
|
26
26
|
"@types/react-transition-group": "4.2.3",
|
|
27
27
|
"@types/yup": "0.26.24"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@clickview/styles": "1.0.
|
|
30
|
+
"@clickview/styles": "1.0.7",
|
|
31
31
|
"yup": "0.27.0"
|
|
32
32
|
},
|
|
33
33
|
"babel": {
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { BaseDataService } from "../../../../../libs/common/src/backbone/services/BaseDataService";
|
|
2
|
-
interface LanguageConfig {
|
|
3
|
-
locale: string;
|
|
4
|
-
phrases: any;
|
|
5
|
-
}
|
|
6
|
-
export declare class LanguageDataService extends BaseDataService {
|
|
7
|
-
get name(): string;
|
|
8
|
-
get channelName(): string;
|
|
9
|
-
getLanguageConfig(callback?: (languageConfig: LanguageConfig) => void): void;
|
|
10
|
-
}
|
|
11
|
-
export {};
|