@maestro_io/maestro-web-sdk 3.2.0 → 3.3.1
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/maestro-web-sdk.esm.js +5 -5
- package/dist/maestro-web-sdk.esm.js.map +1 -1
- package/dist/maestro-web-sdk.umd.js +5 -5
- package/dist/maestro-web-sdk.umd.js.map +1 -1
- package/dist/src/components/atoms/SvgIcon/Icon.d.ts +2 -0
- package/dist/src/components/atoms/SvgIcon/ShopIcon.d.ts +5 -0
- package/dist/src/components/molecules/PanelNavButton/PanelNavButton.d.ts +4 -3
- package/dist/src/components/organisms/PanelNavigation/PanelNavigation.d.ts +1 -1
- package/dist/src/interfaces/IMaestroEvent.d.ts +4 -0
- package/dist/src/interfaces/IUserSettings.d.ts +4 -0
- package/dist/src/models/IPanel.d.ts +1 -0
- package/dist/src/modules/fantasy/mocks.d.ts +7620 -0
- package/dist/src/modules/fantasy/types.d.ts +1 -1
- package/dist/src/modules/fantasy/view-model/FantasyViewModel.FantasyPolling.d.ts +2 -4
- package/dist/src/modules/fantasy/view-model/FantasyViewModel.LeagueManagerPolling.d.ts +2 -2
- package/dist/src/modules/fantasy/view-model/FantasyViewModel.d.ts +4 -2
- package/dist/src/modules/shop/mocks.d.ts +22 -0
- package/dist/src/modules/shop/types.d.ts +161 -0
- package/dist/src/modules/shop/view/ProductDetailView/ProductDetailView.d.ts +10 -0
- package/dist/src/modules/shop/view/ProductDetailView/index.d.ts +2 -0
- package/dist/src/modules/shop/view/ShopView.d.ts +35 -0
- package/dist/src/modules/shop/view/components/BrowseCard/BrowseCard.d.ts +55 -0
- package/dist/src/modules/shop/view/components/BrowseCard/index.d.ts +2 -0
- package/dist/src/modules/shop/view/components/ProductSummaryCard/ProductSummaryCard.d.ts +56 -0
- package/dist/src/modules/shop/view/components/ProductSummaryCard/index.d.ts +2 -0
- package/dist/src/modules/shop/view/components/ShopPromoView/ShopPromoView.d.ts +9 -0
- package/dist/src/modules/shop/view/components/ShopPromoView/index.d.ts +1 -0
- package/dist/src/modules/shop/view/components/ShopSection/ShopSection.d.ts +21 -0
- package/dist/src/modules/shop/view/components/ShopSection/index.d.ts +1 -0
- package/dist/src/modules/shop/view/index.d.ts +2 -0
- package/dist/src/modules/shop/view-model/ShopViewModel.ShopPolling.d.ts +31 -0
- package/dist/src/modules/shop/view-model/ShopViewModel.d.ts +77 -0
- package/dist/src/services/AnalyticsService/AnalyticsService.d.ts +16 -3
- package/dist/src/services/FantasyService.d.ts +3 -4
- package/dist/src/services/NetworkManager/types.d.ts +1 -0
- package/dist/src/services/ShopService.d.ts +23 -0
- package/dist/src/view-models/MaestroEventViewModel.d.ts +2 -0
- package/package.json +1 -3
|
@@ -12,6 +12,7 @@ import { IUserSettings } from '../interfaces/IUserSettings';
|
|
|
12
12
|
import { PanelManagerViewModel } from './PanelManagerViewModel';
|
|
13
13
|
import AnalyticsService from '@/services/AnalyticsService/AnalyticsService';
|
|
14
14
|
import FantasyViewModel from '@/modules/fantasy/view-model/FantasyViewModel';
|
|
15
|
+
import ShopViewModel from '@/modules/shop/view-model/ShopViewModel';
|
|
15
16
|
export declare class MaestroEventViewModel extends ViewModel implements IMaestroEvent {
|
|
16
17
|
private _eventId;
|
|
17
18
|
private _title;
|
|
@@ -23,6 +24,7 @@ export declare class MaestroEventViewModel extends ViewModel implements IMaestro
|
|
|
23
24
|
fantasyViewModel: FantasyViewModel | null;
|
|
24
25
|
betsViewModel: BetsViewModel | null;
|
|
25
26
|
statsViewModel: StatsViewModel | null;
|
|
27
|
+
shopViewModel: ShopViewModel | null;
|
|
26
28
|
panelManagerViewModel: PanelManagerViewModel;
|
|
27
29
|
navigation: SpatialNavigation;
|
|
28
30
|
analyticsService: AnalyticsService;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maestro_io/maestro-web-sdk",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.3.1",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/maestro-web-sdk.umd.js",
|
|
@@ -62,8 +62,6 @@
|
|
|
62
62
|
"jest": "26.6.3",
|
|
63
63
|
"nodemon": "^3.1.9",
|
|
64
64
|
"prettier": "2.0.5",
|
|
65
|
-
"react": "15",
|
|
66
|
-
"react-dom": "15",
|
|
67
65
|
"react-test-renderer": "15",
|
|
68
66
|
"style-loader": "2",
|
|
69
67
|
"tsconfig-paths-webpack-plugin": "^4.2.0",
|