@patternfly/react-table 6.5.0-prerelease.47 → 6.5.0-prerelease.49
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 +8 -0
- package/components/package.json +1 -1
- package/deprecated/package.json +1 -1
- package/dist/dynamic/components/Table/package.json +1 -1
- package/dist/dynamic/components/Table/utils/decorators/package.json +1 -1
- package/dist/dynamic/components/Table/utils/package.json +1 -1
- package/dist/dynamic/deprecated/components/Table/base/package.json +1 -1
- package/dist/dynamic/deprecated/components/Table/package.json +1 -1
- package/dist/dynamic/deprecated/components/package.json +1 -1
- package/dist/umd/assets/{output-Du1c1rZY.css → output-A-U8Bxei.css} +6020 -6020
- package/dist/umd/react-table.min.js +2 -2
- package/package.json +4 -4
- package/src/demos/Table.md +2 -3
- package/src/demos/examples/TableEmptyStateError.tsx +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@patternfly/react-table",
|
|
3
|
-
"version": "6.5.0-prerelease.
|
|
3
|
+
"version": "6.5.0-prerelease.49",
|
|
4
4
|
"description": "This library provides a set of React table components for use with the PatternFly 4",
|
|
5
5
|
"main": "dist/js/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"subpaths": "node ../../scripts/exportSubpaths.mjs --config subpaths.config.json"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@patternfly/react-core": "^6.5.0-prerelease.
|
|
44
|
-
"@patternfly/react-icons": "^6.5.0-prerelease.
|
|
43
|
+
"@patternfly/react-core": "^6.5.0-prerelease.48",
|
|
44
|
+
"@patternfly/react-icons": "^6.5.0-prerelease.19",
|
|
45
45
|
"@patternfly/react-styles": "^6.5.0-prerelease.15",
|
|
46
46
|
"@patternfly/react-tokens": "^6.5.0-prerelease.14",
|
|
47
47
|
"lodash": "^4.17.23",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"react": "^17 || ^18 || ^19",
|
|
52
52
|
"react-dom": "^17 || ^18 || ^19"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "d12d240eb2218407d455c9b06478e1a38357d3f7"
|
|
55
55
|
}
|
package/src/demos/Table.md
CHANGED
|
@@ -58,20 +58,19 @@ import FilterIcon from '@patternfly/react-icons/dist/esm/icons/filter-icon';
|
|
|
58
58
|
import SortAmountDownIcon from '@patternfly/react-icons/dist/esm/icons/sort-amount-down-icon';
|
|
59
59
|
import SearchIcon from '@patternfly/react-icons/dist/esm/icons/search-icon';
|
|
60
60
|
import SyncIcon from '@patternfly/react-icons/dist/esm/icons/sync-icon';
|
|
61
|
-
import
|
|
61
|
+
import RhUiErrorFillIcon from '@patternfly/react-icons/dist/esm/icons/rh-ui-error-fill-icon';
|
|
62
62
|
import CogIcon from '@patternfly/react-icons/dist/esm/icons/cog-icon';
|
|
63
63
|
import HelpIcon from '@patternfly/react-icons/dist/esm/icons/help-icon';
|
|
64
64
|
import QuestionCircleIcon from '@patternfly/react-icons/dist/esm/icons/question-circle-icon';
|
|
65
65
|
import RhMicronsCaretDownIcon from '@patternfly/react-icons/dist/esm/icons/rh-microns-caret-down-icon';
|
|
66
66
|
import RhMicronsCaretRightIcon from '@patternfly/react-icons/dist/esm/icons/rh-microns-caret-right-icon';
|
|
67
67
|
import BarsIcon from '@patternfly/react-icons/dist/esm/icons/bars-icon';
|
|
68
|
-
import AttentionBellIcon from '@patternfly/react-icons/dist/esm/icons/attention-bell-icon';
|
|
69
68
|
import BlueprintIcon from '@patternfly/react-icons/dist/esm/icons/blueprint-icon';
|
|
70
69
|
import EllipsisVIcon from '@patternfly/react-icons/dist/esm/icons/ellipsis-v-icon';
|
|
71
70
|
import { DashboardWrapper } from '@patternfly/react-table/dist/esm/demos/DashboardWrapper';
|
|
72
71
|
import { rows, columns } from '@patternfly/react-table/dist/esm/demos/sampleData';
|
|
73
72
|
import spacing from '@patternfly/react-styles/css/utilities/Spacing/spacing';
|
|
74
|
-
import
|
|
73
|
+
import RhUiNotificationFillIcon from '@patternfly/react-icons/dist/esm/icons/rh-ui-notification-fill-icon';
|
|
75
74
|
|
|
76
75
|
## Demos
|
|
77
76
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Table, Thead, Tr, Th, Tbody, Td } from '@patternfly/react-table';
|
|
2
2
|
import { Bullseye, EmptyState, EmptyStateVariant, EmptyStateBody, PageSection } from '@patternfly/react-core';
|
|
3
|
-
import
|
|
3
|
+
import RhUiErrorFillIcon from '@patternfly/react-icons/dist/esm/icons/rh-ui-error-fill-icon';
|
|
4
4
|
import { DashboardWrapper } from '@patternfly/react-table/dist/esm/demos/DashboardWrapper';
|
|
5
5
|
|
|
6
6
|
export const TableEmptyStateError: React.FunctionComponent = () => (
|
|
@@ -21,7 +21,7 @@ export const TableEmptyStateError: React.FunctionComponent = () => (
|
|
|
21
21
|
<Td colSpan={8}>
|
|
22
22
|
<Bullseye>
|
|
23
23
|
<EmptyState
|
|
24
|
-
icon={
|
|
24
|
+
icon={RhUiErrorFillIcon}
|
|
25
25
|
titleText="Unable to connect"
|
|
26
26
|
headingLevel="h2"
|
|
27
27
|
variant={EmptyStateVariant.sm}
|