carbon-addons-iot-react 2.152.0-next.21 → 2.152.0-next.22
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 +11 -0
- package/es/components/Table/Table.js +7 -2
- package/es/components/Table/TableHead/FilterHeaderRow/FilterHeaderRow.js +7 -2
- package/es/components/Table/TableHead/TableHead.js +7 -2
- package/lib/components/Table/Table.js +7 -2
- package/lib/components/Table/TableHead/FilterHeaderRow/FilterHeaderRow.js +7 -2
- package/lib/components/Table/TableHead/TableHead.js +7 -2
- package/package.json +2 -2
- package/umd/carbon-addons-iot-react.js +21 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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
|
+
# [2.152.0-next.22](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.21...v2.152.0-next.22) (2023-01-20)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **table:** update prop types for filter row icon ([792c3ab](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/792c3abda5dddfc82f57e52a31f4e72c931b9133))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [2.152.0-next.21](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.20...v2.152.0-next.21) (2023-01-19)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -311,7 +311,7 @@ var propTypes = {
|
|
|
311
311
|
loadingMoreIds: PropTypes.arrayOf(PropTypes.string),
|
|
312
312
|
|
|
313
313
|
/** icon element for filter row icon */
|
|
314
|
-
filterRowIcon: PropTypes.
|
|
314
|
+
filterRowIcon: PropTypes.oneOfType([PropTypes.func, PropTypes.object])
|
|
315
315
|
})
|
|
316
316
|
}),
|
|
317
317
|
|
|
@@ -1708,7 +1708,12 @@ Table.__docgenInfo = {
|
|
|
1708
1708
|
"required": false
|
|
1709
1709
|
},
|
|
1710
1710
|
"filterRowIcon": {
|
|
1711
|
-
"name": "
|
|
1711
|
+
"name": "union",
|
|
1712
|
+
"value": [{
|
|
1713
|
+
"name": "func"
|
|
1714
|
+
}, {
|
|
1715
|
+
"name": "object"
|
|
1716
|
+
}],
|
|
1712
1717
|
"description": "icon element for filter row icon",
|
|
1713
1718
|
"required": false
|
|
1714
1719
|
}
|
|
@@ -516,7 +516,7 @@ _defineProperty(FilterHeaderRow, "propTypes", {
|
|
|
516
516
|
showColumnGroups: PropTypes.bool,
|
|
517
517
|
|
|
518
518
|
/** icon element for filter row icon */
|
|
519
|
-
filterRowIcon: PropTypes.
|
|
519
|
+
filterRowIcon: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
|
|
520
520
|
|
|
521
521
|
/** tooltip text for filter row icon button */
|
|
522
522
|
filterRowIconDescription: PropTypes.string,
|
|
@@ -863,7 +863,12 @@ FilterHeaderRow.__docgenInfo = {
|
|
|
863
863
|
"computed": false
|
|
864
864
|
},
|
|
865
865
|
"type": {
|
|
866
|
-
"name": "
|
|
866
|
+
"name": "union",
|
|
867
|
+
"value": [{
|
|
868
|
+
"name": "func"
|
|
869
|
+
}, {
|
|
870
|
+
"name": "object"
|
|
871
|
+
}]
|
|
867
872
|
},
|
|
868
873
|
"required": false,
|
|
869
874
|
"description": "icon element for filter row icon"
|
|
@@ -141,7 +141,7 @@ var propTypes = {
|
|
|
141
141
|
warning(false, "The value `".concat(props[propName], "` has been deprecated for the ") + "`".concat(propName, "` prop on the ").concat(componentName, " component. It will be removed in the next major ") + "release. Please use 'xs', 'sm', 'md', 'lg', or 'xl' instead.") ;
|
|
142
142
|
}
|
|
143
143
|
},
|
|
144
|
-
filterRowIcon: PropTypes.
|
|
144
|
+
filterRowIcon: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
|
|
145
145
|
filterRowIconDescription: PropTypes.string
|
|
146
146
|
};
|
|
147
147
|
var defaultProps = {
|
|
@@ -885,7 +885,12 @@ TableHead.__docgenInfo = {
|
|
|
885
885
|
"computed": true
|
|
886
886
|
},
|
|
887
887
|
"type": {
|
|
888
|
-
"name": "
|
|
888
|
+
"name": "union",
|
|
889
|
+
"value": [{
|
|
890
|
+
"name": "func"
|
|
891
|
+
}, {
|
|
892
|
+
"name": "object"
|
|
893
|
+
}]
|
|
889
894
|
},
|
|
890
895
|
"required": false,
|
|
891
896
|
"description": ""
|
|
@@ -328,7 +328,7 @@ var propTypes = {
|
|
|
328
328
|
loadingMoreIds: PropTypes__default['default'].arrayOf(PropTypes__default['default'].string),
|
|
329
329
|
|
|
330
330
|
/** icon element for filter row icon */
|
|
331
|
-
filterRowIcon: PropTypes__default['default'].
|
|
331
|
+
filterRowIcon: PropTypes__default['default'].oneOfType([PropTypes__default['default'].func, PropTypes__default['default'].object])
|
|
332
332
|
})
|
|
333
333
|
}),
|
|
334
334
|
|
|
@@ -1725,7 +1725,12 @@ Table.__docgenInfo = {
|
|
|
1725
1725
|
"required": false
|
|
1726
1726
|
},
|
|
1727
1727
|
"filterRowIcon": {
|
|
1728
|
-
"name": "
|
|
1728
|
+
"name": "union",
|
|
1729
|
+
"value": [{
|
|
1730
|
+
"name": "func"
|
|
1731
|
+
}, {
|
|
1732
|
+
"name": "object"
|
|
1733
|
+
}],
|
|
1729
1734
|
"description": "icon element for filter row icon",
|
|
1730
1735
|
"required": false
|
|
1731
1736
|
}
|
|
@@ -532,7 +532,7 @@ _defineProperty__default['default'](FilterHeaderRow, "propTypes", {
|
|
|
532
532
|
showColumnGroups: PropTypes__default['default'].bool,
|
|
533
533
|
|
|
534
534
|
/** icon element for filter row icon */
|
|
535
|
-
filterRowIcon: PropTypes__default['default'].
|
|
535
|
+
filterRowIcon: PropTypes__default['default'].oneOfType([PropTypes__default['default'].func, PropTypes__default['default'].object]),
|
|
536
536
|
|
|
537
537
|
/** tooltip text for filter row icon button */
|
|
538
538
|
filterRowIconDescription: PropTypes__default['default'].string,
|
|
@@ -879,7 +879,12 @@ FilterHeaderRow.__docgenInfo = {
|
|
|
879
879
|
"computed": false
|
|
880
880
|
},
|
|
881
881
|
"type": {
|
|
882
|
-
"name": "
|
|
882
|
+
"name": "union",
|
|
883
|
+
"value": [{
|
|
884
|
+
"name": "func"
|
|
885
|
+
}, {
|
|
886
|
+
"name": "object"
|
|
887
|
+
}]
|
|
883
888
|
},
|
|
884
889
|
"required": false,
|
|
885
890
|
"description": "icon element for filter row icon"
|
|
@@ -152,7 +152,7 @@ var propTypes = {
|
|
|
152
152
|
warning__default['default'](false, "The value `".concat(props[propName], "` has been deprecated for the ") + "`".concat(propName, "` prop on the ").concat(componentName, " component. It will be removed in the next major ") + "release. Please use 'xs', 'sm', 'md', 'lg', or 'xl' instead.") ;
|
|
153
153
|
}
|
|
154
154
|
},
|
|
155
|
-
filterRowIcon: PropTypes__default['default'].
|
|
155
|
+
filterRowIcon: PropTypes__default['default'].oneOfType([PropTypes__default['default'].func, PropTypes__default['default'].object]),
|
|
156
156
|
filterRowIconDescription: PropTypes__default['default'].string
|
|
157
157
|
};
|
|
158
158
|
var defaultProps = {
|
|
@@ -896,7 +896,12 @@ TableHead.__docgenInfo = {
|
|
|
896
896
|
"computed": true
|
|
897
897
|
},
|
|
898
898
|
"type": {
|
|
899
|
-
"name": "
|
|
899
|
+
"name": "union",
|
|
900
|
+
"value": [{
|
|
901
|
+
"name": "func"
|
|
902
|
+
}, {
|
|
903
|
+
"name": "object"
|
|
904
|
+
}]
|
|
900
905
|
},
|
|
901
906
|
"required": false,
|
|
902
907
|
"description": ""
|
package/package.json
CHANGED
|
@@ -340,11 +340,11 @@
|
|
|
340
340
|
"whatwg-fetch": "^3.0.0"
|
|
341
341
|
},
|
|
342
342
|
"sideEffects": false,
|
|
343
|
-
"version": "2.152.0-next.
|
|
343
|
+
"version": "2.152.0-next.22",
|
|
344
344
|
"resolutions": {
|
|
345
345
|
"chokidar": "3.3.1",
|
|
346
346
|
"react-grid-layout": "1.2.2",
|
|
347
347
|
"got": "11.8.5"
|
|
348
348
|
},
|
|
349
|
-
"gitHead": "
|
|
349
|
+
"gitHead": "7b4904045393b9d69a46eb83763db4977b9c74d1"
|
|
350
350
|
}
|
|
@@ -33046,7 +33046,7 @@
|
|
|
33046
33046
|
showColumnGroups: PropTypes__default['default'].bool,
|
|
33047
33047
|
|
|
33048
33048
|
/** icon element for filter row icon */
|
|
33049
|
-
filterRowIcon: PropTypes__default['default'].
|
|
33049
|
+
filterRowIcon: PropTypes__default['default'].oneOfType([PropTypes__default['default'].func, PropTypes__default['default'].object]),
|
|
33050
33050
|
|
|
33051
33051
|
/** tooltip text for filter row icon button */
|
|
33052
33052
|
filterRowIconDescription: PropTypes__default['default'].string,
|
|
@@ -33393,7 +33393,12 @@
|
|
|
33393
33393
|
"computed": false
|
|
33394
33394
|
},
|
|
33395
33395
|
"type": {
|
|
33396
|
-
"name": "
|
|
33396
|
+
"name": "union",
|
|
33397
|
+
"value": [{
|
|
33398
|
+
"name": "func"
|
|
33399
|
+
}, {
|
|
33400
|
+
"name": "object"
|
|
33401
|
+
}]
|
|
33397
33402
|
},
|
|
33398
33403
|
"required": false,
|
|
33399
33404
|
"description": "icon element for filter row icon"
|
|
@@ -35528,7 +35533,7 @@
|
|
|
35528
35533
|
warning_1(false, "The value `".concat(props[propName], "` has been deprecated for the ") + "`".concat(propName, "` prop on the ").concat(componentName, " component. It will be removed in the next major ") + "release. Please use 'xs', 'sm', 'md', 'lg', or 'xl' instead.") ;
|
|
35529
35534
|
}
|
|
35530
35535
|
},
|
|
35531
|
-
filterRowIcon: PropTypes__default['default'].
|
|
35536
|
+
filterRowIcon: PropTypes__default['default'].oneOfType([PropTypes__default['default'].func, PropTypes__default['default'].object]),
|
|
35532
35537
|
filterRowIconDescription: PropTypes__default['default'].string
|
|
35533
35538
|
};
|
|
35534
35539
|
var defaultProps$2q = {
|
|
@@ -36272,7 +36277,12 @@
|
|
|
36272
36277
|
"computed": true
|
|
36273
36278
|
},
|
|
36274
36279
|
"type": {
|
|
36275
|
-
"name": "
|
|
36280
|
+
"name": "union",
|
|
36281
|
+
"value": [{
|
|
36282
|
+
"name": "func"
|
|
36283
|
+
}, {
|
|
36284
|
+
"name": "object"
|
|
36285
|
+
}]
|
|
36276
36286
|
},
|
|
36277
36287
|
"required": false,
|
|
36278
36288
|
"description": ""
|
|
@@ -46184,7 +46194,7 @@
|
|
|
46184
46194
|
loadingMoreIds: PropTypes__default['default'].arrayOf(PropTypes__default['default'].string),
|
|
46185
46195
|
|
|
46186
46196
|
/** icon element for filter row icon */
|
|
46187
|
-
filterRowIcon: PropTypes__default['default'].
|
|
46197
|
+
filterRowIcon: PropTypes__default['default'].oneOfType([PropTypes__default['default'].func, PropTypes__default['default'].object])
|
|
46188
46198
|
})
|
|
46189
46199
|
}),
|
|
46190
46200
|
|
|
@@ -47581,7 +47591,12 @@
|
|
|
47581
47591
|
"required": false
|
|
47582
47592
|
},
|
|
47583
47593
|
"filterRowIcon": {
|
|
47584
|
-
"name": "
|
|
47594
|
+
"name": "union",
|
|
47595
|
+
"value": [{
|
|
47596
|
+
"name": "func"
|
|
47597
|
+
}, {
|
|
47598
|
+
"name": "object"
|
|
47599
|
+
}],
|
|
47585
47600
|
"description": "icon element for filter row icon",
|
|
47586
47601
|
"required": false
|
|
47587
47602
|
}
|