@hitachivantara/uikit-react-core 3.74.1 → 3.74.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,17 +1,16 @@
|
|
|
1
|
-
import { FunctionComponent } from "react";
|
|
2
|
-
|
|
3
1
|
export type Spacing = "xs" | "sm" | "md" | "lg";
|
|
4
|
-
export type
|
|
2
|
+
export type Breakpoint = {
|
|
5
3
|
cols?: number;
|
|
6
4
|
maxWidth?: number;
|
|
7
5
|
minWidth?: number;
|
|
8
6
|
spacing?: Spacing;
|
|
9
7
|
};
|
|
10
8
|
|
|
11
|
-
export interface SimpleGridProps
|
|
9
|
+
export interface SimpleGridProps {
|
|
10
|
+
children?: JSX.Element | JSX.Element[];
|
|
12
11
|
spacing?: Spacing;
|
|
13
12
|
cols?: number;
|
|
14
|
-
breakpoints?:
|
|
13
|
+
breakpoints?: Breakpoint[];
|
|
15
14
|
}
|
|
16
15
|
|
|
17
16
|
export default function HvSimpleGrid(props: SimpleGridProps): JSX.Element | null;
|
|
@@ -1,17 +1,16 @@
|
|
|
1
|
-
import { FunctionComponent } from "react";
|
|
2
|
-
|
|
3
1
|
export type Spacing = "xs" | "sm" | "md" | "lg";
|
|
4
|
-
export type
|
|
2
|
+
export type Breakpoint = {
|
|
5
3
|
cols?: number;
|
|
6
4
|
maxWidth?: number;
|
|
7
5
|
minWidth?: number;
|
|
8
6
|
spacing?: Spacing;
|
|
9
7
|
};
|
|
10
8
|
|
|
11
|
-
export interface SimpleGridProps
|
|
9
|
+
export interface SimpleGridProps {
|
|
10
|
+
children?: JSX.Element | JSX.Element[];
|
|
12
11
|
spacing?: Spacing;
|
|
13
12
|
cols?: number;
|
|
14
|
-
breakpoints?:
|
|
13
|
+
breakpoints?: Breakpoint[];
|
|
15
14
|
}
|
|
16
15
|
|
|
17
16
|
export default function HvSimpleGrid(props: SimpleGridProps): JSX.Element | null;
|
|
@@ -1,17 +1,16 @@
|
|
|
1
|
-
import { FunctionComponent } from "react";
|
|
2
|
-
|
|
3
1
|
export type Spacing = "xs" | "sm" | "md" | "lg";
|
|
4
|
-
export type
|
|
2
|
+
export type Breakpoint = {
|
|
5
3
|
cols?: number;
|
|
6
4
|
maxWidth?: number;
|
|
7
5
|
minWidth?: number;
|
|
8
6
|
spacing?: Spacing;
|
|
9
7
|
};
|
|
10
8
|
|
|
11
|
-
export interface SimpleGridProps
|
|
9
|
+
export interface SimpleGridProps {
|
|
10
|
+
children?: JSX.Element | JSX.Element[];
|
|
12
11
|
spacing?: Spacing;
|
|
13
12
|
cols?: number;
|
|
14
|
-
breakpoints?:
|
|
13
|
+
breakpoints?: Breakpoint[];
|
|
15
14
|
}
|
|
16
15
|
|
|
17
16
|
export default function HvSimpleGrid(props: SimpleGridProps): JSX.Element | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hitachivantara/uikit-react-core",
|
|
3
|
-
"version": "3.74.
|
|
3
|
+
"version": "3.74.2",
|
|
4
4
|
"description": "A collection of React components for the Hitachi Vantara's Design System.",
|
|
5
5
|
"homepage": "https://github.com/lumada-design/hv-uikit-react",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"publishConfig": {
|
|
81
81
|
"access": "public"
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "edf63455ce815c26d805bf1d9bc118bdadb5e7fa"
|
|
84
84
|
}
|