@norges-domstoler/dds-components 23.1.0 → 23.1.1
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.css +50 -69
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +359 -329
- package/dist/index.d.ts +359 -329
- package/dist/index.js +66 -42
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +66 -41
- package/dist/index.mjs.map +1 -1
- package/package.json +17 -17
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import { Dispatch, SetStateAction, RefObject, ReactNode, ComponentPropsWithRef, HTMLAttributes, Ref, CSSProperties, ElementType, ComponentPropsWithoutRef, SVGAttributes, JSX, ButtonHTMLAttributes, ComponentProps, InputHTMLAttributes, MouseEventHandler, DependencyList, RefCallback, ChangeEvent, KeyboardEvent as KeyboardEvent$1, AnchorHTMLAttributes, LabelHTMLAttributes, AriaRole, FocusEvent, ForwardedRef, ForwardRefExoticComponent, MouseEvent as MouseEvent$1, ReactElement } from 'react';
|
|
3
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import react__default, { Dispatch, SetStateAction, RefObject, ReactNode, ComponentPropsWithRef, HTMLAttributes, Ref, CSSProperties, ElementType, ComponentPropsWithoutRef, SVGAttributes, JSX, ButtonHTMLAttributes, ComponentProps, InputHTMLAttributes, MouseEventHandler, DependencyList, RefCallback, ChangeEvent, KeyboardEvent as KeyboardEvent$1, AnchorHTMLAttributes, LabelHTMLAttributes, AriaRole, FocusEvent, ForwardedRef, ForwardRefExoticComponent, MouseEvent as MouseEvent$1, ReactElement } from 'react';
|
|
4
3
|
import * as CSS from 'csstype';
|
|
5
4
|
import { Property, StandardProperties } from 'csstype';
|
|
6
5
|
import { Strategy, UseFloatingReturn, Placement as Placement$1 } from '@floating-ui/react-dom';
|
|
@@ -148,7 +147,7 @@ interface AccordionContext {
|
|
|
148
147
|
declare const AccordionContext: react.Context<Partial<AccordionContext>>;
|
|
149
148
|
declare const AccordionContextProvider: ({ children, ...values }: AccordionContext & {
|
|
150
149
|
children: ReactNode;
|
|
151
|
-
}) =>
|
|
150
|
+
}) => react.JSX.Element;
|
|
152
151
|
declare const useAccordionContext: () => Partial<AccordionContext>;
|
|
153
152
|
|
|
154
153
|
declare function handleElementWithBackdropMount(container: HTMLElement): void;
|
|
@@ -179,7 +178,7 @@ type BackdropProps = {
|
|
|
179
178
|
* ```
|
|
180
179
|
*/
|
|
181
180
|
declare const Backdrop: {
|
|
182
|
-
({ isMounted, zIndex, ...props }: BackdropProps):
|
|
181
|
+
({ isMounted, zIndex, ...props }: BackdropProps): react.JSX.Element;
|
|
183
182
|
displayName: string;
|
|
184
183
|
};
|
|
185
184
|
|
|
@@ -387,13 +386,13 @@ type IconProps<I extends SvgIcon = SvgIcon> = BaseComponentProps<SVGSVGElement,
|
|
|
387
386
|
*/
|
|
388
387
|
iconState?: IconStatesOf<I>;
|
|
389
388
|
}, SvgPropsWithState<I>>;
|
|
390
|
-
declare function Icon<I extends SvgIcon = SvgIcon>(props: IconProps<I>):
|
|
389
|
+
declare function Icon<I extends SvgIcon = SvgIcon>(props: IconProps<I>): react.JSX.Element;
|
|
391
390
|
declare namespace Icon {
|
|
392
391
|
var displayName: string;
|
|
393
392
|
}
|
|
394
393
|
|
|
395
394
|
declare const Button: {
|
|
396
|
-
<I extends SvgIcon, T extends ElementType = "button">({ as: propAs, children, purpose, size, iconPosition, loading, loadingTooltip, fullWidth, icon, iconState, onClick, onFocus, onBlur, id, ref, className, style, htmlProps, ...props }: ButtonProps<I, T>):
|
|
395
|
+
<I extends SvgIcon, T extends ElementType = "button">({ as: propAs, children, purpose, size: propSize, iconPosition, loading, loadingTooltip, fullWidth, icon, iconState, onClick, onFocus, onBlur, id, ref, className, style, htmlProps, ...props }: ButtonProps<I, T>): react.JSX.Element;
|
|
397
396
|
displayName: string;
|
|
398
397
|
};
|
|
399
398
|
|
|
@@ -438,7 +437,7 @@ type ToggleProps = BaseComponentProps<HTMLElement, {
|
|
|
438
437
|
variant?: ToggleVariant;
|
|
439
438
|
} & Pick<ComponentProps<'input'>, 'name' | 'aria-describedby' | 'onBlur'>, InputHTMLAttributes<HTMLInputElement>>;
|
|
440
439
|
declare const Toggle: {
|
|
441
|
-
({ id, children, size, checked: checkedProp, defaultChecked, onChange, disabled, readOnly, isLoading, className, style, htmlProps, variant, ...rest }: ToggleProps):
|
|
440
|
+
({ id, children, size, checked: checkedProp, defaultChecked, onChange, disabled, readOnly, isLoading, className, style, htmlProps, variant, ...rest }: ToggleProps): react.JSX.Element;
|
|
442
441
|
displayName: string;
|
|
443
442
|
};
|
|
444
443
|
|
|
@@ -459,7 +458,7 @@ type StylelessButtonProps<TProps extends object = object> = TProps & ComponentPr
|
|
|
459
458
|
* </StylelessButton>
|
|
460
459
|
* ```
|
|
461
460
|
*/
|
|
462
|
-
declare const StylelessButton: ({ className, ...rest }: StylelessButtonProps) =>
|
|
461
|
+
declare const StylelessButton: ({ className, ...rest }: StylelessButtonProps) => react.JSX.Element;
|
|
463
462
|
|
|
464
463
|
type DropdownItemT = 'span' | 'a' | typeof StylelessButton | typeof Toggle;
|
|
465
464
|
type DropdownItemButtonProps = {
|
|
@@ -480,10 +479,10 @@ interface DropdownItemCustomProps<T extends DropdownItemT = 'span'> {
|
|
|
480
479
|
purpose?: 'default' | 'danger';
|
|
481
480
|
}
|
|
482
481
|
type DropdownItemProps<T extends DropdownItemT = 'span'> = DropdownItemCustomProps<T> & DropdownItemButtonProps & (T extends typeof StylelessButton ? StylelessButtonProps : ComponentPropsWithRef<T>);
|
|
483
|
-
declare const DropdownItem: <T extends DropdownItemT = "span">({ icon, className, children: propChildren, purpose, loading, loadingTooltip, ...rest }: DropdownItemProps<T>) =>
|
|
482
|
+
declare const DropdownItem: <T extends DropdownItemT = "span">({ icon, className, children: propChildren, purpose, loading, loadingTooltip, ...rest }: DropdownItemProps<T>) => react.JSX.Element;
|
|
484
483
|
|
|
485
484
|
type DropdownHeaderProps = ComponentPropsWithRef<'h2'>;
|
|
486
|
-
declare const DropdownHeader: ({ className, ...rest }: DropdownHeaderProps) =>
|
|
485
|
+
declare const DropdownHeader: ({ className, ...rest }: DropdownHeaderProps) => react.JSX.Element;
|
|
487
486
|
|
|
488
487
|
/**
|
|
489
488
|
* Usynlig `<input>` til bruk for skjermlesere, typisk for custom radioknapper o.l..
|
|
@@ -502,7 +501,7 @@ declare const DropdownHeader: ({ className, ...rest }: DropdownHeaderProps) => r
|
|
|
502
501
|
* });
|
|
503
502
|
* ```
|
|
504
503
|
*/
|
|
505
|
-
declare const HiddenInput: ({ className, ...rest }: ComponentPropsWithRef<"input">) =>
|
|
504
|
+
declare const HiddenInput: ({ className, ...rest }: ComponentPropsWithRef<"input">) => react.JSX.Element;
|
|
506
505
|
|
|
507
506
|
/**
|
|
508
507
|
* Hook som returnerer en callback-funksjon som refererer til den nyeste versjonen av den opprinnelige funksjonen.
|
|
@@ -1025,7 +1024,7 @@ type StylelessListProps<TProps extends object = object> = TProps & ComponentProp
|
|
|
1025
1024
|
* </StylelessList>
|
|
1026
1025
|
* ```
|
|
1027
1026
|
*/
|
|
1028
|
-
declare const StylelessList: ({ className, ...rest }: StylelessListProps) =>
|
|
1027
|
+
declare const StylelessList: ({ className, ...rest }: StylelessListProps) => react.JSX.Element;
|
|
1029
1028
|
type StylelessOListProps<TProps extends object = object> = TProps & ComponentPropsWithRef<'ol'>;
|
|
1030
1029
|
/**
|
|
1031
1030
|
* Normalisert `<ol>` uten styling. Base for custom ol styling.
|
|
@@ -1044,7 +1043,7 @@ type StylelessOListProps<TProps extends object = object> = TProps & ComponentPro
|
|
|
1044
1043
|
* </StylelessOList>
|
|
1045
1044
|
* ```
|
|
1046
1045
|
*/
|
|
1047
|
-
declare const StylelessOList: ({ className, ...rest }: StylelessOListProps) =>
|
|
1046
|
+
declare const StylelessOList: ({ className, ...rest }: StylelessOListProps) => react.JSX.Element;
|
|
1048
1047
|
|
|
1049
1048
|
/**
|
|
1050
1049
|
* Styling utils i TS (CSS-in-JS)
|
|
@@ -1108,19 +1107,19 @@ type BleedProps<T extends ElementType = 'div'> = PolymorphicBaseComponentProps<T
|
|
|
1108
1107
|
reflectivePadding?: boolean;
|
|
1109
1108
|
} & ResponsiveBleedProps>;
|
|
1110
1109
|
declare const Bleed: {
|
|
1111
|
-
<T extends ElementType = "div">({ id, className, style, htmlProps, bleedMarginBlock, bleedMarginInline, reflectivePadding, ...rest }: BleedProps<T>):
|
|
1110
|
+
<T extends ElementType = "div">({ id, className, style, htmlProps, bleedMarginBlock, bleedMarginInline, reflectivePadding, ...rest }: BleedProps<T>): react.JSX.Element;
|
|
1112
1111
|
displayName: string;
|
|
1113
1112
|
};
|
|
1114
1113
|
|
|
1115
1114
|
type BoxProps<T extends ElementType = 'div'> = PolymorphicBaseComponentProps<T, ResponsiveProps>;
|
|
1116
1115
|
declare const Box: {
|
|
1117
|
-
<T extends ElementType = "div">({ id, className, style, padding, paddingInline, paddingBlock, margin, marginInline, marginBlock, height, maxHeight, minHeight, width, maxWidth, minWidth, position, left, right, bottom, top, overflow, overflowX, overflowY, display, textAlign, flexDirection, gap, columnGap, rowGap, alignItems, alignContent, justifyItems, placeItems, justifyContent, flexWrap, flexBasis, flexFlow, wordBreak, htmlProps, ...rest }: BoxProps<T>):
|
|
1116
|
+
<T extends ElementType = "div">({ id, className, style, padding, paddingInline, paddingBlock, margin, marginInline, marginBlock, height, maxHeight, minHeight, width, maxWidth, minWidth, position, left, right, bottom, top, overflow, overflowX, overflowY, display, textAlign, flexDirection, gap, columnGap, rowGap, alignItems, alignContent, justifyItems, placeItems, justifyContent, flexWrap, flexBasis, flexFlow, wordBreak, htmlProps, ...rest }: BoxProps<T>): react.JSX.Element;
|
|
1118
1117
|
displayName: string;
|
|
1119
1118
|
};
|
|
1120
1119
|
|
|
1121
1120
|
type ContrastProps<T extends ElementType = 'div'> = BoxProps<T>;
|
|
1122
1121
|
declare const Contrast: {
|
|
1123
|
-
<T extends ElementType = "div">({ id, className, style, htmlProps, ...rest }: ContrastProps<T>):
|
|
1122
|
+
<T extends ElementType = "div">({ id, className, style, htmlProps, ...rest }: ContrastProps<T>): react.JSX.Element;
|
|
1124
1123
|
displayName: string;
|
|
1125
1124
|
};
|
|
1126
1125
|
|
|
@@ -1137,7 +1136,7 @@ type GridProps<T extends ElementType = 'div'> = PolymorphicBaseComponentProps<T,
|
|
|
1137
1136
|
gridTemplateColumns?: ResponsiveProp<Property.GridTemplateColumns>;
|
|
1138
1137
|
} & ResponsiveProps, 'display'>>;
|
|
1139
1138
|
declare const Grid: {
|
|
1140
|
-
<T extends ElementType = "div">({ id, className, htmlProps, gridTemplateColumns, columnGap, rowGap, marginInline, style, ...rest }: GridProps<T>):
|
|
1139
|
+
<T extends ElementType = "div">({ id, className, htmlProps, gridTemplateColumns, columnGap, rowGap, marginInline, style, ...rest }: GridProps<T>): react.JSX.Element;
|
|
1141
1140
|
displayName: string;
|
|
1142
1141
|
};
|
|
1143
1142
|
|
|
@@ -1152,7 +1151,7 @@ type GridChildProps<T extends ElementType = 'div'> = PolymorphicBaseComponentPro
|
|
|
1152
1151
|
gridRow?: ResponsiveProp<Property.GridRow>;
|
|
1153
1152
|
} & Omit<ResponsiveProps, 'display'>>;
|
|
1154
1153
|
declare const GridChild: {
|
|
1155
|
-
<T extends ElementType = "div">({ id, className, htmlProps, style, gridRow, justifySelf, columnsOccupied, ...rest }: GridChildProps<T>):
|
|
1154
|
+
<T extends ElementType = "div">({ id, className, htmlProps, style, gridRow, justifySelf, columnsOccupied, ...rest }: GridChildProps<T>): react.JSX.Element;
|
|
1156
1155
|
displayName: string;
|
|
1157
1156
|
};
|
|
1158
1157
|
|
|
@@ -1170,374 +1169,374 @@ type PaperProps<T extends ElementType = 'div'> = PolymorphicBaseComponentProps<T
|
|
|
1170
1169
|
/**Bakgrunn. Støtter dds tokens. */
|
|
1171
1170
|
background?: PaperBackground;
|
|
1172
1171
|
} & ResponsiveProps & PickedAttributes$1>;
|
|
1173
|
-
declare const Paper: <T extends ElementType = "div">({ id, elevation, border, borderRadius, background, className, htmlProps, style, ...rest }: PaperProps<T>) =>
|
|
1172
|
+
declare const Paper: <T extends ElementType = "div">({ id, elevation, border, borderRadius, background, className, htmlProps, style, ...rest }: PaperProps<T>) => react.JSX.Element;
|
|
1174
1173
|
|
|
1175
1174
|
type ShowHideProps<T extends ElementType = 'div'> = PolymorphicBaseComponentProps<T, PrimitiveDisplayProps>;
|
|
1176
1175
|
declare const ShowHide: {
|
|
1177
|
-
<T extends ElementType = "div">({ hideBelow, showBelow, className, style, htmlProps, id, as: C, ...rest }: ShowHideProps<T>):
|
|
1176
|
+
<T extends ElementType = "div">({ hideBelow, showBelow, className, style, htmlProps, id, as: C, ...rest }: ShowHideProps<T>): react.JSX.Element;
|
|
1178
1177
|
displayName: string;
|
|
1179
1178
|
};
|
|
1180
1179
|
|
|
1181
1180
|
type VStackProps<T extends ElementType = 'div'> = PolymorphicBaseComponentProps<T, ResponsiveStackProps>;
|
|
1182
1181
|
declare const VStack: {
|
|
1183
|
-
<T extends ElementType = "div">({ id, className, style, htmlProps, ...rest }: VStackProps<T>):
|
|
1182
|
+
<T extends ElementType = "div">({ id, className, style, htmlProps, ...rest }: VStackProps<T>): react.JSX.Element;
|
|
1184
1183
|
displayName: string;
|
|
1185
1184
|
};
|
|
1186
1185
|
|
|
1187
1186
|
type HStackProps<T extends ElementType = 'div'> = PolymorphicBaseComponentProps<T, ResponsiveStackProps>;
|
|
1188
1187
|
declare const HStack: {
|
|
1189
|
-
<T extends ElementType = "div">({ id, className, style, htmlProps, ...rest }: HStackProps<T>):
|
|
1188
|
+
<T extends ElementType = "div">({ id, className, style, htmlProps, ...rest }: HStackProps<T>): react.JSX.Element;
|
|
1190
1189
|
displayName: string;
|
|
1191
1190
|
};
|
|
1192
1191
|
|
|
1193
|
-
declare function AddressShieldedIcon(props: SvgProps):
|
|
1192
|
+
declare function AddressShieldedIcon(props: SvgProps): react.JSX.Element;
|
|
1194
1193
|
|
|
1195
|
-
declare function AgreementIcon(props: SvgProps):
|
|
1194
|
+
declare function AgreementIcon(props: SvgProps): react.JSX.Element;
|
|
1196
1195
|
|
|
1197
|
-
declare function AppsIcon(props: SvgProps):
|
|
1196
|
+
declare function AppsIcon(props: SvgProps): react.JSX.Element;
|
|
1198
1197
|
|
|
1199
|
-
declare function ArchiveIcon(props: SvgProps):
|
|
1198
|
+
declare function ArchiveIcon(props: SvgProps): react.JSX.Element;
|
|
1200
1199
|
|
|
1201
|
-
declare function ArrowDownIcon(props: SvgProps):
|
|
1200
|
+
declare function ArrowDownIcon(props: SvgProps): react.JSX.Element;
|
|
1202
1201
|
|
|
1203
|
-
declare function ArrowLeftIcon(props: SvgProps):
|
|
1202
|
+
declare function ArrowLeftIcon(props: SvgProps): react.JSX.Element;
|
|
1204
1203
|
|
|
1205
|
-
declare function ArrowRightIcon(props: SvgProps):
|
|
1204
|
+
declare function ArrowRightIcon(props: SvgProps): react.JSX.Element;
|
|
1206
1205
|
|
|
1207
|
-
declare function ArrowUpIcon(props: SvgProps):
|
|
1206
|
+
declare function ArrowUpIcon(props: SvgProps): react.JSX.Element;
|
|
1208
1207
|
|
|
1209
|
-
declare function AttachmentIcon(props: SvgProps):
|
|
1208
|
+
declare function AttachmentIcon(props: SvgProps): react.JSX.Element;
|
|
1210
1209
|
|
|
1211
|
-
declare function BlockIcon(props: SvgProps):
|
|
1210
|
+
declare function BlockIcon(props: SvgProps): react.JSX.Element;
|
|
1212
1211
|
|
|
1213
|
-
declare function BookIcon(props: SvgProps):
|
|
1212
|
+
declare function BookIcon(props: SvgProps): react.JSX.Element;
|
|
1214
1213
|
|
|
1215
|
-
declare function BriefcaseIcon(props: SvgProps):
|
|
1214
|
+
declare function BriefcaseIcon(props: SvgProps): react.JSX.Element;
|
|
1216
1215
|
|
|
1217
|
-
declare function BuildIcon(props: SvgProps):
|
|
1216
|
+
declare function BuildIcon(props: SvgProps): react.JSX.Element;
|
|
1218
1217
|
|
|
1219
|
-
declare function BuildingIcon(props: SvgProps):
|
|
1218
|
+
declare function BuildingIcon(props: SvgProps): react.JSX.Element;
|
|
1220
1219
|
|
|
1221
|
-
declare function CalendarIcon(props: SvgProps):
|
|
1220
|
+
declare function CalendarIcon(props: SvgProps): react.JSX.Element;
|
|
1222
1221
|
|
|
1223
|
-
declare function CalendarMonthIcon(props: SvgProps):
|
|
1222
|
+
declare function CalendarMonthIcon(props: SvgProps): react.JSX.Element;
|
|
1224
1223
|
|
|
1225
|
-
declare function CalendarViewDayIcon(props: SvgProps):
|
|
1224
|
+
declare function CalendarViewDayIcon(props: SvgProps): react.JSX.Element;
|
|
1226
1225
|
|
|
1227
|
-
declare function CalendarViewMonthIcon(props: SvgProps):
|
|
1226
|
+
declare function CalendarViewMonthIcon(props: SvgProps): react.JSX.Element;
|
|
1228
1227
|
|
|
1229
|
-
declare function CalendarViewWeekIcon(props: SvgProps):
|
|
1228
|
+
declare function CalendarViewWeekIcon(props: SvgProps): react.JSX.Element;
|
|
1230
1229
|
|
|
1231
|
-
declare function CallIcon(props: SvgProps):
|
|
1230
|
+
declare function CallIcon(props: SvgProps): react.JSX.Element;
|
|
1232
1231
|
|
|
1233
|
-
declare function CaringIcon(props: SvgProps):
|
|
1232
|
+
declare function CaringIcon(props: SvgProps): react.JSX.Element;
|
|
1234
1233
|
|
|
1235
|
-
declare function ChatIcon(props: SvgProps):
|
|
1234
|
+
declare function ChatIcon(props: SvgProps): react.JSX.Element;
|
|
1236
1235
|
|
|
1237
|
-
declare function CheckIcon(props: SvgProps):
|
|
1236
|
+
declare function CheckIcon(props: SvgProps): react.JSX.Element;
|
|
1238
1237
|
|
|
1239
|
-
declare function CheckCircledIcon(props: SvgProps):
|
|
1238
|
+
declare function CheckCircledIcon(props: SvgProps): react.JSX.Element;
|
|
1240
1239
|
|
|
1241
|
-
declare function ChecklistIcon(props: SvgProps):
|
|
1240
|
+
declare function ChecklistIcon(props: SvgProps): react.JSX.Element;
|
|
1242
1241
|
|
|
1243
|
-
declare function ChevronDownIcon(props: SvgProps):
|
|
1242
|
+
declare function ChevronDownIcon(props: SvgProps): react.JSX.Element;
|
|
1244
1243
|
|
|
1245
|
-
declare function ChevronFirstIcon(props: SvgProps):
|
|
1244
|
+
declare function ChevronFirstIcon(props: SvgProps): react.JSX.Element;
|
|
1246
1245
|
|
|
1247
|
-
declare function ChevronLastIcon(props: SvgProps):
|
|
1246
|
+
declare function ChevronLastIcon(props: SvgProps): react.JSX.Element;
|
|
1248
1247
|
|
|
1249
|
-
declare function ChevronLeftIcon(props: SvgProps):
|
|
1248
|
+
declare function ChevronLeftIcon(props: SvgProps): react.JSX.Element;
|
|
1250
1249
|
|
|
1251
|
-
declare function ChevronRightIcon(props: SvgProps):
|
|
1250
|
+
declare function ChevronRightIcon(props: SvgProps): react.JSX.Element;
|
|
1252
1251
|
|
|
1253
|
-
declare function ChevronUpIcon(props: SvgProps):
|
|
1252
|
+
declare function ChevronUpIcon(props: SvgProps): react.JSX.Element;
|
|
1254
1253
|
|
|
1255
|
-
declare function CircleIcon(props: SvgProps):
|
|
1254
|
+
declare function CircleIcon(props: SvgProps): react.JSX.Element;
|
|
1256
1255
|
|
|
1257
|
-
declare function CircleFilledIcon(props: SvgProps):
|
|
1256
|
+
declare function CircleFilledIcon(props: SvgProps): react.JSX.Element;
|
|
1258
1257
|
|
|
1259
|
-
declare function CloseIcon(props: SvgProps):
|
|
1258
|
+
declare function CloseIcon(props: SvgProps): react.JSX.Element;
|
|
1260
1259
|
|
|
1261
|
-
declare function CloseSmallIcon(props: SvgProps):
|
|
1260
|
+
declare function CloseSmallIcon(props: SvgProps): react.JSX.Element;
|
|
1262
1261
|
|
|
1263
|
-
declare function CloseCircledIcon(props: SvgProps):
|
|
1262
|
+
declare function CloseCircledIcon(props: SvgProps): react.JSX.Element;
|
|
1264
1263
|
|
|
1265
|
-
declare function CloudIcon(props: SvgProps):
|
|
1264
|
+
declare function CloudIcon(props: SvgProps): react.JSX.Element;
|
|
1266
1265
|
|
|
1267
|
-
declare function CollapseIcon(props: SvgProps):
|
|
1266
|
+
declare function CollapseIcon(props: SvgProps): react.JSX.Element;
|
|
1268
1267
|
|
|
1269
|
-
declare function CommentIcon(props: SvgProps):
|
|
1268
|
+
declare function CommentIcon(props: SvgProps): react.JSX.Element;
|
|
1270
1269
|
|
|
1271
|
-
declare function CopyIcon(props: SvgProps):
|
|
1270
|
+
declare function CopyIcon(props: SvgProps): react.JSX.Element;
|
|
1272
1271
|
|
|
1273
|
-
declare function CourtIcon(props: SvgProps):
|
|
1272
|
+
declare function CourtIcon(props: SvgProps): react.JSX.Element;
|
|
1274
1273
|
|
|
1275
|
-
declare function DateRangeIcon(props: SvgProps):
|
|
1274
|
+
declare function DateRangeIcon(props: SvgProps): react.JSX.Element;
|
|
1276
1275
|
|
|
1277
|
-
declare function DeathsIcon(props: SvgProps):
|
|
1276
|
+
declare function DeathsIcon(props: SvgProps): react.JSX.Element;
|
|
1278
1277
|
|
|
1279
|
-
declare function DoubleChevronLeftIcon(props: SvgProps):
|
|
1278
|
+
declare function DoubleChevronLeftIcon(props: SvgProps): react.JSX.Element;
|
|
1280
1279
|
|
|
1281
|
-
declare function DoubleChevronRightIcon(props: SvgProps):
|
|
1280
|
+
declare function DoubleChevronRightIcon(props: SvgProps): react.JSX.Element;
|
|
1282
1281
|
|
|
1283
|
-
declare function DownloadIcon(props: SvgProps):
|
|
1282
|
+
declare function DownloadIcon(props: SvgProps): react.JSX.Element;
|
|
1284
1283
|
|
|
1285
|
-
declare function DownloadDoneIcon(props: SvgProps):
|
|
1284
|
+
declare function DownloadDoneIcon(props: SvgProps): react.JSX.Element;
|
|
1286
1285
|
|
|
1287
|
-
declare function DragHandleIcon(props: SvgProps):
|
|
1286
|
+
declare function DragHandleIcon(props: SvgProps): react.JSX.Element;
|
|
1288
1287
|
|
|
1289
|
-
declare function EditIcon(props: SvgProps):
|
|
1288
|
+
declare function EditIcon(props: SvgProps): react.JSX.Element;
|
|
1290
1289
|
|
|
1291
|
-
declare function EditAltIcon(props: SvgProps):
|
|
1290
|
+
declare function EditAltIcon(props: SvgProps): react.JSX.Element;
|
|
1292
1291
|
|
|
1293
|
-
declare function ErrorIcon(props: SvgProps):
|
|
1292
|
+
declare function ErrorIcon(props: SvgProps): react.JSX.Element;
|
|
1294
1293
|
|
|
1295
|
-
declare function ExclaimIcon(props: SvgProps):
|
|
1294
|
+
declare function ExclaimIcon(props: SvgProps): react.JSX.Element;
|
|
1296
1295
|
|
|
1297
|
-
declare function ExpandIcon(props: SvgProps):
|
|
1296
|
+
declare function ExpandIcon(props: SvgProps): react.JSX.Element;
|
|
1298
1297
|
|
|
1299
|
-
declare function FacebookIcon(props: SvgProps):
|
|
1298
|
+
declare function FacebookIcon(props: SvgProps): react.JSX.Element;
|
|
1300
1299
|
|
|
1301
|
-
declare function FamilyIcon(props: SvgProps):
|
|
1300
|
+
declare function FamilyIcon(props: SvgProps): react.JSX.Element;
|
|
1302
1301
|
|
|
1303
|
-
declare function FeedbackIcon(props: SvgProps):
|
|
1302
|
+
declare function FeedbackIcon(props: SvgProps): react.JSX.Element;
|
|
1304
1303
|
|
|
1305
|
-
declare function FileIcon(props: SvgProps):
|
|
1304
|
+
declare function FileIcon(props: SvgProps): react.JSX.Element;
|
|
1306
1305
|
|
|
1307
|
-
declare function FileAddIcon(props: SvgProps):
|
|
1306
|
+
declare function FileAddIcon(props: SvgProps): react.JSX.Element;
|
|
1308
1307
|
|
|
1309
|
-
declare function FileShieldedIcon(props: SvgProps):
|
|
1308
|
+
declare function FileShieldedIcon(props: SvgProps): react.JSX.Element;
|
|
1310
1309
|
|
|
1311
|
-
declare function FileTextIcon(props: SvgProps):
|
|
1310
|
+
declare function FileTextIcon(props: SvgProps): react.JSX.Element;
|
|
1312
1311
|
|
|
1313
|
-
declare function FilterIcon(props: SvgProps):
|
|
1312
|
+
declare function FilterIcon(props: SvgProps): react.JSX.Element;
|
|
1314
1313
|
|
|
1315
|
-
declare function FilterListIcon(props: SvgProps):
|
|
1314
|
+
declare function FilterListIcon(props: SvgProps): react.JSX.Element;
|
|
1316
1315
|
|
|
1317
|
-
declare function FindInPageIcon(props: SvgProps):
|
|
1316
|
+
declare function FindInPageIcon(props: SvgProps): react.JSX.Element;
|
|
1318
1317
|
|
|
1319
|
-
declare function FlickrIcon(props: SvgProps):
|
|
1318
|
+
declare function FlickrIcon(props: SvgProps): react.JSX.Element;
|
|
1320
1319
|
|
|
1321
|
-
declare function FloppyDiskIcon(props: SvgProps):
|
|
1320
|
+
declare function FloppyDiskIcon(props: SvgProps): react.JSX.Element;
|
|
1322
1321
|
|
|
1323
|
-
declare function FolderIcon(props: SvgProps):
|
|
1322
|
+
declare function FolderIcon(props: SvgProps): react.JSX.Element;
|
|
1324
1323
|
|
|
1325
|
-
declare function FolderAddIcon(props: SvgProps):
|
|
1324
|
+
declare function FolderAddIcon(props: SvgProps): react.JSX.Element;
|
|
1326
1325
|
|
|
1327
|
-
declare function FolderShieldedIcon(props: SvgProps):
|
|
1326
|
+
declare function FolderShieldedIcon(props: SvgProps): react.JSX.Element;
|
|
1328
1327
|
|
|
1329
|
-
declare function FullscreenExitIcon(props: SvgProps):
|
|
1328
|
+
declare function FullscreenExitIcon(props: SvgProps): react.JSX.Element;
|
|
1330
1329
|
|
|
1331
|
-
declare function FullscreenIcon(props: SvgProps):
|
|
1330
|
+
declare function FullscreenIcon(props: SvgProps): react.JSX.Element;
|
|
1332
1331
|
|
|
1333
|
-
declare function GavelIcon(props: SvgProps):
|
|
1332
|
+
declare function GavelIcon(props: SvgProps): react.JSX.Element;
|
|
1334
1333
|
|
|
1335
|
-
declare function GroupIcon(props: SvgProps):
|
|
1334
|
+
declare function GroupIcon(props: SvgProps): react.JSX.Element;
|
|
1336
1335
|
|
|
1337
|
-
declare function GuardianIcon(props: SvgProps):
|
|
1336
|
+
declare function GuardianIcon(props: SvgProps): react.JSX.Element;
|
|
1338
1337
|
|
|
1339
|
-
declare function HelpIcon(props: SvgProps):
|
|
1338
|
+
declare function HelpIcon(props: SvgProps): react.JSX.Element;
|
|
1340
1339
|
|
|
1341
|
-
declare function HelpFilledIcon(props: SvgProps):
|
|
1340
|
+
declare function HelpFilledIcon(props: SvgProps): react.JSX.Element;
|
|
1342
1341
|
|
|
1343
|
-
declare function HomeIcon(props: SvgProps):
|
|
1342
|
+
declare function HomeIcon(props: SvgProps): react.JSX.Element;
|
|
1344
1343
|
|
|
1345
|
-
declare function HourglassEmptyIcon(props: SvgProps):
|
|
1344
|
+
declare function HourglassEmptyIcon(props: SvgProps): react.JSX.Element;
|
|
1346
1345
|
|
|
1347
|
-
declare function ImageIcon(props: SvgProps):
|
|
1346
|
+
declare function ImageIcon(props: SvgProps): react.JSX.Element;
|
|
1348
1347
|
|
|
1349
|
-
declare function InfoIcon(props: SvgProps):
|
|
1348
|
+
declare function InfoIcon(props: SvgProps): react.JSX.Element;
|
|
1350
1349
|
|
|
1351
|
-
declare function InstagramIcon(props: SvgProps):
|
|
1350
|
+
declare function InstagramIcon(props: SvgProps): react.JSX.Element;
|
|
1352
1351
|
|
|
1353
|
-
declare function JordskifterettIcon(props: SvgProps):
|
|
1352
|
+
declare function JordskifterettIcon(props: SvgProps): react.JSX.Element;
|
|
1354
1353
|
|
|
1355
|
-
declare function JordskiftesakIcon(props: SvgProps):
|
|
1354
|
+
declare function JordskiftesakIcon(props: SvgProps): react.JSX.Element;
|
|
1356
1355
|
|
|
1357
|
-
declare function KeyIcon(props: SvgProps):
|
|
1356
|
+
declare function KeyIcon(props: SvgProps): react.JSX.Element;
|
|
1358
1357
|
|
|
1359
|
-
declare function LagmannsrettIcon(props: SvgProps):
|
|
1358
|
+
declare function LagmannsrettIcon(props: SvgProps): react.JSX.Element;
|
|
1360
1359
|
|
|
1361
|
-
declare function LanguageIcon(props: SvgProps):
|
|
1360
|
+
declare function LanguageIcon(props: SvgProps): react.JSX.Element;
|
|
1362
1361
|
|
|
1363
|
-
declare function LinkIcon(props: SvgProps):
|
|
1362
|
+
declare function LinkIcon(props: SvgProps): react.JSX.Element;
|
|
1364
1363
|
|
|
1365
|
-
declare function LinkedInIcon(props: SvgProps):
|
|
1364
|
+
declare function LinkedInIcon(props: SvgProps): react.JSX.Element;
|
|
1366
1365
|
|
|
1367
|
-
declare function LinkOffIcon(props: SvgProps):
|
|
1366
|
+
declare function LinkOffIcon(props: SvgProps): react.JSX.Element;
|
|
1368
1367
|
|
|
1369
|
-
declare function ListIcon(props: SvgProps):
|
|
1368
|
+
declare function ListIcon(props: SvgProps): react.JSX.Element;
|
|
1370
1369
|
|
|
1371
|
-
declare function ListAltIcon(props: SvgProps):
|
|
1370
|
+
declare function ListAltIcon(props: SvgProps): react.JSX.Element;
|
|
1372
1371
|
|
|
1373
|
-
declare function LocationIcon(props: SvgProps):
|
|
1372
|
+
declare function LocationIcon(props: SvgProps): react.JSX.Element;
|
|
1374
1373
|
|
|
1375
|
-
declare function LockIcon(props: SvgProps):
|
|
1374
|
+
declare function LockIcon(props: SvgProps): react.JSX.Element;
|
|
1376
1375
|
|
|
1377
|
-
declare function LockFilledIcon(props: SvgProps):
|
|
1376
|
+
declare function LockFilledIcon(props: SvgProps): react.JSX.Element;
|
|
1378
1377
|
|
|
1379
|
-
declare function LockOpenIcon(props: SvgProps):
|
|
1378
|
+
declare function LockOpenIcon(props: SvgProps): react.JSX.Element;
|
|
1380
1379
|
|
|
1381
|
-
declare function LoginIcon(props: SvgProps):
|
|
1380
|
+
declare function LoginIcon(props: SvgProps): react.JSX.Element;
|
|
1382
1381
|
|
|
1383
|
-
declare function LogoutIcon(props: SvgProps):
|
|
1382
|
+
declare function LogoutIcon(props: SvgProps): react.JSX.Element;
|
|
1384
1383
|
|
|
1385
|
-
declare function MailIcon(props: SvgProps):
|
|
1384
|
+
declare function MailIcon(props: SvgProps): react.JSX.Element;
|
|
1386
1385
|
|
|
1387
|
-
declare function MailOpenIcon(props: SvgProps):
|
|
1386
|
+
declare function MailOpenIcon(props: SvgProps): react.JSX.Element;
|
|
1388
1387
|
|
|
1389
|
-
declare function MenuIcon(props: SvgProps):
|
|
1388
|
+
declare function MenuIcon(props: SvgProps): react.JSX.Element;
|
|
1390
1389
|
|
|
1391
|
-
declare function MinusIcon(props: SvgProps):
|
|
1390
|
+
declare function MinusIcon(props: SvgProps): react.JSX.Element;
|
|
1392
1391
|
|
|
1393
|
-
declare function MinusCircledIcon(props: SvgProps):
|
|
1392
|
+
declare function MinusCircledIcon(props: SvgProps): react.JSX.Element;
|
|
1394
1393
|
|
|
1395
|
-
declare function MoreHorizontalIcon(props: SvgProps):
|
|
1394
|
+
declare function MoreHorizontalIcon(props: SvgProps): react.JSX.Element;
|
|
1396
1395
|
|
|
1397
|
-
declare function MoreVerticalIcon(props: SvgProps):
|
|
1396
|
+
declare function MoreVerticalIcon(props: SvgProps): react.JSX.Element;
|
|
1398
1397
|
|
|
1399
|
-
declare function NotarialIcon(props: SvgProps):
|
|
1398
|
+
declare function NotarialIcon(props: SvgProps): react.JSX.Element;
|
|
1400
1399
|
|
|
1401
|
-
declare function NotificationsIcon(props: SvgProps):
|
|
1400
|
+
declare function NotificationsIcon(props: SvgProps): react.JSX.Element;
|
|
1402
1401
|
|
|
1403
|
-
declare function NotificationsOffIcon(props: SvgProps):
|
|
1402
|
+
declare function NotificationsOffIcon(props: SvgProps): react.JSX.Element;
|
|
1404
1403
|
|
|
1405
|
-
declare function OnlineMeetingIcon(props: SvgProps):
|
|
1404
|
+
declare function OnlineMeetingIcon(props: SvgProps): react.JSX.Element;
|
|
1406
1405
|
|
|
1407
|
-
declare function OpenExternalIcon(props: SvgProps):
|
|
1406
|
+
declare function OpenExternalIcon(props: SvgProps): react.JSX.Element;
|
|
1408
1407
|
|
|
1409
|
-
declare function PanelLeftIcon(props: SvgProps):
|
|
1408
|
+
declare function PanelLeftIcon(props: SvgProps): react.JSX.Element;
|
|
1410
1409
|
|
|
1411
|
-
declare function PaperPlaneIcon(props: SvgProps):
|
|
1410
|
+
declare function PaperPlaneIcon(props: SvgProps): react.JSX.Element;
|
|
1412
1411
|
|
|
1413
|
-
declare function PayoutIcon(props: SvgProps):
|
|
1412
|
+
declare function PayoutIcon(props: SvgProps): react.JSX.Element;
|
|
1414
1413
|
|
|
1415
|
-
declare function PdfIcon(props: SvgProps):
|
|
1414
|
+
declare function PdfIcon(props: SvgProps): react.JSX.Element;
|
|
1416
1415
|
|
|
1417
|
-
declare function PersonIcon(props: SvgProps):
|
|
1416
|
+
declare function PersonIcon(props: SvgProps): react.JSX.Element;
|
|
1418
1417
|
|
|
1419
|
-
declare function PersonAddIcon(props: SvgProps):
|
|
1418
|
+
declare function PersonAddIcon(props: SvgProps): react.JSX.Element;
|
|
1420
1419
|
|
|
1421
|
-
declare function PersonShieldedIcon(props: SvgProps):
|
|
1420
|
+
declare function PersonShieldedIcon(props: SvgProps): react.JSX.Element;
|
|
1422
1421
|
|
|
1423
|
-
declare function PinIcon(props: SvgProps):
|
|
1422
|
+
declare function PinIcon(props: SvgProps): react.JSX.Element;
|
|
1424
1423
|
|
|
1425
|
-
declare function PlusIcon(props: SvgProps):
|
|
1424
|
+
declare function PlusIcon(props: SvgProps): react.JSX.Element;
|
|
1426
1425
|
|
|
1427
|
-
declare function PlusCircledIcon(props: SvgProps):
|
|
1426
|
+
declare function PlusCircledIcon(props: SvgProps): react.JSX.Element;
|
|
1428
1427
|
|
|
1429
|
-
declare function PowerOfAttorneyIcon(props: SvgProps):
|
|
1428
|
+
declare function PowerOfAttorneyIcon(props: SvgProps): react.JSX.Element;
|
|
1430
1429
|
|
|
1431
|
-
declare function PrintIcon(props: SvgProps):
|
|
1430
|
+
declare function PrintIcon(props: SvgProps): react.JSX.Element;
|
|
1432
1431
|
|
|
1433
|
-
declare function PublishIcon(props: SvgProps):
|
|
1432
|
+
declare function PublishIcon(props: SvgProps): react.JSX.Element;
|
|
1434
1433
|
|
|
1435
|
-
declare function QuestionAnswerIcon(props: SvgProps):
|
|
1434
|
+
declare function QuestionAnswerIcon(props: SvgProps): react.JSX.Element;
|
|
1436
1435
|
|
|
1437
|
-
declare function ReceiptIcon(props: SvgProps):
|
|
1436
|
+
declare function ReceiptIcon(props: SvgProps): react.JSX.Element;
|
|
1438
1437
|
|
|
1439
|
-
declare function RedoIcon(props: SvgProps):
|
|
1438
|
+
declare function RedoIcon(props: SvgProps): react.JSX.Element;
|
|
1440
1439
|
|
|
1441
|
-
declare function RowsIcon(props: SvgProps):
|
|
1440
|
+
declare function RowsIcon(props: SvgProps): react.JSX.Element;
|
|
1442
1441
|
|
|
1443
|
-
declare function RefreshIcon(props: SvgProps):
|
|
1442
|
+
declare function RefreshIcon(props: SvgProps): react.JSX.Element;
|
|
1444
1443
|
|
|
1445
|
-
declare function ReplayIcon(props: SvgProps):
|
|
1444
|
+
declare function ReplayIcon(props: SvgProps): react.JSX.Element;
|
|
1446
1445
|
|
|
1447
|
-
declare function ScaleIcon(props: SvgProps):
|
|
1446
|
+
declare function ScaleIcon(props: SvgProps): react.JSX.Element;
|
|
1448
1447
|
|
|
1449
|
-
declare function SearchIcon(props: SvgProps):
|
|
1448
|
+
declare function SearchIcon(props: SvgProps): react.JSX.Element;
|
|
1450
1449
|
|
|
1451
|
-
declare function SectionIcon(props: SvgProps):
|
|
1450
|
+
declare function SectionIcon(props: SvgProps): react.JSX.Element;
|
|
1452
1451
|
|
|
1453
|
-
declare function SettingsIcon(props: SvgProps):
|
|
1452
|
+
declare function SettingsIcon(props: SvgProps): react.JSX.Element;
|
|
1454
1453
|
|
|
1455
|
-
declare function SmsIcon(props: SvgProps):
|
|
1454
|
+
declare function SmsIcon(props: SvgProps): react.JSX.Element;
|
|
1456
1455
|
|
|
1457
|
-
declare function StarIcon(props: SvgProps):
|
|
1456
|
+
declare function StarIcon(props: SvgProps): react.JSX.Element;
|
|
1458
1457
|
|
|
1459
|
-
declare function StarFilledIcon(props: SvgProps):
|
|
1458
|
+
declare function StarFilledIcon(props: SvgProps): react.JSX.Element;
|
|
1460
1459
|
|
|
1461
|
-
declare function StarHalfFilledIcon(props: SvgProps):
|
|
1460
|
+
declare function StarHalfFilledIcon(props: SvgProps): react.JSX.Element;
|
|
1462
1461
|
|
|
1463
|
-
declare function SyncIcon(props: SvgProps):
|
|
1462
|
+
declare function SyncIcon(props: SvgProps): react.JSX.Element;
|
|
1464
1463
|
|
|
1465
|
-
declare function ThumbDownIcon(props: SvgProps):
|
|
1464
|
+
declare function ThumbDownIcon(props: SvgProps): react.JSX.Element;
|
|
1466
1465
|
|
|
1467
|
-
declare function ThumbDownFilledIcon(props: SvgProps):
|
|
1466
|
+
declare function ThumbDownFilledIcon(props: SvgProps): react.JSX.Element;
|
|
1468
1467
|
|
|
1469
|
-
declare function ThumbUpIcon(props: SvgProps):
|
|
1468
|
+
declare function ThumbUpIcon(props: SvgProps): react.JSX.Element;
|
|
1470
1469
|
|
|
1471
|
-
declare function ThumbUpFilledIcon(props: SvgProps):
|
|
1470
|
+
declare function ThumbUpFilledIcon(props: SvgProps): react.JSX.Element;
|
|
1472
1471
|
|
|
1473
|
-
declare function TimeIcon(props: SvgProps):
|
|
1472
|
+
declare function TimeIcon(props: SvgProps): react.JSX.Element;
|
|
1474
1473
|
|
|
1475
|
-
declare function TingrettIcon(props: SvgProps):
|
|
1474
|
+
declare function TingrettIcon(props: SvgProps): react.JSX.Element;
|
|
1476
1475
|
|
|
1477
|
-
declare function TipIcon(props: SvgProps):
|
|
1476
|
+
declare function TipIcon(props: SvgProps): react.JSX.Element;
|
|
1478
1477
|
|
|
1479
|
-
declare function TrashIcon(props: SvgProps):
|
|
1478
|
+
declare function TrashIcon(props: SvgProps): react.JSX.Element;
|
|
1480
1479
|
|
|
1481
|
-
declare function UndoIcon(props: SvgProps):
|
|
1480
|
+
declare function UndoIcon(props: SvgProps): react.JSX.Element;
|
|
1482
1481
|
|
|
1483
|
-
declare function UnfoldLessIcon(props: SvgProps):
|
|
1482
|
+
declare function UnfoldLessIcon(props: SvgProps): react.JSX.Element;
|
|
1484
1483
|
|
|
1485
|
-
declare function UnfoldMoreIcon(props: SvgProps):
|
|
1484
|
+
declare function UnfoldMoreIcon(props: SvgProps): react.JSX.Element;
|
|
1486
1485
|
|
|
1487
|
-
declare function UploadIcon(props: SvgProps):
|
|
1486
|
+
declare function UploadIcon(props: SvgProps): react.JSX.Element;
|
|
1488
1487
|
|
|
1489
|
-
declare function VisibilityOffIcon(props: SvgProps):
|
|
1488
|
+
declare function VisibilityOffIcon(props: SvgProps): react.JSX.Element;
|
|
1490
1489
|
|
|
1491
|
-
declare function VisibilityOnIcon(props: SvgProps):
|
|
1490
|
+
declare function VisibilityOnIcon(props: SvgProps): react.JSX.Element;
|
|
1492
1491
|
|
|
1493
|
-
declare function WarningIcon(props: SvgProps):
|
|
1492
|
+
declare function WarningIcon(props: SvgProps): react.JSX.Element;
|
|
1494
1493
|
|
|
1495
|
-
declare function WebexIcon(props: SvgProps):
|
|
1494
|
+
declare function WebexIcon(props: SvgProps): react.JSX.Element;
|
|
1496
1495
|
|
|
1497
|
-
declare function XIcon(props: SvgProps):
|
|
1496
|
+
declare function XIcon(props: SvgProps): react.JSX.Element;
|
|
1498
1497
|
|
|
1499
|
-
declare function ZoomInIcon(props: SvgProps):
|
|
1498
|
+
declare function ZoomInIcon(props: SvgProps): react.JSX.Element;
|
|
1500
1499
|
|
|
1501
|
-
declare function ZoomOutIcon(props: SvgProps):
|
|
1500
|
+
declare function ZoomOutIcon(props: SvgProps): react.JSX.Element;
|
|
1502
1501
|
|
|
1503
|
-
declare function BarChartIcon(props: SvgProps):
|
|
1502
|
+
declare function BarChartIcon(props: SvgProps): react.JSX.Element;
|
|
1504
1503
|
|
|
1505
|
-
declare function BarChartBoxedIcon(props: SvgProps):
|
|
1504
|
+
declare function BarChartBoxedIcon(props: SvgProps): react.JSX.Element;
|
|
1506
1505
|
|
|
1507
|
-
declare function LineChartIcon(props: SvgProps):
|
|
1506
|
+
declare function LineChartIcon(props: SvgProps): react.JSX.Element;
|
|
1508
1507
|
|
|
1509
|
-
declare function TrendingUpIcon(props: SvgProps):
|
|
1508
|
+
declare function TrendingUpIcon(props: SvgProps): react.JSX.Element;
|
|
1510
1509
|
|
|
1511
|
-
declare function TrendingDownIcon(props: SvgProps):
|
|
1510
|
+
declare function TrendingDownIcon(props: SvgProps): react.JSX.Element;
|
|
1512
1511
|
|
|
1513
|
-
declare function HelpSimpleIcon(props: SvgProps):
|
|
1512
|
+
declare function HelpSimpleIcon(props: SvgProps): react.JSX.Element;
|
|
1514
1513
|
|
|
1515
1514
|
declare const STATES: readonly ["up", "down"];
|
|
1516
1515
|
type AnimatedChevronUpDownIconStates = (typeof STATES)[number];
|
|
1517
1516
|
declare function AnimatedChevronUpDownIcon(props: SvgProps & {
|
|
1518
1517
|
iconState?: AnimatedChevronUpDownIconStates;
|
|
1519
|
-
}):
|
|
1518
|
+
}): react.JSX.Element;
|
|
1520
1519
|
declare namespace AnimatedChevronUpDownIcon {
|
|
1521
1520
|
var states: readonly ["up", "down"];
|
|
1522
1521
|
}
|
|
1523
1522
|
|
|
1524
|
-
declare function FlagIcon(props: SvgProps):
|
|
1523
|
+
declare function FlagIcon(props: SvgProps): react.JSX.Element;
|
|
1525
1524
|
|
|
1526
|
-
declare function FlagFilledIcon(props: SvgProps):
|
|
1525
|
+
declare function FlagFilledIcon(props: SvgProps): react.JSX.Element;
|
|
1527
1526
|
|
|
1528
|
-
declare function LocationOffIcon(props: SvgProps):
|
|
1527
|
+
declare function LocationOffIcon(props: SvgProps): react.JSX.Element;
|
|
1529
1528
|
|
|
1530
|
-
declare function MapIcon(props: SvgProps):
|
|
1529
|
+
declare function MapIcon(props: SvgProps): react.JSX.Element;
|
|
1531
1530
|
|
|
1532
|
-
declare function MoonIcon(props: SvgProps):
|
|
1531
|
+
declare function MoonIcon(props: SvgProps): react.JSX.Element;
|
|
1533
1532
|
|
|
1534
|
-
declare function NotebookPenIcon(props: SvgProps):
|
|
1533
|
+
declare function NotebookPenIcon(props: SvgProps): react.JSX.Element;
|
|
1535
1534
|
|
|
1536
|
-
declare function StickyNoteIcon(props: SvgProps):
|
|
1535
|
+
declare function StickyNoteIcon(props: SvgProps): react.JSX.Element;
|
|
1537
1536
|
|
|
1538
|
-
declare function SunIcon(props: SvgProps):
|
|
1537
|
+
declare function SunIcon(props: SvgProps): react.JSX.Element;
|
|
1539
1538
|
|
|
1540
|
-
declare function SupportIcon(props: SvgProps):
|
|
1539
|
+
declare function SupportIcon(props: SvgProps): react.JSX.Element;
|
|
1541
1540
|
|
|
1542
1541
|
declare const index_AddressShieldedIcon: typeof AddressShieldedIcon;
|
|
1543
1542
|
declare const index_AgreementIcon: typeof AgreementIcon;
|
|
@@ -2162,6 +2161,14 @@ declare function useTheme(): {
|
|
|
2162
2161
|
ddsFontBodyShortXsmallLetterSpacing: "0.01em";
|
|
2163
2162
|
ddsFontBodyShortXsmallParagraphSpacing: "1em";
|
|
2164
2163
|
ddsFontBodyShortXsmallParagraphSpacingNumberEm: 1;
|
|
2164
|
+
ddsSizeHeightInputLarge: "3.625rem";
|
|
2165
|
+
ddsSizeHeightInputLargeNumberRem: 3.625;
|
|
2166
|
+
ddsSizeHeightInputMedium: "3rem";
|
|
2167
|
+
ddsSizeHeightInputMediumNumberRem: 3;
|
|
2168
|
+
ddsSizeHeightInputSmall: "2.187rem";
|
|
2169
|
+
ddsSizeHeightInputSmallNumberRem: 2.187;
|
|
2170
|
+
ddsSizeHeightInputXsmall: "1.5625rem";
|
|
2171
|
+
ddsSizeHeightInputXsmallNumberRem: 1.5625;
|
|
2165
2172
|
} | {
|
|
2166
2173
|
ddsFontFamilySans: "'IBM Plex Sans', Arial, sans-serif";
|
|
2167
2174
|
ddsFontFamilyMonospace: "'IBM Plex Mono', 'Courier New', monospace";
|
|
@@ -2591,6 +2598,14 @@ declare function useTheme(): {
|
|
|
2591
2598
|
ddsFontBodyShortXsmallLetterSpacing: "0.01em";
|
|
2592
2599
|
ddsFontBodyShortXsmallParagraphSpacing: "1em";
|
|
2593
2600
|
ddsFontBodyShortXsmallParagraphSpacingNumberEm: 1;
|
|
2601
|
+
ddsSizeHeightInputLarge: "3.625rem";
|
|
2602
|
+
ddsSizeHeightInputLargeNumberRem: 3.625;
|
|
2603
|
+
ddsSizeHeightInputMedium: "3rem";
|
|
2604
|
+
ddsSizeHeightInputMediumNumberRem: 3;
|
|
2605
|
+
ddsSizeHeightInputSmall: "2.187rem";
|
|
2606
|
+
ddsSizeHeightInputSmallNumberRem: 2.187;
|
|
2607
|
+
ddsSizeHeightInputXsmall: "1.5625rem";
|
|
2608
|
+
ddsSizeHeightInputXsmallNumberRem: 1.5625;
|
|
2594
2609
|
} | {
|
|
2595
2610
|
ddsFontFamilySans: "'IBM Plex Sans', Arial, sans-serif";
|
|
2596
2611
|
ddsFontFamilyMonospace: "'IBM Plex Mono', 'Courier New', monospace";
|
|
@@ -3020,6 +3035,14 @@ declare function useTheme(): {
|
|
|
3020
3035
|
ddsFontBodyShortXsmallLetterSpacing: "0.01em";
|
|
3021
3036
|
ddsFontBodyShortXsmallParagraphSpacing: "1em";
|
|
3022
3037
|
ddsFontBodyShortXsmallParagraphSpacingNumberEm: 1;
|
|
3038
|
+
ddsSizeHeightInputLarge: "3.8125rem";
|
|
3039
|
+
ddsSizeHeightInputLargeNumberRem: 3.8125;
|
|
3040
|
+
ddsSizeHeightInputMedium: "3.125rem";
|
|
3041
|
+
ddsSizeHeightInputMediumNumberRem: 3.125;
|
|
3042
|
+
ddsSizeHeightInputSmall: "2.5rem";
|
|
3043
|
+
ddsSizeHeightInputSmallNumberRem: 2.5;
|
|
3044
|
+
ddsSizeHeightInputXsmall: "1.8125rem";
|
|
3045
|
+
ddsSizeHeightInputXsmallNumberRem: 1.8125;
|
|
3023
3046
|
} | {
|
|
3024
3047
|
ddsFontFamilySans: "'IBM Plex Sans', Arial, sans-serif";
|
|
3025
3048
|
ddsFontFamilyMonospace: "'IBM Plex Mono', 'Courier New', monospace";
|
|
@@ -3449,6 +3472,14 @@ declare function useTheme(): {
|
|
|
3449
3472
|
ddsFontBodyShortXsmallLetterSpacing: "0.01em";
|
|
3450
3473
|
ddsFontBodyShortXsmallParagraphSpacing: "1em";
|
|
3451
3474
|
ddsFontBodyShortXsmallParagraphSpacingNumberEm: 1;
|
|
3475
|
+
ddsSizeHeightInputLarge: "3.8125rem";
|
|
3476
|
+
ddsSizeHeightInputLargeNumberRem: 3.8125;
|
|
3477
|
+
ddsSizeHeightInputMedium: "3.125rem";
|
|
3478
|
+
ddsSizeHeightInputMediumNumberRem: 3.125;
|
|
3479
|
+
ddsSizeHeightInputSmall: "2.5rem";
|
|
3480
|
+
ddsSizeHeightInputSmallNumberRem: 2.5;
|
|
3481
|
+
ddsSizeHeightInputXsmall: "1.8125rem";
|
|
3482
|
+
ddsSizeHeightInputXsmallNumberRem: 1.8125;
|
|
3452
3483
|
};
|
|
3453
3484
|
themeName: "core-light" | "core-dark" | "public-light" | "public-dark";
|
|
3454
3485
|
};
|
|
@@ -3461,7 +3492,7 @@ interface LanguageProviderProps {
|
|
|
3461
3492
|
}
|
|
3462
3493
|
|
|
3463
3494
|
type DdsProviderProps = LanguageProviderProps & ThemeProviderProps;
|
|
3464
|
-
declare function DdsProvider({ language, theme, children }: DdsProviderProps):
|
|
3495
|
+
declare function DdsProvider({ language, theme, children }: DdsProviderProps): react.JSX.Element;
|
|
3465
3496
|
|
|
3466
3497
|
type PropsOfWithRef<T extends ElementType> = ComponentPropsWithRef<T> & {
|
|
3467
3498
|
/** HTML- eller React-element som returneres. */
|
|
@@ -3469,16 +3500,16 @@ type PropsOfWithRef<T extends ElementType> = ComponentPropsWithRef<T> & {
|
|
|
3469
3500
|
} & Omit<React.ComponentPropsWithRef<T>, 'as'>;
|
|
3470
3501
|
|
|
3471
3502
|
type PolymorphicProps<T extends ElementType> = PropsOfWithRef<T>;
|
|
3472
|
-
declare const ElementAs: <T extends ElementType>({ as, ref, children, ...props }: PolymorphicProps<T>) =>
|
|
3503
|
+
declare const ElementAs: <T extends ElementType>({ as, ref, children, ...props }: PolymorphicProps<T>) => react.JSX.Element;
|
|
3473
3504
|
|
|
3474
3505
|
type AccordionProps = BaseComponentPropsWithChildren<HTMLDivElement, Pick<AccordionConfig, 'isExpanded' | 'isInitiallyExpanded' | 'onChange'>>;
|
|
3475
3506
|
declare const Accordion: {
|
|
3476
|
-
({ isInitiallyExpanded, isExpanded, onChange, id, children, className, style, htmlProps, ...rest }: AccordionProps):
|
|
3507
|
+
({ isInitiallyExpanded, isExpanded, onChange, id, children, className, style, htmlProps, ...rest }: AccordionProps): react.JSX.Element;
|
|
3477
3508
|
displayName: string;
|
|
3478
3509
|
};
|
|
3479
3510
|
|
|
3480
|
-
declare function TextOverflowEllipsisWrapper({ className, ...rest }: ComponentProps<'span'>):
|
|
3481
|
-
declare function TextOverflowEllipsisInner({ className, ...rest }: ComponentProps<'span'>):
|
|
3511
|
+
declare function TextOverflowEllipsisWrapper({ className, ...rest }: ComponentProps<'span'>): react.JSX.Element;
|
|
3512
|
+
declare function TextOverflowEllipsisInner({ className, ...rest }: ComponentProps<'span'>): react.JSX.Element;
|
|
3482
3513
|
|
|
3483
3514
|
type TypographyBodyShortType = 'bodyShortXsmall' | 'bodyShortSmall' | 'bodyShortMedium' | 'bodyShortLarge';
|
|
3484
3515
|
type TypographyBodyLongType = 'bodyLongXsmall' | 'bodyLongSmall' | 'bodyLongMedium' | 'bodyLongLarge';
|
|
@@ -3541,7 +3572,7 @@ type TypographyProps = ({
|
|
|
3541
3572
|
typographyType?: OtherTypographyType;
|
|
3542
3573
|
} & TypographyComponentProps & Omit<OtherTypographyProps, 'color'>);
|
|
3543
3574
|
declare const Typography: {
|
|
3544
|
-
(props: TypographyProps):
|
|
3575
|
+
(props: TypographyProps): react.JSX.Element;
|
|
3545
3576
|
displayName: string;
|
|
3546
3577
|
};
|
|
3547
3578
|
|
|
@@ -3556,7 +3587,7 @@ declare const getColorCn: (color?: TextColor) => string | null;
|
|
|
3556
3587
|
|
|
3557
3588
|
type CaptionProps = BaseComponentPropsWithChildren<HTMLTableCaptionElement, CommonBlockTypographyProps>;
|
|
3558
3589
|
declare const Caption: {
|
|
3559
|
-
({ id, className, style, htmlProps, children, ...rest }: CaptionProps):
|
|
3590
|
+
({ id, className, style, htmlProps, children, ...rest }: CaptionProps): react.JSX.Element;
|
|
3560
3591
|
displayName: string;
|
|
3561
3592
|
};
|
|
3562
3593
|
|
|
@@ -3570,7 +3601,7 @@ type HeadingProps = BaseComponentPropsWithChildren<HTMLHeadingElement, {
|
|
|
3570
3601
|
withMarginsOverInput?: boolean;
|
|
3571
3602
|
} & CommonBlockTypographyProps>;
|
|
3572
3603
|
declare const Heading: {
|
|
3573
|
-
({ id, className, style, htmlProps, children, typographyType, level, withMargins, withMarginsOverInput, ...rest }: HeadingProps):
|
|
3604
|
+
({ id, className, style, htmlProps, children, typographyType, level, withMargins, withMarginsOverInput, ...rest }: HeadingProps): react.JSX.Element;
|
|
3574
3605
|
displayName: string;
|
|
3575
3606
|
};
|
|
3576
3607
|
|
|
@@ -3585,7 +3616,7 @@ interface BaseLabelProps {
|
|
|
3585
3616
|
}
|
|
3586
3617
|
type LabelProps = BaseComponentPropsWithChildren<HTMLLabelElement, BaseLabelProps & CommonInlineTypographyProps & PickedHTMLAttributes$3>;
|
|
3587
3618
|
declare const Label: {
|
|
3588
|
-
({ showRequiredStyling, readOnly, id, className, style, htmlProps, children, afterLabelContent, ...rest }: LabelProps):
|
|
3619
|
+
({ showRequiredStyling, readOnly, id, className, style, htmlProps, children, afterLabelContent, ...rest }: LabelProps): react.JSX.Element;
|
|
3589
3620
|
displayName: string;
|
|
3590
3621
|
};
|
|
3591
3622
|
|
|
@@ -3596,7 +3627,7 @@ type LegendProps = BaseComponentPropsWithChildren<HTMLLegendElement, CommonBlock
|
|
|
3596
3627
|
withMarginsOverInput?: boolean;
|
|
3597
3628
|
}>;
|
|
3598
3629
|
declare const Legend: {
|
|
3599
|
-
({ id, className, style, htmlProps, typographyType, withMarginsOverInput, withMargins, ...rest }: LegendProps):
|
|
3630
|
+
({ id, className, style, htmlProps, typographyType, withMarginsOverInput, withMargins, ...rest }: LegendProps): react.JSX.Element;
|
|
3600
3631
|
displayName: string;
|
|
3601
3632
|
};
|
|
3602
3633
|
|
|
@@ -3617,7 +3648,7 @@ type LinkProps<T extends ElementType = 'a'> = PolymorphicBaseComponentProps<T, {
|
|
|
3617
3648
|
withIconStyling?: boolean;
|
|
3618
3649
|
} & CommonInlineTypographyProps & PickedHTMLAttributes$2>;
|
|
3619
3650
|
declare const Link: {
|
|
3620
|
-
<T extends ElementType = "a">({ id, className, htmlProps, children, typographyType, withMargins, withVisited, style, color, as: propAs, isAnchor: propIsAnchor, withIconStyling, ...rest }: LinkProps<T>):
|
|
3651
|
+
<T extends ElementType = "a">({ id, className, htmlProps, children, typographyType, withMargins, withVisited, style, color, as: propAs, isAnchor: propIsAnchor, withIconStyling, ...rest }: LinkProps<T>): react.JSX.Element;
|
|
3621
3652
|
displayName: string;
|
|
3622
3653
|
};
|
|
3623
3654
|
|
|
@@ -3628,7 +3659,7 @@ type ParagraphProps = BaseComponentPropsWithChildren<HTMLParagraphElement, {
|
|
|
3628
3659
|
typographyType?: TypographyBodyType | TypographyLeadType;
|
|
3629
3660
|
} & CommonBlockTypographyProps>;
|
|
3630
3661
|
declare const Paragraph: {
|
|
3631
|
-
({ id, className, style, htmlProps, children, typographyType, ...rest }: ParagraphProps):
|
|
3662
|
+
({ id, className, style, htmlProps, children, typographyType, ...rest }: ParagraphProps): react.JSX.Element;
|
|
3632
3663
|
displayName: string;
|
|
3633
3664
|
};
|
|
3634
3665
|
|
|
@@ -3639,13 +3670,13 @@ type AccordionHeaderProps = Omit<BaseComponentPropsWithChildren<HTMLButtonElemen
|
|
|
3639
3670
|
bold?: boolean;
|
|
3640
3671
|
}, ButtonHTMLAttributes<HTMLButtonElement>>, 'id'>;
|
|
3641
3672
|
declare const AccordionHeader: {
|
|
3642
|
-
({ children, className, style, htmlProps, typographyType, bold, ...rest }: AccordionHeaderProps):
|
|
3673
|
+
({ children, className, style, htmlProps, typographyType, bold, ...rest }: AccordionHeaderProps): react.JSX.Element;
|
|
3643
3674
|
displayName: string;
|
|
3644
3675
|
};
|
|
3645
3676
|
|
|
3646
3677
|
type AccordionBodyProps = Omit<BaseComponentPropsWithChildren<HTMLDivElement>, 'id'>;
|
|
3647
3678
|
declare const AccordionBody: {
|
|
3648
|
-
({ children, className, style, htmlProps, ...rest }: AccordionBodyProps):
|
|
3679
|
+
({ children, className, style, htmlProps, ...rest }: AccordionBodyProps): react.JSX.Element;
|
|
3649
3680
|
displayName: string;
|
|
3650
3681
|
};
|
|
3651
3682
|
|
|
@@ -3660,14 +3691,14 @@ type BackLinkProps = {
|
|
|
3660
3691
|
as?: ElementType;
|
|
3661
3692
|
} & Pick<ComponentPropsWithRef<'a'>, 'onClick' | 'href' | 'ref'>;
|
|
3662
3693
|
declare const BackLink: {
|
|
3663
|
-
({ label, ref, as, ...rest }: BackLinkProps):
|
|
3694
|
+
({ label, ref, as, ...rest }: BackLinkProps): react.JSX.Element;
|
|
3664
3695
|
displayName: string;
|
|
3665
3696
|
};
|
|
3666
3697
|
|
|
3667
3698
|
type BreadcrumbProps = ComponentPropsWithRef<'a'> | ComponentPropsWithRef<'span'>;
|
|
3668
3699
|
declare const isAnchorTypographyProps: (props: BreadcrumbProps) => props is ComponentPropsWithRef<"a">;
|
|
3669
3700
|
declare const Breadcrumb: {
|
|
3670
|
-
({ children, ref, ...rest }: BreadcrumbProps):
|
|
3701
|
+
({ children, ref, ...rest }: BreadcrumbProps): react.JSX.Element;
|
|
3671
3702
|
displayName: string;
|
|
3672
3703
|
};
|
|
3673
3704
|
|
|
@@ -3681,7 +3712,7 @@ type BreadcrumbsProps = BaseComponentProps<HTMLElement, {
|
|
|
3681
3712
|
children?: ReactNode;
|
|
3682
3713
|
}>;
|
|
3683
3714
|
declare const Breadcrumbs: {
|
|
3684
|
-
({ children, smallScreenBreakpoint, id, className, style, htmlProps, ...rest }: BreadcrumbsProps):
|
|
3715
|
+
({ children, smallScreenBreakpoint, id, className, style, htmlProps, ...rest }: BreadcrumbsProps): react.JSX.Element;
|
|
3685
3716
|
displayName: string;
|
|
3686
3717
|
};
|
|
3687
3718
|
|
|
@@ -3705,7 +3736,7 @@ type ButtonGroupProps = BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
3705
3736
|
role?: AriaRole;
|
|
3706
3737
|
} & Omit<ButtonHTMLAttributes<HTMLButtonElement>, keyof PickedHTMLAttributes$1>>;
|
|
3707
3738
|
declare const ButtonGroup: {
|
|
3708
|
-
({ children, id, className, style, htmlProps, direction, buttonSize, role, ...rest }: ButtonGroupProps):
|
|
3739
|
+
({ children, id, className, style, htmlProps, direction, buttonSize, role, ...rest }: ButtonGroupProps): react.JSX.Element;
|
|
3709
3740
|
displayName: string;
|
|
3710
3741
|
};
|
|
3711
3742
|
|
|
@@ -3748,7 +3779,7 @@ type CheckboxProps = BaseComponentProps<HTMLInputElement, SelectionControlCommon
|
|
|
3748
3779
|
} & CheckboxPickedHTMLAttributes & Pick<ComponentProps<'input'>, 'required'>, InputHTMLAttributes<HTMLInputElement>>;
|
|
3749
3780
|
|
|
3750
3781
|
declare const Checkbox: {
|
|
3751
|
-
({ id, name, label, error, disabled, readOnly, indeterminate, "aria-describedby": ariaDescribedby, className, htmlProps, style, children, ...rest }: CheckboxProps):
|
|
3782
|
+
({ id, name, label, error, disabled, readOnly, indeterminate, "aria-describedby": ariaDescribedby, className, htmlProps, style, children, ...rest }: CheckboxProps): react.JSX.Element;
|
|
3752
3783
|
displayName: string;
|
|
3753
3784
|
};
|
|
3754
3785
|
|
|
@@ -3757,7 +3788,7 @@ type CheckboxGroupProps = BaseComponentPropsWithChildren<HTMLDivElement, Selecti
|
|
|
3757
3788
|
required?: boolean;
|
|
3758
3789
|
}>;
|
|
3759
3790
|
declare const CheckboxGroup: {
|
|
3760
|
-
(props: CheckboxGroupProps):
|
|
3791
|
+
(props: CheckboxGroupProps): react.JSX.Element;
|
|
3761
3792
|
displayName: string;
|
|
3762
3793
|
};
|
|
3763
3794
|
|
|
@@ -3799,13 +3830,13 @@ type CardSelectableProps = BaseComponentPropsWithChildren<HTMLInputElement, Pick
|
|
|
3799
3830
|
} & RadioPickedInputHTMLAttributes & CheckboxPickedHTMLAttributes>;
|
|
3800
3831
|
|
|
3801
3832
|
declare const Card: {
|
|
3802
|
-
(props: CardProps):
|
|
3833
|
+
(props: CardProps): react.JSX.Element;
|
|
3803
3834
|
displayName: string;
|
|
3804
3835
|
};
|
|
3805
3836
|
|
|
3806
3837
|
type CardExpandableProps = BaseComponentPropsWithChildren<HTMLDivElement, Pick<AccordionConfig, 'isExpanded' | 'isInitiallyExpanded' | 'onChange'>>;
|
|
3807
3838
|
declare const CardExpandable: {
|
|
3808
|
-
({ isInitiallyExpanded, isExpanded, onChange, id, children, className, style, htmlProps, ...rest }: CardExpandableProps):
|
|
3839
|
+
({ isInitiallyExpanded, isExpanded, onChange, id, children, className, style, htmlProps, ...rest }: CardExpandableProps): react.JSX.Element;
|
|
3809
3840
|
displayName: string;
|
|
3810
3841
|
};
|
|
3811
3842
|
|
|
@@ -3818,7 +3849,7 @@ type CardExpandableHeaderProps = Omit<BaseComponentPropsWithChildren<HTMLButtonE
|
|
|
3818
3849
|
bold?: boolean;
|
|
3819
3850
|
}, ButtonHTMLAttributes<HTMLButtonElement>>, 'id'>;
|
|
3820
3851
|
declare const CardExpandableHeader: {
|
|
3821
|
-
({ children, className, style, htmlProps, padding, typographyType, bold, ...rest }: CardExpandableHeaderProps):
|
|
3852
|
+
({ children, className, style, htmlProps, padding, typographyType, bold, ...rest }: CardExpandableHeaderProps): react.JSX.Element;
|
|
3822
3853
|
displayName: string;
|
|
3823
3854
|
};
|
|
3824
3855
|
|
|
@@ -3827,12 +3858,12 @@ type CardExpandableBodyProps = Omit<BaseComponentPropsWithChildren<HTMLDivElemen
|
|
|
3827
3858
|
padding?: Property.Padding<string>;
|
|
3828
3859
|
}>, 'id'>;
|
|
3829
3860
|
declare const CardExpandableBody: {
|
|
3830
|
-
({ children, className, style, htmlProps, padding, ...rest }: CardExpandableBodyProps):
|
|
3861
|
+
({ children, className, style, htmlProps, padding, ...rest }: CardExpandableBodyProps): react.JSX.Element;
|
|
3831
3862
|
displayName: string;
|
|
3832
3863
|
};
|
|
3833
3864
|
|
|
3834
3865
|
declare const CardSelectable: {
|
|
3835
|
-
(props: CardSelectableProps):
|
|
3866
|
+
(props: CardSelectableProps): react.JSX.Element | null;
|
|
3836
3867
|
displayName: string;
|
|
3837
3868
|
};
|
|
3838
3869
|
|
|
@@ -3853,7 +3884,7 @@ type CardSelectableGroupProps<T extends string | number> = BaseComponentPropsWit
|
|
|
3853
3884
|
defaultValue?: T | undefined;
|
|
3854
3885
|
}, Omit<HTMLAttributes<HTMLDivElement>, 'onChange'>>;
|
|
3855
3886
|
declare const CardSelectableGroup: {
|
|
3856
|
-
<T extends string | number = string>({ name, cardType, errorMessage, disabled, readOnly, value, defaultValue, children, required, onChange, id, tipId, className, style, htmlProps, ...rest }: CardSelectableGroupProps<T>):
|
|
3887
|
+
<T extends string | number = string>({ name, cardType, errorMessage, disabled, readOnly, value, defaultValue, children, required, onChange, id, tipId, className, style, htmlProps, ...rest }: CardSelectableGroupProps<T>): react.JSX.Element;
|
|
3857
3888
|
displayName: string;
|
|
3858
3889
|
};
|
|
3859
3890
|
|
|
@@ -3864,13 +3895,13 @@ type ChipProps = BaseComponentProps<HTMLDivElement, {
|
|
|
3864
3895
|
onClose?: () => void;
|
|
3865
3896
|
}>;
|
|
3866
3897
|
declare const Chip: {
|
|
3867
|
-
({ children, onClose, id, className, style, htmlProps, ...rest }: ChipProps):
|
|
3898
|
+
({ children, onClose, id, className, style, htmlProps, ...rest }: ChipProps): react.JSX.Element | null;
|
|
3868
3899
|
displayName: string;
|
|
3869
3900
|
};
|
|
3870
3901
|
|
|
3871
3902
|
type ChipGroupProps = ComponentPropsWithRef<'ul'>;
|
|
3872
3903
|
declare const ChipGroup: {
|
|
3873
|
-
({ children, ...rest }: ChipGroupProps):
|
|
3904
|
+
({ children, ...rest }: ChipGroupProps): react.JSX.Element;
|
|
3874
3905
|
displayName: string;
|
|
3875
3906
|
};
|
|
3876
3907
|
|
|
@@ -3880,7 +3911,7 @@ type CookieBannerCheckboxProps = Omit<CheckboxProps, 'label' | 'children'> & {
|
|
|
3880
3911
|
/**Detaljer rundt den spesifikke typen informasjonskapsel. */
|
|
3881
3912
|
description: string;
|
|
3882
3913
|
};
|
|
3883
|
-
declare function CookieBannerCheckbox({ headerText, description, id, className, style, htmlProps, ...rest }: CookieBannerCheckboxProps):
|
|
3914
|
+
declare function CookieBannerCheckbox({ headerText, description, id, className, style, htmlProps, ...rest }: CookieBannerCheckboxProps): react.JSX.Element;
|
|
3884
3915
|
declare namespace CookieBannerCheckbox {
|
|
3885
3916
|
var displayName: string;
|
|
3886
3917
|
}
|
|
@@ -3897,13 +3928,13 @@ type CookieBannerProps = BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
3897
3928
|
/**Brekkpunkt for sammentrukket variant; Brukes på siden med detaljer om informasjonskapsler. */
|
|
3898
3929
|
collapsedBreakpoint?: Breakpoint;
|
|
3899
3930
|
} & Pick<ResponsiveProps, 'position' | 'top' | 'bottom' | 'left' | 'right' | 'width' | 'maxHeight'>>;
|
|
3900
|
-
declare function CookieBanner({ headerText, description, buttons, checkboxes, id, className, style, htmlProps, maxHeight, width, children, collapsedBreakpoint, ref, ...rest }: CookieBannerProps):
|
|
3931
|
+
declare function CookieBanner({ headerText, description, buttons, checkboxes, id, className, style, htmlProps, maxHeight, width, children, collapsedBreakpoint, ref, ...rest }: CookieBannerProps): react.JSX.Element;
|
|
3901
3932
|
declare namespace CookieBanner {
|
|
3902
3933
|
var displayName: string;
|
|
3903
3934
|
}
|
|
3904
3935
|
|
|
3905
3936
|
type CalendarProps<T extends DateValue> = AriaCalendarProps<T>;
|
|
3906
|
-
declare function Calendar<T extends DateValue>(props: CalendarProps<T>):
|
|
3937
|
+
declare function Calendar<T extends DateValue>(props: CalendarProps<T>): react.JSX.Element;
|
|
3907
3938
|
declare namespace Calendar {
|
|
3908
3939
|
var displayName: string;
|
|
3909
3940
|
}
|
|
@@ -3967,7 +3998,7 @@ interface DatePickerProps extends Omit<AriaDatePickerProps<CalendarDate>, 'granu
|
|
|
3967
3998
|
*/
|
|
3968
3999
|
clearable?: boolean;
|
|
3969
4000
|
}
|
|
3970
|
-
declare function DatePicker({ errorMessage, componentSize, tip, style, width, smallScreenBreakpoint, showWeekNumbers, clearable, ref, ...props }: DatePickerProps):
|
|
4001
|
+
declare function DatePicker({ errorMessage, componentSize, tip, style, width, smallScreenBreakpoint, showWeekNumbers, clearable, ref, ...props }: DatePickerProps): react.JSX.Element;
|
|
3971
4002
|
declare namespace DatePicker {
|
|
3972
4003
|
var displayName: string;
|
|
3973
4004
|
}
|
|
@@ -3975,7 +4006,7 @@ declare namespace DatePicker {
|
|
|
3975
4006
|
type TimePickerProps = Omit<AriaTimeFieldProps<Time>, 'hideTimeZone'> & Pick<InputProps, 'componentSize' | 'errorMessage' | 'tip' | 'style' | 'width' | 'className'> & {
|
|
3976
4007
|
ref?: Ref<HTMLDivElement>;
|
|
3977
4008
|
};
|
|
3978
|
-
declare function TimePicker({ componentSize, width, ref, ...props }: TimePickerProps):
|
|
4009
|
+
declare function TimePicker({ componentSize, width, ref, ...props }: TimePickerProps): react.JSX.Element;
|
|
3979
4010
|
declare namespace TimePicker {
|
|
3980
4011
|
var displayName: string;
|
|
3981
4012
|
}
|
|
@@ -3996,13 +4027,13 @@ type DescriptionListProps = BaseComponentPropsWithChildren<HTMLDListElement, {
|
|
|
3996
4027
|
direction?: Direction$1;
|
|
3997
4028
|
}>;
|
|
3998
4029
|
declare const DescriptionList: {
|
|
3999
|
-
({ appearance, direction, children, id, className, style, htmlProps, ...rest }: DescriptionListProps):
|
|
4030
|
+
({ appearance, direction, children, id, className, style, htmlProps, ...rest }: DescriptionListProps): react.JSX.Element;
|
|
4000
4031
|
displayName: string;
|
|
4001
4032
|
};
|
|
4002
4033
|
|
|
4003
4034
|
type DescriptionListTermProps = ComponentPropsWithRef<'dt'>;
|
|
4004
4035
|
declare const DescriptionListTerm: {
|
|
4005
|
-
(props: DescriptionListTermProps):
|
|
4036
|
+
(props: DescriptionListTermProps): react.JSX.Element;
|
|
4006
4037
|
displayName: string;
|
|
4007
4038
|
};
|
|
4008
4039
|
|
|
@@ -4011,7 +4042,7 @@ type DescriptionListDescProps = BaseComponentPropsWithChildren<HTMLElement, {
|
|
|
4011
4042
|
icon?: SvgIcon;
|
|
4012
4043
|
}>;
|
|
4013
4044
|
declare const DescriptionListDesc: {
|
|
4014
|
-
({ children, icon, id, className, style, htmlProps, ...rest }: DescriptionListDescProps):
|
|
4045
|
+
({ children, icon, id, className, style, htmlProps, ...rest }: DescriptionListDescProps): react.JSX.Element;
|
|
4015
4046
|
displayName: string;
|
|
4016
4047
|
};
|
|
4017
4048
|
|
|
@@ -4024,7 +4055,7 @@ type DescriptionListGroupProps = BaseComponentPropsWithChildren<HTMLDivElement,
|
|
|
4024
4055
|
maxWidth?: Property.MaxWidth<string>;
|
|
4025
4056
|
}>;
|
|
4026
4057
|
declare const DescriptionListGroup: {
|
|
4027
|
-
({ children, margin, minWidth, maxWidth, id, className, style, htmlProps, ...rest }: DescriptionListGroupProps):
|
|
4058
|
+
({ children, margin, minWidth, maxWidth, id, className, style, htmlProps, ...rest }: DescriptionListGroupProps): react.JSX.Element;
|
|
4028
4059
|
displayName: string;
|
|
4029
4060
|
};
|
|
4030
4061
|
|
|
@@ -4050,25 +4081,25 @@ type DetailListProps = BaseComponentPropsWithChildren<HTMLDListElement, {
|
|
|
4050
4081
|
smallScreenBreakpoint?: Breakpoint;
|
|
4051
4082
|
}>;
|
|
4052
4083
|
declare const DetailList: {
|
|
4053
|
-
({ id, className, style, htmlProps, withDividers, striped, size, smallScreenBreakpoint, ...rest }: DetailListProps):
|
|
4084
|
+
({ id, className, style, htmlProps, withDividers, striped, size, smallScreenBreakpoint, ...rest }: DetailListProps): react.JSX.Element;
|
|
4054
4085
|
displayName: string;
|
|
4055
4086
|
};
|
|
4056
4087
|
|
|
4057
4088
|
type DetailListDescProps = ComponentPropsWithRef<'dd'> & Pick<ResponsiveProps, 'textAlign'>;
|
|
4058
4089
|
declare const DetailListDesc: {
|
|
4059
|
-
({ className, ...rest }: DetailListDescProps):
|
|
4090
|
+
({ className, ...rest }: DetailListDescProps): react.JSX.Element;
|
|
4060
4091
|
displayName: string;
|
|
4061
4092
|
};
|
|
4062
4093
|
|
|
4063
4094
|
type DetailListRowProps = ComponentPropsWithRef<'div'>;
|
|
4064
4095
|
declare const DetailListRow: {
|
|
4065
|
-
({ className, ...rest }: DetailListRowProps):
|
|
4096
|
+
({ className, ...rest }: DetailListRowProps): react.JSX.Element;
|
|
4066
4097
|
displayName: string;
|
|
4067
4098
|
};
|
|
4068
4099
|
|
|
4069
4100
|
type DetailListTermProps = ComponentPropsWithRef<'dt'>;
|
|
4070
4101
|
declare const DetailListTerm: {
|
|
4071
|
-
({ className, ...rest }: DetailListTermProps):
|
|
4102
|
+
({ className, ...rest }: DetailListTermProps): react.JSX.Element;
|
|
4072
4103
|
displayName: string;
|
|
4073
4104
|
};
|
|
4074
4105
|
|
|
@@ -4079,7 +4110,7 @@ type DividerProps = BaseComponentProps<HTMLHRElement, {
|
|
|
4079
4110
|
*/
|
|
4080
4111
|
color?: DividerColor;
|
|
4081
4112
|
}, Omit<HTMLAttributes<HTMLHRElement>, 'color'>>;
|
|
4082
|
-
declare const Divider: ({ color, id, className, style, htmlProps, ...rest }: DividerProps) =>
|
|
4113
|
+
declare const Divider: ({ color, id, className, style, htmlProps, ...rest }: DividerProps) => react.JSX.Element;
|
|
4083
4114
|
|
|
4084
4115
|
declare const DRAWER_SIZES: ["small", "medium", "large"];
|
|
4085
4116
|
type DrawerSize = (typeof DRAWER_SIZES)[number];
|
|
@@ -4133,7 +4164,7 @@ interface DrawerGroupProps {
|
|
|
4133
4164
|
onClose?: () => void;
|
|
4134
4165
|
}
|
|
4135
4166
|
declare const DrawerGroup: {
|
|
4136
|
-
({ children, isInitiallyOpen, isOpen: propIsOpen, setIsOpen: propSetIsOpen, drawerId, onOpen, onClose, }: DrawerGroupProps):
|
|
4167
|
+
({ children, isInitiallyOpen, isOpen: propIsOpen, setIsOpen: propSetIsOpen, drawerId, onOpen, onClose, }: DrawerGroupProps): react.JSX.Element;
|
|
4137
4168
|
displayName: string;
|
|
4138
4169
|
};
|
|
4139
4170
|
|
|
@@ -4147,7 +4178,7 @@ type EmptyContentProps = {
|
|
|
4147
4178
|
/**Melding - beskrivelse og forklaring på hvordan brukeren kan få innhold. Kan inneholde lenker og andre interaktive elementer. */
|
|
4148
4179
|
children: ReactNode;
|
|
4149
4180
|
} & Omit<HTMLAttributes<HTMLDivElement>, 'children'>;
|
|
4150
|
-
declare function EmptyContent({ headerText, children, headerHeadingLevel, ...rest }: EmptyContentProps):
|
|
4181
|
+
declare function EmptyContent({ headerText, children, headerHeadingLevel, ...rest }: EmptyContentProps): react.JSX.Element;
|
|
4151
4182
|
declare namespace EmptyContent {
|
|
4152
4183
|
var displayName: string;
|
|
4153
4184
|
}
|
|
@@ -4157,13 +4188,13 @@ type ErrorSummaryProps = BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
4157
4188
|
heading?: ReactNode;
|
|
4158
4189
|
}>;
|
|
4159
4190
|
declare const ErrorSummary: {
|
|
4160
|
-
({ heading: pHeading, className, style, children, id, htmlProps, ...props }: ErrorSummaryProps):
|
|
4191
|
+
({ heading: pHeading, className, style, children, id, htmlProps, ...props }: ErrorSummaryProps): react.JSX.Element;
|
|
4161
4192
|
displayName: string;
|
|
4162
4193
|
};
|
|
4163
4194
|
|
|
4164
4195
|
type ErrorSummaryItemProps<T extends ElementType> = LinkProps<T>;
|
|
4165
4196
|
declare const ErrorSummaryItem: {
|
|
4166
|
-
<T extends ElementType>({ className, style, children, id, htmlProps, ...props }: ErrorSummaryItemProps<T>):
|
|
4197
|
+
<T extends ElementType>({ className, style, children, id, htmlProps, ...props }: ErrorSummaryItemProps<T>): react.JSX.Element;
|
|
4167
4198
|
displayName: string;
|
|
4168
4199
|
};
|
|
4169
4200
|
|
|
@@ -4190,7 +4221,7 @@ type FavStarProps = BaseComponentPropsWithChildren<HTMLElement, {
|
|
|
4190
4221
|
size?: ComponentSize;
|
|
4191
4222
|
}, Omit<HTMLAttributes<HTMLElement>, 'onChange'>>;
|
|
4192
4223
|
declare const FavStar: {
|
|
4193
|
-
({ id, className, style, onChange, checked: checkedProp, defaultChecked, size, htmlProps, ...rest }: FavStarProps):
|
|
4224
|
+
({ id, className, style, onChange, checked: checkedProp, defaultChecked, size, htmlProps, ...rest }: FavStarProps): react.JSX.Element;
|
|
4194
4225
|
displayName: string;
|
|
4195
4226
|
};
|
|
4196
4227
|
|
|
@@ -4253,20 +4284,20 @@ interface FeedbackProps {
|
|
|
4253
4284
|
type Rating = 'positive' | 'negative';
|
|
4254
4285
|
type Layout = 'vertical' | 'horizontal';
|
|
4255
4286
|
|
|
4256
|
-
declare const Feedback: ({ layout, ratingLabel, positiveFeedbackLabel, negativeFeedbackLabel, ratingSubmittedTitle, submittedTitle, textAreaTip, ratingValue: ratingProp, feedbackTextValue: feedbackTextProp, thumbUpTooltip, thumbDownTooltip, feedbackTextAreaExcluded, loading, isSubmitted: isSubmittedProp, onRating, onFeedbackTextChange, onSubmit, }: FeedbackProps) =>
|
|
4287
|
+
declare const Feedback: ({ layout, ratingLabel, positiveFeedbackLabel, negativeFeedbackLabel, ratingSubmittedTitle, submittedTitle, textAreaTip, ratingValue: ratingProp, feedbackTextValue: feedbackTextProp, thumbUpTooltip, thumbDownTooltip, feedbackTextAreaExcluded, loading, isSubmitted: isSubmittedProp, onRating, onFeedbackTextChange, onSubmit, }: FeedbackProps) => react.JSX.Element;
|
|
4257
4288
|
|
|
4258
4289
|
type FieldsetProps = BaseComponentPropsWithChildren<HTMLFieldSetElement, {
|
|
4259
4290
|
/** Om alle inputfelt skal bli `disabled`. */
|
|
4260
4291
|
disabled?: boolean;
|
|
4261
4292
|
}>;
|
|
4262
4293
|
declare const Fieldset: {
|
|
4263
|
-
({ id, className, style, htmlProps, ...rest }: FieldsetProps):
|
|
4294
|
+
({ id, className, style, htmlProps, ...rest }: FieldsetProps): react.JSX.Element;
|
|
4264
4295
|
displayName: string;
|
|
4265
4296
|
};
|
|
4266
4297
|
|
|
4267
4298
|
type FieldsetGroupProps = BaseComponentPropsWithChildren<HTMLDivElement>;
|
|
4268
4299
|
declare const FieldsetGroup: {
|
|
4269
|
-
({ id, className, style, htmlProps, ...rest }: FieldsetGroupProps):
|
|
4300
|
+
({ id, className, style, htmlProps, ...rest }: FieldsetGroupProps): react.JSX.Element;
|
|
4270
4301
|
displayName: string;
|
|
4271
4302
|
};
|
|
4272
4303
|
|
|
@@ -4339,40 +4370,40 @@ type FileUploaderProps = {
|
|
|
4339
4370
|
onRetry?: (fileId: string) => void;
|
|
4340
4371
|
} & Pick<ResponsiveProps, 'width'> & Partial<FileUploaderHookProps> & Omit<ComponentPropsWithRef<'div'>, 'onChange' | 'id'> & Pick<InputProps, 'tip' | 'label' | 'afterLabelContent'>;
|
|
4341
4372
|
declare const FileUploader: {
|
|
4342
|
-
(props: FileUploaderProps):
|
|
4373
|
+
(props: FileUploaderProps): react.JSX.Element;
|
|
4343
4374
|
displayName: string;
|
|
4344
4375
|
};
|
|
4345
4376
|
|
|
4346
4377
|
type FooterProps = ComponentPropsWithRef<'footer'>;
|
|
4347
|
-
declare const Footer: ({ className, ...rest }: FooterProps) =>
|
|
4378
|
+
declare const Footer: ({ className, ...rest }: FooterProps) => react.JSX.Element;
|
|
4348
4379
|
|
|
4349
4380
|
type FooterListHeaderProps = Omit<HeadingProps, 'level' | 'withMargins'>;
|
|
4350
|
-
declare const FooterListHeader: (props: FooterListHeaderProps) =>
|
|
4381
|
+
declare const FooterListHeader: (props: FooterListHeaderProps) => react.JSX.Element;
|
|
4351
4382
|
|
|
4352
4383
|
type HideBreakpoint = 'xs' | 'sm' | 'md';
|
|
4353
4384
|
type FooterLogoProps = ComponentPropsWithRef<'img'> & {
|
|
4354
4385
|
/**Brekkepunkt når logoen skal skjules på mindre skjerm. */
|
|
4355
4386
|
hideBreakpoint?: HideBreakpoint;
|
|
4356
4387
|
};
|
|
4357
|
-
declare const FooterLogo: ({ hideBreakpoint, ...rest }: FooterLogoProps) =>
|
|
4388
|
+
declare const FooterLogo: ({ hideBreakpoint, ...rest }: FooterLogoProps) => react.JSX.Element;
|
|
4358
4389
|
|
|
4359
4390
|
type FooterListProps = ComponentPropsWithRef<'ul'>;
|
|
4360
|
-
declare const FooterList: ({ className, ...rest }: FooterListProps) =>
|
|
4391
|
+
declare const FooterList: ({ className, ...rest }: FooterListProps) => react.JSX.Element;
|
|
4361
4392
|
|
|
4362
4393
|
type FooterSocialsListProps = ComponentPropsWithRef<'ul'>;
|
|
4363
|
-
declare const FooterSocialsList: ({ className, ...rest }: FooterSocialsListProps) =>
|
|
4394
|
+
declare const FooterSocialsList: ({ className, ...rest }: FooterSocialsListProps) => react.JSX.Element;
|
|
4364
4395
|
|
|
4365
4396
|
type FooterSocialsGroupProps = ComponentPropsWithRef<'div'>;
|
|
4366
|
-
declare const FooterSocialsGroup: ({ className, ...rest }: FooterSocialsGroupProps) =>
|
|
4397
|
+
declare const FooterSocialsGroup: ({ className, ...rest }: FooterSocialsGroupProps) => react.JSX.Element;
|
|
4367
4398
|
|
|
4368
4399
|
type FooterListGroupProps = ComponentPropsWithRef<'div'>;
|
|
4369
|
-
declare const FooterListGroup: ({ className, ...rest }: FooterListGroupProps) =>
|
|
4400
|
+
declare const FooterListGroup: ({ className, ...rest }: FooterListGroupProps) => react.JSX.Element;
|
|
4370
4401
|
|
|
4371
4402
|
type FooterLeftProps = ComponentPropsWithRef<'div'>;
|
|
4372
|
-
declare const FooterLeft: ({ className, ...rest }: FooterLeftProps) =>
|
|
4403
|
+
declare const FooterLeft: ({ className, ...rest }: FooterLeftProps) => react.JSX.Element;
|
|
4373
4404
|
|
|
4374
4405
|
type FormSummaryProps = Pick<PaperProps, 'children' | 'htmlProps' | 'ref' | 'id' | 'style' | 'className' | 'padding' | 'paddingBlock' | 'paddingInline' | 'margin' | 'marginBlock' | 'marginInline' | 'width' | 'minWidth' | 'maxWidth'>;
|
|
4375
|
-
declare const FormSummary: (props: FormSummaryProps) =>
|
|
4406
|
+
declare const FormSummary: (props: FormSummaryProps) => react.JSX.Element;
|
|
4376
4407
|
|
|
4377
4408
|
type InputMessageType = 'error' | 'tip';
|
|
4378
4409
|
type InputMessageProps = BaseComponentProps<HTMLDivElement, {
|
|
@@ -4384,7 +4415,7 @@ type InputMessageProps = BaseComponentProps<HTMLDivElement, {
|
|
|
4384
4415
|
messageType: InputMessageType;
|
|
4385
4416
|
} & Pick<ResponsiveProps, 'margin' | 'marginInline' | 'marginBlock'>>;
|
|
4386
4417
|
declare const InputMessage: {
|
|
4387
|
-
({ messageType, id, className, style, htmlProps, children, ...rest }: InputMessageProps):
|
|
4418
|
+
({ messageType, id, className, style, htmlProps, children, ...rest }: InputMessageProps): react.JSX.Element;
|
|
4388
4419
|
displayName: string;
|
|
4389
4420
|
};
|
|
4390
4421
|
interface RenderInputMessageProps {
|
|
@@ -4394,34 +4425,34 @@ interface RenderInputMessageProps {
|
|
|
4394
4425
|
errorMessageId?: string;
|
|
4395
4426
|
noSpacing?: boolean;
|
|
4396
4427
|
}
|
|
4397
|
-
declare const renderInputMessage: ({ tip, tipId, errorMessage, errorMessageId, noSpacing, }: RenderInputMessageProps) =>
|
|
4428
|
+
declare const renderInputMessage: ({ tip, tipId, errorMessage, errorMessageId, noSpacing, }: RenderInputMessageProps) => react.JSX.Element;
|
|
4398
4429
|
|
|
4399
4430
|
type FormSummaryHeaderProps = ComponentPropsWithRef<'div'>;
|
|
4400
|
-
declare function FormSummaryHeader({ ...props }: FormSummaryHeaderProps):
|
|
4431
|
+
declare function FormSummaryHeader({ ...props }: FormSummaryHeaderProps): react.JSX.Element;
|
|
4401
4432
|
type FormSummaryHeadingProps = {
|
|
4402
4433
|
/** Heading level. */
|
|
4403
4434
|
level?: Exclude<HeadingProps['level'], 1>;
|
|
4404
4435
|
} & Omit<HeadingProps, 'level'>;
|
|
4405
|
-
declare function FormSummaryHeading({ level, ...props }: FormSummaryHeadingProps):
|
|
4436
|
+
declare function FormSummaryHeading({ level, ...props }: FormSummaryHeadingProps): react.JSX.Element;
|
|
4406
4437
|
type FormSummaryEditButtonProps = {
|
|
4407
4438
|
/**Formål med knappen. */
|
|
4408
4439
|
purpose?: ExtractStrict<ButtonPurpose, 'secondary' | 'tertiary'>;
|
|
4409
4440
|
} & Omit<ButtonProps, 'purpose'>;
|
|
4410
|
-
declare function FormSummaryEditButton({ purpose, ...props }: FormSummaryEditButtonProps):
|
|
4441
|
+
declare function FormSummaryEditButton({ purpose, ...props }: FormSummaryEditButtonProps): react.JSX.Element;
|
|
4411
4442
|
type FormSummaryFieldsProps = Omit<DescriptionListProps, 'direction'>;
|
|
4412
|
-
declare function FormSummaryFields({ ...props }: FormSummaryFieldsProps):
|
|
4443
|
+
declare function FormSummaryFields({ ...props }: FormSummaryFieldsProps): react.JSX.Element;
|
|
4413
4444
|
type FormSummaryFieldProps = ComponentPropsWithRef<'div'>;
|
|
4414
|
-
declare function FormSummaryField({ className, ...props }: FormSummaryFieldProps):
|
|
4445
|
+
declare function FormSummaryField({ className, ...props }: FormSummaryFieldProps): react.JSX.Element;
|
|
4415
4446
|
type FormSummaryLabelProps = DescriptionListTermProps;
|
|
4416
|
-
declare function FormSummaryLabel(props: FormSummaryLabelProps):
|
|
4447
|
+
declare function FormSummaryLabel(props: FormSummaryLabelProps): react.JSX.Element;
|
|
4417
4448
|
type FormSummaryValueProps = {
|
|
4418
4449
|
/**Hvis data hentes fra ekstern kilde kan feltet vise innlastning. */
|
|
4419
4450
|
isLoading?: boolean;
|
|
4420
4451
|
} & DescriptionListDescProps;
|
|
4421
|
-
declare function FormSummaryValue({ className, isLoading, children, ...props }: FormSummaryValueProps):
|
|
4422
|
-
declare function FormSummaryEmptyValue():
|
|
4452
|
+
declare function FormSummaryValue({ className, isLoading, children, ...props }: FormSummaryValueProps): react.JSX.Element;
|
|
4453
|
+
declare function FormSummaryEmptyValue(): react.JSX.Element;
|
|
4423
4454
|
type FormSummaryErrorProps = Omit<InputMessageProps, 'messageType' | 'message'>;
|
|
4424
|
-
declare function FormSummaryError({ ...props }: FormSummaryErrorProps):
|
|
4455
|
+
declare function FormSummaryError({ ...props }: FormSummaryErrorProps): react.JSX.Element;
|
|
4425
4456
|
|
|
4426
4457
|
declare const G_MESSAGE_PURPOSES: ["info", "warning", "danger"];
|
|
4427
4458
|
type GlobalMessagePurpose = (typeof G_MESSAGE_PURPOSES)[number];
|
|
@@ -4438,7 +4469,7 @@ type GlobalMessageProps = BaseComponentProps<HTMLDivElement, {
|
|
|
4438
4469
|
onClose?: () => void;
|
|
4439
4470
|
}>;
|
|
4440
4471
|
declare const GlobalMessage: {
|
|
4441
|
-
({ purpose, closable, onClose, children, id, className, style, htmlProps, ...rest }: GlobalMessageProps):
|
|
4472
|
+
({ purpose, closable, onClose, children, id, className, style, htmlProps, ...rest }: GlobalMessageProps): react.JSX.Element | null;
|
|
4442
4473
|
displayName: string;
|
|
4443
4474
|
};
|
|
4444
4475
|
|
|
@@ -4448,7 +4479,7 @@ type InlineButtonProps = {
|
|
|
4448
4479
|
*/
|
|
4449
4480
|
icon?: SvgIcon;
|
|
4450
4481
|
} & Pick<BaseTypographyProps, 'color'> & Omit<ComponentPropsWithRef<'button'>, 'color'>;
|
|
4451
|
-
declare const InlineButton: ({ className, color, icon, children, ...rest }: InlineButtonProps) =>
|
|
4482
|
+
declare const InlineButton: ({ className, color, icon, children, ...rest }: InlineButtonProps) => react.JSX.Element;
|
|
4452
4483
|
|
|
4453
4484
|
interface InlineEditContextType {
|
|
4454
4485
|
onChange: (e: ChangeEvent<EditElement>) => void;
|
|
@@ -4498,11 +4529,11 @@ type InlineEditTextAreaProps = InlineEditGenericProps<'textarea'>;
|
|
|
4498
4529
|
type InlineEditInputProps = InlineEditGenericProps<'input'>;
|
|
4499
4530
|
type InlineEditSelectProps = InlineEditGenericProps<'select'>;
|
|
4500
4531
|
|
|
4501
|
-
declare const InlineEditTextArea: ({ onSetValue, emptiable, value, onFocus, onChange, onBlur, ref, ...rest }: InlineEditTextAreaProps) =>
|
|
4532
|
+
declare const InlineEditTextArea: ({ onSetValue, emptiable, value, onFocus, onChange, onBlur, ref, ...rest }: InlineEditTextAreaProps) => react.JSX.Element;
|
|
4502
4533
|
|
|
4503
|
-
declare const InlineEditInput: ({ onSetValue, emptiable, value, onFocus, onChange, onBlur, ref, ...rest }: InlineEditInputProps) =>
|
|
4534
|
+
declare const InlineEditInput: ({ onSetValue, emptiable, value, onFocus, onChange, onBlur, ref, ...rest }: InlineEditInputProps) => react.JSX.Element;
|
|
4504
4535
|
|
|
4505
|
-
declare const InlineEditSelect: ({ onSetValue, emptiable, value, onFocus, onChange, onBlur, ref, ...rest }: InlineEditSelectProps) =>
|
|
4536
|
+
declare const InlineEditSelect: ({ onSetValue, emptiable, value, onFocus, onChange, onBlur, ref, ...rest }: InlineEditSelectProps) => react.JSX.Element;
|
|
4506
4537
|
|
|
4507
4538
|
type NavigationLinkProps = {
|
|
4508
4539
|
children: ReactNode;
|
|
@@ -4540,7 +4571,7 @@ type InternalHeaderProps = BaseComponentProps<HTMLDivElement, {
|
|
|
4540
4571
|
}>;
|
|
4541
4572
|
|
|
4542
4573
|
declare const InternalHeader: {
|
|
4543
|
-
(props: InternalHeaderProps):
|
|
4574
|
+
(props: InternalHeaderProps): react.JSX.Element;
|
|
4544
4575
|
displayName: string;
|
|
4545
4576
|
};
|
|
4546
4577
|
|
|
@@ -4557,13 +4588,13 @@ type ListProps = BaseComponentPropsWithChildren<HTMLUListElement | HTMLOListElem
|
|
|
4557
4588
|
typographyType?: ListTypographyType;
|
|
4558
4589
|
}>;
|
|
4559
4590
|
declare const List: {
|
|
4560
|
-
({ listType, typographyType, children, id, className, style, htmlProps, ...rest }: ListProps):
|
|
4591
|
+
({ listType, typographyType, children, id, className, style, htmlProps, ...rest }: ListProps): react.JSX.Element;
|
|
4561
4592
|
displayName: string;
|
|
4562
4593
|
};
|
|
4563
4594
|
|
|
4564
4595
|
type ListItemProps = ComponentPropsWithRef<'li'>;
|
|
4565
4596
|
declare const ListItem: {
|
|
4566
|
-
({ className, ...rest }: ListItemProps):
|
|
4597
|
+
({ className, ...rest }: ListItemProps): react.JSX.Element;
|
|
4567
4598
|
displayName: string;
|
|
4568
4599
|
};
|
|
4569
4600
|
|
|
@@ -4587,7 +4618,7 @@ type LocalMessageProps = BaseComponentProps<HTMLDivElement, {
|
|
|
4587
4618
|
layout?: LocalMessageLayout;
|
|
4588
4619
|
} & Pick<ResponsiveProps, 'width'>>;
|
|
4589
4620
|
declare const LocalMessage: {
|
|
4590
|
-
({ purpose, closable, onClose, width, layout, children, id, className, style, htmlProps, ...rest }: LocalMessageProps):
|
|
4621
|
+
({ purpose, closable, onClose, width, layout, children, id, className, style, htmlProps, ...rest }: LocalMessageProps): react.JSX.Element;
|
|
4591
4622
|
displayName: string;
|
|
4592
4623
|
};
|
|
4593
4624
|
|
|
@@ -4621,13 +4652,13 @@ type ModalBodyProps = BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
4621
4652
|
height?: ResponsiveProps['height'];
|
|
4622
4653
|
}>;
|
|
4623
4654
|
declare const ModalBody: {
|
|
4624
|
-
({ children, id, className, style, scrollable, htmlProps, height, ...rest }: ModalBodyProps):
|
|
4655
|
+
({ children, id, className, style, scrollable, htmlProps, height, ...rest }: ModalBodyProps): react.JSX.Element;
|
|
4625
4656
|
displayName: string;
|
|
4626
4657
|
};
|
|
4627
4658
|
|
|
4628
4659
|
type ModalActionsProps = ComponentPropsWithRef<'div'>;
|
|
4629
4660
|
declare const ModalActions: {
|
|
4630
|
-
(props: ModalActionsProps):
|
|
4661
|
+
(props: ModalActionsProps): react.JSX.Element;
|
|
4631
4662
|
displayName: string;
|
|
4632
4663
|
};
|
|
4633
4664
|
|
|
@@ -4669,12 +4700,12 @@ type NewsPopoverProps = BaseComponentProps<HTMLElement, {
|
|
|
4669
4700
|
smallScreenBreakpoint?: Breakpoint;
|
|
4670
4701
|
}>;
|
|
4671
4702
|
declare const NewsPopover: {
|
|
4672
|
-
({ id, className, style, htmlProps, header, news, defaultActiveSlide, activeSlide: activeSlideProp, setActiveSlide: setActiveSlideProp, isOpen: isOpenProp, isInitiallyOpen, setIsOpen: setIsOpenProp, smallScreenBreakpoint, closeOnClickOutside, ref, ...rest }: NewsPopoverProps):
|
|
4703
|
+
({ id, className, style, htmlProps, header, news, defaultActiveSlide, activeSlide: activeSlideProp, setActiveSlide: setActiveSlideProp, isOpen: isOpenProp, isInitiallyOpen, setIsOpen: setIsOpenProp, smallScreenBreakpoint, closeOnClickOutside, ref, ...rest }: NewsPopoverProps): react.JSX.Element | null;
|
|
4673
4704
|
displayName: string;
|
|
4674
4705
|
};
|
|
4675
4706
|
|
|
4676
4707
|
declare const OverflowMenu: {
|
|
4677
|
-
({ placement, offset, parentElement, portal, className, htmlProps, ref, style, ...rest }: OverflowMenuProps):
|
|
4708
|
+
({ placement, offset, parentElement, portal, className, htmlProps, ref, style, ...rest }: OverflowMenuProps): react.JSX.Element;
|
|
4678
4709
|
displayName: string;
|
|
4679
4710
|
};
|
|
4680
4711
|
|
|
@@ -4705,37 +4736,37 @@ type OverflowMenuProps = Omit<BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
4705
4736
|
}>, 'id'>;
|
|
4706
4737
|
|
|
4707
4738
|
declare const OverflowMenuButton: {
|
|
4708
|
-
({ onClick, onClickAsync, closeMenuOnClickAsync, purpose, loading, ref, ...rest }: OverflowMenuButtonProps):
|
|
4739
|
+
({ onClick, onClickAsync, closeMenuOnClickAsync, purpose, loading, ref, ...rest }: OverflowMenuButtonProps): react.JSX.Element;
|
|
4709
4740
|
displayName: string;
|
|
4710
4741
|
};
|
|
4711
4742
|
|
|
4712
4743
|
declare const OverflowMenuLink: {
|
|
4713
|
-
({ onClick, ref, ...rest }: OverflowMenuLinkProps):
|
|
4744
|
+
({ onClick, ref, ...rest }: OverflowMenuLinkProps): react.JSX.Element;
|
|
4714
4745
|
displayName: string;
|
|
4715
4746
|
};
|
|
4716
4747
|
|
|
4717
4748
|
declare const OverflowMenuToggle: {
|
|
4718
|
-
({ ref, ...rest }: OverflowMenuToggleProps):
|
|
4749
|
+
({ ref, ...rest }: OverflowMenuToggleProps): react.JSX.Element;
|
|
4719
4750
|
displayName: string;
|
|
4720
4751
|
};
|
|
4721
4752
|
|
|
4722
4753
|
type OverflowMenuDividerProps = Omit<DividerProps, 'color'>;
|
|
4723
4754
|
declare const OverflowMenuDivider: {
|
|
4724
|
-
({ id, className, style, htmlProps, ...rest }: OverflowMenuDividerProps):
|
|
4755
|
+
({ id, className, style, htmlProps, ...rest }: OverflowMenuDividerProps): react.JSX.Element;
|
|
4725
4756
|
displayName: string;
|
|
4726
4757
|
};
|
|
4727
4758
|
|
|
4728
4759
|
type OverflowMenuListProps = StylelessListProps;
|
|
4729
|
-
declare const OverflowMenuList: (props: OverflowMenuListProps) =>
|
|
4760
|
+
declare const OverflowMenuList: (props: OverflowMenuListProps) => react.JSX.Element;
|
|
4730
4761
|
|
|
4731
4762
|
declare const OverflowMenuSpan: {
|
|
4732
|
-
(props: OverflowMenuSpanProps):
|
|
4763
|
+
(props: OverflowMenuSpanProps): react.JSX.Element;
|
|
4733
4764
|
displayName: string;
|
|
4734
4765
|
};
|
|
4735
4766
|
|
|
4736
4767
|
type OverflowMenuListHeaderProps = ComponentPropsWithRef<'h2'>;
|
|
4737
4768
|
declare const OverflowMenuListHeader: {
|
|
4738
|
-
(props: OverflowMenuListHeaderProps):
|
|
4769
|
+
(props: OverflowMenuListHeaderProps): react.JSX.Element;
|
|
4739
4770
|
displayName: string;
|
|
4740
4771
|
};
|
|
4741
4772
|
|
|
@@ -4758,7 +4789,7 @@ interface OverflowMenuGroupProps {
|
|
|
4758
4789
|
overflowMenuId?: string;
|
|
4759
4790
|
}
|
|
4760
4791
|
declare const OverflowMenuGroup: {
|
|
4761
|
-
({ children, onClose, onOpen, setIsOpen: propSetIsOpen, isOpen: propIsOpen, isInitiallyOpen, overflowMenuId, }: OverflowMenuGroupProps):
|
|
4792
|
+
({ children, onClose, onOpen, setIsOpen: propSetIsOpen, isOpen: propIsOpen, isInitiallyOpen, overflowMenuId, }: OverflowMenuGroupProps): react.JSX.Element;
|
|
4762
4793
|
displayName: string;
|
|
4763
4794
|
};
|
|
4764
4795
|
|
|
@@ -4806,7 +4837,7 @@ type PaginationProps = BaseComponentProps<HTMLElement, {
|
|
|
4806
4837
|
smallScreenBreakpoint?: Breakpoint;
|
|
4807
4838
|
}, Omit<HTMLAttributes<HTMLElement>, 'onChange'>>;
|
|
4808
4839
|
declare const Pagination: {
|
|
4809
|
-
({ itemsAmount, defaultItemsPerPage, defaultActivePage, activePage: activePageProp, withPagination, withCounter, withSelect, selectOptions, smallScreenBreakpoint, onChange, onSelectOptionChange, id, className, style, htmlProps, ref, ...rest }: PaginationProps):
|
|
4840
|
+
({ itemsAmount, defaultItemsPerPage, defaultActivePage, activePage: activePageProp, withPagination, withCounter, withSelect, selectOptions, smallScreenBreakpoint, onChange, onSelectOptionChange, id, className, style, htmlProps, ref, ...rest }: PaginationProps): react.JSX.Element | null;
|
|
4810
4841
|
displayName: string;
|
|
4811
4842
|
};
|
|
4812
4843
|
|
|
@@ -4858,7 +4889,7 @@ type PhoneInputProps = {
|
|
|
4858
4889
|
groupLabel?: string;
|
|
4859
4890
|
} & Pick<InputProps, 'readOnly' | 'disabled' | 'width' | 'componentSize' | 'errorMessage' | 'label' | 'afterLabelContent' | 'tip' | 'required' | 'className' | 'style' | 'aria-required' | 'aria-describedby' | 'ref'>;
|
|
4860
4891
|
declare const PhoneInput: {
|
|
4861
|
-
({ label, readOnly, errorMessage, tip, required, width, componentSize, name, className, style, value, selectLabel, selectRef, onChange, defaultValue, "aria-required": ariaRequired, "aria-describedby": ariaDescribedby, groupLabel, afterLabelContent, ref, ...props }: PhoneInputProps):
|
|
4892
|
+
({ label, readOnly, errorMessage, tip, required, width, componentSize, name, className, style, value, selectLabel, selectRef, onChange, defaultValue, "aria-required": ariaRequired, "aria-describedby": ariaDescribedby, groupLabel, afterLabelContent, ref, ...props }: PhoneInputProps): react.JSX.Element;
|
|
4862
4893
|
displayName: string;
|
|
4863
4894
|
};
|
|
4864
4895
|
|
|
@@ -4902,7 +4933,7 @@ type PopoverProps = BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
4902
4933
|
onClose?: () => void;
|
|
4903
4934
|
}>;
|
|
4904
4935
|
declare const Popover: {
|
|
4905
|
-
({ id, header, withCloseButton, onBlur, children, placement, parentElement, portal, offset, sizeProps, returnFocusOnBlur, className, htmlProps, anchorRef, isOpen: propIsOpen, onClose: propOnClose, style, ref, ...rest }: PopoverProps):
|
|
4936
|
+
({ id, header, withCloseButton, onBlur, children, placement, parentElement, portal, offset, sizeProps, returnFocusOnBlur, className, htmlProps, anchorRef, isOpen: propIsOpen, onClose: propOnClose, style, ref, ...rest }: PopoverProps): react.JSX.Element | null;
|
|
4906
4937
|
displayName: string;
|
|
4907
4938
|
};
|
|
4908
4939
|
|
|
@@ -4923,7 +4954,7 @@ interface PopoverGroupProps {
|
|
|
4923
4954
|
popoverId?: string;
|
|
4924
4955
|
}
|
|
4925
4956
|
declare const PopoverGroup: {
|
|
4926
|
-
({ isOpen: propIsOpen, setIsOpen: propSetIsOpen, onClose, onOpen, isInitiallyOpen, children, popoverId, }: PopoverGroupProps):
|
|
4957
|
+
({ isOpen: propIsOpen, setIsOpen: propSetIsOpen, onClose, onOpen, isInitiallyOpen, children, popoverId, }: PopoverGroupProps): react.JSX.Element;
|
|
4927
4958
|
displayName: string;
|
|
4928
4959
|
};
|
|
4929
4960
|
|
|
@@ -4950,7 +4981,7 @@ type ProgressTrackerItemProps = BaseComponentPropsWithChildren<HTMLButtonElement
|
|
|
4950
4981
|
onClick?: undefined;
|
|
4951
4982
|
}>;
|
|
4952
4983
|
declare const ProgressTrackerItem: {
|
|
4953
|
-
(props: ProgressTrackerItemProps):
|
|
4984
|
+
(props: ProgressTrackerItemProps): react.JSX.Element;
|
|
4954
4985
|
displayName: string;
|
|
4955
4986
|
};
|
|
4956
4987
|
|
|
@@ -4990,7 +5021,7 @@ type ProgressBarProps = Pick<CommonInputProps, 'tip' | 'errorMessage' | 'label'
|
|
|
4990
5021
|
max?: number;
|
|
4991
5022
|
} & Omit<ComponentPropsWithRef<'progress'>, 'max' | 'value'>;
|
|
4992
5023
|
declare const ProgressBar: {
|
|
4993
|
-
({ label, tip, errorMessage, size, "aria-describedby": ariaDescribedby, value, width, max, id, className, style, ...rest }: ProgressBarProps):
|
|
5024
|
+
({ label, tip, errorMessage, size, "aria-describedby": ariaDescribedby, value, width, max, id, className, style, ...rest }: ProgressBarProps): react.JSX.Element;
|
|
4994
5025
|
displayName: string;
|
|
4995
5026
|
};
|
|
4996
5027
|
|
|
@@ -5011,7 +5042,7 @@ type SearchProps = Pick<InputProps, 'tip' | 'label'> & {
|
|
|
5011
5042
|
showIcon?: boolean;
|
|
5012
5043
|
} & Pick<InputProps, 'width'> & Omit<ComponentPropsWithRef<'input'>, 'width' | 'height'>;
|
|
5013
5044
|
declare const Search$1: {
|
|
5014
|
-
({ componentSize, buttonProps, showIcon, name, label, tip, id, value, width, onChange, className, style, "aria-describedby": ariaDescribedby, ref, ...rest }: SearchProps):
|
|
5045
|
+
({ componentSize, buttonProps, showIcon, name, label, tip, id, value, width, onChange, className, style, "aria-describedby": ariaDescribedby, ref, ...rest }: SearchProps): react.JSX.Element;
|
|
5015
5046
|
displayName: string;
|
|
5016
5047
|
};
|
|
5017
5048
|
|
|
@@ -5046,7 +5077,7 @@ interface SearchAutocompleteWrapperProps {
|
|
|
5046
5077
|
value?: string;
|
|
5047
5078
|
}
|
|
5048
5079
|
declare const SearchAutocompleteWrapper: {
|
|
5049
|
-
(props: SearchAutocompleteWrapperProps):
|
|
5080
|
+
(props: SearchAutocompleteWrapperProps): react.JSX.Element;
|
|
5050
5081
|
displayName: string;
|
|
5051
5082
|
};
|
|
5052
5083
|
|
|
@@ -5063,7 +5094,7 @@ type SearchSuggestionsProps = BaseComponentProps<HTMLDivElement, {
|
|
|
5063
5094
|
searchId: string;
|
|
5064
5095
|
}>;
|
|
5065
5096
|
declare const SearchSuggestions: {
|
|
5066
|
-
({ id, searchId, className, style, htmlProps, suggestions, showSuggestions, onSuggestionClick, maxSuggestions, ...rest }: SearchSuggestionsProps):
|
|
5097
|
+
({ id, searchId, className, style, htmlProps, suggestions, showSuggestions, onSuggestionClick, maxSuggestions, ...rest }: SearchSuggestionsProps): react.JSX.Element;
|
|
5067
5098
|
displayName: string;
|
|
5068
5099
|
};
|
|
5069
5100
|
|
|
@@ -5099,7 +5130,7 @@ type SelectProps<Option = unknown, IsMulti extends boolean = false> = {
|
|
|
5099
5130
|
ref?: SelectForwardRefType<Option, IsMulti>;
|
|
5100
5131
|
} & CommonInputProps & InputIconProps & Pick<HTMLAttributes<HTMLInputElement>, 'aria-required'> & WrappedReactSelectProps<Option, IsMulti, GroupBase<Option>>;
|
|
5101
5132
|
type SelectForwardRefType<Option, IsMulti extends boolean> = Ref<SelectInstance<Option, IsMulti, GroupBase<Option>>>;
|
|
5102
|
-
declare function Select<Option = unknown, IsMulti extends boolean = false>({ id, label, componentSize, errorMessage, tip, 'aria-required': ariaRequired, readOnly, options, isMulti, value, icon, defaultValue, width, closeMenuOnSelect, className, style, isDisabled, isClearable, placeholder, menuPortalTarget, menuPlacement, customOptionElement, customSingleValueElement, 'data-testid': dataTestId, onKeyDown, openMenuOnClick, ref, instanceId, afterLabelContent, hideSelectedOptions, ...rest }: SelectProps<Option, IsMulti>):
|
|
5133
|
+
declare function Select<Option = unknown, IsMulti extends boolean = false>({ id, label, componentSize, errorMessage, tip, 'aria-required': ariaRequired, readOnly, options, isMulti, value, icon, defaultValue, width, closeMenuOnSelect, className, style, isDisabled, isClearable, placeholder, menuPortalTarget, menuPlacement, customOptionElement, customSingleValueElement, 'data-testid': dataTestId, onKeyDown, openMenuOnClick, ref, instanceId, afterLabelContent, hideSelectedOptions, ...rest }: SelectProps<Option, IsMulti>): JSX.Element;
|
|
5103
5134
|
declare namespace Select {
|
|
5104
5135
|
var displayName: string;
|
|
5105
5136
|
}
|
|
@@ -5110,12 +5141,12 @@ type NativeSelectProps = {
|
|
|
5110
5141
|
/** Implementerer `readOnly` oppførsel etter standard for `<input>` og setter `readOnly` styling. */
|
|
5111
5142
|
readOnly?: InputProps['readOnly'];
|
|
5112
5143
|
} & CommonInputProps & Pick<InputProps, 'componentSize'> & InputIconProps & ComponentPropsWithRef<'select'>;
|
|
5113
|
-
declare const NativeSelect: ({ ref, id, children, componentSize, label, multiple, readOnly, errorMessage, tip, required, "aria-required": ariaRequired, "aria-describedby": ariaDescribedby, width, className, style, onKeyDown, onMouseDown, clearable, afterLabelContent, onChange, icon, ...rest }: NativeSelectProps) =>
|
|
5144
|
+
declare const NativeSelect: ({ ref, id, children, componentSize, label, multiple, readOnly, errorMessage, tip, required, "aria-required": ariaRequired, "aria-describedby": ariaDescribedby, width, className, style, onKeyDown, onMouseDown, clearable, afterLabelContent, onChange, icon, ...rest }: NativeSelectProps) => react.JSX.Element;
|
|
5114
5145
|
|
|
5115
5146
|
declare const createSelectOptions: <TValue extends string | number>(...args: Array<TValue>) => Array<SelectOption<TValue>>;
|
|
5116
5147
|
|
|
5117
5148
|
declare const RadioButton: {
|
|
5118
|
-
({ id, name, label, disabled, readOnly, error, checked, value, children, required, onChange, "aria-describedby": ariaDescribedby, className, htmlProps, style, ...rest }: RadioButtonProps):
|
|
5149
|
+
({ id, name, label, disabled, readOnly, error, checked, value, children, required, onChange, "aria-describedby": ariaDescribedby, className, htmlProps, style, ...rest }: RadioButtonProps): react.JSX.Element;
|
|
5119
5150
|
displayName: string;
|
|
5120
5151
|
};
|
|
5121
5152
|
|
|
@@ -5132,7 +5163,7 @@ type RadioButtonGroupProps<T extends string | number> = BaseComponentPropsWithCh
|
|
|
5132
5163
|
defaultValue?: T | undefined;
|
|
5133
5164
|
}, Omit<HTMLAttributes<HTMLDivElement>, 'onChange'>>;
|
|
5134
5165
|
declare const RadioButtonGroup: {
|
|
5135
|
-
<T extends string | number = string>({ name, label, groupId, errorMessage, tip, disabled, readOnly, direction, value, defaultValue, children, required, onChange, id, className, style, htmlProps, ...rest }: RadioButtonGroupProps<T>):
|
|
5166
|
+
<T extends string | number = string>({ name, label, groupId, errorMessage, tip, disabled, readOnly, direction, value, defaultValue, children, required, onChange, id, className, style, htmlProps, ...rest }: RadioButtonGroupProps<T>): react.JSX.Element;
|
|
5136
5167
|
displayName: string;
|
|
5137
5168
|
};
|
|
5138
5169
|
|
|
@@ -5144,7 +5175,7 @@ type SkeletonProps = {
|
|
|
5144
5175
|
borderRadius?: Property.BorderRadius;
|
|
5145
5176
|
} & Pick<ResponsiveProps, 'width' | 'height'> & ComponentPropsWithRef<'div'>;
|
|
5146
5177
|
declare const Skeleton: {
|
|
5147
|
-
({ width, height, borderRadius, className, style, ref, ...rest }: SkeletonProps):
|
|
5178
|
+
({ width, height, borderRadius, className, style, ref, ...rest }: SkeletonProps): react.JSX.Element;
|
|
5148
5179
|
displayName: string;
|
|
5149
5180
|
};
|
|
5150
5181
|
|
|
@@ -5161,7 +5192,7 @@ type SkipToContentProps = BaseComponentProps<HTMLAnchorElement, {
|
|
|
5161
5192
|
top?: Property.Top;
|
|
5162
5193
|
}>;
|
|
5163
5194
|
declare const SkipToContent: {
|
|
5164
|
-
({ text, top, id, className, htmlProps, style, ...rest }: SkipToContentProps):
|
|
5195
|
+
({ text, top, id, className, htmlProps, style, ...rest }: SkipToContentProps): react.JSX.Element;
|
|
5165
5196
|
displayName: string;
|
|
5166
5197
|
};
|
|
5167
5198
|
|
|
@@ -5179,7 +5210,7 @@ type SpinnerProps = BaseComponentProps<SVGElement, {
|
|
|
5179
5210
|
*/
|
|
5180
5211
|
tooltip?: string;
|
|
5181
5212
|
}, Omit<HTMLAttributes<SVGSVGElement>, 'color'>>;
|
|
5182
|
-
declare function Spinner(props: SpinnerProps):
|
|
5213
|
+
declare function Spinner(props: SpinnerProps): react.JSX.Element;
|
|
5183
5214
|
declare namespace Spinner {
|
|
5184
5215
|
var displayName: string;
|
|
5185
5216
|
}
|
|
@@ -5198,13 +5229,13 @@ type SplitButtonProps = Pick<ButtonProps, 'size'> & {
|
|
|
5198
5229
|
purpose?: SplitButtonPurpose;
|
|
5199
5230
|
} & ComponentPropsWithRef<'div'>;
|
|
5200
5231
|
declare const SplitButton: {
|
|
5201
|
-
({ size, primaryAction, secondaryActions, purpose, className, ...rest }: SplitButtonProps):
|
|
5232
|
+
({ size, primaryAction, secondaryActions, purpose, className, ...rest }: SplitButtonProps): react.JSX.Element;
|
|
5202
5233
|
displayName: string;
|
|
5203
5234
|
};
|
|
5204
5235
|
|
|
5205
5236
|
type TableBodyProps = ComponentPropsWithRef<'tbody'>;
|
|
5206
5237
|
declare const Body: {
|
|
5207
|
-
(props: TableBodyProps):
|
|
5238
|
+
(props: TableBodyProps): react.JSX.Element;
|
|
5208
5239
|
displayName: string;
|
|
5209
5240
|
};
|
|
5210
5241
|
|
|
@@ -5227,18 +5258,18 @@ type TableCellProps = {
|
|
|
5227
5258
|
collapsibleProps?: CollapsibleProps;
|
|
5228
5259
|
} & (ComponentPropsWithRef<'td'> | ComponentPropsWithRef<'th'>);
|
|
5229
5260
|
declare const Cell: {
|
|
5230
|
-
({ children, type: _type, layout, collapsibleProps, className, ...rest }: TableCellProps):
|
|
5261
|
+
({ children, type: _type, layout, collapsibleProps, className, ...rest }: TableCellProps): react.JSX.Element;
|
|
5231
5262
|
displayName: string;
|
|
5232
5263
|
};
|
|
5233
5264
|
|
|
5234
5265
|
type TableFootProps = ComponentPropsWithRef<'tfoot'>;
|
|
5235
5266
|
declare const Foot: {
|
|
5236
|
-
(props: TableFootProps):
|
|
5267
|
+
(props: TableFootProps): react.JSX.Element;
|
|
5237
5268
|
displayName: string;
|
|
5238
5269
|
};
|
|
5239
5270
|
|
|
5240
5271
|
type TableHeadProps = ComponentPropsWithRef<'thead'>;
|
|
5241
|
-
declare const Head: ({ children, ...rest }: TableHeadProps) =>
|
|
5272
|
+
declare const Head: ({ children, ...rest }: TableHeadProps) => react.JSX.Element;
|
|
5242
5273
|
|
|
5243
5274
|
type TableSize = Extract<Size, 'small' | 'medium' | 'large'>;
|
|
5244
5275
|
type TableProps = {
|
|
@@ -5280,7 +5311,7 @@ type TableRowProps = {
|
|
|
5280
5311
|
} & ComponentPropsWithRef<'tr'>;
|
|
5281
5312
|
|
|
5282
5313
|
declare const Row: {
|
|
5283
|
-
({ type: _type, mode, hoverable, selected, className, ...rest }: TableRowProps):
|
|
5314
|
+
({ type: _type, mode, hoverable, selected, className, ...rest }: TableRowProps): react.JSX.Element;
|
|
5284
5315
|
displayName: string;
|
|
5285
5316
|
};
|
|
5286
5317
|
|
|
@@ -5294,18 +5325,18 @@ type TableSortCellProps = {
|
|
|
5294
5325
|
onClick: (event: MouseEvent$1<HTMLButtonElement>) => void;
|
|
5295
5326
|
} & Omit<TableCellProps, 'type'>;
|
|
5296
5327
|
declare const SortCell: {
|
|
5297
|
-
({ isSorted, sortOrder, onClick, children, ...rest }: TableSortCellProps):
|
|
5328
|
+
({ isSorted, sortOrder, onClick, children, ...rest }: TableSortCellProps): react.JSX.Element;
|
|
5298
5329
|
displayName: string;
|
|
5299
5330
|
};
|
|
5300
5331
|
|
|
5301
5332
|
declare const Table$1: {
|
|
5302
|
-
({ size, stickyHeader, withDividers, withStripes, className, children, ...rest }: TableProps):
|
|
5333
|
+
({ size, stickyHeader, withDividers, withStripes, className, children, ...rest }: TableProps): react.JSX.Element;
|
|
5303
5334
|
displayName: string;
|
|
5304
5335
|
};
|
|
5305
5336
|
|
|
5306
5337
|
type TableWrapperProps = HTMLAttributes<HTMLDivElement>;
|
|
5307
5338
|
declare const TableWrapper: {
|
|
5308
|
-
({ className, ...rest }: TableWrapperProps):
|
|
5339
|
+
({ className, ...rest }: TableWrapperProps): react.JSX.Element;
|
|
5309
5340
|
displayName: string;
|
|
5310
5341
|
};
|
|
5311
5342
|
|
|
@@ -5321,7 +5352,7 @@ type TableCompoundProps = typeof Table$1 & {
|
|
|
5321
5352
|
declare const Table: TableCompoundProps;
|
|
5322
5353
|
|
|
5323
5354
|
declare const CollapsibleRow: {
|
|
5324
|
-
({ type: _type, className, mode, selected, hoverable, children, ref, ...rest }: TableRowProps):
|
|
5355
|
+
({ type: _type, className, mode, selected, hoverable, children, ref, ...rest }: TableRowProps): react.JSX.Element;
|
|
5325
5356
|
displayName: string;
|
|
5326
5357
|
};
|
|
5327
5358
|
|
|
@@ -5338,7 +5369,7 @@ type CollapsibleTableProps = {
|
|
|
5338
5369
|
} & TableProps;
|
|
5339
5370
|
|
|
5340
5371
|
declare const CollapsibleTable$1: {
|
|
5341
|
-
({ isCollapsed, headerValues, definingColumnIndex, ...rest }: CollapsibleTableProps):
|
|
5372
|
+
({ isCollapsed, headerValues, definingColumnIndex, ...rest }: CollapsibleTableProps): react.JSX.Element;
|
|
5342
5373
|
displayName: string;
|
|
5343
5374
|
};
|
|
5344
5375
|
|
|
@@ -5355,7 +5386,7 @@ type AddTabButtonProps = {
|
|
|
5355
5386
|
index?: number;
|
|
5356
5387
|
} & ComponentPropsWithRef<'button'>;
|
|
5357
5388
|
declare const AddTabButton: {
|
|
5358
|
-
({ ref, children, index, className, width, ...rest }: AddTabButtonProps):
|
|
5389
|
+
({ ref, children, index, className, width, ...rest }: AddTabButtonProps): react.JSX.Element;
|
|
5359
5390
|
displayName: string;
|
|
5360
5391
|
};
|
|
5361
5392
|
|
|
@@ -5376,7 +5407,7 @@ type TabsProps = BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
5376
5407
|
addTabButtonProps?: Omit<AddTabButtonProps, 'index'>;
|
|
5377
5408
|
} & Pick<ResponsiveProps, 'width'>, Omit<HTMLAttributes<HTMLDivElement>, 'onChange'>>;
|
|
5378
5409
|
declare const Tabs: {
|
|
5379
|
-
({ id, activeTab, onChange, tabContentDirection, size, addTabButtonProps, width, children, className, style, htmlProps, ...rest }: TabsProps):
|
|
5410
|
+
({ id, activeTab, onChange, tabContentDirection, size, addTabButtonProps, width, children, className, style, htmlProps, ...rest }: TabsProps): react.JSX.Element;
|
|
5380
5411
|
displayName: string;
|
|
5381
5412
|
};
|
|
5382
5413
|
|
|
@@ -5400,13 +5431,13 @@ type TabProps = BaseComponentPropsWithChildren<HTMLButtonElement, {
|
|
|
5400
5431
|
width?: CSS.Properties['width'];
|
|
5401
5432
|
} & PickedAttributes, Omit<ButtonHTMLAttributes<HTMLButtonElement>, keyof PickedAttributes>>;
|
|
5402
5433
|
declare const Tab: {
|
|
5403
|
-
({ active, icon, children, focus, setFocus, index, onClick, onKeyDown, id, className, htmlProps, style, width, ref, ...rest }: TabProps):
|
|
5434
|
+
({ active, icon, children, focus, setFocus, index, onClick, onKeyDown, id, className, htmlProps, style, width, ref, ...rest }: TabProps): react.JSX.Element;
|
|
5404
5435
|
displayName: string;
|
|
5405
5436
|
};
|
|
5406
5437
|
|
|
5407
5438
|
type TabListProps = ComponentPropsWithRef<'div'>;
|
|
5408
5439
|
declare const TabList: {
|
|
5409
|
-
({ children, id, style, onFocus, ref, ...rest }: TabListProps):
|
|
5440
|
+
({ children, id, style, onFocus, ref, ...rest }: TabListProps): react.JSX.Element;
|
|
5410
5441
|
displayName: string;
|
|
5411
5442
|
};
|
|
5412
5443
|
|
|
@@ -5419,13 +5450,13 @@ type TabPanelProps = BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
5419
5450
|
padding?: ResponsiveProps['padding'];
|
|
5420
5451
|
}>;
|
|
5421
5452
|
declare const TabPanel: {
|
|
5422
|
-
({ active, children, id, className, style, htmlProps, padding, ...rest }: TabPanelProps):
|
|
5453
|
+
({ active, children, id, className, style, htmlProps, padding, ...rest }: TabPanelProps): react.JSX.Element;
|
|
5423
5454
|
displayName: string;
|
|
5424
5455
|
};
|
|
5425
5456
|
|
|
5426
5457
|
type TabPanelsProps = Pick<ResponsiveProps, 'padding' | 'paddingBlock' | 'paddingInline'> & ComponentPropsWithRef<'div'>;
|
|
5427
5458
|
declare const TabPanels: {
|
|
5428
|
-
({ children, ref, ...rest }: TabPanelsProps):
|
|
5459
|
+
({ children, ref, ...rest }: TabPanelsProps): react.JSX.Element;
|
|
5429
5460
|
displayName: string;
|
|
5430
5461
|
};
|
|
5431
5462
|
|
|
@@ -5454,7 +5485,7 @@ type TagProps = BaseComponentProps<HTMLSpanElement, {
|
|
|
5454
5485
|
withIcon?: boolean;
|
|
5455
5486
|
}>;
|
|
5456
5487
|
declare const Tag: {
|
|
5457
|
-
({ purpose, appearance, id, className, style, children, htmlProps, withIcon, ...rest }: TagProps):
|
|
5488
|
+
({ purpose, appearance, id, className, style, children, htmlProps, withIcon, ...rest }: TagProps): react.JSX.Element;
|
|
5458
5489
|
displayName: string;
|
|
5459
5490
|
};
|
|
5460
5491
|
|
|
@@ -5465,7 +5496,7 @@ type TextAreaProps = CommonInputProps & {
|
|
|
5465
5496
|
withCharacterCounter?: boolean;
|
|
5466
5497
|
} & ComponentPropsWithRef<'textarea'>;
|
|
5467
5498
|
declare const TextArea: {
|
|
5468
|
-
({ id, value, defaultValue, onChange, errorMessage, required, tip, label, readOnly, "aria-required": ariaRequired, "aria-describedby": ariaDescribedby, maxLength, withCharacterCounter, className, style, width, ref, ...rest }: TextAreaProps):
|
|
5499
|
+
({ id, value, defaultValue, onChange, errorMessage, required, tip, label, readOnly, "aria-required": ariaRequired, "aria-describedby": ariaDescribedby, maxLength, withCharacterCounter, className, style, width, ref, ...rest }: TextAreaProps): react.JSX.Element;
|
|
5469
5500
|
displayName: string;
|
|
5470
5501
|
};
|
|
5471
5502
|
|
|
@@ -5486,7 +5517,7 @@ interface TextAffixProps {
|
|
|
5486
5517
|
}
|
|
5487
5518
|
|
|
5488
5519
|
declare const TextInput: {
|
|
5489
|
-
({ label, afterLabelContent, disabled, readOnly, errorMessage, tip, required, maxLength, onChange, id, width, componentSize, type, withCharacterCounter, className, style, value, defaultValue, "aria-required": ariaRequired, "aria-describedby": ariaDescribedby, icon, prefix, suffix, ref, ...rest }: TextInputProps):
|
|
5520
|
+
({ label, afterLabelContent, disabled, readOnly, errorMessage, tip, required, maxLength, onChange, id, width, componentSize, type, withCharacterCounter, className, style, value, defaultValue, "aria-required": ariaRequired, "aria-describedby": ariaDescribedby, icon, prefix, suffix, ref, ...rest }: TextInputProps): react__default.JSX.Element;
|
|
5490
5521
|
displayName: string;
|
|
5491
5522
|
};
|
|
5492
5523
|
|
|
@@ -5518,11 +5549,10 @@ type ToggleBarProps<T extends string | number> = BaseComponentPropsWithChildren<
|
|
|
5518
5549
|
}, InputHTMLAttributes<HTMLInputElement>>;
|
|
5519
5550
|
|
|
5520
5551
|
declare const ToggleBar: {
|
|
5521
|
-
<T extends string | number = string>(props: ToggleBarProps<T>):
|
|
5552
|
+
<T extends string | number = string>(props: ToggleBarProps<T>): react.JSX.Element;
|
|
5522
5553
|
displayName: string;
|
|
5523
5554
|
};
|
|
5524
5555
|
|
|
5525
|
-
declare const typographyTypes: Record<ToggleBarSize, StaticTypographyType>;
|
|
5526
5556
|
type ToggleRadioProps = BaseComponentProps<HTMLInputElement, {
|
|
5527
5557
|
/**Ledetekst som vises i komponenten. */
|
|
5528
5558
|
label?: string;
|
|
@@ -5530,7 +5560,7 @@ type ToggleRadioProps = BaseComponentProps<HTMLInputElement, {
|
|
|
5530
5560
|
icon?: SvgIcon;
|
|
5531
5561
|
} & Pick<InputHTMLAttributes<HTMLInputElement>, 'name' | 'checked' | 'value' | 'onChange' | 'aria-label' | 'aria-labelledby'>>;
|
|
5532
5562
|
declare const ToggleRadio: {
|
|
5533
|
-
({ value, name, onChange, checked, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledBy, icon, label, htmlProps, className, style, id, ...rest }: ToggleRadioProps):
|
|
5563
|
+
({ value, name, onChange, checked, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledBy, icon, label, htmlProps, className, style, id, ...rest }: ToggleRadioProps): react.JSX.Element;
|
|
5534
5564
|
displayName: string;
|
|
5535
5565
|
};
|
|
5536
5566
|
|
|
@@ -5547,7 +5577,7 @@ type ToggleButtonProps = BaseComponentProps<HTMLInputElement, {
|
|
|
5547
5577
|
} & CheckboxPickedHTMLAttributes, InputHTMLAttributes<HTMLInputElement>>;
|
|
5548
5578
|
|
|
5549
5579
|
declare const ToggleButton: {
|
|
5550
|
-
({ id, label, icon, size, className, style, htmlProps, ...rest }: ToggleButtonProps):
|
|
5580
|
+
({ id, label, icon, size, className, style, htmlProps, ...rest }: ToggleButtonProps): react.JSX.Element;
|
|
5551
5581
|
displayName: string;
|
|
5552
5582
|
};
|
|
5553
5583
|
|
|
@@ -5563,7 +5593,7 @@ type ToggleButtonGroupProps = BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
5563
5593
|
labelId?: string;
|
|
5564
5594
|
}>;
|
|
5565
5595
|
declare const ToggleButtonGroup: {
|
|
5566
|
-
(props: ToggleButtonGroupProps):
|
|
5596
|
+
(props: ToggleButtonGroupProps): react.JSX.Element;
|
|
5567
5597
|
displayName: string;
|
|
5568
5598
|
};
|
|
5569
5599
|
|
|
@@ -5590,14 +5620,14 @@ type TooltipProps = BaseComponentProps<HTMLDivElement, {
|
|
|
5590
5620
|
keepMounted?: boolean;
|
|
5591
5621
|
} & PickedHTMLAttributes, Omit<HTMLAttributes<HTMLDivElement>, 'children' | keyof PickedHTMLAttributes>>;
|
|
5592
5622
|
declare const Tooltip: {
|
|
5593
|
-
({ text, placement, children, tooltipId, delay, style, onMouseLeave, onMouseOver, keepMounted, id, ref, className, htmlProps, ...rest }: TooltipProps):
|
|
5623
|
+
({ text, placement, children, tooltipId, delay, style, onMouseLeave, onMouseOver, keepMounted, id, ref, className, htmlProps, ...rest }: TooltipProps): react.JSX.Element;
|
|
5594
5624
|
displayName: string;
|
|
5595
5625
|
};
|
|
5596
5626
|
|
|
5597
5627
|
type VisuallyHiddenProps<T extends ElementType = 'span'> = PolymorphicBaseComponentProps<T>;
|
|
5598
5628
|
declare const VisuallyHidden: {
|
|
5599
|
-
<T extends ElementType = "span">({ id, as: asProp, className, style, htmlProps, ...rest }: VisuallyHiddenProps<T>):
|
|
5629
|
+
<T extends ElementType = "span">({ id, as: asProp, className, style, htmlProps, ...rest }: VisuallyHiddenProps<T>): react.JSX.Element;
|
|
5600
5630
|
displayName: string;
|
|
5601
5631
|
};
|
|
5602
5632
|
|
|
5603
|
-
export { Accordion, AccordionBody, type AccordionBodyProps, type AccordionConfig, AccordionContextProvider, AccordionHeader, type AccordionHeaderProps, type AccordionProps, type AccordionState, AddTabButton, type AddTabButtonProps, AddressShieldedIcon, AgreementIcon, AnimatedChevronUpDownIcon, type AnimatedChevronUpDownIconStates, AppsIcon, ArchiveIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AttachmentIcon, BORDER_COLORS, BORDER_RADII, BackLink, type BackLinkProps, Backdrop, BarChartBoxedIcon, BarChartIcon, type BaseComponentProps, type BaseComponentPropsWithChildren, type BaseItemProps, type BaseLabelProps, type BaseTypographyProps, Bleed, type BleedProps, BlockIcon, type BlockTypographyResponsiveProps, BookIcon, type BorderColor, type BorderRadius, Box, type BoxProps, Breadcrumb, type BreadcrumbProps, Breadcrumbs, type BreadcrumbsProps, type Breakpoint, BriefcaseIcon, BuildIcon, BuildingIcon, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, type ButtonPurpose, type ButtonSize, Calendar, CalendarIcon, CalendarMonthIcon, type CalendarProps, CalendarViewDayIcon, CalendarViewMonthIcon, CalendarViewWeekIcon, CallIcon, type Callback, Caption, type CaptionProps, Card, CardExpandable, CardExpandableBody, type CardExpandableBodyProps, CardExpandableHeader, type CardExpandableHeaderProps, type CardExpandableProps, type CardProps, CardSelectable, CardSelectableGroup, type CardSelectableGroupProps, type CardSelectableProps, CaringIcon, ChatIcon, CheckCircledIcon, CheckIcon, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxPickedHTMLAttributes, type CheckboxProps, ChecklistIcon, ChevronDownIcon, ChevronFirstIcon, ChevronLastIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, Chip, ChipGroup, type ChipGroupProps, type ChipProps, CircleFilledIcon, CircleIcon, CloseCircledIcon, CloseIcon, CloseSmallIcon, CloudIcon, CollapseIcon, CollapsibleTable, type CollapsibleTableProps, CollapsibleRow as CollapsibleTableRow, type ColumnsOccupied, CommentIcon, type CommonBlockTypographyProps, type CommonInlineTypographyProps, Contrast, type ContrastProps, CookieBanner, CookieBannerCheckbox, type CookieBannerCheckboxProps, type CookieBannerProps, CopyIcon, CourtIcon, DETAIL_LIST_SIZES, DatePicker, type DatePickerProps, DateRangeIcon, DdsProvider, type DdsProviderProps, type DdsTheme, DeathsIcon, DescriptionList, type DescriptionListAppearance, DescriptionListDesc, type DescriptionListDescProps, DescriptionListGroup, type DescriptionListGroupProps, type DescriptionListProps, DescriptionListTerm, type DescriptionListTermProps, DetailList, DetailListDesc, type DetailListDescProps, type DetailListProps, DetailListRow, type DetailListRowProps, type DetailListSize, DetailListTerm, type DetailListTermProps, type Direction$1 as Direction, Divider, type DividerColor, type DividerProps, DoubleChevronLeftIcon, DoubleChevronRightIcon, DownloadDoneIcon, DownloadIcon, DragHandleIcon, Drawer, DrawerGroup, type DrawerGroupProps, type DrawerPlacement, type DrawerProps, type DrawerSize, DropdownHeader, DropdownItem, type DropdownItemButtonProps, type DropdownItemCustomProps, type DropdownItemProps, ELEVATIONS, EditAltIcon, EditIcon, ElementAs, type Elevation, EmptyContent, type EmptyContentProps, ErrorIcon, ErrorSummary, ErrorSummaryItem, type ErrorSummaryItemProps, type ErrorSummaryProps, ExclaimIcon, ExpandIcon, type ExtractStrict, FacebookIcon, FamilyIcon, FavStar, type FavStarProps, Feedback, FeedbackIcon, type FeedbackProps, Fieldset, FieldsetGroup, type FieldsetGroupProps, type FieldsetProps, FileAddIcon, FileIcon, type FileList, FileShieldedIcon, type FileStatusMap, FileTextIcon, FileUploader, type FileUploaderAccept, type FileUploaderProps, FilterIcon, FilterListIcon, FindInPageIcon, FlagFilledIcon, FlagIcon, FlickrIcon, type FloatingStyles, FloppyDiskIcon, FolderAddIcon, FolderIcon, FolderShieldedIcon, Footer, FooterLeft, type FooterLeftProps, FooterList, FooterListGroup, type FooterListGroupProps, FooterListHeader, type FooterListHeaderProps, type FooterListProps, FooterLogo, type FooterLogoProps, type FooterProps, FooterSocialsGroup, type FooterSocialsGroupProps, FooterSocialsList, type FooterSocialsListProps, FormSummary, FormSummaryEditButton, FormSummaryEmptyValue, FormSummaryError, FormSummaryField, FormSummaryFields, FormSummaryHeader, FormSummaryHeading, FormSummaryLabel, type FormSummaryProps, FormSummaryValue, FullscreenExitIcon, FullscreenIcon, GavelIcon, GlobalMessage, type GlobalMessageProps, type GlobalMessagePurpose, Grid, GridChild, type GridChildProps, type GridProps, GroupIcon, GuardianIcon, HStack, type HStackProps, type HTMLRootProps, Heading, type HeadingLevel, type HeadingProps, HelpFilledIcon, HelpIcon, HelpSimpleIcon, HiddenInput, HomeIcon, HourglassEmptyIcon, type HyphenTypographyType, Icon, type IconPosition, type IconProps, type IconSize, ImageIcon, InfoIcon, InlineButton, type InlineButtonProps, InlineEditInput, type InlineEditInputProps, InlineEditSelect, type InlineEditSelectProps, InlineEditTextArea, type InlineEditTextAreaProps, type InlineElement, type InlineTypographyResponsiveProps, InputMessage, type InputMessageProps, type InputMessageType, InstagramIcon, type InternaHeaderUserProps, InternalHeader, type InternalHeaderProps, JordskifterettIcon, JordskiftesakIcon, KeyIcon, L_MESSAGE_PURPOSES, Label, type LabelProps, LagmannsrettIcon, LanguageIcon, type Layout, Legend, type LegendProps, LineChartIcon, Link, LinkIcon, LinkOffIcon, type LinkProps, LinkedInIcon, List, ListAltIcon, ListIcon, ListItem, type ListItemProps, type ListProps, type ListType, type ListTypographyType, LocalMessage, type LocalMessageLayout, type LocalMessageProps, type LocalMessagePurpose, LocationIcon, LocationOffIcon, LockFilledIcon, LockIcon, LockOpenIcon, LoginIcon, LogoutIcon, MailIcon, MailOpenIcon, MapIcon, MenuIcon, MinusCircledIcon, MinusIcon, Modal, ModalActions, type ModalActionsProps, ModalBody, type ModalBodyProps, type ModalProps, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, NativeSelect, type NativeSelectProps, NewsPopover, type NewsPopoverProps, NotarialIcon, NotebookPenIcon, NotificationsIcon, NotificationsOffIcon, type Nullable, OnlineMeetingIcon, OpenExternalIcon, type OtherTypographyType, OverflowMenu, OverflowMenuButton, type OverflowMenuButtonProps, OverflowMenuDivider, OverflowMenuGroup, type OverflowMenuGroupProps, OverflowMenuLink, type OverflowMenuLinkProps, OverflowMenuList, OverflowMenuListHeader, type OverflowMenuProps, OverflowMenuSpan, type OverflowMenuSpanProps, OverflowMenuToggle, type OverflowMenuToggleProps, Pagination, type PaginationOption, type PaginationProps, PanelLeftIcon, Paper, type PaperBackground, type PaperBorder, type PaperBorderRadius, type PaperElevation, PaperPlaneIcon, type PaperProps, Paragraph, type ParagraphProps, PayoutIcon, PdfIcon, PersonAddIcon, PersonIcon, PersonShieldedIcon, PhoneInput, type PhoneInputProps, type PhoneInputValue, PinIcon, type Placement, PlusCircledIcon, PlusIcon, type PolymorphicBaseComponentProps, type PolymorphicProps, Popover, PopoverGroup, type PopoverGroupProps, type PopoverProps, type PopoverSizeProps, PowerOfAttorneyIcon, PrintIcon, ProgressBar, type ProgressBarProps, type ProgressBarSize, ProgressTracker, ProgressTrackerItem, type ProgressTrackerItemProps, type ProgressTrackerProps, PublishIcon, type Purpose, QuestionAnswerIcon, RadioButton, RadioButtonGroup, type RadioButtonGroupProps, type RadioButtonProps, type RadioValue, type Rating, ReceiptIcon, RedoIcon, RefreshIcon, type RemoteFile, ReplayIcon, type ResponsiveProps, type ResponsiveStackProps, RowsIcon, ScaleIcon, ScreenSize, Search, SearchAutocompleteWrapper, type SearchAutocompleteWrapperProps, type SearchButtonProps, type SearchData, SearchIcon, type SearchProps, type SearchSize, SearchSuggestions, type SearchSuggestionsProps, SectionIcon, Select, type SelectForwardRefType, type SelectOption, type SelectProps, SettingsIcon, ShowHide, type ShowHideProps, type Size, Skeleton, type SkeletonAppearance, type SkeletonProps, SkipToContent, type SkipToContentProps, SmsIcon, type SortOrder, type SpacingScale, Spinner, type SpinnerProps, SplitButton, type SplitButtonPrimaryActionProps, type SplitButtonProps, type SplitButtonPurpose, type SplitButtonSecondaryActionsProps, StarFilledIcon, StarHalfFilledIcon, StarIcon, type StaticTypographyType, StickyNoteIcon, StylelessButton, type StylelessButtonProps, StylelessList, type StylelessListProps, StylelessOList, type StylelessOListProps, SunIcon, SupportIcon, type SvgIcon, type SvgProps, SyncIcon, TG_HEADING_TYPES, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, TabPanels, type TabPanelsProps, type TabProps, type TabSize, Table, Body as TableBody, type TableBodyProps, Cell as TableCell, type TableCellLayout, type TableCellProps, type TableCellType, Foot as TableFoot, type TableFootProps, Head as TableHead, type TableHeadProps, type TableProps, Row as TableRow, type TableRowProps, type TableRowType, type TableSize, SortCell as TableSortCell, type TableSortCellProps, TableWrapper, Tabs, type TabsProps, Tag, type TagAppearance, type TagProps, type TagPurpose, type TextAffixProps, TextArea, type TextAreaProps, TextInput, type TextInputProps, TextOverflowEllipsisInner, TextOverflowEllipsisWrapper, ThumbDownFilledIcon, ThumbDownIcon, ThumbUpFilledIcon, ThumbUpIcon, TimeIcon, TimePicker, type TimePickerProps, TingrettIcon, TipIcon, Toggle, ToggleBar, type ToggleBarProps, type ToggleBarSize, type ToggleBarValue, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, type ToggleProps, ToggleRadio, type ToggleRadioProps, type ToggleSize, Tooltip, type TooltipProps, TrashIcon, TrendingDownIcon, TrendingUpIcon, Typography, type TypographyAnchorType, type TypographyBodyLongType, type TypographyBodyShortType, type TypographyBodyType, type TypographyComponentProps, type TypographyHeadingType, type TypographyLabelType, type TypographyLeadType, type TypographyProps, type TypographyType, UndoIcon, UnfoldLessIcon, UnfoldMoreIcon, UploadIcon, type UploadInfo, type UploadStatus, type UseAccordionBodyProps, type UseAccordionHeaderProps, type UseControllableGroupStateProps, type UseControllableStateProps, type UseFloatPositionOptions, VStack, type VStackProps, VisibilityOffIcon, VisibilityOnIcon, VisuallyHidden, type VisuallyHiddenProps, WarningIcon, WebexIcon, type WeightedSearchData, type WithRequiredIf, XIcon, ZoomInIcon, ZoomOutIcon, calendarDateToNativeDate, cn, countryOptions, createPurposes, createSelectOptions, createSizes, dateValueToNativeDate, focusVisible, focusVisibleInset, focusVisibleTransitionValue, getBaseHTMLProps, getColorCn, getElementType, getLiteralScreenSize, getTypographyCn, handleElementWithBackdropMount, handleElementWithBackdropUnmount, hideInput, index as icons, inheritLinkStyling, inlineElements, isAnchorTypographyProps, isBorderColor, isBorderRadius, isCaption, isElevation, isHeading, isInlineElement, isKeyboardEvent, isLegend, isPaperBackground, nativeDateToCalendarDate, nativeDateToDateValue, nativeDateToTime, normalizeButton, outlineInset, outlineOffset, removeButtonStyling, removeListStyling, renderInputMessage, scrollbarStyling, typographyTypes, useAccordion, useAccordionContext, useCallbackRef, useCombinedRef, useControllableGroupState, useControllableState, useFloatPosition, useFocusTrap, useIsMounted, useMountTransition, useOnClickOutside, useOnKeyDown, useReturnFocusOnBlur, useRoveFocus, useScreenSize, useTheme, useWindowResize };
|
|
5633
|
+
export { Accordion, AccordionBody, type AccordionBodyProps, type AccordionConfig, AccordionContextProvider, AccordionHeader, type AccordionHeaderProps, type AccordionProps, type AccordionState, AddTabButton, type AddTabButtonProps, AddressShieldedIcon, AgreementIcon, AnimatedChevronUpDownIcon, type AnimatedChevronUpDownIconStates, AppsIcon, ArchiveIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AttachmentIcon, BORDER_COLORS, BORDER_RADII, BackLink, type BackLinkProps, Backdrop, BarChartBoxedIcon, BarChartIcon, type BaseComponentProps, type BaseComponentPropsWithChildren, type BaseItemProps, type BaseLabelProps, type BaseTypographyProps, Bleed, type BleedProps, BlockIcon, type BlockTypographyResponsiveProps, BookIcon, type BorderColor, type BorderRadius, Box, type BoxProps, Breadcrumb, type BreadcrumbProps, Breadcrumbs, type BreadcrumbsProps, type Breakpoint, BriefcaseIcon, BuildIcon, BuildingIcon, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, type ButtonPurpose, type ButtonSize, Calendar, CalendarIcon, CalendarMonthIcon, type CalendarProps, CalendarViewDayIcon, CalendarViewMonthIcon, CalendarViewWeekIcon, CallIcon, type Callback, Caption, type CaptionProps, Card, CardExpandable, CardExpandableBody, type CardExpandableBodyProps, CardExpandableHeader, type CardExpandableHeaderProps, type CardExpandableProps, type CardProps, CardSelectable, CardSelectableGroup, type CardSelectableGroupProps, type CardSelectableProps, CaringIcon, ChatIcon, CheckCircledIcon, CheckIcon, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxPickedHTMLAttributes, type CheckboxProps, ChecklistIcon, ChevronDownIcon, ChevronFirstIcon, ChevronLastIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, Chip, ChipGroup, type ChipGroupProps, type ChipProps, CircleFilledIcon, CircleIcon, CloseCircledIcon, CloseIcon, CloseSmallIcon, CloudIcon, CollapseIcon, CollapsibleTable, type CollapsibleTableProps, CollapsibleRow as CollapsibleTableRow, type ColumnsOccupied, CommentIcon, type CommonBlockTypographyProps, type CommonInlineTypographyProps, Contrast, type ContrastProps, CookieBanner, CookieBannerCheckbox, type CookieBannerCheckboxProps, type CookieBannerProps, CopyIcon, CourtIcon, DETAIL_LIST_SIZES, DatePicker, type DatePickerProps, DateRangeIcon, DdsProvider, type DdsProviderProps, type DdsTheme, DeathsIcon, DescriptionList, type DescriptionListAppearance, DescriptionListDesc, type DescriptionListDescProps, DescriptionListGroup, type DescriptionListGroupProps, type DescriptionListProps, DescriptionListTerm, type DescriptionListTermProps, DetailList, DetailListDesc, type DetailListDescProps, type DetailListProps, DetailListRow, type DetailListRowProps, type DetailListSize, DetailListTerm, type DetailListTermProps, type Direction$1 as Direction, Divider, type DividerColor, type DividerProps, DoubleChevronLeftIcon, DoubleChevronRightIcon, DownloadDoneIcon, DownloadIcon, DragHandleIcon, Drawer, DrawerGroup, type DrawerGroupProps, type DrawerPlacement, type DrawerProps, type DrawerSize, DropdownHeader, DropdownItem, type DropdownItemButtonProps, type DropdownItemCustomProps, type DropdownItemProps, ELEVATIONS, EditAltIcon, EditIcon, ElementAs, type Elevation, EmptyContent, type EmptyContentProps, ErrorIcon, ErrorSummary, ErrorSummaryItem, type ErrorSummaryItemProps, type ErrorSummaryProps, ExclaimIcon, ExpandIcon, type ExtractStrict, FacebookIcon, FamilyIcon, FavStar, type FavStarProps, Feedback, FeedbackIcon, type FeedbackProps, Fieldset, FieldsetGroup, type FieldsetGroupProps, type FieldsetProps, FileAddIcon, FileIcon, type FileList, FileShieldedIcon, type FileStatusMap, FileTextIcon, FileUploader, type FileUploaderAccept, type FileUploaderProps, FilterIcon, FilterListIcon, FindInPageIcon, FlagFilledIcon, FlagIcon, FlickrIcon, type FloatingStyles, FloppyDiskIcon, FolderAddIcon, FolderIcon, FolderShieldedIcon, Footer, FooterLeft, type FooterLeftProps, FooterList, FooterListGroup, type FooterListGroupProps, FooterListHeader, type FooterListHeaderProps, type FooterListProps, FooterLogo, type FooterLogoProps, type FooterProps, FooterSocialsGroup, type FooterSocialsGroupProps, FooterSocialsList, type FooterSocialsListProps, FormSummary, FormSummaryEditButton, FormSummaryEmptyValue, FormSummaryError, FormSummaryField, FormSummaryFields, FormSummaryHeader, FormSummaryHeading, FormSummaryLabel, type FormSummaryProps, FormSummaryValue, FullscreenExitIcon, FullscreenIcon, GavelIcon, GlobalMessage, type GlobalMessageProps, type GlobalMessagePurpose, Grid, GridChild, type GridChildProps, type GridProps, GroupIcon, GuardianIcon, HStack, type HStackProps, type HTMLRootProps, Heading, type HeadingLevel, type HeadingProps, HelpFilledIcon, HelpIcon, HelpSimpleIcon, HiddenInput, HomeIcon, HourglassEmptyIcon, type HyphenTypographyType, Icon, type IconPosition, type IconProps, type IconSize, ImageIcon, InfoIcon, InlineButton, type InlineButtonProps, InlineEditInput, type InlineEditInputProps, InlineEditSelect, type InlineEditSelectProps, InlineEditTextArea, type InlineEditTextAreaProps, type InlineElement, type InlineTypographyResponsiveProps, InputMessage, type InputMessageProps, type InputMessageType, InstagramIcon, type InternaHeaderUserProps, InternalHeader, type InternalHeaderProps, JordskifterettIcon, JordskiftesakIcon, KeyIcon, L_MESSAGE_PURPOSES, Label, type LabelProps, LagmannsrettIcon, LanguageIcon, type Layout, Legend, type LegendProps, LineChartIcon, Link, LinkIcon, LinkOffIcon, type LinkProps, LinkedInIcon, List, ListAltIcon, ListIcon, ListItem, type ListItemProps, type ListProps, type ListType, type ListTypographyType, LocalMessage, type LocalMessageLayout, type LocalMessageProps, type LocalMessagePurpose, LocationIcon, LocationOffIcon, LockFilledIcon, LockIcon, LockOpenIcon, LoginIcon, LogoutIcon, MailIcon, MailOpenIcon, MapIcon, MenuIcon, MinusCircledIcon, MinusIcon, Modal, ModalActions, type ModalActionsProps, ModalBody, type ModalBodyProps, type ModalProps, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, NativeSelect, type NativeSelectProps, NewsPopover, type NewsPopoverProps, NotarialIcon, NotebookPenIcon, NotificationsIcon, NotificationsOffIcon, type Nullable, OnlineMeetingIcon, OpenExternalIcon, type OtherTypographyType, OverflowMenu, OverflowMenuButton, type OverflowMenuButtonProps, OverflowMenuDivider, OverflowMenuGroup, type OverflowMenuGroupProps, OverflowMenuLink, type OverflowMenuLinkProps, OverflowMenuList, OverflowMenuListHeader, type OverflowMenuProps, OverflowMenuSpan, type OverflowMenuSpanProps, OverflowMenuToggle, type OverflowMenuToggleProps, Pagination, type PaginationOption, type PaginationProps, PanelLeftIcon, Paper, type PaperBackground, type PaperBorder, type PaperBorderRadius, type PaperElevation, PaperPlaneIcon, type PaperProps, Paragraph, type ParagraphProps, PayoutIcon, PdfIcon, PersonAddIcon, PersonIcon, PersonShieldedIcon, PhoneInput, type PhoneInputProps, type PhoneInputValue, PinIcon, type Placement, PlusCircledIcon, PlusIcon, type PolymorphicBaseComponentProps, type PolymorphicProps, Popover, PopoverGroup, type PopoverGroupProps, type PopoverProps, type PopoverSizeProps, PowerOfAttorneyIcon, PrintIcon, ProgressBar, type ProgressBarProps, type ProgressBarSize, ProgressTracker, ProgressTrackerItem, type ProgressTrackerItemProps, type ProgressTrackerProps, PublishIcon, type Purpose, QuestionAnswerIcon, RadioButton, RadioButtonGroup, type RadioButtonGroupProps, type RadioButtonProps, type RadioValue, type Rating, ReceiptIcon, RedoIcon, RefreshIcon, type RemoteFile, ReplayIcon, type ResponsiveProps, type ResponsiveStackProps, RowsIcon, ScaleIcon, ScreenSize, Search, SearchAutocompleteWrapper, type SearchAutocompleteWrapperProps, type SearchButtonProps, type SearchData, SearchIcon, type SearchProps, type SearchSize, SearchSuggestions, type SearchSuggestionsProps, SectionIcon, Select, type SelectForwardRefType, type SelectOption, type SelectProps, SettingsIcon, ShowHide, type ShowHideProps, type Size, Skeleton, type SkeletonAppearance, type SkeletonProps, SkipToContent, type SkipToContentProps, SmsIcon, type SortOrder, type SpacingScale, Spinner, type SpinnerProps, SplitButton, type SplitButtonPrimaryActionProps, type SplitButtonProps, type SplitButtonPurpose, type SplitButtonSecondaryActionsProps, StarFilledIcon, StarHalfFilledIcon, StarIcon, type StaticTypographyType, StickyNoteIcon, StylelessButton, type StylelessButtonProps, StylelessList, type StylelessListProps, StylelessOList, type StylelessOListProps, SunIcon, SupportIcon, type SvgIcon, type SvgProps, SyncIcon, TG_HEADING_TYPES, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, TabPanels, type TabPanelsProps, type TabProps, type TabSize, Table, Body as TableBody, type TableBodyProps, Cell as TableCell, type TableCellLayout, type TableCellProps, type TableCellType, Foot as TableFoot, type TableFootProps, Head as TableHead, type TableHeadProps, type TableProps, Row as TableRow, type TableRowProps, type TableRowType, type TableSize, SortCell as TableSortCell, type TableSortCellProps, TableWrapper, Tabs, type TabsProps, Tag, type TagAppearance, type TagProps, type TagPurpose, type TextAffixProps, TextArea, type TextAreaProps, TextInput, type TextInputProps, TextOverflowEllipsisInner, TextOverflowEllipsisWrapper, ThumbDownFilledIcon, ThumbDownIcon, ThumbUpFilledIcon, ThumbUpIcon, TimeIcon, TimePicker, type TimePickerProps, TingrettIcon, TipIcon, Toggle, ToggleBar, type ToggleBarProps, type ToggleBarSize, type ToggleBarValue, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, type ToggleProps, ToggleRadio, type ToggleRadioProps, type ToggleSize, Tooltip, type TooltipProps, TrashIcon, TrendingDownIcon, TrendingUpIcon, Typography, type TypographyAnchorType, type TypographyBodyLongType, type TypographyBodyShortType, type TypographyBodyType, type TypographyComponentProps, type TypographyHeadingType, type TypographyLabelType, type TypographyLeadType, type TypographyProps, type TypographyType, UndoIcon, UnfoldLessIcon, UnfoldMoreIcon, UploadIcon, type UploadInfo, type UploadStatus, type UseAccordionBodyProps, type UseAccordionHeaderProps, type UseControllableGroupStateProps, type UseControllableStateProps, type UseFloatPositionOptions, VStack, type VStackProps, VisibilityOffIcon, VisibilityOnIcon, VisuallyHidden, type VisuallyHiddenProps, WarningIcon, WebexIcon, type WeightedSearchData, type WithRequiredIf, XIcon, ZoomInIcon, ZoomOutIcon, calendarDateToNativeDate, cn, countryOptions, createPurposes, createSelectOptions, createSizes, dateValueToNativeDate, focusVisible, focusVisibleInset, focusVisibleTransitionValue, getBaseHTMLProps, getColorCn, getElementType, getLiteralScreenSize, getTypographyCn, handleElementWithBackdropMount, handleElementWithBackdropUnmount, hideInput, index as icons, inheritLinkStyling, inlineElements, isAnchorTypographyProps, isBorderColor, isBorderRadius, isCaption, isElevation, isHeading, isInlineElement, isKeyboardEvent, isLegend, isPaperBackground, nativeDateToCalendarDate, nativeDateToDateValue, nativeDateToTime, normalizeButton, outlineInset, outlineOffset, removeButtonStyling, removeListStyling, renderInputMessage, scrollbarStyling, useAccordion, useAccordionContext, useCallbackRef, useCombinedRef, useControllableGroupState, useControllableState, useFloatPosition, useFocusTrap, useIsMounted, useMountTransition, useOnClickOutside, useOnKeyDown, useReturnFocusOnBlur, useRoveFocus, useScreenSize, useTheme, useWindowResize };
|