-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdigdir.ts
More file actions
121 lines (119 loc) · 2.23 KB
/
Copy pathdigdir.ts
File metadata and controls
121 lines (119 loc) · 2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
// this separate barrel file allows us to avoid circular dependencies
// components could import from @digdir/designsystemet-react directly,
// but we want to ensure internal use aligns with exported components and eventual overrides
export type * from "@digdir/designsystemet-react";
// use named re-exports instead of export * to fix error with RSC:
// "It's currently unsupported to use "export *" in a client boundary. Please use named exports instead."
export {
Alert,
Avatar,
Badge,
BadgePosition,
Breadcrumbs,
BreadcrumbsItem,
BreadcrumbsLink,
BreadcrumbsList,
Button,
Card,
CardBlock,
Checkbox,
Chip,
ChipButton,
ChipCheckbox,
ChipRadio,
ChipRemovable,
Combobox,
ComboboxEmpty,
ComboboxOption,
Details,
DetailsContent,
DetailsSummary,
Dialog,
DialogBlock,
DialogTrigger,
DialogTriggerContext,
Divider,
Dropdown,
DropdownButton,
DropdownHeading,
DropdownItem,
DropdownList,
DropdownTrigger,
DropdownTriggerContext,
EXPERIMENTAL_AvatarStack,
EXPERIMENTAL_Suggestion,
EXPERIMENTAL_SuggestionClear,
EXPERIMENTAL_SuggestionEmpty,
EXPERIMENTAL_SuggestionInput,
EXPERIMENTAL_SuggestionList,
EXPERIMENTAL_SuggestionOption,
ErrorSummary,
ErrorSummaryHeading,
ErrorSummaryItem,
ErrorSummaryLink,
ErrorSummaryList,
Field,
FieldAffix,
FieldAffixes,
FieldCounter,
FieldDescription,
Fieldset,
FieldsetDescription,
FieldsetLegend,
Heading,
Input,
Label,
Link,
List,
ListItem,
ListOrdered,
ListUnordered,
Pagination,
PaginationButton,
PaginationItem,
PaginationList,
Paragraph,
Popover,
PopoverTrigger,
PopoverTriggerContext,
Radio,
RovingFocusItem,
RovingFocusRoot,
Search,
SearchButton,
SearchClear,
SearchInput,
Select,
SelectOptgroup,
SelectOption,
Skeleton,
SkipLink,
Spinner,
Switch,
Table,
TableBody,
TableCell,
TableFoot,
TableHead,
TableHeaderCell,
TableRow,
Tabs,
TabsList,
TabsPanel,
TabsTab,
Tag,
Textarea,
Textfield,
ToggleGroup,
ToggleGroupItem,
Tooltip,
ValidationMessage,
omit,
useCheckboxGroup,
useDebounceCallback,
useIsomorphicLayoutEffect,
useMediaQuery,
usePagination,
useRadioGroup,
useSynchronizedAnimation,
} from "@digdir/designsystemet-react";