@digdir/designsystemet-react 0.0.0-test-20250715115803 → 0.0.0-test-20250715124908
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/cjs/components/suggestion/index.js +0 -59
- package/dist/esm/components/suggestion/index.js +0 -59
- package/dist/types/components/suggestion/index.d.ts +59 -0
- package/dist/types/components/suggestion/index.d.ts.map +1 -1
- package/dist/types/components/suggestion/suggestion.d.ts +16 -6
- package/dist/types/components/suggestion/suggestion.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -24,70 +24,11 @@ var suggestionOption = require('./suggestion-option.js');
|
|
|
24
24
|
* </Suggestion>
|
|
25
25
|
*/
|
|
26
26
|
const EXPERIMENTAL_Suggestion = Object.assign(suggestion.Suggestion, {
|
|
27
|
-
/**
|
|
28
|
-
* @deprecated Suggestion.Chips is deprecated, use `renderSelected` on `Suggestion` instead
|
|
29
|
-
*/
|
|
30
27
|
Chips: suggestionChips.SuggestionChips,
|
|
31
|
-
/**
|
|
32
|
-
* Component that provides a Suggestion list.
|
|
33
|
-
*
|
|
34
|
-
* Place as a descendant of `Suggestion`
|
|
35
|
-
*
|
|
36
|
-
* @example
|
|
37
|
-
* <Suggestion>
|
|
38
|
-
* <Suggestion.Input />
|
|
39
|
-
* <Suggestion.List />
|
|
40
|
-
* </Suggestion>
|
|
41
|
-
*/
|
|
42
28
|
List: suggestionList.SuggestionList,
|
|
43
|
-
/**
|
|
44
|
-
* Component that provides an input field for the Suggestion list.
|
|
45
|
-
*
|
|
46
|
-
* Place as a descendant of `Suggestion`
|
|
47
|
-
*
|
|
48
|
-
* @example
|
|
49
|
-
* <Suggestion>
|
|
50
|
-
* <Suggestion.Input />
|
|
51
|
-
* <Suggestion.List />
|
|
52
|
-
* </Suggestion>
|
|
53
|
-
*/
|
|
54
29
|
Input: suggestionInput.SuggestionInput,
|
|
55
|
-
/**
|
|
56
|
-
* Component that provides an empty Suggestion list.
|
|
57
|
-
*
|
|
58
|
-
* Place as a descendant of `Suggestion.List`
|
|
59
|
-
*
|
|
60
|
-
* @example
|
|
61
|
-
* <Suggestion.List>
|
|
62
|
-
* <Suggestion.Empty>Tomt</Suggestion.Empty>
|
|
63
|
-
* </Suggestion.List>
|
|
64
|
-
*/
|
|
65
30
|
Empty: suggestionEmpty.SuggestionEmpty,
|
|
66
|
-
/**
|
|
67
|
-
* A component for rendering individual options in the Suggestion list.
|
|
68
|
-
*
|
|
69
|
-
* @example
|
|
70
|
-
* <Suggestion>
|
|
71
|
-
* <Suggestion.Input />
|
|
72
|
-
* <Suggestion.List>
|
|
73
|
-
* <Suggestion.Option value='Option 1'>Option 1</Suggestion.Option>
|
|
74
|
-
* <Suggestion.Option value='Option 2'>Option 2</Suggestion.Option>
|
|
75
|
-
* </Suggestion.List>
|
|
76
|
-
* </Suggestion>
|
|
77
|
-
*/
|
|
78
31
|
Option: suggestionOption.SuggestionOption,
|
|
79
|
-
/**
|
|
80
|
-
* Component that provides a clear button for the Suggestion input.
|
|
81
|
-
*
|
|
82
|
-
* Place as a descendant of `Suggestion`
|
|
83
|
-
*
|
|
84
|
-
* @example
|
|
85
|
-
* <Suggestion>
|
|
86
|
-
* <Suggestion.Input />
|
|
87
|
-
* <Suggestion.Clear />
|
|
88
|
-
* <Suggestion.List />
|
|
89
|
-
* </Suggestion>
|
|
90
|
-
*/
|
|
91
32
|
Clear: suggestionClear.SuggestionClear,
|
|
92
33
|
});
|
|
93
34
|
EXPERIMENTAL_Suggestion.displayName = 'EXPERIMENTAL_Suggestion';
|
|
@@ -22,70 +22,11 @@ import { SuggestionOption } from './suggestion-option.js';
|
|
|
22
22
|
* </Suggestion>
|
|
23
23
|
*/
|
|
24
24
|
const EXPERIMENTAL_Suggestion = Object.assign(Suggestion, {
|
|
25
|
-
/**
|
|
26
|
-
* @deprecated Suggestion.Chips is deprecated, use `renderSelected` on `Suggestion` instead
|
|
27
|
-
*/
|
|
28
25
|
Chips: SuggestionChips,
|
|
29
|
-
/**
|
|
30
|
-
* Component that provides a Suggestion list.
|
|
31
|
-
*
|
|
32
|
-
* Place as a descendant of `Suggestion`
|
|
33
|
-
*
|
|
34
|
-
* @example
|
|
35
|
-
* <Suggestion>
|
|
36
|
-
* <Suggestion.Input />
|
|
37
|
-
* <Suggestion.List />
|
|
38
|
-
* </Suggestion>
|
|
39
|
-
*/
|
|
40
26
|
List: SuggestionList,
|
|
41
|
-
/**
|
|
42
|
-
* Component that provides an input field for the Suggestion list.
|
|
43
|
-
*
|
|
44
|
-
* Place as a descendant of `Suggestion`
|
|
45
|
-
*
|
|
46
|
-
* @example
|
|
47
|
-
* <Suggestion>
|
|
48
|
-
* <Suggestion.Input />
|
|
49
|
-
* <Suggestion.List />
|
|
50
|
-
* </Suggestion>
|
|
51
|
-
*/
|
|
52
27
|
Input: SuggestionInput,
|
|
53
|
-
/**
|
|
54
|
-
* Component that provides an empty Suggestion list.
|
|
55
|
-
*
|
|
56
|
-
* Place as a descendant of `Suggestion.List`
|
|
57
|
-
*
|
|
58
|
-
* @example
|
|
59
|
-
* <Suggestion.List>
|
|
60
|
-
* <Suggestion.Empty>Tomt</Suggestion.Empty>
|
|
61
|
-
* </Suggestion.List>
|
|
62
|
-
*/
|
|
63
28
|
Empty: SuggestionEmpty,
|
|
64
|
-
/**
|
|
65
|
-
* A component for rendering individual options in the Suggestion list.
|
|
66
|
-
*
|
|
67
|
-
* @example
|
|
68
|
-
* <Suggestion>
|
|
69
|
-
* <Suggestion.Input />
|
|
70
|
-
* <Suggestion.List>
|
|
71
|
-
* <Suggestion.Option value='Option 1'>Option 1</Suggestion.Option>
|
|
72
|
-
* <Suggestion.Option value='Option 2'>Option 2</Suggestion.Option>
|
|
73
|
-
* </Suggestion.List>
|
|
74
|
-
* </Suggestion>
|
|
75
|
-
*/
|
|
76
29
|
Option: SuggestionOption,
|
|
77
|
-
/**
|
|
78
|
-
* Component that provides a clear button for the Suggestion input.
|
|
79
|
-
*
|
|
80
|
-
* Place as a descendant of `Suggestion`
|
|
81
|
-
*
|
|
82
|
-
* @example
|
|
83
|
-
* <Suggestion>
|
|
84
|
-
* <Suggestion.Input />
|
|
85
|
-
* <Suggestion.Clear />
|
|
86
|
-
* <Suggestion.List />
|
|
87
|
-
* </Suggestion>
|
|
88
|
-
*/
|
|
89
30
|
Clear: SuggestionClear,
|
|
90
31
|
});
|
|
91
32
|
EXPERIMENTAL_Suggestion.displayName = 'EXPERIMENTAL_Suggestion';
|
|
@@ -6,11 +6,70 @@ import { SuggestionInput } from './suggestion-input';
|
|
|
6
6
|
import { SuggestionList } from './suggestion-list';
|
|
7
7
|
import { SuggestionOption } from './suggestion-option';
|
|
8
8
|
type SuggestionCompound = typeof SuggestionRoot & {
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated Suggestion.Chips is deprecated, use `renderSelected` on `Suggestion` instead
|
|
11
|
+
*/
|
|
9
12
|
Chips: typeof SuggestionChips;
|
|
13
|
+
/**
|
|
14
|
+
* Component that provides a Suggestion list.
|
|
15
|
+
*
|
|
16
|
+
* Place as a descendant of `Suggestion`
|
|
17
|
+
*
|
|
18
|
+
* @example
|
|
19
|
+
* <Suggestion>
|
|
20
|
+
* <Suggestion.Input />
|
|
21
|
+
* <Suggestion.List />
|
|
22
|
+
* </Suggestion>
|
|
23
|
+
*/
|
|
10
24
|
List: typeof SuggestionList;
|
|
25
|
+
/**
|
|
26
|
+
* Component that provides an input field for the Suggestion list.
|
|
27
|
+
*
|
|
28
|
+
* Place as a descendant of `Suggestion`
|
|
29
|
+
*
|
|
30
|
+
* @example
|
|
31
|
+
* <Suggestion>
|
|
32
|
+
* <Suggestion.Input />
|
|
33
|
+
* <Suggestion.List />
|
|
34
|
+
* </Suggestion>
|
|
35
|
+
*/
|
|
11
36
|
Input: typeof SuggestionInput;
|
|
37
|
+
/**
|
|
38
|
+
* Component that provides an empty Suggestion list.
|
|
39
|
+
*
|
|
40
|
+
* Place as a descendant of `Suggestion.List`
|
|
41
|
+
*
|
|
42
|
+
* @example
|
|
43
|
+
* <Suggestion.List>
|
|
44
|
+
* <Suggestion.Empty>Tomt</Suggestion.Empty>
|
|
45
|
+
* </Suggestion.List>
|
|
46
|
+
*/
|
|
12
47
|
Empty: typeof SuggestionEmpty;
|
|
48
|
+
/**
|
|
49
|
+
* A component for rendering individual options in the Suggestion list.
|
|
50
|
+
*
|
|
51
|
+
* @example
|
|
52
|
+
* <Suggestion>
|
|
53
|
+
* <Suggestion.Input />
|
|
54
|
+
* <Suggestion.List>
|
|
55
|
+
* <Suggestion.Option value='Option 1'>Option 1</Suggestion.Option>
|
|
56
|
+
* <Suggestion.Option value='Option 2'>Option 2</Suggestion.Option>
|
|
57
|
+
* </Suggestion.List>
|
|
58
|
+
* </Suggestion>
|
|
59
|
+
*/
|
|
13
60
|
Option: typeof SuggestionOption;
|
|
61
|
+
/**
|
|
62
|
+
* Component that provides a clear button for the Suggestion input.
|
|
63
|
+
*
|
|
64
|
+
* Place as a descendant of `Suggestion`
|
|
65
|
+
*
|
|
66
|
+
* @example
|
|
67
|
+
* <Suggestion>
|
|
68
|
+
* <Suggestion.Input />
|
|
69
|
+
* <Suggestion.Clear />
|
|
70
|
+
* <Suggestion.List />
|
|
71
|
+
* </Suggestion>
|
|
72
|
+
*/
|
|
14
73
|
Clear: typeof SuggestionClear;
|
|
15
74
|
};
|
|
16
75
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/suggestion/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,IAAI,cAAc,EAAE,MAAM,cAAc,CAAC;AAC5D,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/suggestion/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,IAAI,cAAc,EAAE,MAAM,cAAc,CAAC;AAC5D,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAEvD,KAAK,kBAAkB,GAAG,OAAO,cAAc,GAAG;IAChD;;OAEG;IACH,KAAK,EAAE,OAAO,eAAe,CAAC;IAC9B;;;;;;;;;;OAUG;IACH,IAAI,EAAE,OAAO,cAAc,CAAC;IAC5B;;;;;;;;;;OAUG;IACH,KAAK,EAAE,OAAO,eAAe,CAAC;IAC9B;;;;;;;;;OASG;IACH,KAAK,EAAE,OAAO,eAAe,CAAC;IAC9B;;;;;;;;;;;OAWG;IACH,MAAM,EAAE,OAAO,gBAAgB,CAAC;IAChC;;;;;;;;;;;OAWG;IACH,KAAK,EAAE,OAAO,eAAe,CAAC;CAC/B,CAAC;AAEF;;;;;;;;;;;;;GAaG;AACH,QAAA,MAAM,uBAAuB,EAAE,kBAU9B,CAAC;AAUF,OAAO,EACL,uBAAuB,EACvB,eAAe,IAAI,4BAA4B,EAC/C,cAAc,IAAI,2BAA2B,EAC7C,eAAe,IAAI,4BAA4B,EAC/C,eAAe,IAAI,4BAA4B,EAC/C,gBAAgB,IAAI,6BAA6B,EACjD,eAAe,IAAI,4BAA4B,GAChD,CAAC;AACF,YAAY,EACV,eAAe,EACf,kBAAkB,EAAE,8CAA8C;AAClE,kBAAkB,IAAI,gBAAgB,GACvC,MAAM,cAAc,CAAC;AACtB,YAAY,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;AAC/D,YAAY,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;AAC/D,YAAY,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;AAC/D,YAAY,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;AAC/D,YAAY,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AAC7D,YAAY,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC"}
|
|
@@ -66,7 +66,12 @@ export type SuggestionProps = {
|
|
|
66
66
|
multiple?: boolean;
|
|
67
67
|
/**
|
|
68
68
|
* The selected items of the Suggestion.
|
|
69
|
-
*
|
|
69
|
+
*
|
|
70
|
+
* If `label` and `value` is the same, you can use `string[]`.
|
|
71
|
+
*
|
|
72
|
+
* If `label` and `value` is different, use `Array<{ value: string; label: string}>`.
|
|
73
|
+
*
|
|
74
|
+
* Using this makes the component controlled and it must be used in combination with {@link SuggestionProps.onSelectedChange|onSelectedChange}.
|
|
70
75
|
*/
|
|
71
76
|
selected?: SuggestionSelected;
|
|
72
77
|
/**
|
|
@@ -100,9 +105,9 @@ export type SuggestionProps = {
|
|
|
100
105
|
*/
|
|
101
106
|
name?: string;
|
|
102
107
|
/**
|
|
103
|
-
*
|
|
108
|
+
* Change how the selected options are rendered inside the `Chip`.
|
|
104
109
|
*
|
|
105
|
-
* @default
|
|
110
|
+
* @default ({ label }) => label
|
|
106
111
|
*/
|
|
107
112
|
renderSelected?: (args: {
|
|
108
113
|
label: string;
|
|
@@ -134,7 +139,12 @@ export declare const Suggestion: React.ForwardRefExoticComponent<{
|
|
|
134
139
|
multiple?: boolean;
|
|
135
140
|
/**
|
|
136
141
|
* The selected items of the Suggestion.
|
|
137
|
-
*
|
|
142
|
+
*
|
|
143
|
+
* If `label` and `value` is the same, you can use `string[]`.
|
|
144
|
+
*
|
|
145
|
+
* If `label` and `value` is different, use `Array<{ value: string; label: string}>`.
|
|
146
|
+
*
|
|
147
|
+
* Using this makes the component controlled and it must be used in combination with {@link SuggestionProps.onSelectedChange|onSelectedChange}.
|
|
138
148
|
*/
|
|
139
149
|
selected?: SuggestionSelected;
|
|
140
150
|
/**
|
|
@@ -168,9 +178,9 @@ export declare const Suggestion: React.ForwardRefExoticComponent<{
|
|
|
168
178
|
*/
|
|
169
179
|
name?: string;
|
|
170
180
|
/**
|
|
171
|
-
*
|
|
181
|
+
* Change how the selected options are rendered inside the `Chip`.
|
|
172
182
|
*
|
|
173
|
-
* @default
|
|
183
|
+
* @default ({ label }) => label
|
|
174
184
|
*/
|
|
175
185
|
renderSelected?: (args: {
|
|
176
186
|
label: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"suggestion.d.ts","sourceRoot":"","sources":["../../../src/components/suggestion/suggestion.tsx"],"names":[],"mappings":"AAAA,OAAO,EAGL,KAAK,cAAc,EACnB,KAAK,SAAS,EAMf,MAAM,OAAO,CAAC;AACf,OAAO,wBAAwB,CAAC;AAChC,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAKnE,MAAM,MAAM,kBAAkB,GAAG,KAAK,CAAC,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC;AAExE,KAAK,IAAI,GAAG;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,CAAC;AAC7C,KAAK,gBAAgB,GAAG,IAAI,CAC1B,WAAW,CAAC,iBAAiB,GAAG,SAAS,CAAC,EAC1C,eAAe,CAChB,GAAG;IACF,aAAa,EAAE,oBAAoB,CAAC;CACrC,CAAC;AAEF,KAAK,MAAM,GAAG,CAAC,IAAI,EAAE;IACnB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,aAAa,EAAE,iBAAiB,CAAC;IACjC;;OAEG;IACH,KAAK,EAAE,gBAAgB,CAAC;CACzB,KAAK,OAAO,CAAC;AAEd,KAAK,qBAAqB,GAAG;IAC3B,YAAY,EAAE,CAAC,KAAK,CAAC,EAAE,gBAAgB,GAAG,IAAI,KAAK,IAAI,CAAC;IACxD,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,YAAY,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,oBAAoB,GAAG,IAAI,CAAC,CAAC;CAC7D,CAAC;AAEF,eAAO,MAAM,iBAAiB,sCAE5B,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG;IAC5B;;;;;;;;OAQG;IACH,MAAM,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;IAC1B;;;;OAIG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"suggestion.d.ts","sourceRoot":"","sources":["../../../src/components/suggestion/suggestion.tsx"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digdir/designsystemet-react",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.0-test-
|
|
4
|
+
"version": "0.0.0-test-20250715124908",
|
|
5
5
|
"description": "React components for Designsystemet",
|
|
6
6
|
"author": "Designsystemet team",
|
|
7
7
|
"repository": {
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"storybook": "^9.0.15",
|
|
68
68
|
"tsx": "4.20.3",
|
|
69
69
|
"typescript": "^5.8.3",
|
|
70
|
-
"@digdir/designsystemet-css": "^0.0.0-test-
|
|
70
|
+
"@digdir/designsystemet-css": "^0.0.0-test-20250715124908"
|
|
71
71
|
},
|
|
72
72
|
"scripts": {
|
|
73
73
|
"build": "pnpm run clean && tsc -b tsconfig.lib.json --emitDeclarationOnly false && rollup -c --bundleConfigAsCjs",
|