@navikt/ds-react 2.8.11 → 2.8.12

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.
@@ -1,6 +1,6 @@
1
1
  import React from "react";
2
2
  import { RowProps } from "./Row";
3
- export interface ExpandableRowProps extends RowProps {
3
+ export interface ExpandableRowProps extends Omit<RowProps, "content"> {
4
4
  /**
5
5
  * Content of the expanded row
6
6
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@navikt/ds-react",
3
- "version": "2.8.11",
3
+ "version": "2.8.12",
4
4
  "description": "Aksel react-components for NAV designsystem",
5
5
  "author": "Aksel | NAV designsystem team",
6
6
  "license": "MIT",
@@ -37,8 +37,8 @@
37
37
  },
38
38
  "dependencies": {
39
39
  "@floating-ui/react": "0.17.0",
40
- "@navikt/aksel-icons": "^2.8.11",
41
- "@navikt/ds-icons": "^2.8.11",
40
+ "@navikt/aksel-icons": "^2.8.12",
41
+ "@navikt/ds-icons": "^2.8.12",
42
42
  "@radix-ui/react-tabs": "1.0.0",
43
43
  "@radix-ui/react-toggle-group": "1.0.0",
44
44
  "clsx": "^1.2.1",
@@ -6,7 +6,7 @@ import AnimateHeight from "../util/AnimateHeight";
6
6
  import DataCell from "./DataCell";
7
7
  import Row, { RowProps } from "./Row";
8
8
 
9
- export interface ExpandableRowProps extends RowProps {
9
+ export interface ExpandableRowProps extends Omit<RowProps, "content"> {
10
10
  /**
11
11
  * Content of the expanded row
12
12
  */