@4alldigital/foundation-ui--gamma 1.55.0 → 1.55.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, userPicture, }: Props): React.ReactElement;
4
+ ({ testID, hideMenu, className, }: Props): React.ReactElement;
5
5
  displayName: string;
6
6
  };
7
7
  export default Header;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import { Props } from './PanelCustom.types';
3
+ declare const PanelCustom: {
4
+ ({ testID, withBg, spacing, className, children, title, headingTag, }: Props): React.ReactElement;
5
+ displayName: string;
6
+ };
7
+ export default PanelCustom;
8
+ export type { Props };
@@ -0,0 +1,19 @@
1
+ import { Props as ButtonProps } from '../Button/Button.types';
2
+ import { Props as VideoProps } from '../Video/Video.types';
3
+ import { SPACING } from '../Hero/Hero.types';
4
+ import { HEADING_TAGS } from '../Heading/Heading.types';
5
+ export interface Props {
6
+ testID?: string;
7
+ inversed?: boolean;
8
+ title: string;
9
+ contentComponent?: React.ReactNode;
10
+ description?: string;
11
+ buttonData?: ButtonProps;
12
+ image?: string;
13
+ video?: VideoProps;
14
+ withBg?: boolean;
15
+ spacing?: SPACING;
16
+ headingTag?: HEADING_TAGS;
17
+ className?: string;
18
+ children: React.ReactNode;
19
+ }
@@ -0,0 +1 @@
1
+ export { default } from './PanelCustom';
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import { Props } from './PanelIntro.types';
3
+ declare const PanelIntro: {
4
+ ({ testID, title, description, image, buttonData, inversed, withBg, spacing, video, headingTag, className, }: Props): React.ReactElement;
5
+ displayName: string;
6
+ };
7
+ export default PanelIntro;
8
+ export type { Props };
@@ -0,0 +1,17 @@
1
+ import { Props as ButtonProps } from '../Button/Button.types';
2
+ import { Props as VideoProps } from '../Video/Video.types';
3
+ import { SPACING } from '../Hero/Hero.types';
4
+ import { HEADING_TAGS } from '../Heading/Heading.types';
5
+ export interface Props {
6
+ testID?: string;
7
+ inversed?: boolean;
8
+ title: string;
9
+ headingTag?: HEADING_TAGS;
10
+ description?: string;
11
+ buttonData?: ButtonProps;
12
+ image?: string;
13
+ video?: VideoProps;
14
+ withBg?: boolean;
15
+ spacing?: SPACING;
16
+ className?: string;
17
+ }
@@ -0,0 +1 @@
1
+ export { default } from './PanelIntro';
@@ -39,6 +39,8 @@ export { default as PanelFeature } from './PanelFeature';
39
39
  export { default as PanelHero } from './PanelHero';
40
40
  export { default as PanelProduct } from './PanelProduct';
41
41
  export { default as PanelVideo } from './PanelVideo';
42
+ export { default as PanelIntro } from './PanelIntro';
43
+ export { default as PanelCustom } from './PanelCustom';
42
44
  export { default as CardGrid } from './CardGrid';
43
45
  export { default as Screen } from './Screen';
44
46
  export { default as Accordion } from './Accordion';
@@ -82,6 +84,8 @@ export type { Props as PanelFeatureProps } from './PanelFeature/PanelFeature.typ
82
84
  export type { Props as PanelHeroProps } from './PanelHero/PanelHero.types';
83
85
  export type { Props as PanelProductProps } from './PanelProduct/PanelProduct.types';
84
86
  export type { Props as PanelVideoProps } from './PanelVideo/PanelVideo.types';
87
+ export type { Props as PanelIntroProps } from './PanelIntro/PanelIntro.types';
88
+ export type { Props as PanelCustomProps } from './PanelCustom/PanelCustom.types';
85
89
  export type { Props as ShareProps } from './Share/Share.types';
86
90
  export type { Props as TabsProps } from './Tabs/Tabs.types';
87
91
  export type { Props as VisitUsProps } from './VisitUs/VisitUs.types';
@@ -6,6 +6,7 @@ interface AppContextProps {
6
6
  logoAspectRatio: string;
7
7
  name: string;
8
8
  tagline?: string;
9
+ logoOnly?: boolean;
9
10
  };
10
11
  header?: {
11
12
  authNav?: {
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { Props } from './HomeScreen.types';
3
3
  declare const HomeScreen: {
4
- ({ testID, image, panelVideoProps, panelFeatureProps, panelCardsProps, panelHerosProps, panelSubscriptionsProps, panelTestimonialsProps, panelDataCardsProps, panelProductProps, }: Props): React.ReactElement;
4
+ ({ testID, image, panelIntroProps, panelVideoProps, panelFeatureProps, panelCardsProps, panelHerosProps, panelSubscriptionsProps, panelTestimonialsProps, panelDataCardsProps, panelProductProps, panelCustomProps, isFlush, }: Props): React.ReactElement;
5
5
  displayName: string;
6
6
  };
7
7
  export default HomeScreen;
@@ -3,10 +3,13 @@ import { Props as panelFeatureProps } from '../../components/PanelFeature/PanelF
3
3
  import { Props as panelCardsProps } from '../../components/PanelCards/PanelCards.types';
4
4
  import { Props as panelHerosProps } from '../../components/PanelHero/PanelHero.types';
5
5
  import { Props as panelProductProps } from '../../components/PanelProduct/PanelProduct.types';
6
+ import { Props as panelIntroProps } from '../../components/PanelIntro/PanelIntro.types';
7
+ import { Props as panelCustomProps } from '../../components/PanelCustom/PanelCustom.types';
6
8
  export interface Props {
7
9
  testID?: string;
8
10
  title?: string;
9
11
  image?: string;
12
+ panelIntroProps?: panelIntroProps;
10
13
  panelVideoProps?: panelVideoProps;
11
14
  panelFeatureProps?: panelFeatureProps;
12
15
  panelCardsProps?: panelCardsProps;
@@ -15,4 +18,6 @@ export interface Props {
15
18
  panelTestimonialsProps?: panelCardsProps;
16
19
  panelDataCardsProps?: panelCardsProps;
17
20
  panelProductProps?: panelProductProps;
21
+ panelCustomProps?: panelCustomProps;
22
+ isFlush?: boolean;
18
23
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@4alldigital/foundation-ui--gamma",
3
- "version": "1.55.0",
3
+ "version": "1.55.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": "2a67ac52e2b1196c640262ce47fba44d21bb8d99",
42
+ "gitHead": "27469eca76b02f50c8b0eed32d28be9c4e6b0d1e",
43
43
  "dependencies": {
44
44
  "@elastic/datemath": "^5.0.3",
45
45
  "@elastic/react-search-ui": "^1.21.5",