@norges-domstoler/dds-components 10.4.1 → 10.5.0

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.
@@ -0,0 +1,2 @@
1
+ import { SvgProps } from '../utils/propTypes';
2
+ export declare function DoubleChevronLeftIcon(props: SvgProps): JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { SvgProps } from '../utils/propTypes';
2
+ export declare function DoubleChevronRightIcon(props: SvgProps): JSX.Element;
@@ -37,6 +37,8 @@ export * from './copy';
37
37
  export * from './court';
38
38
  export * from './dateRange';
39
39
  export * from './deaths';
40
+ export * from './doubleChevronLeft';
41
+ export * from './doubleChevronRight';
40
42
  export * from './download';
41
43
  export * from './downloadDone';
42
44
  export * from './dragHandle';
package/dist/cjs/index.js CHANGED
@@ -1262,6 +1262,22 @@ function DeathsIcon(props) {
1262
1262
  }));
1263
1263
  }
1264
1264
 
1265
+ function DoubleChevronLeftIcon(props) {
1266
+ return jsxRuntime.jsx(SvgWrapper, Object.assign({}, props, {
1267
+ children: jsxRuntime.jsx("path", {
1268
+ d: "M 18.414,7.41398L 17,6L 11,12L 17,18L 18.414,16.586L 13.828,12L 18.414,7.41398 Z M 12.414,7.41398L 11,6L 5.00001,12L 11,18L 12.414,16.586L 7.82801,12L 12.414,7.41398 Z "
1269
+ })
1270
+ }));
1271
+ }
1272
+
1273
+ function DoubleChevronRightIcon(props) {
1274
+ return jsxRuntime.jsx(SvgWrapper, Object.assign({}, props, {
1275
+ children: jsxRuntime.jsx("path", {
1276
+ d: "M 5.586,7.41398L 7,6L 13,12L 7,18L 5.586,16.586L 10.172,12L 5.586,7.41398 Z M 11.586,7.41399L 13,6.00001L 19,12L 13,18L 11.586,16.586L 16.172,12L 11.586,7.41399 Z "
1277
+ })
1278
+ }));
1279
+ }
1280
+
1265
1281
  function DownloadIcon(props) {
1266
1282
  return jsxRuntime.jsx(SvgWrapper, Object.assign({}, props, {
1267
1283
  children: jsxRuntime.jsx("path", {
@@ -11548,6 +11564,8 @@ exports.DescriptionListDesc = DescriptionListDesc;
11548
11564
  exports.DescriptionListGroup = DescriptionListGroup;
11549
11565
  exports.DescriptionListTerm = DescriptionListTerm;
11550
11566
  exports.Divider = Divider;
11567
+ exports.DoubleChevronLeftIcon = DoubleChevronLeftIcon;
11568
+ exports.DoubleChevronRightIcon = DoubleChevronRightIcon;
11551
11569
  exports.DownloadDoneIcon = DownloadDoneIcon;
11552
11570
  exports.DownloadIcon = DownloadIcon;
11553
11571
  exports.DragHandleIcon = DragHandleIcon;
@@ -0,0 +1,2 @@
1
+ import { SvgProps } from '../utils/propTypes';
2
+ export declare function DoubleChevronLeftIcon(props: SvgProps): JSX.Element;
@@ -0,0 +1,12 @@
1
+ import { jsx } from 'react/jsx-runtime';
2
+ import { SvgWrapper } from '../utils/SvgWrapper.js';
3
+
4
+ function DoubleChevronLeftIcon(props) {
5
+ return jsx(SvgWrapper, Object.assign({}, props, {
6
+ children: jsx("path", {
7
+ d: "M 18.414,7.41398L 17,6L 11,12L 17,18L 18.414,16.586L 13.828,12L 18.414,7.41398 Z M 12.414,7.41398L 11,6L 5.00001,12L 11,18L 12.414,16.586L 7.82801,12L 12.414,7.41398 Z "
8
+ })
9
+ }));
10
+ }
11
+
12
+ export { DoubleChevronLeftIcon };
@@ -0,0 +1,2 @@
1
+ import { SvgProps } from '../utils/propTypes';
2
+ export declare function DoubleChevronRightIcon(props: SvgProps): JSX.Element;
@@ -0,0 +1,12 @@
1
+ import { jsx } from 'react/jsx-runtime';
2
+ import { SvgWrapper } from '../utils/SvgWrapper.js';
3
+
4
+ function DoubleChevronRightIcon(props) {
5
+ return jsx(SvgWrapper, Object.assign({}, props, {
6
+ children: jsx("path", {
7
+ d: "M 5.586,7.41398L 7,6L 13,12L 7,18L 5.586,16.586L 10.172,12L 5.586,7.41398 Z M 11.586,7.41399L 13,6.00001L 19,12L 13,18L 11.586,16.586L 16.172,12L 11.586,7.41399 Z "
8
+ })
9
+ }));
10
+ }
11
+
12
+ export { DoubleChevronRightIcon };
@@ -37,6 +37,8 @@ export * from './copy';
37
37
  export * from './court';
38
38
  export * from './dateRange';
39
39
  export * from './deaths';
40
+ export * from './doubleChevronLeft';
41
+ export * from './doubleChevronRight';
40
42
  export * from './download';
41
43
  export * from './downloadDone';
42
44
  export * from './dragHandle';
package/dist/index.js CHANGED
@@ -100,6 +100,8 @@ export { CopyIcon } from './icons/tsx/copy.js';
100
100
  export { CourtIcon } from './icons/tsx/court.js';
101
101
  export { DateRangeIcon } from './icons/tsx/dateRange.js';
102
102
  export { DeathsIcon } from './icons/tsx/deaths.js';
103
+ export { DoubleChevronLeftIcon } from './icons/tsx/doubleChevronLeft.js';
104
+ export { DoubleChevronRightIcon } from './icons/tsx/doubleChevronRight.js';
103
105
  export { DownloadIcon } from './icons/tsx/download.js';
104
106
  export { DownloadDoneIcon } from './icons/tsx/downloadDone.js';
105
107
  export { DragHandleIcon } from './icons/tsx/dragHandle.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@norges-domstoler/dds-components",
3
- "version": "10.4.1",
3
+ "version": "10.5.0",
4
4
  "description": "React components used in Elsa - domstolenes designsystem",
5
5
  "author": "Elsa team",
6
6
  "license": "MIT",