@4alldigital/foundation-ui--gamma 1.53.2 → 1.53.4

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 './CardGridScreen.types';
3
3
  declare const CardGridScreen: {
4
- ({ testID, title, image, data, onPressCallback, isLoading }: Props): React.ReactElement;
4
+ ({ testID, title, image, data, onPressCallback, isLoading, noDataMessage, }: Props): React.ReactElement;
5
5
  displayName: string;
6
6
  };
7
7
  export default CardGridScreen;
@@ -6,4 +6,5 @@ export interface Props {
6
6
  data?: CardProps[];
7
7
  onPressCallback: (id: string) => void;
8
8
  isLoading?: boolean;
9
+ noDataMessage?: string;
9
10
  }
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import { Props } from './LogoutScreen.types';
3
+ declare const LogoutScreen: {
4
+ ({ testID, title }: Props): React.ReactElement;
5
+ displayName: string;
6
+ };
7
+ export default LogoutScreen;
8
+ export type { Props };
@@ -0,0 +1,4 @@
1
+ export interface Props {
2
+ testID?: string;
3
+ title: string;
4
+ }
@@ -0,0 +1 @@
1
+ export { default } from './LogoutScreen';
@@ -8,6 +8,7 @@ export { default as ContentScreen } from './ContentScreen';
8
8
  export { default as DashboardScreen } from './DashboardScreen';
9
9
  export { default as FAQScreen } from './FAQScreen';
10
10
  export { default as HomeScreen } from './HomeScreen';
11
+ export { default as LogoutScreen } from './LogoutScreen';
11
12
  export { default as MenuScreen } from './MenuScreen';
12
13
  export { default as NotFoundScreen } from './NotFoundScreen';
13
14
  export { default as PasswordResetScreen } from './PasswordResetScreen';
@@ -26,6 +27,7 @@ export type { Props as ContentScreenProps } from './ContentScreen/ContentScreen.
26
27
  export type { Props as DashboardScreenProps } from './DashboardScreen/DashboardScreen.types';
27
28
  export type { Props as FAQScreenProps } from './FAQScreen/FAQScreen.types';
28
29
  export type { Props as HomeScreenProps } from './HomeScreen/HomeScreen.types';
30
+ export type { Props as LogoutScreenProps } from './LogoutScreen/LogoutScreen.types';
29
31
  export type { Props as MenuScreenProps } from './MenuScreen/MenuScreen.types';
30
32
  export type { Props as NotFoundScreenProps } from './NotFoundScreen/NotFoundScreen.types';
31
33
  export type { Props as PasswordResetScreenProps } from './PasswordResetScreen/PasswordResetScreen.types';
@@ -168,6 +168,7 @@ declare const strings: {
168
168
  SAVE: string;
169
169
  CANCEL: string;
170
170
  DELETE: string;
171
+ PLEASE_WAIT: string;
171
172
  CONTINUE_WITH_SOCIAL: string;
172
173
  SINGLE_SIGNON: string;
173
174
  LOGIN_WITH_GOOGLE: string;
@@ -516,6 +517,17 @@ declare const strings: {
516
517
  VERIFY_EMAIL: string;
517
518
  VERIFICATION_SUCCESS: string;
518
519
  SUBSCRIBE: string;
520
+ NO_DATA_FOUND: string;
521
+ NO_DATA: string;
522
+ NO_WORKOUTS: string;
523
+ NO_MEDIA: string;
524
+ NO_CHALLENGES: string;
525
+ NO_LIVE: string;
526
+ NO_SCHEDULE: string;
527
+ NO_CONTENT: string;
528
+ PROMO_INFO: string;
529
+ REQUEST_PROMO_INFO: string;
530
+ LOGGING_OUT: string;
519
531
  };
520
532
  ERRORS: {
521
533
  GENERIC_ERROR: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@4alldigital/foundation-ui--gamma",
3
- "version": "1.53.2",
3
+ "version": "1.53.4",
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": "27620938aa28d0c40ec1c5cc2a29b29e1dc540fa",
42
+ "gitHead": "8c360dca2f1f64c1a89f504839de6c3db3b08a4e",
43
43
  "dependencies": {
44
44
  "@elastic/datemath": "^5.0.3",
45
45
  "@elastic/react-search-ui": "^1.21.5",
@@ -58,12 +58,12 @@
58
58
  "date-fns": "^3.6.0",
59
59
  "date-input-polyfill": "^2.14.0",
60
60
  "filter-invalid-dom-props": "^3.0.1",
61
- "framer-motion": "^11.3.28",
61
+ "framer-motion": "^11.3.29",
62
62
  "history": "^5.3.0",
63
63
  "html-react-parser": "^5.1.12",
64
64
  "iso8601-duration": "^2.1.2",
65
65
  "libphonenumber-js": "^1.11.7",
66
- "next": "^14.2.5",
66
+ "next": "^14.2.6",
67
67
  "rc-pagination": "^4.2.0",
68
68
  "react": "^18.3.1",
69
69
  "react-burger-menu": "^3.0.9",