@hitachivantara/uikit-react-lab 3.39.1 → 3.39.5

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.5](https://github.com/lumada-design/hv-uikit-react/compare/@hitachivantara/uikit-react-lab@3.39.4...@hitachivantara/uikit-react-lab@3.39.5) (2022-02-07)
7
+
8
+ **Note:** Version bump only for package @hitachivantara/uikit-react-lab
9
+
10
+
11
+
12
+
13
+
14
+ ## [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)
15
+
16
+ **Note:** Version bump only for package @hitachivantara/uikit-react-lab
17
+
18
+
19
+
20
+
21
+
22
+ ## [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)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * add dateFormat property to the hvDateColumn renderer ([ba70676](https://github.com/lumada-design/hv-uikit-react/commit/ba706766d6842949331ae8e55059e6f26292eb4f))
28
+
29
+
30
+
31
+
32
+
33
+ ## [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)
34
+
35
+ **Note:** Version bump only for package @hitachivantara/uikit-react-lab
36
+
37
+
38
+
39
+
40
+
6
41
  ## [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)
7
42
 
8
43
  **Note:** Version bump only for package @hitachivantara/uikit-react-lab
@@ -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<D extends Record<string, unknown>, C extends HvTableColumnConfig<D>>(
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<D extends Record<string, unknown>, C extends HvTableColumnConfig<D>>(
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<D extends Record<string, unknown>, C extends HvTableColumnConfig<D>>(
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<D extends Record<string, unknown>, C extends HvTableColumnConfig<D>>(
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<D extends Record<string, unknown>, C extends HvTableColumnConfig<D>>(
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<D extends Record<string, unknown>, C extends HvTableColumnConfig<D>>(
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.1",
3
+ "version": "3.39.5",
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.53.1",
50
- "@hitachivantara/uikit-react-icons": "^3.7.3",
49
+ "@hitachivantara/uikit-react-core": "^3.55.0",
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": "1380b21730bfd2449681a94f3ece2a281ba840f1"
86
+ "gitHead": "d3894300f3391f85905ca7c5e872bb1ea50e3c99"
87
87
  }