grep-components 2.12.0 → 2.13.0-GREPF-2676.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grep-components",
3
- "version": "2.12.0",
3
+ "version": "2.13.0-GREPF-2676.1",
4
4
  "description": "Grep komponentbibliotek",
5
5
  "repository": {
6
6
  "type": "git",
@@ -94,7 +94,9 @@
94
94
  "@chromatic-com/storybook": "^4.0.1",
95
95
  "@commitlint/cli": "^19.3.0",
96
96
  "@commitlint/config-conventional": "^19.2.2",
97
- "@hello-pangea/dnd": "^18.0.1",
97
+ "@dnd-kit/core": "^6.3.1",
98
+ "@dnd-kit/modifiers": "^9.0.0",
99
+ "@dnd-kit/sortable": "^10.0.0",
98
100
  "@lexical/html": "^0.35.0",
99
101
  "@lexical/utils": "^0.35.0",
100
102
  "@rollup/plugin-commonjs": "^28.0.2",
@@ -1,7 +0,0 @@
1
- import React, { JSX } from 'react';
2
- import { TableCellProps } from '@mui/material/TableCell';
3
- export interface Properties extends TableCellProps {
4
- locked: boolean;
5
- }
6
- export declare function SortableTableCell({ locked, children, ...props }: React.PropsWithChildren<Properties>): JSX.Element;
7
- export default SortableTableCell;
@@ -1,11 +0,0 @@
1
- import { JSX } from 'react';
2
- import { CellNode } from '..';
3
- interface Properties<T> {
4
- id: string | number;
5
- item: T;
6
- index: number;
7
- disabled?: boolean;
8
- render: (item: T) => CellNode[];
9
- }
10
- export declare function SortableTableRow<T>({ item, id, index, render, disabled, }: Properties<T>): JSX.Element;
11
- export default SortableTableRow;