@norges-domstoler/dds-components 14.4.0 → 14.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.
- package/dist/index.d.mts +1468 -1191
- package/dist/index.d.ts +1468 -1191
- package/dist/index.js +8141 -7714
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8462 -8030
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -7
- package/src/index.ts +0 -52
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@norges-domstoler/dds-components",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.5.0",
|
|
4
4
|
"description": "React components used in Elsa - domstolenes designsystem",
|
|
5
5
|
"author": "Elsa team",
|
|
6
6
|
"license": "MIT",
|
|
@@ -14,7 +14,9 @@
|
|
|
14
14
|
"files": [
|
|
15
15
|
"dist"
|
|
16
16
|
],
|
|
17
|
-
"main": "
|
|
17
|
+
"main": "dist/index.js",
|
|
18
|
+
"module": "dist/index.mjs",
|
|
19
|
+
"types": "dist/index.d.ts",
|
|
18
20
|
"homepage": "https://design.domstol.no",
|
|
19
21
|
"keywords": [
|
|
20
22
|
"dds",
|
|
@@ -35,7 +37,6 @@
|
|
|
35
37
|
"@testing-library/user-event": "^14.5.2",
|
|
36
38
|
"@types/react": "^18.2.48",
|
|
37
39
|
"@types/react-dom": "^18.2.18",
|
|
38
|
-
"clean-package": "2.2.0",
|
|
39
40
|
"csstype": "3.1.2",
|
|
40
41
|
"jsdom": "^23.2.0",
|
|
41
42
|
"react": "^18.2.0",
|
|
@@ -45,12 +46,12 @@
|
|
|
45
46
|
"typescript": "^5.3.3",
|
|
46
47
|
"vite": "^5.0.11",
|
|
47
48
|
"vitest": "^1.2.0",
|
|
48
|
-
"@norges-domstoler/dds-design-tokens": "4.0.
|
|
49
|
-
"@norges-domstoler/storybook-components": "0.0.
|
|
49
|
+
"@norges-domstoler/dds-design-tokens": "4.0.2",
|
|
50
|
+
"@norges-domstoler/storybook-components": "0.0.6"
|
|
50
51
|
},
|
|
51
52
|
"peerDependencies": {
|
|
52
53
|
"@internationalized/date": "^3",
|
|
53
|
-
"@norges-domstoler/dds-design-tokens": "
|
|
54
|
+
"@norges-domstoler/dds-design-tokens": ">=4.0.0",
|
|
54
55
|
"react": "^16 || ^17 || ^18",
|
|
55
56
|
"react-dom": "^16 || ^17 || ^18",
|
|
56
57
|
"styled-components": "^5 || ^6"
|
|
@@ -71,7 +72,6 @@
|
|
|
71
72
|
"publishConfig": {
|
|
72
73
|
"provenance": true
|
|
73
74
|
},
|
|
74
|
-
"clean-package": "../../clean-package.config.json",
|
|
75
75
|
"scripts": {
|
|
76
76
|
"test": "vitest run",
|
|
77
77
|
"test:watch": "vitest watch",
|
package/src/index.ts
DELETED
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
export * from './components/helpers';
|
|
2
|
-
export * from './components/Icon/icons';
|
|
3
|
-
export * as icons from './components/Icon/icons';
|
|
4
|
-
export * from './hooks';
|
|
5
|
-
export * from './types';
|
|
6
|
-
export { cn } from './utils/dom';
|
|
7
|
-
|
|
8
|
-
export * from './components/AppShell';
|
|
9
|
-
export * from './components/SelectionControl/RadioButton';
|
|
10
|
-
export * from './components/SelectionControl/Checkbox';
|
|
11
|
-
export * from './components/Button';
|
|
12
|
-
export * from './components/TextInput';
|
|
13
|
-
export * from './components/Select';
|
|
14
|
-
export * from './components/GlobalMessage';
|
|
15
|
-
export * from './components/LocalMessage';
|
|
16
|
-
export * from './components/Search';
|
|
17
|
-
export * from './components/Table/normal';
|
|
18
|
-
export * from './components/Breadcrumbs';
|
|
19
|
-
export * from './components/Pagination';
|
|
20
|
-
export * from './components/Divider';
|
|
21
|
-
export * from './components/List';
|
|
22
|
-
export * from './components/DescriptionList';
|
|
23
|
-
export * from './components/Spinner';
|
|
24
|
-
export * from './components/Card';
|
|
25
|
-
export * from './components/InternalHeader';
|
|
26
|
-
export * from './components/SkipToContent';
|
|
27
|
-
export * from './components/Tooltip';
|
|
28
|
-
export * from './components/Modal';
|
|
29
|
-
export * from './components/Drawer';
|
|
30
|
-
export * from './components/date-inputs';
|
|
31
|
-
export * from './components/OverflowMenu';
|
|
32
|
-
export * from './components/Popover';
|
|
33
|
-
export * from './components/InputMessage';
|
|
34
|
-
export * from './components/ToggleButton';
|
|
35
|
-
export * from './components/Tabs';
|
|
36
|
-
export * from './components/Tag';
|
|
37
|
-
export * from './components/Chip';
|
|
38
|
-
export * from './components/VisuallyHidden';
|
|
39
|
-
export * from './components/ScrollableContainer';
|
|
40
|
-
export * from './components/ToggleBar';
|
|
41
|
-
export * from './components/Grid';
|
|
42
|
-
export * from './components/Icon';
|
|
43
|
-
export * from './components/ProgressTracker';
|
|
44
|
-
export * from './components/InlineEdit';
|
|
45
|
-
export * from './components/TextArea';
|
|
46
|
-
export * from './components/SplitButton';
|
|
47
|
-
export * from './components/Stack';
|
|
48
|
-
export * from './components/FileUploader';
|
|
49
|
-
export * from './components/EmptyContent';
|
|
50
|
-
export * from './components/BackLink';
|
|
51
|
-
export * from './components/Feedback';
|
|
52
|
-
export * from './components/Typography';
|