@4alldigital/foundation-ui--gamma 1.60.0 → 1.61.0

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 './DisplayHeading.types';
3
3
  declare const DisplayHeading: {
4
- ({ text, flush, tag }: Props): React.ReactElement;
4
+ ({ text, flush, tag, colorOverride }: Props): React.ReactElement;
5
5
  displayName: string;
6
6
  };
7
7
  export default DisplayHeading;
@@ -3,4 +3,5 @@ export interface Props {
3
3
  text: string;
4
4
  tag?: HEADING_TAGS;
5
5
  flush?: boolean;
6
+ colorOverride?: string;
6
7
  }
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { Props } from './Screen.types';
3
3
  declare const Screen: {
4
- ({ testID, children, showHeader, showFooter, image, showOverlay, isFlush, }: Props): React.ReactElement;
4
+ ({ testID, children, showHeader, showFooter, image, showOverlay, isFlush, fixedHeader, }: Props): React.ReactElement;
5
5
  displayName: string;
6
6
  };
7
7
  export default Screen;
@@ -10,4 +10,5 @@ export interface Props {
10
10
  image?: string;
11
11
  showOverlay?: boolean;
12
12
  isFlush?: boolean;
13
+ fixedHeader?: boolean;
13
14
  }
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { Props } from './VisitUs.types';
3
3
  declare const VisitUs: {
4
- ({ testID, facebook, twitter, instagram, linkedin }: Props): React.ReactElement;
4
+ ({ testID, facebook, twitter, instagram, linkedin, youtube }: Props): React.ReactElement;
5
5
  displayName: string;
6
6
  };
7
7
  export default VisitUs;
@@ -8,4 +8,5 @@ export interface Props {
8
8
  twitter?: ShareProps;
9
9
  instagram?: ShareProps;
10
10
  linkedin?: ShareProps;
11
+ youtube?: ShareProps;
11
12
  }
@@ -32,6 +32,7 @@ interface AppContextProps {
32
32
  instagram?: ShareProps;
33
33
  linkedin?: ShareProps;
34
34
  twitter?: ShareProps;
35
+ youtube?: ShareProps;
35
36
  };
36
37
  menus?: {
37
38
  title: string;
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { Props } from './LoginForm.types';
3
3
  declare const LoginForm: {
4
- ({ handleSubmit, initialValues, handleTokenCallback, showSocialButtons, }: Props): React.ReactElement;
4
+ ({ handleSubmit, initialValues, handleTokenCallback, showSocialButtons, className, }: Props): React.ReactElement;
5
5
  displayName: string;
6
6
  };
7
7
  export default LoginForm;
@@ -3,4 +3,5 @@ export interface Props {
3
3
  handleSubmit: (values: Record<string, string>) => void;
4
4
  handleTokenCallback?: (tokens: any) => void;
5
5
  showSocialButtons?: boolean;
6
+ className?: string;
6
7
  }
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { Props } from './RegisterForm.types';
3
3
  declare const RegisterForm: {
4
- ({ handleSubmit, handleTokenCallback, showSocialButtons }: Props): React.ReactElement;
4
+ ({ handleSubmit, handleTokenCallback, showSocialButtons, className, }: Props): React.ReactElement;
5
5
  displayName: string;
6
6
  };
7
7
  export default RegisterForm;
@@ -2,4 +2,5 @@ export interface Props {
2
2
  handleSubmit: (data: Record<string, any>) => void;
3
3
  showSocialButtons?: boolean;
4
4
  handleTokenCallback?: (tokens: any) => void;
5
+ className?: string;
5
6
  }
@@ -1,4 +1,3 @@
1
1
  import '../theme/base.css';
2
- import '../theme/fonts.css';
3
2
  export * from '../../../lib';
4
3
  export { default as theme } from '../theme';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@4alldigital/foundation-ui--gamma",
3
- "version": "1.60.0",
3
+ "version": "1.61.0",
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": "469035569b2b5a0635cb7d3c9e3b8d641d3afacc",
42
+ "gitHead": "8360bbc0ac3ef9fdcda976b0b56f2dedd88cfcae",
43
43
  "dependencies": {
44
44
  "@elastic/datemath": "^5.0.3",
45
45
  "@elastic/react-search-ui": "^1.21.5",