@4alldigital/foundation-ui--gamma 1.60.0 → 1.61.1
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 -2
- package/dist/index.esm.js +2 -2
- package/dist/index.js +2 -2
- package/dist/types/lib/components/Card/Card.types.d.ts +1 -0
- package/dist/types/lib/components/Card/types/CardBasic/CardBasic.d.ts +1 -1
- package/dist/types/lib/components/Carousel/Carousel.d.ts +1 -1
- package/dist/types/lib/components/Carousel/Carousel.types.d.ts +1 -1
- package/dist/types/lib/components/DisplayHeading/DisplayHeading.d.ts +1 -1
- package/dist/types/lib/components/DisplayHeading/DisplayHeading.types.d.ts +1 -0
- package/dist/types/lib/components/Screen/Screen.d.ts +1 -1
- package/dist/types/lib/components/Screen/Screen.types.d.ts +1 -0
- package/dist/types/lib/components/VisitUs/VisitUs.d.ts +1 -1
- package/dist/types/lib/components/VisitUs/VisitUs.types.d.ts +1 -0
- package/dist/types/lib/context/App/index.d.ts +1 -0
- package/dist/types/lib/forms/LoginForm/LoginForm.d.ts +1 -1
- package/dist/types/lib/forms/LoginForm/LoginForm.types.d.ts +1 -0
- package/dist/types/lib/forms/RegisterForm/RegisterForm.d.ts +1 -1
- package/dist/types/lib/forms/RegisterForm/RegisterForm.types.d.ts +1 -0
- package/dist/types/lib/translations/en.d.ts +10 -0
- package/dist/types/packages/gamma/src/index.d.ts +0 -1
- package/package.json +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { Props } from './CardBasic.types';
|
|
3
3
|
declare const CardBasic: {
|
|
4
|
-
({ id, title, description, image, className, metaData, actions, padded, scaleOnHover, onClick, htmlDetails, }: Props): React.ReactElement;
|
|
4
|
+
({ id, title, description, image, className, metaData, actions, padded, scaleOnHover, onClick, htmlDetails, titleOverlay, }: Props): React.ReactElement;
|
|
5
5
|
displayName: string;
|
|
6
6
|
};
|
|
7
7
|
export default CardBasic;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { Props } from './Carousel.types';
|
|
3
3
|
declare const Carousel: {
|
|
4
|
-
({ testID, data, onPressCallback,
|
|
4
|
+
({ testID, data, onPressCallback, isCentered, carouselOptions, customRender, }: Props): React.ReactElement;
|
|
5
5
|
displayName: string;
|
|
6
6
|
};
|
|
7
7
|
export default Carousel;
|
|
@@ -3,10 +3,10 @@ export interface Props {
|
|
|
3
3
|
testID?: string;
|
|
4
4
|
data: CardProps[] | any[];
|
|
5
5
|
onPressCallback?: (arg: any) => void;
|
|
6
|
-
count?: number;
|
|
7
6
|
isCentered?: boolean;
|
|
8
7
|
carouselOptions?: {
|
|
9
8
|
loop?: boolean;
|
|
9
|
+
slidesToShow?: number;
|
|
10
10
|
vertical?: boolean;
|
|
11
11
|
autoPlay?: boolean;
|
|
12
12
|
scrollAnimationDuration?: number;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -530,6 +530,16 @@ declare const strings: {
|
|
|
530
530
|
REQUEST_PROMO_INFO: string;
|
|
531
531
|
LOGGING_OUT: string;
|
|
532
532
|
LAUNCH_PLAYBACK: string;
|
|
533
|
+
WATCH_NOW: string;
|
|
534
|
+
PLAY_NOW: string;
|
|
535
|
+
WATCH_LIVE: string;
|
|
536
|
+
PLAY_LIVE: string;
|
|
537
|
+
WATCH: string;
|
|
538
|
+
PLAY: string;
|
|
539
|
+
VIEW_ALL: string;
|
|
540
|
+
VIEW_MORE: string;
|
|
541
|
+
VIEW_LESS: string;
|
|
542
|
+
VIEW_DETAILS: string;
|
|
533
543
|
};
|
|
534
544
|
ERRORS: {
|
|
535
545
|
GENERIC_ERROR: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@4alldigital/foundation-ui--gamma",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.61.1",
|
|
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": "c47f5d3247e750ea1d7bc7968c0ede60d6be6377",
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@elastic/datemath": "^5.0.3",
|
|
45
45
|
"@elastic/react-search-ui": "^1.21.5",
|