jp.ui.app.toolkit 1.0.77 → 1.0.79
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/index.d.ts +18 -18
- package/dist/index.js +3982 -1
- package/dist/index.js.map +1 -1
- package/dist/src/data/middleware/app/utils.d.ts +2 -2
- package/dist/src/screens/daily-bonus/daily-bonus-screen.d.ts +2 -1
- package/dist/src/screens/friends/friends-screen.d.ts +2 -1
- package/dist/src/screens/many-tables-tournament-status/many-tables-tournament-status-screen.d.ts +2 -1
- package/dist/src/screens/many-tables-tournament-table-list/many-tables-tournament-table-list-screen.d.ts +2 -1
- package/dist/src/screens/one-table-tournament-status/one-table-tournament-status-screen.d.ts +2 -1
- package/dist/src/screens/players-profile/players-profile-screen.d.ts +2 -1
- package/dist/src/screens/premium/premium-screen.d.ts +2 -1
- package/dist/src/screens/rating/rating-screen.d.ts +2 -1
- package/dist/src/screens/rules/rules-screen.d.ts +2 -1
- package/dist/src/screens/settings/settings-screen.d.ts +2 -1
- package/dist/src/screens/shop/shop-screen.d.ts +2 -1
- package/dist/src/screens/tables/tables-screen.d.ts +2 -1
- package/dist/src/screens/welcome/welcome-screen.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as React from 'react';
|
|
2
2
|
import { JSX, Component } from 'react';
|
|
3
3
|
import * as _reduxjs_toolkit from '@reduxjs/toolkit';
|
|
4
4
|
import { Store, PayloadAction, ListenerMiddleware, ListenerEffectAPI } from '@reduxjs/toolkit';
|
|
@@ -26,7 +26,7 @@ declare abstract class BaseApplication extends Component<BaseApplicationProps, B
|
|
|
26
26
|
componentDidMount(): void;
|
|
27
27
|
componentWillUnmount(): void;
|
|
28
28
|
getRoutes(): Array<RouteType>;
|
|
29
|
-
render():
|
|
29
|
+
render(): React.JSX.Element;
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
interface IAuthSliceState {
|
|
@@ -1140,33 +1140,33 @@ declare function yaProcessUnprocessedPurchasesRequest(purchasesSignature: string
|
|
|
1140
1140
|
|
|
1141
1141
|
declare function yaPurchaseRequest(purchasesSignature: string): Promise<AxiosResponse<void>>;
|
|
1142
1142
|
|
|
1143
|
-
declare const MenuScreen: () =>
|
|
1143
|
+
declare const MenuScreen: () => React.JSX.Element;
|
|
1144
1144
|
|
|
1145
|
-
declare const ShopScreen: () =>
|
|
1145
|
+
declare const ShopScreen: () => React.JSX.Element;
|
|
1146
1146
|
|
|
1147
|
-
declare const TablesScreen: () =>
|
|
1147
|
+
declare const TablesScreen: () => React.JSX.Element;
|
|
1148
1148
|
|
|
1149
|
-
declare const RulesScreen: () =>
|
|
1149
|
+
declare const RulesScreen: () => React.JSX.Element;
|
|
1150
1150
|
|
|
1151
|
-
declare const SettingsScreen: () =>
|
|
1151
|
+
declare const SettingsScreen: () => React.JSX.Element;
|
|
1152
1152
|
|
|
1153
|
-
declare const FriendsScreen: () =>
|
|
1153
|
+
declare const FriendsScreen: () => React.JSX.Element;
|
|
1154
1154
|
|
|
1155
|
-
declare const WelcomeScreen: () =>
|
|
1155
|
+
declare const WelcomeScreen: () => React.JSX.Element;
|
|
1156
1156
|
|
|
1157
|
-
declare const DailyBonusScreen: () =>
|
|
1157
|
+
declare const DailyBonusScreen: () => React.JSX.Element;
|
|
1158
1158
|
|
|
1159
|
-
declare const PlayersProfileScreen: () =>
|
|
1159
|
+
declare const PlayersProfileScreen: () => React.JSX.Element;
|
|
1160
1160
|
|
|
1161
|
-
declare const PremiumScreen: () =>
|
|
1161
|
+
declare const PremiumScreen: () => React.JSX.Element;
|
|
1162
1162
|
|
|
1163
|
-
declare const RatingScreen: () =>
|
|
1163
|
+
declare const RatingScreen: () => React.JSX.Element;
|
|
1164
1164
|
|
|
1165
|
-
declare const OneTableTournamentStatusScreen: () =>
|
|
1165
|
+
declare const OneTableTournamentStatusScreen: () => React.JSX.Element;
|
|
1166
1166
|
|
|
1167
|
-
declare const ManyTablesTournamentStatusScreen: () =>
|
|
1167
|
+
declare const ManyTablesTournamentStatusScreen: () => React.JSX.Element;
|
|
1168
1168
|
|
|
1169
|
-
declare const ManyTablesTournamentTableListScreen: () =>
|
|
1169
|
+
declare const ManyTablesTournamentTableListScreen: () => React.JSX.Element;
|
|
1170
1170
|
|
|
1171
1171
|
type RaiseBottomSheetBlockProps = {
|
|
1172
1172
|
items: Array<DictionaryItem>;
|
|
@@ -1174,7 +1174,7 @@ type RaiseBottomSheetBlockProps = {
|
|
|
1174
1174
|
title: string;
|
|
1175
1175
|
closeTitle?: string;
|
|
1176
1176
|
};
|
|
1177
|
-
declare const RaiseBottomSheetBlock: ({ items, itemClick, title, closeTitle, }: RaiseBottomSheetBlockProps) =>
|
|
1177
|
+
declare const RaiseBottomSheetBlock: ({ items, itemClick, title, closeTitle, }: RaiseBottomSheetBlockProps) => React.JSX.Element;
|
|
1178
1178
|
|
|
1179
1179
|
type ReactionBottomSheetBlockProps = {
|
|
1180
1180
|
items: Array<DictionaryItem>;
|
|
@@ -1182,7 +1182,7 @@ type ReactionBottomSheetBlockProps = {
|
|
|
1182
1182
|
title: string;
|
|
1183
1183
|
closeTitle?: string;
|
|
1184
1184
|
};
|
|
1185
|
-
declare const ReactionBottomSheetBlock: ({ items, itemClick, title, closeTitle, }: ReactionBottomSheetBlockProps) =>
|
|
1185
|
+
declare const ReactionBottomSheetBlock: ({ items, itemClick, title, closeTitle, }: ReactionBottomSheetBlockProps) => React.JSX.Element;
|
|
1186
1186
|
|
|
1187
1187
|
declare function getClientVersion(): any;
|
|
1188
1188
|
declare function isAppDevelopment(): boolean;
|