@maestro_io/maestro-web-sdk 2.2.4 → 2.2.6
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/components/core/App/App.d.ts +1 -2
- package/dist/{modules/bets/view/TabLoadFailureView.d.ts → components/molecules/TabLoadError/TabLoadError.d.ts} +2 -1
- package/dist/components/molecules/TabLoadError/index.d.ts +2 -0
- package/dist/maestro-web-sdk.umd.js +3 -3
- package/dist/maestro-web-sdk.umd.js.map +1 -1
- package/dist/modules/bets/interfaces/IBets.d.ts +3 -3
- package/dist/modules/stats/interfaces/IStats.d.ts +1 -1
- package/dist/modules/stats/view/ActiveAthletes/ExpandedAthletes/ExpandedAthletes.d.ts +13 -2
- package/dist/modules/stats/view/Teams/StatsCarousel.d.ts +18 -1
- package/dist/modules/stats/view-model/StatsViewModel.d.ts +5 -0
- package/package.json +1 -1
|
@@ -3,8 +3,7 @@ import './App.styles.css';
|
|
|
3
3
|
declare class App extends React.Component<{
|
|
4
4
|
children?: React.ReactNode;
|
|
5
5
|
}> {
|
|
6
|
-
get colors(): import("
|
|
7
|
-
get typography(): import("../../../models/ITheme").IThemeTypography;
|
|
6
|
+
get colors(): import("@/models/ITheme").IThemeColors;
|
|
8
7
|
componentDidMount(): void;
|
|
9
8
|
componentWillUnmount(): void;
|
|
10
9
|
render(): React.JSX.Element;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/// <reference types="prop-types" />
|
|
2
|
-
import React from 'react';
|
|
3
2
|
import { WithFocusableProps } from '@/external/spatial-navigation';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import './TabLoadError.styles.css';
|
|
4
5
|
declare const _default: {
|
|
5
6
|
new (props?: (object & WithFocusableProps) | undefined, context?: any): {
|
|
6
7
|
state: import("../../../external/spatial-navigation/withFocusable").WithFocusableState;
|