@hitachivantara/uikit-react-lab 3.39.0 → 3.39.4
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,41 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.39.4](https://github.com/lumada-design/hv-uikit-react/compare/@hitachivantara/uikit-react-lab@3.39.3...@hitachivantara/uikit-react-lab@3.39.4) (2022-02-06)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @hitachivantara/uikit-react-lab
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [3.39.3](https://github.com/lumada-design/hv-uikit-react/compare/@hitachivantara/uikit-react-lab@3.39.2...@hitachivantara/uikit-react-lab@3.39.3) (2022-02-04)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* add dateFormat property to the hvDateColumn renderer ([ba70676](https://github.com/lumada-design/hv-uikit-react/commit/ba706766d6842949331ae8e55059e6f26292eb4f))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## [3.39.2](https://github.com/lumada-design/hv-uikit-react/compare/@hitachivantara/uikit-react-lab@3.39.1...@hitachivantara/uikit-react-lab@3.39.2) (2022-02-04)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @hitachivantara/uikit-react-lab
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
## [3.39.1](https://github.com/lumada-design/hv-uikit-react/compare/@hitachivantara/uikit-react-lab@3.39.0...@hitachivantara/uikit-react-lab@3.39.1) (2022-02-01)
|
|
34
|
+
|
|
35
|
+
**Note:** Version bump only for package @hitachivantara/uikit-react-lab
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
6
41
|
# [3.39.0](https://github.com/lumada-design/hv-uikit-react/compare/@hitachivantara/uikit-react-lab@3.38.1...@hitachivantara/uikit-react-lab@3.39.0) (2022-01-27)
|
|
7
42
|
|
|
8
43
|
|
|
@@ -10,7 +10,8 @@ export function hvNumberColumn<D extends Record<string, unknown>, C extends HvTa
|
|
|
10
10
|
): HvTableColumnConfig<D>;
|
|
11
11
|
|
|
12
12
|
export function hvDateColumn<D extends Record<string, unknown>, C extends HvTableColumnConfig<D>>(
|
|
13
|
-
col: C
|
|
13
|
+
col: C,
|
|
14
|
+
dateFormat?: string
|
|
14
15
|
): HvTableColumnConfig<D>;
|
|
15
16
|
|
|
16
17
|
export function hvExpandColumn<D extends Record<string, unknown>>(
|
|
@@ -26,7 +27,7 @@ export function hvTagColumn<D extends Record<string, unknown>, C extends HvTable
|
|
|
26
27
|
colorDataKey: keyof D,
|
|
27
28
|
textColorDataKey: keyof D,
|
|
28
29
|
fromRowData: boolean,
|
|
29
|
-
tagProps?: HvTagProps
|
|
30
|
+
tagProps?: HvTagProps
|
|
30
31
|
): HvTableColumnConfig<D>;
|
|
31
32
|
|
|
32
33
|
export function hvSwitchColumn<D extends Record<string, unknown>, C extends HvTableColumnConfig<D>>(
|
|
@@ -37,7 +38,10 @@ export function hvSwitchColumn<D extends Record<string, unknown>, C extends HvTa
|
|
|
37
38
|
switchProps?: HvBaseSwitchProps
|
|
38
39
|
): HvTableColumnConfig<D>;
|
|
39
40
|
|
|
40
|
-
export function hvDropdownColumn<
|
|
41
|
+
export function hvDropdownColumn<
|
|
42
|
+
D extends Record<string, unknown>,
|
|
43
|
+
C extends HvTableColumnConfig<D>
|
|
44
|
+
>(
|
|
41
45
|
col: C,
|
|
42
46
|
id: string,
|
|
43
47
|
placeholder: string,
|
|
@@ -45,7 +49,10 @@ export function hvDropdownColumn<D extends Record<string, unknown>, C extends Hv
|
|
|
45
49
|
onChange?: (identifier: string, value: ListValueProp) => void
|
|
46
50
|
): HvTableColumnConfig<D>;
|
|
47
51
|
|
|
48
|
-
export function hvProgressColumn<
|
|
52
|
+
export function hvProgressColumn<
|
|
53
|
+
D extends Record<string, unknown>,
|
|
54
|
+
C extends HvTableColumnConfig<D>
|
|
55
|
+
>(
|
|
49
56
|
col: C,
|
|
50
57
|
getPartial?: (row: HvRowInstance<D>) => number,
|
|
51
58
|
getTotal?: (row: HvRowInstance<D>) => number,
|
|
@@ -10,7 +10,8 @@ export function hvNumberColumn<D extends Record<string, unknown>, C extends HvTa
|
|
|
10
10
|
): HvTableColumnConfig<D>;
|
|
11
11
|
|
|
12
12
|
export function hvDateColumn<D extends Record<string, unknown>, C extends HvTableColumnConfig<D>>(
|
|
13
|
-
col: C
|
|
13
|
+
col: C,
|
|
14
|
+
dateFormat?: string
|
|
14
15
|
): HvTableColumnConfig<D>;
|
|
15
16
|
|
|
16
17
|
export function hvExpandColumn<D extends Record<string, unknown>>(
|
|
@@ -26,7 +27,7 @@ export function hvTagColumn<D extends Record<string, unknown>, C extends HvTable
|
|
|
26
27
|
colorDataKey: keyof D,
|
|
27
28
|
textColorDataKey: keyof D,
|
|
28
29
|
fromRowData: boolean,
|
|
29
|
-
tagProps?: HvTagProps
|
|
30
|
+
tagProps?: HvTagProps
|
|
30
31
|
): HvTableColumnConfig<D>;
|
|
31
32
|
|
|
32
33
|
export function hvSwitchColumn<D extends Record<string, unknown>, C extends HvTableColumnConfig<D>>(
|
|
@@ -37,7 +38,10 @@ export function hvSwitchColumn<D extends Record<string, unknown>, C extends HvTa
|
|
|
37
38
|
switchProps?: HvBaseSwitchProps
|
|
38
39
|
): HvTableColumnConfig<D>;
|
|
39
40
|
|
|
40
|
-
export function hvDropdownColumn<
|
|
41
|
+
export function hvDropdownColumn<
|
|
42
|
+
D extends Record<string, unknown>,
|
|
43
|
+
C extends HvTableColumnConfig<D>
|
|
44
|
+
>(
|
|
41
45
|
col: C,
|
|
42
46
|
id: string,
|
|
43
47
|
placeholder: string,
|
|
@@ -45,7 +49,10 @@ export function hvDropdownColumn<D extends Record<string, unknown>, C extends Hv
|
|
|
45
49
|
onChange?: (identifier: string, value: ListValueProp) => void
|
|
46
50
|
): HvTableColumnConfig<D>;
|
|
47
51
|
|
|
48
|
-
export function hvProgressColumn<
|
|
52
|
+
export function hvProgressColumn<
|
|
53
|
+
D extends Record<string, unknown>,
|
|
54
|
+
C extends HvTableColumnConfig<D>
|
|
55
|
+
>(
|
|
49
56
|
col: C,
|
|
50
57
|
getPartial?: (row: HvRowInstance<D>) => number,
|
|
51
58
|
getTotal?: (row: HvRowInstance<D>) => number,
|
|
@@ -10,7 +10,8 @@ export function hvNumberColumn<D extends Record<string, unknown>, C extends HvTa
|
|
|
10
10
|
): HvTableColumnConfig<D>;
|
|
11
11
|
|
|
12
12
|
export function hvDateColumn<D extends Record<string, unknown>, C extends HvTableColumnConfig<D>>(
|
|
13
|
-
col: C
|
|
13
|
+
col: C,
|
|
14
|
+
dateFormat?: string
|
|
14
15
|
): HvTableColumnConfig<D>;
|
|
15
16
|
|
|
16
17
|
export function hvExpandColumn<D extends Record<string, unknown>>(
|
|
@@ -26,7 +27,7 @@ export function hvTagColumn<D extends Record<string, unknown>, C extends HvTable
|
|
|
26
27
|
colorDataKey: keyof D,
|
|
27
28
|
textColorDataKey: keyof D,
|
|
28
29
|
fromRowData: boolean,
|
|
29
|
-
tagProps?: HvTagProps
|
|
30
|
+
tagProps?: HvTagProps
|
|
30
31
|
): HvTableColumnConfig<D>;
|
|
31
32
|
|
|
32
33
|
export function hvSwitchColumn<D extends Record<string, unknown>, C extends HvTableColumnConfig<D>>(
|
|
@@ -37,7 +38,10 @@ export function hvSwitchColumn<D extends Record<string, unknown>, C extends HvTa
|
|
|
37
38
|
switchProps?: HvBaseSwitchProps
|
|
38
39
|
): HvTableColumnConfig<D>;
|
|
39
40
|
|
|
40
|
-
export function hvDropdownColumn<
|
|
41
|
+
export function hvDropdownColumn<
|
|
42
|
+
D extends Record<string, unknown>,
|
|
43
|
+
C extends HvTableColumnConfig<D>
|
|
44
|
+
>(
|
|
41
45
|
col: C,
|
|
42
46
|
id: string,
|
|
43
47
|
placeholder: string,
|
|
@@ -45,7 +49,10 @@ export function hvDropdownColumn<D extends Record<string, unknown>, C extends Hv
|
|
|
45
49
|
onChange?: (identifier: string, value: ListValueProp) => void
|
|
46
50
|
): HvTableColumnConfig<D>;
|
|
47
51
|
|
|
48
|
-
export function hvProgressColumn<
|
|
52
|
+
export function hvProgressColumn<
|
|
53
|
+
D extends Record<string, unknown>,
|
|
54
|
+
C extends HvTableColumnConfig<D>
|
|
55
|
+
>(
|
|
49
56
|
col: C,
|
|
50
57
|
getPartial?: (row: HvRowInstance<D>) => number,
|
|
51
58
|
getTotal?: (row: HvRowInstance<D>) => number,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hitachivantara/uikit-react-lab",
|
|
3
|
-
"version": "3.39.
|
|
3
|
+
"version": "3.39.4",
|
|
4
4
|
"description": "A collection of contributed 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",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@babel/runtime": "^7.16.3",
|
|
49
|
-
"@hitachivantara/uikit-react-core": "^3.
|
|
50
|
-
"@hitachivantara/uikit-react-icons": "^3.
|
|
49
|
+
"@hitachivantara/uikit-react-core": "^3.54.2",
|
|
50
|
+
"@hitachivantara/uikit-react-icons": "^3.8.0",
|
|
51
51
|
"@types/react-table": "^7.7.8",
|
|
52
52
|
"clsx": "^1.1.1",
|
|
53
53
|
"core-js": "^3.19.1",
|
|
@@ -83,5 +83,5 @@
|
|
|
83
83
|
"publishConfig": {
|
|
84
84
|
"access": "public"
|
|
85
85
|
},
|
|
86
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "4ac95bcadb23ad4b71f18c3c89058098e4f22917"
|
|
87
87
|
}
|