@equinor/eds-data-grid-react 0.9.1 → 1.0.1
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.
|
@@ -199,7 +199,7 @@ function FilterWrapper({
|
|
|
199
199
|
} = useTableContext();
|
|
200
200
|
const firstValue = table.getPreFilteredRowModel().flatRows[0]?.getValue(column.id);
|
|
201
201
|
const [open, setOpen] = react.useState(false);
|
|
202
|
-
const filterIconRef = react.useRef();
|
|
202
|
+
const filterIconRef = react.useRef(null);
|
|
203
203
|
const togglePopover = event => {
|
|
204
204
|
event.stopPropagation();
|
|
205
205
|
setOpen(!open);
|
|
@@ -18,7 +18,7 @@ function FilterWrapper({
|
|
|
18
18
|
} = useTableContext();
|
|
19
19
|
const firstValue = table.getPreFilteredRowModel().flatRows[0]?.getValue(column.id);
|
|
20
20
|
const [open, setOpen] = useState(false);
|
|
21
|
-
const filterIconRef = useRef();
|
|
21
|
+
const filterIconRef = useRef(null);
|
|
22
22
|
const togglePopover = event => {
|
|
23
23
|
event.stopPropagation();
|
|
24
24
|
setOpen(!open);
|
|
@@ -17,7 +17,7 @@ type Context<T> = {
|
|
|
17
17
|
};
|
|
18
18
|
export declare const EdsDataGridContext: import("react").Context<Context<any>>;
|
|
19
19
|
export declare function TableProvider<T>({ children, ...props }: Context<T> & {
|
|
20
|
-
children: ReactElement |
|
|
20
|
+
children: ReactElement | ReactElement[];
|
|
21
21
|
}): import("react/jsx-runtime").JSX.Element;
|
|
22
22
|
export declare const useTableContext: () => Context<any>;
|
|
23
23
|
export {};
|
|
@@ -1,18 +1,6 @@
|
|
|
1
1
|
import { ColumnPinningPosition } from '@tanstack/react-table';
|
|
2
2
|
export declare const FilterVisibility: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
3
|
-
export declare const TableCell: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<(
|
|
4
|
-
variant?: import("@equinor/eds-core-react/dist/types/components/Table/Table.types").Variants;
|
|
5
|
-
color?: import("@equinor/eds-core-react/dist/types/components/Table/Table.types").Colors;
|
|
6
|
-
sort?: React.AriaAttributes["aria-sort"];
|
|
7
|
-
} & import("react").TdHTMLAttributes<HTMLTableCellElement> & import("react").RefAttributes<HTMLTableCellElement>, "ref"> & {
|
|
8
|
-
ref?: import("react").Ref<HTMLTableCellElement>;
|
|
9
|
-
}) | (Omit<{
|
|
10
|
-
variant?: import("@equinor/eds-core-react/dist/types/components/Table/Table.types").Variants;
|
|
11
|
-
color?: import("@equinor/eds-core-react/dist/types/components/Table/Table.types").Colors;
|
|
12
|
-
sort?: React.AriaAttributes["aria-sort"];
|
|
13
|
-
} & import("react").ThHTMLAttributes<HTMLTableCellElement> & import("react").RefAttributes<HTMLTableCellElement>, "ref"> & {
|
|
14
|
-
ref?: import("react").Ref<HTMLTableCellElement>;
|
|
15
|
-
}), {
|
|
3
|
+
export declare const TableCell: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<(import("@equinor/eds-core-react").CellProps & import("react").RefAttributes<HTMLTableCellElement>) & import("styled-components/dist/types").BaseObject, {
|
|
16
4
|
$sticky: boolean;
|
|
17
5
|
$pinned: ColumnPinningPosition;
|
|
18
6
|
$offset: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equinor/eds-data-grid-react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "A feature-rich data-grid written in React, implementing the Equinor Design System",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"types": "dist/types/index.d.ts",
|
|
@@ -14,17 +14,17 @@
|
|
|
14
14
|
"email": "fg_eds@equinor.com"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"
|
|
18
|
-
"react": "
|
|
19
|
-
"
|
|
20
|
-
"
|
|
17
|
+
"react": "^19",
|
|
18
|
+
"react-dom": "^19",
|
|
19
|
+
"styled-components": "^6",
|
|
20
|
+
"@equinor/eds-core-react": "^1"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@tanstack/react-table": "^8.21.3",
|
|
24
24
|
"@tanstack/react-virtual": "^3.13.12",
|
|
25
|
-
"@equinor/eds-icons": "^0.
|
|
26
|
-
"@equinor/eds-
|
|
27
|
-
"@equinor/eds-
|
|
25
|
+
"@equinor/eds-icons": "^1.0.0",
|
|
26
|
+
"@equinor/eds-tokens": "1.1.2",
|
|
27
|
+
"@equinor/eds-utils": "^1.0.1"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@rollup/plugin-babel": "^6.0.4",
|
|
@@ -41,17 +41,18 @@
|
|
|
41
41
|
"@types/jest": "^29.5.14",
|
|
42
42
|
"@types/node": "^22.18.0",
|
|
43
43
|
"@types/ramda": "^0.30.2",
|
|
44
|
-
"@types/react": "^
|
|
45
|
-
"@types/react-dom": "^
|
|
44
|
+
"@types/react": "^19.1.12",
|
|
45
|
+
"@types/react-dom": "^19.1.9",
|
|
46
46
|
"babel-plugin-styled-components": "^2.1.4",
|
|
47
|
+
"eslint-plugin-storybook": "9.1.5",
|
|
47
48
|
"jest": "29.7.0",
|
|
48
49
|
"jest-environment-jsdom": "29.7.0",
|
|
49
50
|
"jest-styled-components": "^7.2.0",
|
|
50
51
|
"js-file-download": "^0.4.12",
|
|
51
52
|
"postcss": "^8.5.6",
|
|
52
53
|
"ramda": "^0.31.3",
|
|
53
|
-
"react": "^
|
|
54
|
-
"react-dom": "^
|
|
54
|
+
"react": "^19.1.1",
|
|
55
|
+
"react-dom": "^19.1.1",
|
|
55
56
|
"react-hook-form": "^7.62.0",
|
|
56
57
|
"rollup": "^4.50.0",
|
|
57
58
|
"rollup-plugin-delete": "^2.2.0",
|
|
@@ -61,14 +62,13 @@
|
|
|
61
62
|
"ts-jest": "29.4.0",
|
|
62
63
|
"ts-node": "10.9.2",
|
|
63
64
|
"tsc-watch": "^6.3.1",
|
|
64
|
-
"typescript": "~5.8.3"
|
|
65
|
-
"eslint-plugin-storybook": "9.1.5"
|
|
65
|
+
"typescript": "~5.8.3"
|
|
66
66
|
},
|
|
67
67
|
"homepage": "https://eds.equinor.com",
|
|
68
68
|
"repository": {
|
|
69
69
|
"type": "git",
|
|
70
70
|
"url": "https://github.com/equinor/design-system",
|
|
71
|
-
"directory": "packages/eds-
|
|
71
|
+
"directory": "packages/eds-data-grid-react"
|
|
72
72
|
},
|
|
73
73
|
"bugs": {
|
|
74
74
|
"url": "https://github.com/equinor/design-system/issues"
|