@patternfly/react-data-view 6.4.0-prerelease.6 → 6.4.0-prerelease.8
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/dist/cjs/DataViewTh/index.d.ts +2 -0
- package/dist/cjs/DataViewTh/index.js +23 -0
- package/dist/cjs/index.d.ts +4 -0
- package/dist/cjs/index.js +7 -1
- package/dist/dynamic/DataViewTh/package.json +1 -0
- package/dist/dynamic-modules.json +59 -0
- package/dist/esm/DataViewTh/index.d.ts +2 -0
- package/dist/esm/DataViewTh/index.js +2 -0
- package/dist/esm/index.d.ts +4 -0
- package/dist/esm/index.js +4 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/generate-fed-package-json.js +18 -0
- package/generate-index.js +2 -2
- package/package.json +6 -6
- package/src/DataViewTh/index.ts +2 -0
- package/src/index.ts +6 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
17
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
18
|
+
};
|
|
19
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20
|
+
exports.default = void 0;
|
|
21
|
+
var DataViewTh_1 = require("./DataViewTh");
|
|
22
|
+
Object.defineProperty(exports, "default", { enumerable: true, get: function () { return __importDefault(DataViewTh_1).default; } });
|
|
23
|
+
__exportStar(require("./DataViewTh"), exports);
|
package/dist/cjs/index.d.ts
CHANGED
|
@@ -3,6 +3,8 @@ export * from './InternalContext';
|
|
|
3
3
|
export * from './Hooks';
|
|
4
4
|
export { default as DataViewToolbar } from './DataViewToolbar';
|
|
5
5
|
export * from './DataViewToolbar';
|
|
6
|
+
export { default as DataViewTh } from './DataViewTh';
|
|
7
|
+
export * from './DataViewTh';
|
|
6
8
|
export { default as DataViewTextFilter } from './DataViewTextFilter';
|
|
7
9
|
export * from './DataViewTextFilter';
|
|
8
10
|
export { default as DataViewTableTree } from './DataViewTableTree';
|
|
@@ -13,6 +15,8 @@ export { default as DataViewTableBasic } from './DataViewTableBasic';
|
|
|
13
15
|
export * from './DataViewTableBasic';
|
|
14
16
|
export { default as DataViewTable } from './DataViewTable';
|
|
15
17
|
export * from './DataViewTable';
|
|
18
|
+
export { default as DataViewFilters } from './DataViewFilters';
|
|
19
|
+
export * from './DataViewFilters';
|
|
16
20
|
export { default as DataViewEventsContext } from './DataViewEventsContext';
|
|
17
21
|
export * from './DataViewEventsContext';
|
|
18
22
|
export { default as DataViewCheckboxFilter } from './DataViewCheckboxFilter';
|
package/dist/cjs/index.js
CHANGED
|
@@ -18,7 +18,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
18
18
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
19
19
|
};
|
|
20
20
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21
|
-
exports.DataView = exports.DataViewCheckboxFilter = exports.DataViewEventsContext = exports.DataViewTable = exports.DataViewTableBasic = exports.DataViewTableHead = exports.DataViewTableTree = exports.DataViewTextFilter = exports.DataViewToolbar = exports.InternalContext = void 0;
|
|
21
|
+
exports.DataView = exports.DataViewCheckboxFilter = exports.DataViewEventsContext = exports.DataViewFilters = exports.DataViewTable = exports.DataViewTableBasic = exports.DataViewTableHead = exports.DataViewTableTree = exports.DataViewTextFilter = exports.DataViewTh = exports.DataViewToolbar = exports.InternalContext = void 0;
|
|
22
22
|
var InternalContext_1 = require("./InternalContext");
|
|
23
23
|
Object.defineProperty(exports, "InternalContext", { enumerable: true, get: function () { return __importDefault(InternalContext_1).default; } });
|
|
24
24
|
__exportStar(require("./InternalContext"), exports);
|
|
@@ -26,6 +26,9 @@ __exportStar(require("./Hooks"), exports);
|
|
|
26
26
|
var DataViewToolbar_1 = require("./DataViewToolbar");
|
|
27
27
|
Object.defineProperty(exports, "DataViewToolbar", { enumerable: true, get: function () { return __importDefault(DataViewToolbar_1).default; } });
|
|
28
28
|
__exportStar(require("./DataViewToolbar"), exports);
|
|
29
|
+
var DataViewTh_1 = require("./DataViewTh");
|
|
30
|
+
Object.defineProperty(exports, "DataViewTh", { enumerable: true, get: function () { return __importDefault(DataViewTh_1).default; } });
|
|
31
|
+
__exportStar(require("./DataViewTh"), exports);
|
|
29
32
|
var DataViewTextFilter_1 = require("./DataViewTextFilter");
|
|
30
33
|
Object.defineProperty(exports, "DataViewTextFilter", { enumerable: true, get: function () { return __importDefault(DataViewTextFilter_1).default; } });
|
|
31
34
|
__exportStar(require("./DataViewTextFilter"), exports);
|
|
@@ -41,6 +44,9 @@ __exportStar(require("./DataViewTableBasic"), exports);
|
|
|
41
44
|
var DataViewTable_1 = require("./DataViewTable");
|
|
42
45
|
Object.defineProperty(exports, "DataViewTable", { enumerable: true, get: function () { return __importDefault(DataViewTable_1).default; } });
|
|
43
46
|
__exportStar(require("./DataViewTable"), exports);
|
|
47
|
+
var DataViewFilters_1 = require("./DataViewFilters");
|
|
48
|
+
Object.defineProperty(exports, "DataViewFilters", { enumerable: true, get: function () { return __importDefault(DataViewFilters_1).default; } });
|
|
49
|
+
__exportStar(require("./DataViewFilters"), exports);
|
|
44
50
|
var DataViewEventsContext_1 = require("./DataViewEventsContext");
|
|
45
51
|
Object.defineProperty(exports, "DataViewEventsContext", { enumerable: true, get: function () { return __importDefault(DataViewEventsContext_1).default; } });
|
|
46
52
|
__exportStar(require("./DataViewEventsContext"), exports);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"main":"../../cjs/DataViewTh/index.js","module":"../../esm/DataViewTh/index.js","typings":"../../esm/DataViewTh/index.d.ts"}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"DataView": "dist/dynamic/DataView",
|
|
3
|
+
"DataViewCheckboxFilter": "dist/dynamic/DataViewCheckboxFilter",
|
|
4
|
+
"DataViewCheckboxFilterProps": "dist/dynamic/DataViewCheckboxFilter",
|
|
5
|
+
"DataViewEvent": "dist/dynamic/DataViewEventsContext",
|
|
6
|
+
"DataViewEventsContext": "dist/dynamic/DataViewEventsContext",
|
|
7
|
+
"DataViewEventsContextValue": "dist/dynamic/DataViewEventsContext",
|
|
8
|
+
"DataViewEventsProvider": "dist/dynamic/DataViewEventsContext",
|
|
9
|
+
"DataViewFilterOption": "dist/dynamic/DataViewFilters",
|
|
10
|
+
"DataViewFilters": "dist/dynamic/DataViewFilters",
|
|
11
|
+
"DataViewFiltersProps": "dist/dynamic/DataViewFilters",
|
|
12
|
+
"DataViewImpementationProps": "dist/dynamic/DataView",
|
|
13
|
+
"DataViewPaginationProps": "dist/dynamic/Hooks",
|
|
14
|
+
"DataViewProps": "dist/dynamic/DataView",
|
|
15
|
+
"DataViewSelection": "dist/dynamic/InternalContext",
|
|
16
|
+
"DataViewSortConfig": "dist/dynamic/Hooks",
|
|
17
|
+
"DataViewSortParams": "dist/dynamic/Hooks",
|
|
18
|
+
"DataViewState": "dist/dynamic/DataView",
|
|
19
|
+
"DataViewTable": "dist/dynamic/DataViewTable",
|
|
20
|
+
"DataViewTableBasic": "dist/dynamic/DataViewTableBasic",
|
|
21
|
+
"DataViewTableBasicProps": "dist/dynamic/DataViewTableBasic",
|
|
22
|
+
"DataViewTableHead": "dist/dynamic/DataViewTableHead",
|
|
23
|
+
"DataViewTableHeadProps": "dist/dynamic/DataViewTableHead",
|
|
24
|
+
"DataViewTableProps": "dist/dynamic/DataViewTable",
|
|
25
|
+
"DataViewTableTree": "dist/dynamic/DataViewTableTree",
|
|
26
|
+
"DataViewTableTreeProps": "dist/dynamic/DataViewTableTree",
|
|
27
|
+
"DataViewTd": "dist/dynamic/DataViewTable",
|
|
28
|
+
"DataViewTextFilter": "dist/dynamic/DataViewTextFilter",
|
|
29
|
+
"DataViewTextFilterProps": "dist/dynamic/DataViewTextFilter",
|
|
30
|
+
"DataViewTh": "dist/dynamic/DataViewTh",
|
|
31
|
+
"DataViewThProps": "dist/dynamic/DataViewTh",
|
|
32
|
+
"DataViewThResizableProps": "dist/dynamic/DataViewTh",
|
|
33
|
+
"DataViewToolbar": "dist/dynamic/DataViewToolbar",
|
|
34
|
+
"DataViewToolbarProps": "dist/dynamic/DataViewToolbar",
|
|
35
|
+
"DataViewTr": "dist/dynamic/DataViewTable",
|
|
36
|
+
"DataViewTrObject": "dist/dynamic/DataViewTable",
|
|
37
|
+
"DataViewTrTree": "dist/dynamic/DataViewTable",
|
|
38
|
+
"EventTypes": "dist/dynamic/DataViewEventsContext",
|
|
39
|
+
"InternalContext": "dist/dynamic/InternalContext",
|
|
40
|
+
"InternalContextProps": "dist/dynamic/InternalContext",
|
|
41
|
+
"InternalContextProvider": "dist/dynamic/InternalContext",
|
|
42
|
+
"InternalContextValue": "dist/dynamic/InternalContext",
|
|
43
|
+
"InternalProviderProps": "dist/dynamic/InternalContext",
|
|
44
|
+
"PaginationParams": "dist/dynamic/Hooks",
|
|
45
|
+
"UseDataViewFiltersProps": "dist/dynamic/Hooks",
|
|
46
|
+
"UseDataViewPaginationProps": "dist/dynamic/Hooks",
|
|
47
|
+
"UseDataViewSelectionProps": "dist/dynamic/Hooks",
|
|
48
|
+
"UseDataViewSortProps": "dist/dynamic/Hooks",
|
|
49
|
+
"isDataViewFilterOption": "dist/dynamic/DataViewCheckboxFilter",
|
|
50
|
+
"isDataViewTdObject": "dist/dynamic/DataViewTable",
|
|
51
|
+
"isDataViewThObject": "dist/dynamic/DataViewTable",
|
|
52
|
+
"isDataViewTrObject": "dist/dynamic/DataViewTable",
|
|
53
|
+
"useDataViewEventsContext": "dist/dynamic/DataViewEventsContext",
|
|
54
|
+
"useDataViewFilters": "dist/dynamic/Hooks",
|
|
55
|
+
"useDataViewPagination": "dist/dynamic/Hooks",
|
|
56
|
+
"useDataViewSelection": "dist/dynamic/Hooks",
|
|
57
|
+
"useDataViewSort": "dist/dynamic/Hooks",
|
|
58
|
+
"useInternalContext": "dist/dynamic/InternalContext"
|
|
59
|
+
}
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -3,6 +3,8 @@ export * from './InternalContext';
|
|
|
3
3
|
export * from './Hooks';
|
|
4
4
|
export { default as DataViewToolbar } from './DataViewToolbar';
|
|
5
5
|
export * from './DataViewToolbar';
|
|
6
|
+
export { default as DataViewTh } from './DataViewTh';
|
|
7
|
+
export * from './DataViewTh';
|
|
6
8
|
export { default as DataViewTextFilter } from './DataViewTextFilter';
|
|
7
9
|
export * from './DataViewTextFilter';
|
|
8
10
|
export { default as DataViewTableTree } from './DataViewTableTree';
|
|
@@ -13,6 +15,8 @@ export { default as DataViewTableBasic } from './DataViewTableBasic';
|
|
|
13
15
|
export * from './DataViewTableBasic';
|
|
14
16
|
export { default as DataViewTable } from './DataViewTable';
|
|
15
17
|
export * from './DataViewTable';
|
|
18
|
+
export { default as DataViewFilters } from './DataViewFilters';
|
|
19
|
+
export * from './DataViewFilters';
|
|
16
20
|
export { default as DataViewEventsContext } from './DataViewEventsContext';
|
|
17
21
|
export * from './DataViewEventsContext';
|
|
18
22
|
export { default as DataViewCheckboxFilter } from './DataViewCheckboxFilter';
|
package/dist/esm/index.js
CHANGED
|
@@ -4,6 +4,8 @@ export * from './InternalContext';
|
|
|
4
4
|
export * from './Hooks';
|
|
5
5
|
export { default as DataViewToolbar } from './DataViewToolbar';
|
|
6
6
|
export * from './DataViewToolbar';
|
|
7
|
+
export { default as DataViewTh } from './DataViewTh';
|
|
8
|
+
export * from './DataViewTh';
|
|
7
9
|
export { default as DataViewTextFilter } from './DataViewTextFilter';
|
|
8
10
|
export * from './DataViewTextFilter';
|
|
9
11
|
export { default as DataViewTableTree } from './DataViewTableTree';
|
|
@@ -14,6 +16,8 @@ export { default as DataViewTableBasic } from './DataViewTableBasic';
|
|
|
14
16
|
export * from './DataViewTableBasic';
|
|
15
17
|
export { default as DataViewTable } from './DataViewTable';
|
|
16
18
|
export * from './DataViewTable';
|
|
19
|
+
export { default as DataViewFilters } from './DataViewFilters';
|
|
20
|
+
export * from './DataViewFilters';
|
|
17
21
|
export { default as DataViewEventsContext } from './DataViewEventsContext';
|
|
18
22
|
export * from './DataViewEventsContext';
|
|
19
23
|
export { default as DataViewCheckboxFilter } from './DataViewCheckboxFilter';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["../src/index.ts","../src/DataView/DataView.test.tsx","../src/DataView/DataView.tsx","../src/DataView/index.ts","../src/DataViewCheckboxFilter/DataViewCheckboxFilter.test.tsx","../src/DataViewCheckboxFilter/DataViewCheckboxFilter.tsx","../src/DataViewCheckboxFilter/index.ts","../src/DataViewEventsContext/DataViewEventsContext.test.tsx","../src/DataViewEventsContext/DataViewEventsContext.tsx","../src/DataViewEventsContext/index.ts","../src/DataViewFilters/DataViewFilters.test.tsx","../src/DataViewFilters/DataViewFilters.tsx","../src/DataViewFilters/index.tsx","../src/DataViewTable/DataViewTable.test.tsx","../src/DataViewTable/DataViewTable.tsx","../src/DataViewTable/index.ts","../src/DataViewTableBasic/DataViewTableBasic.test.tsx","../src/DataViewTableBasic/DataViewTableBasic.tsx","../src/DataViewTableBasic/index.ts","../src/DataViewTableHead/DataViewTableHead.test.tsx","../src/DataViewTableHead/DataViewTableHead.tsx","../src/DataViewTableHead/index.ts","../src/DataViewTableTree/DataViewTableTree.test.tsx","../src/DataViewTableTree/DataViewTableTree.tsx","../src/DataViewTableTree/index.ts","../src/DataViewTextFilter/DataViewTextFilter.test.tsx","../src/DataViewTextFilter/DataViewTextFilter.tsx","../src/DataViewTextFilter/index.ts","../src/DataViewTh/DataViewTh.tsx","../src/DataViewToolbar/DataViewToolbar.test.tsx","../src/DataViewToolbar/DataViewToolbar.tsx","../src/DataViewToolbar/index.ts","../src/Hooks/filters.test.tsx","../src/Hooks/filters.ts","../src/Hooks/index.ts","../src/Hooks/pagination.test.tsx","../src/Hooks/pagination.ts","../src/Hooks/selection.test.tsx","../src/Hooks/selection.ts","../src/Hooks/sort.test.tsx","../src/Hooks/sort.ts","../src/InternalContext/InternalContext.test.tsx","../src/InternalContext/InternalContext.tsx","../src/InternalContext/index.ts"],"version":"5.9.3"}
|
|
1
|
+
{"root":["../src/index.ts","../src/DataView/DataView.test.tsx","../src/DataView/DataView.tsx","../src/DataView/index.ts","../src/DataViewCheckboxFilter/DataViewCheckboxFilter.test.tsx","../src/DataViewCheckboxFilter/DataViewCheckboxFilter.tsx","../src/DataViewCheckboxFilter/index.ts","../src/DataViewEventsContext/DataViewEventsContext.test.tsx","../src/DataViewEventsContext/DataViewEventsContext.tsx","../src/DataViewEventsContext/index.ts","../src/DataViewFilters/DataViewFilters.test.tsx","../src/DataViewFilters/DataViewFilters.tsx","../src/DataViewFilters/index.tsx","../src/DataViewTable/DataViewTable.test.tsx","../src/DataViewTable/DataViewTable.tsx","../src/DataViewTable/index.ts","../src/DataViewTableBasic/DataViewTableBasic.test.tsx","../src/DataViewTableBasic/DataViewTableBasic.tsx","../src/DataViewTableBasic/index.ts","../src/DataViewTableHead/DataViewTableHead.test.tsx","../src/DataViewTableHead/DataViewTableHead.tsx","../src/DataViewTableHead/index.ts","../src/DataViewTableTree/DataViewTableTree.test.tsx","../src/DataViewTableTree/DataViewTableTree.tsx","../src/DataViewTableTree/index.ts","../src/DataViewTextFilter/DataViewTextFilter.test.tsx","../src/DataViewTextFilter/DataViewTextFilter.tsx","../src/DataViewTextFilter/index.ts","../src/DataViewTh/DataViewTh.tsx","../src/DataViewTh/index.ts","../src/DataViewToolbar/DataViewToolbar.test.tsx","../src/DataViewToolbar/DataViewToolbar.tsx","../src/DataViewToolbar/index.ts","../src/Hooks/filters.test.tsx","../src/Hooks/filters.ts","../src/Hooks/index.ts","../src/Hooks/pagination.test.tsx","../src/Hooks/pagination.ts","../src/Hooks/selection.test.tsx","../src/Hooks/selection.ts","../src/Hooks/sort.test.tsx","../src/Hooks/sort.ts","../src/InternalContext/InternalContext.test.tsx","../src/InternalContext/InternalContext.tsx","../src/InternalContext/index.ts"],"version":"5.9.3"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
const fse = require('fs-extra');
|
|
2
2
|
const { globSync } = require('glob');
|
|
3
3
|
const path = require('path');
|
|
4
|
+
const { default: getDynamicModuleMap } = require('../../scripts/parse-dynamic-modules.mjs');
|
|
4
5
|
|
|
5
6
|
const root = process.cwd();
|
|
6
7
|
|
|
@@ -60,12 +61,29 @@ async function generatePackages(files) {
|
|
|
60
61
|
return Promise.all(cmds);
|
|
61
62
|
}
|
|
62
63
|
|
|
64
|
+
async function generateDynamicModuleMap() {
|
|
65
|
+
const moduleMap = getDynamicModuleMap(root);
|
|
66
|
+
// eslint-disable-next-line no-console
|
|
67
|
+
console.log('Generating dynamic module map for', Object.keys(moduleMap).length, 'modules');
|
|
68
|
+
|
|
69
|
+
if (Object.keys(moduleMap).length === 0) {
|
|
70
|
+
return Promise.resolve();
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
const moduleMapSorted = Object.keys(moduleMap)
|
|
74
|
+
.sort()
|
|
75
|
+
.reduce((acc, key) => ({ ...acc, [key]: moduleMap[key] }), {});
|
|
76
|
+
|
|
77
|
+
return fse.writeJSON(path.resolve(root, 'dist/dynamic-modules.json'), moduleMapSorted, { spaces: 2 });
|
|
78
|
+
}
|
|
79
|
+
|
|
63
80
|
async function run(files) {
|
|
64
81
|
try {
|
|
65
82
|
await generatePackages(files);
|
|
66
83
|
if (indexTypings.length === 1) {
|
|
67
84
|
copyTypings(indexTypings, root);
|
|
68
85
|
}
|
|
86
|
+
await generateDynamicModuleMap();
|
|
69
87
|
} catch (error) {
|
|
70
88
|
// eslint-disable-next-line no-console
|
|
71
89
|
console.error(error);
|
package/generate-index.js
CHANGED
|
@@ -6,7 +6,7 @@ const root = process.cwd();
|
|
|
6
6
|
|
|
7
7
|
const ENV_AGNOSTIC_ROOT = `${root}/src`
|
|
8
8
|
|
|
9
|
-
const sourceFiles = globSync(path.resolve(__dirname, './src/*/index.ts'))
|
|
9
|
+
const sourceFiles = globSync(path.resolve(__dirname, './src/*/index.{ts,tsx}'))
|
|
10
10
|
|
|
11
11
|
async function generateIndex(files) {
|
|
12
12
|
// ensure the dynamic root exists
|
|
@@ -19,7 +19,7 @@ async function generateIndex(files) {
|
|
|
19
19
|
stream.write('// this file is autogenerated by generate-index.js, modifying it manually will have no effect\n');
|
|
20
20
|
|
|
21
21
|
files.forEach(file => {
|
|
22
|
-
const name = file.replace(
|
|
22
|
+
const name = file.replace(/\/index\.(ts|tsx)$/, '').split('/').pop();
|
|
23
23
|
// do not generate default exports for Hooks/
|
|
24
24
|
name !== 'Hooks' && stream.write(`\nexport { default as ${name} } from './${name}';\n`);
|
|
25
25
|
stream.write(`export * from './${name}';\n`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@patternfly/react-data-view",
|
|
3
|
-
"version": "6.4.0-prerelease.
|
|
3
|
+
"version": "6.4.0-prerelease.8",
|
|
4
4
|
"description": "Data view used for Red Hat projects.",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -47,14 +47,14 @@
|
|
|
47
47
|
"@patternfly/patternfly": "^6.4.0",
|
|
48
48
|
"@patternfly/react-code-editor": "^6.4.0",
|
|
49
49
|
"@patternfly/patternfly-a11y": "^5.1.0",
|
|
50
|
-
"@types/react": "^18.3.
|
|
50
|
+
"@types/react": "^18.3.27",
|
|
51
51
|
"@types/react-dom": "^18.3.7",
|
|
52
52
|
"@types/react-router-dom": "^5.3.3",
|
|
53
53
|
"react": "^18.3.1",
|
|
54
54
|
"react-dom": "^18.3.1",
|
|
55
|
-
"react-router": "^6.30.
|
|
56
|
-
"react-router-dom": "^6.30.
|
|
57
|
-
"rimraf": "^6.
|
|
58
|
-
"typescript": "^5.9.
|
|
55
|
+
"react-router": "^6.30.2",
|
|
56
|
+
"react-router-dom": "^6.30.2",
|
|
57
|
+
"rimraf": "^6.1.2",
|
|
58
|
+
"typescript": "^5.9.3"
|
|
59
59
|
}
|
|
60
60
|
}
|
package/src/index.ts
CHANGED
|
@@ -7,6 +7,9 @@ export * from './Hooks';
|
|
|
7
7
|
export { default as DataViewToolbar } from './DataViewToolbar';
|
|
8
8
|
export * from './DataViewToolbar';
|
|
9
9
|
|
|
10
|
+
export { default as DataViewTh } from './DataViewTh';
|
|
11
|
+
export * from './DataViewTh';
|
|
12
|
+
|
|
10
13
|
export { default as DataViewTextFilter } from './DataViewTextFilter';
|
|
11
14
|
export * from './DataViewTextFilter';
|
|
12
15
|
|
|
@@ -22,6 +25,9 @@ export * from './DataViewTableBasic';
|
|
|
22
25
|
export { default as DataViewTable } from './DataViewTable';
|
|
23
26
|
export * from './DataViewTable';
|
|
24
27
|
|
|
28
|
+
export { default as DataViewFilters } from './DataViewFilters';
|
|
29
|
+
export * from './DataViewFilters';
|
|
30
|
+
|
|
25
31
|
export { default as DataViewEventsContext } from './DataViewEventsContext';
|
|
26
32
|
export * from './DataViewEventsContext';
|
|
27
33
|
|