@digdir/designsystemet-react 0.0.0-test-20250715121200 → 0.0.0-test-20250716071620
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.
|
@@ -5,71 +5,71 @@ import { SuggestionEmpty } from './suggestion-empty';
|
|
|
5
5
|
import { SuggestionInput } from './suggestion-input';
|
|
6
6
|
import { SuggestionList } from './suggestion-list';
|
|
7
7
|
import { SuggestionOption } from './suggestion-option';
|
|
8
|
-
type
|
|
8
|
+
type Suggestion = typeof SuggestionRoot & {
|
|
9
9
|
/**
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
* @deprecated Suggestion.Chips is deprecated, use `renderSelected` on `Suggestion` instead
|
|
11
|
+
*/
|
|
12
12
|
Chips: typeof SuggestionChips;
|
|
13
13
|
/**
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
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
|
+
*/
|
|
24
24
|
List: typeof SuggestionList;
|
|
25
25
|
/**
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
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
|
+
*/
|
|
36
36
|
Input: typeof SuggestionInput;
|
|
37
37
|
/**
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
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
|
+
*/
|
|
47
47
|
Empty: typeof SuggestionEmpty;
|
|
48
48
|
/**
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
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
|
+
*/
|
|
60
60
|
Option: typeof SuggestionOption;
|
|
61
61
|
/**
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
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
|
+
*/
|
|
73
73
|
Clear: typeof SuggestionClear;
|
|
74
74
|
};
|
|
75
75
|
/**
|
|
@@ -86,7 +86,7 @@ type SuggestionCompound = typeof SuggestionRoot & {
|
|
|
86
86
|
* </Suggestion.List>
|
|
87
87
|
* </Suggestion>
|
|
88
88
|
*/
|
|
89
|
-
declare const EXPERIMENTAL_Suggestion:
|
|
89
|
+
declare const EXPERIMENTAL_Suggestion: Suggestion;
|
|
90
90
|
export { EXPERIMENTAL_Suggestion, SuggestionChips as EXPERIMENTAL_SuggestionChips, SuggestionList as EXPERIMENTAL_SuggestionList, SuggestionInput as EXPERIMENTAL_SuggestionInput, SuggestionEmpty as EXPERIMENTAL_SuggestionEmpty, SuggestionOption as EXPERIMENTAL_SuggestionOption, SuggestionClear as EXPERIMENTAL_SuggestionClear, };
|
|
91
91
|
export type { SuggestionProps, SuggestionSelected, // Export SuggestionValues for easier useState
|
|
92
92
|
SuggestionSelected as SuggestionValues, } from './suggestion';
|
|
@@ -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,UAAU,GAAG,OAAO,cAAc,GAAG;IACxC;;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,UAO7B,CAAC;AAUH,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"}
|
|
@@ -43,11 +43,9 @@ type SuggestionContextType = {
|
|
|
43
43
|
export declare const SuggestionContext: React.Context<SuggestionContextType>;
|
|
44
44
|
export type SuggestionProps = {
|
|
45
45
|
/**
|
|
46
|
-
* Filter options
|
|
46
|
+
* Filter options; boolean or a custom callback.
|
|
47
47
|
*
|
|
48
|
-
*
|
|
49
|
-
* If false, the <datalist> will not handle filtering.
|
|
50
|
-
* If a custom callback, the callback will be used to filter the <option> elements.
|
|
48
|
+
* See {@link Filter} for the callback signature.
|
|
51
49
|
*
|
|
52
50
|
* @default true
|
|
53
51
|
*/
|
|
@@ -66,11 +64,16 @@ export type SuggestionProps = {
|
|
|
66
64
|
multiple?: boolean;
|
|
67
65
|
/**
|
|
68
66
|
* The selected items of the Suggestion.
|
|
69
|
-
*
|
|
67
|
+
*
|
|
68
|
+
* If `label` and `value` is the same, you can use `string[]`.
|
|
69
|
+
*
|
|
70
|
+
* If `label` and `value` is different, you must use `{ value: string; label: string}[]`.
|
|
71
|
+
*
|
|
72
|
+
* Using this makes the component controlled and it must be used in combination with {@linkcode SuggestionProps.onSelectedChange|onSelectedChange}.
|
|
70
73
|
*/
|
|
71
74
|
selected?: SuggestionSelected;
|
|
72
75
|
/**
|
|
73
|
-
* @deprecated Use
|
|
76
|
+
* @deprecated Use {@linkcode SuggestionProps.selected|selected} instead
|
|
74
77
|
*/
|
|
75
78
|
value?: SuggestionSelected;
|
|
76
79
|
/**
|
|
@@ -78,7 +81,7 @@ export type SuggestionProps = {
|
|
|
78
81
|
*/
|
|
79
82
|
defaultSelected?: SuggestionSelected;
|
|
80
83
|
/**
|
|
81
|
-
* @deprecated Use `defaultSelected
|
|
84
|
+
* @deprecated Use `{@linkcode SuggestionProps.defaultSelected|defaultSelected} instead
|
|
82
85
|
*/
|
|
83
86
|
defaultValue?: SuggestionSelected;
|
|
84
87
|
/**
|
|
@@ -86,7 +89,7 @@ export type SuggestionProps = {
|
|
|
86
89
|
*/
|
|
87
90
|
onSelectedChange?: (value: Item[]) => void;
|
|
88
91
|
/**
|
|
89
|
-
* @deprecated Use
|
|
92
|
+
* @deprecated Use {@linkcode SuggestionProps.onSelectedChange|onSelectedChange} instead
|
|
90
93
|
*/
|
|
91
94
|
onValueChange?: (value: Item[]) => void;
|
|
92
95
|
/**
|
|
@@ -111,11 +114,9 @@ export type SuggestionProps = {
|
|
|
111
114
|
} & HTMLAttributes<UHTMLComboboxElement>;
|
|
112
115
|
export declare const Suggestion: React.ForwardRefExoticComponent<{
|
|
113
116
|
/**
|
|
114
|
-
* Filter options
|
|
117
|
+
* Filter options; boolean or a custom callback.
|
|
115
118
|
*
|
|
116
|
-
*
|
|
117
|
-
* If false, the <datalist> will not handle filtering.
|
|
118
|
-
* If a custom callback, the callback will be used to filter the <option> elements.
|
|
119
|
+
* See {@link Filter} for the callback signature.
|
|
119
120
|
*
|
|
120
121
|
* @default true
|
|
121
122
|
*/
|
|
@@ -134,11 +135,16 @@ export declare const Suggestion: React.ForwardRefExoticComponent<{
|
|
|
134
135
|
multiple?: boolean;
|
|
135
136
|
/**
|
|
136
137
|
* The selected items of the Suggestion.
|
|
137
|
-
*
|
|
138
|
+
*
|
|
139
|
+
* If `label` and `value` is the same, you can use `string[]`.
|
|
140
|
+
*
|
|
141
|
+
* If `label` and `value` is different, you must use `{ value: string; label: string}[]`.
|
|
142
|
+
*
|
|
143
|
+
* Using this makes the component controlled and it must be used in combination with {@linkcode SuggestionProps.onSelectedChange|onSelectedChange}.
|
|
138
144
|
*/
|
|
139
145
|
selected?: SuggestionSelected;
|
|
140
146
|
/**
|
|
141
|
-
* @deprecated Use
|
|
147
|
+
* @deprecated Use {@linkcode SuggestionProps.selected|selected} instead
|
|
142
148
|
*/
|
|
143
149
|
value?: SuggestionSelected;
|
|
144
150
|
/**
|
|
@@ -146,7 +152,7 @@ export declare const Suggestion: React.ForwardRefExoticComponent<{
|
|
|
146
152
|
*/
|
|
147
153
|
defaultSelected?: SuggestionSelected;
|
|
148
154
|
/**
|
|
149
|
-
* @deprecated Use `defaultSelected
|
|
155
|
+
* @deprecated Use `{@linkcode SuggestionProps.defaultSelected|defaultSelected} instead
|
|
150
156
|
*/
|
|
151
157
|
defaultValue?: SuggestionSelected;
|
|
152
158
|
/**
|
|
@@ -154,7 +160,7 @@ export declare const Suggestion: React.ForwardRefExoticComponent<{
|
|
|
154
160
|
*/
|
|
155
161
|
onSelectedChange?: (value: Item[]) => void;
|
|
156
162
|
/**
|
|
157
|
-
* @deprecated Use
|
|
163
|
+
* @deprecated Use {@linkcode SuggestionProps.onSelectedChange|onSelectedChange} instead
|
|
158
164
|
*/
|
|
159
165
|
onValueChange?: (value: Item[]) => void;
|
|
160
166
|
/**
|
|
@@ -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
|
|
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-20250716071620",
|
|
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-20250716071620"
|
|
71
71
|
},
|
|
72
72
|
"scripts": {
|
|
73
73
|
"build": "pnpm run clean && tsc -b tsconfig.lib.json --emitDeclarationOnly false && rollup -c --bundleConfigAsCjs",
|