@4alldigital/foundation-ui--gamma 1.43.0 → 1.44.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 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/types/lib/components/Button/Button.types.d.ts +1 -0
- package/dist/types/lib/components/Container/Container.d.ts +1 -1
- package/dist/types/lib/components/Container/Container.types.d.ts +6 -1
- package/dist/types/lib/components/Copy/Copy.d.ts +1 -1
- package/dist/types/lib/components/Copy/Copy.types.d.ts +4 -2
- package/dist/types/lib/components/index.d.ts +7 -7
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Props } from './Container.types';
|
|
2
2
|
declare const Container: {
|
|
3
|
-
({ children, className, spacing, padded, isNarrow, isCentered, isFlush, }: Props): React.ReactElement;
|
|
3
|
+
({ children, className, spacing, padded, isNarrow, isCentered, isFlush, direction, }: Props): React.ReactElement;
|
|
4
4
|
displayName: string;
|
|
5
5
|
};
|
|
6
6
|
export default Container;
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
export declare enum CONTAINER_DIRECTION {
|
|
3
|
+
ROW = "row",
|
|
4
|
+
COLUMN = "column"
|
|
5
|
+
}
|
|
2
6
|
export interface Props {
|
|
3
7
|
children: React.ReactNode;
|
|
4
|
-
className?: string;
|
|
5
8
|
spacing?: 'feature' | 'component' | 'module' | 'element' | 'atom' | 'none';
|
|
6
9
|
padded?: boolean;
|
|
7
10
|
isNarrow?: boolean;
|
|
8
11
|
isCentered?: boolean;
|
|
9
12
|
isFlush?: boolean;
|
|
13
|
+
direction?: CONTAINER_DIRECTION;
|
|
14
|
+
className?: string;
|
|
10
15
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Props } from './Copy.types';
|
|
2
2
|
declare const Copy: {
|
|
3
|
-
({ children, as: Tag, size, align, transform, id, className, testID, }: Props): React.ReactElement;
|
|
3
|
+
({ children, as: Tag, size, bold, align, transform, underlined, id, className, testID, }: Props): React.ReactElement;
|
|
4
4
|
displayName: string;
|
|
5
5
|
};
|
|
6
6
|
export default Copy;
|
|
@@ -9,8 +9,7 @@ export declare enum COPY_ALIGN {
|
|
|
9
9
|
export declare enum COPY_TRANSFORM {
|
|
10
10
|
LOWERCASE = "lowercase",
|
|
11
11
|
UPPERCASE = "uppercase",
|
|
12
|
-
CAPITALIZE = "capitalize"
|
|
13
|
-
NORMALCASE = "normal-case"
|
|
12
|
+
CAPITALIZE = "capitalize"
|
|
14
13
|
}
|
|
15
14
|
export declare enum COPY_CONTEXTUAL {
|
|
16
15
|
INVERTED = "inverted",
|
|
@@ -18,6 +17,7 @@ export declare enum COPY_CONTEXTUAL {
|
|
|
18
17
|
}
|
|
19
18
|
export declare enum COPY_SIZE {
|
|
20
19
|
SMALL = "small",
|
|
20
|
+
MEDIUM = "medium",
|
|
21
21
|
LARGE = "large",
|
|
22
22
|
INTRO = "intro"
|
|
23
23
|
}
|
|
@@ -31,6 +31,8 @@ export interface Props {
|
|
|
31
31
|
children: string | Array<React.ReactNode> | React.ReactNode | string | undefined;
|
|
32
32
|
align?: COPY_ALIGN;
|
|
33
33
|
size?: COPY_SIZE;
|
|
34
|
+
bold?: boolean;
|
|
35
|
+
underlined?: boolean;
|
|
34
36
|
transform?: COPY_TRANSFORM;
|
|
35
37
|
contextual?: COPY_CONTEXTUAL;
|
|
36
38
|
inverted?: boolean;
|
|
@@ -18,13 +18,6 @@ export { default as Radio } from './Radio';
|
|
|
18
18
|
export { default as Switch } from './Switch';
|
|
19
19
|
export { default as TextInput } from './TextInput';
|
|
20
20
|
export { default as Avatar } from './Avatar';
|
|
21
|
-
export { default as AnimationSet1 } from './AnimationSet1';
|
|
22
|
-
export { default as Authenticator } from './Authenticator';
|
|
23
|
-
export { default as PanelCards } from './PanelCards';
|
|
24
|
-
export { default as PanelFeature } from './PanelFeature';
|
|
25
|
-
export { default as PanelHero } from './PanelHero';
|
|
26
|
-
export { default as PanelProduct } from './PanelProduct';
|
|
27
|
-
export { default as PanelVideo } from './PanelVideo';
|
|
28
21
|
export { default as ButtonGroup } from './ButtonGroup';
|
|
29
22
|
export { default as Card } from './Card';
|
|
30
23
|
export { default as DisplayHeading } from './DisplayHeading';
|
|
@@ -37,6 +30,13 @@ export { default as VisitUs } from './VisitUs';
|
|
|
37
30
|
export { default as Menu } from './Menu';
|
|
38
31
|
export { default as Hero } from './Hero';
|
|
39
32
|
export { default as HtmlContent } from './HtmlContent';
|
|
33
|
+
export { default as AnimationSet1 } from './AnimationSet1';
|
|
34
|
+
export { default as Authenticator } from './Authenticator';
|
|
35
|
+
export { default as PanelCards } from './PanelCards';
|
|
36
|
+
export { default as PanelFeature } from './PanelFeature';
|
|
37
|
+
export { default as PanelHero } from './PanelHero';
|
|
38
|
+
export { default as PanelProduct } from './PanelProduct';
|
|
39
|
+
export { default as PanelVideo } from './PanelVideo';
|
|
40
40
|
export { default as Container } from './Container';
|
|
41
41
|
export { default as ContentPageLayout } from './ContentPageLayout';
|
|
42
42
|
export { default as ContentRowsLayout } from './ContentRowsLayout';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@4alldigital/foundation-ui--gamma",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.44.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": "9c50b9d0961502d89cbd3095320aed2401a235e6",
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@elastic/datemath": "^5.0.3",
|
|
45
45
|
"@elastic/react-search-ui": "^1.21.1",
|