@4alldigital/foundation-ui--gamma 1.53.1 → 1.53.2
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/foundation-ui.css +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.js +2 -2
- package/dist/types/lib/components/Header/Header.d.ts +1 -1
- package/dist/types/lib/components/Header/Header.types.d.ts +1 -0
- package/dist/types/lib/templates/WorkoutScreen/WorkoutScreen.d.ts +1 -1
- package/dist/types/lib/templates/WorkoutScreen/WorkoutScreen.types.d.ts +1 -0
- package/dist/types/lib/translations/en.d.ts +4 -0
- package/dist/types/node_modules/@reduxjs/toolkit/dist/uncheckedindexed.d.ts +5 -0
- package/package.json +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { Props } from './Header.types';
|
|
3
3
|
declare const Header: {
|
|
4
|
-
({ testID, hideMenu, className, logoOnly, }: Props): React.ReactElement;
|
|
4
|
+
({ testID, hideMenu, className, logoOnly, userPicture, }: Props): React.ReactElement;
|
|
5
5
|
displayName: string;
|
|
6
6
|
};
|
|
7
7
|
export default Header;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { Props } from './WorkoutScreen.types';
|
|
3
3
|
declare const WorkoutScreen: {
|
|
4
|
-
({ testID, id, title, image, description, created, duration, level, section, video, category, type, likeCallback, completedCallback, favouriteCallback, isLiked, isCompleted, isFavourite, relatedWorkouts, hasActiveSubscription, htmlDetails, }: Props): React.ReactElement;
|
|
4
|
+
({ testID, id, title, image, description, created, duration, level, section, video, category, type, likeCallback, completedCallback, favouriteCallback, isLiked, isCompleted, isFavourite, relatedWorkouts, hasActiveSubscription, htmlDetails, noSubActionCallback, }: Props): React.ReactElement;
|
|
5
5
|
displayName: string;
|
|
6
6
|
};
|
|
7
7
|
export default WorkoutScreen;
|
|
@@ -512,6 +512,10 @@ declare const strings: {
|
|
|
512
512
|
SUBSCRIPTON_TRIALING: string;
|
|
513
513
|
NEED_HELP_WITH_SUBSCRIPTION: string;
|
|
514
514
|
CONTACT_SUPPORT: string;
|
|
515
|
+
REGISTRATION_EMAIL_SENT: string;
|
|
516
|
+
VERIFY_EMAIL: string;
|
|
517
|
+
VERIFICATION_SUCCESS: string;
|
|
518
|
+
SUBSCRIBE: string;
|
|
515
519
|
};
|
|
516
520
|
ERRORS: {
|
|
517
521
|
GENERIC_ERROR: string;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
type IfMaybeUndefined<T, True, False> = [undefined] extends [T] ? True : False;
|
|
2
|
+
declare const testAccess: 0;
|
|
3
|
+
export type IfUncheckedIndexedAccess<True, False> = IfMaybeUndefined<typeof testAccess, True, False>;
|
|
4
|
+
export type UncheckedIndexedAccess<T> = IfUncheckedIndexedAccess<T | undefined, T>;
|
|
5
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@4alldigital/foundation-ui--gamma",
|
|
3
|
-
"version": "1.53.
|
|
3
|
+
"version": "1.53.2",
|
|
4
4
|
"description": "Foundation UI Component library with GAMMA theme. ",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "27620938aa28d0c40ec1c5cc2a29b29e1dc540fa",
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@elastic/datemath": "^5.0.3",
|
|
45
45
|
"@elastic/react-search-ui": "^1.21.5",
|