@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.
@@ -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;
@@ -6,4 +6,5 @@ export interface Props {
6
6
  hideMenu?: boolean;
7
7
  logoOnly?: boolean;
8
8
  className?: string;
9
+ userPicture?: string;
9
10
  }
@@ -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;
@@ -27,4 +27,5 @@ export interface Props {
27
27
  isLoading?: boolean;
28
28
  hasActiveSubscription?: boolean;
29
29
  htmlDetails?: boolean;
30
+ noSubActionCallback?: () => void;
30
31
  }
@@ -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.1",
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": "92c685073087f21e78af71caf4306f630c28500c",
42
+ "gitHead": "27620938aa28d0c40ec1c5cc2a29b29e1dc540fa",
43
43
  "dependencies": {
44
44
  "@elastic/datemath": "^5.0.3",
45
45
  "@elastic/react-search-ui": "^1.21.5",