@norges-domstoler/dds-components 23.0.1 → 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 +186 -164
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +375 -328
- package/dist/index.d.ts +375 -328
- package/dist/index.js +1479 -1380
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1297 -1198
- 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.
|
|
@@ -998,6 +997,12 @@ interface PrimitiveLayoutProps {
|
|
|
998
997
|
}
|
|
999
998
|
type ResponsiveProps = PrimitiveDisplayProps & PrimitiveLayoutProps;
|
|
1000
999
|
type ResponsiveStackProps = Omit<ResponsiveProps, 'display' | 'flexDirection'>;
|
|
1000
|
+
type ResponsiveBleedProps = PrimitiveLayoutProps & {
|
|
1001
|
+
/**Setter negativ CSS `margin-inline`, overskriver prop `marginInline`. Støtter standardverdier og dds spacing tokens skala, per brekkpunkt eller samme for alle skjermstørrelser.*/
|
|
1002
|
+
bleedMarginInline?: ResponsiveProp<Property.MarginInline | SpacingScale>;
|
|
1003
|
+
/**Setter negativ CSS `margin-block`, overskriver prop `marginBlock`. Støtter standardverdier og dds spacing tokens skala, per brekkpunkt eller samme for alle skjermstørrelser.*/
|
|
1004
|
+
bleedMarginBlock?: ResponsiveProp<Property.MarginBlock | SpacingScale>;
|
|
1005
|
+
};
|
|
1001
1006
|
|
|
1002
1007
|
declare const getLiteralScreenSize: (screenSize: ScreenSize) => Breakpoint;
|
|
1003
1008
|
|
|
@@ -1019,7 +1024,7 @@ type StylelessListProps<TProps extends object = object> = TProps & ComponentProp
|
|
|
1019
1024
|
* </StylelessList>
|
|
1020
1025
|
* ```
|
|
1021
1026
|
*/
|
|
1022
|
-
declare const StylelessList: ({ className, ...rest }: StylelessListProps) =>
|
|
1027
|
+
declare const StylelessList: ({ className, ...rest }: StylelessListProps) => react.JSX.Element;
|
|
1023
1028
|
type StylelessOListProps<TProps extends object = object> = TProps & ComponentPropsWithRef<'ol'>;
|
|
1024
1029
|
/**
|
|
1025
1030
|
* Normalisert `<ol>` uten styling. Base for custom ol styling.
|
|
@@ -1038,7 +1043,7 @@ type StylelessOListProps<TProps extends object = object> = TProps & ComponentPro
|
|
|
1038
1043
|
* </StylelessOList>
|
|
1039
1044
|
* ```
|
|
1040
1045
|
*/
|
|
1041
|
-
declare const StylelessOList: ({ className, ...rest }: StylelessOListProps) =>
|
|
1046
|
+
declare const StylelessOList: ({ className, ...rest }: StylelessOListProps) => react.JSX.Element;
|
|
1042
1047
|
|
|
1043
1048
|
/**
|
|
1044
1049
|
* Styling utils i TS (CSS-in-JS)
|
|
@@ -1095,15 +1100,26 @@ declare const normalizeButton: {
|
|
|
1095
1100
|
textTransform: Property.TextTransform;
|
|
1096
1101
|
};
|
|
1097
1102
|
|
|
1103
|
+
type BleedProps<T extends ElementType = 'div'> = PolymorphicBaseComponentProps<T, {
|
|
1104
|
+
/**
|
|
1105
|
+
* Setter positiv padding som gjenspeiler negativ margin satt med `bleedMarginBlock` og `bleedMarginInline`. Overskriver `paddingInline` og `paddingBlock`.
|
|
1106
|
+
*/
|
|
1107
|
+
reflectivePadding?: boolean;
|
|
1108
|
+
} & ResponsiveBleedProps>;
|
|
1109
|
+
declare const Bleed: {
|
|
1110
|
+
<T extends ElementType = "div">({ id, className, style, htmlProps, bleedMarginBlock, bleedMarginInline, reflectivePadding, ...rest }: BleedProps<T>): react.JSX.Element;
|
|
1111
|
+
displayName: string;
|
|
1112
|
+
};
|
|
1113
|
+
|
|
1098
1114
|
type BoxProps<T extends ElementType = 'div'> = PolymorphicBaseComponentProps<T, ResponsiveProps>;
|
|
1099
1115
|
declare const Box: {
|
|
1100
|
-
<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;
|
|
1101
1117
|
displayName: string;
|
|
1102
1118
|
};
|
|
1103
1119
|
|
|
1104
1120
|
type ContrastProps<T extends ElementType = 'div'> = BoxProps<T>;
|
|
1105
1121
|
declare const Contrast: {
|
|
1106
|
-
<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;
|
|
1107
1123
|
displayName: string;
|
|
1108
1124
|
};
|
|
1109
1125
|
|
|
@@ -1120,7 +1136,7 @@ type GridProps<T extends ElementType = 'div'> = PolymorphicBaseComponentProps<T,
|
|
|
1120
1136
|
gridTemplateColumns?: ResponsiveProp<Property.GridTemplateColumns>;
|
|
1121
1137
|
} & ResponsiveProps, 'display'>>;
|
|
1122
1138
|
declare const Grid: {
|
|
1123
|
-
<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;
|
|
1124
1140
|
displayName: string;
|
|
1125
1141
|
};
|
|
1126
1142
|
|
|
@@ -1135,7 +1151,7 @@ type GridChildProps<T extends ElementType = 'div'> = PolymorphicBaseComponentPro
|
|
|
1135
1151
|
gridRow?: ResponsiveProp<Property.GridRow>;
|
|
1136
1152
|
} & Omit<ResponsiveProps, 'display'>>;
|
|
1137
1153
|
declare const GridChild: {
|
|
1138
|
-
<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;
|
|
1139
1155
|
displayName: string;
|
|
1140
1156
|
};
|
|
1141
1157
|
|
|
@@ -1153,374 +1169,374 @@ type PaperProps<T extends ElementType = 'div'> = PolymorphicBaseComponentProps<T
|
|
|
1153
1169
|
/**Bakgrunn. Støtter dds tokens. */
|
|
1154
1170
|
background?: PaperBackground;
|
|
1155
1171
|
} & ResponsiveProps & PickedAttributes$1>;
|
|
1156
|
-
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;
|
|
1157
1173
|
|
|
1158
1174
|
type ShowHideProps<T extends ElementType = 'div'> = PolymorphicBaseComponentProps<T, PrimitiveDisplayProps>;
|
|
1159
1175
|
declare const ShowHide: {
|
|
1160
|
-
<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;
|
|
1161
1177
|
displayName: string;
|
|
1162
1178
|
};
|
|
1163
1179
|
|
|
1164
1180
|
type VStackProps<T extends ElementType = 'div'> = PolymorphicBaseComponentProps<T, ResponsiveStackProps>;
|
|
1165
1181
|
declare const VStack: {
|
|
1166
|
-
<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;
|
|
1167
1183
|
displayName: string;
|
|
1168
1184
|
};
|
|
1169
1185
|
|
|
1170
1186
|
type HStackProps<T extends ElementType = 'div'> = PolymorphicBaseComponentProps<T, ResponsiveStackProps>;
|
|
1171
1187
|
declare const HStack: {
|
|
1172
|
-
<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;
|
|
1173
1189
|
displayName: string;
|
|
1174
1190
|
};
|
|
1175
1191
|
|
|
1176
|
-
declare function AddressShieldedIcon(props: SvgProps):
|
|
1192
|
+
declare function AddressShieldedIcon(props: SvgProps): react.JSX.Element;
|
|
1177
1193
|
|
|
1178
|
-
declare function AgreementIcon(props: SvgProps):
|
|
1194
|
+
declare function AgreementIcon(props: SvgProps): react.JSX.Element;
|
|
1179
1195
|
|
|
1180
|
-
declare function AppsIcon(props: SvgProps):
|
|
1196
|
+
declare function AppsIcon(props: SvgProps): react.JSX.Element;
|
|
1181
1197
|
|
|
1182
|
-
declare function ArchiveIcon(props: SvgProps):
|
|
1198
|
+
declare function ArchiveIcon(props: SvgProps): react.JSX.Element;
|
|
1183
1199
|
|
|
1184
|
-
declare function ArrowDownIcon(props: SvgProps):
|
|
1200
|
+
declare function ArrowDownIcon(props: SvgProps): react.JSX.Element;
|
|
1185
1201
|
|
|
1186
|
-
declare function ArrowLeftIcon(props: SvgProps):
|
|
1202
|
+
declare function ArrowLeftIcon(props: SvgProps): react.JSX.Element;
|
|
1187
1203
|
|
|
1188
|
-
declare function ArrowRightIcon(props: SvgProps):
|
|
1204
|
+
declare function ArrowRightIcon(props: SvgProps): react.JSX.Element;
|
|
1189
1205
|
|
|
1190
|
-
declare function ArrowUpIcon(props: SvgProps):
|
|
1206
|
+
declare function ArrowUpIcon(props: SvgProps): react.JSX.Element;
|
|
1191
1207
|
|
|
1192
|
-
declare function AttachmentIcon(props: SvgProps):
|
|
1208
|
+
declare function AttachmentIcon(props: SvgProps): react.JSX.Element;
|
|
1193
1209
|
|
|
1194
|
-
declare function BlockIcon(props: SvgProps):
|
|
1210
|
+
declare function BlockIcon(props: SvgProps): react.JSX.Element;
|
|
1195
1211
|
|
|
1196
|
-
declare function BookIcon(props: SvgProps):
|
|
1212
|
+
declare function BookIcon(props: SvgProps): react.JSX.Element;
|
|
1197
1213
|
|
|
1198
|
-
declare function BriefcaseIcon(props: SvgProps):
|
|
1214
|
+
declare function BriefcaseIcon(props: SvgProps): react.JSX.Element;
|
|
1199
1215
|
|
|
1200
|
-
declare function BuildIcon(props: SvgProps):
|
|
1216
|
+
declare function BuildIcon(props: SvgProps): react.JSX.Element;
|
|
1201
1217
|
|
|
1202
|
-
declare function BuildingIcon(props: SvgProps):
|
|
1218
|
+
declare function BuildingIcon(props: SvgProps): react.JSX.Element;
|
|
1203
1219
|
|
|
1204
|
-
declare function CalendarIcon(props: SvgProps):
|
|
1220
|
+
declare function CalendarIcon(props: SvgProps): react.JSX.Element;
|
|
1205
1221
|
|
|
1206
|
-
declare function CalendarMonthIcon(props: SvgProps):
|
|
1222
|
+
declare function CalendarMonthIcon(props: SvgProps): react.JSX.Element;
|
|
1207
1223
|
|
|
1208
|
-
declare function CalendarViewDayIcon(props: SvgProps):
|
|
1224
|
+
declare function CalendarViewDayIcon(props: SvgProps): react.JSX.Element;
|
|
1209
1225
|
|
|
1210
|
-
declare function CalendarViewMonthIcon(props: SvgProps):
|
|
1226
|
+
declare function CalendarViewMonthIcon(props: SvgProps): react.JSX.Element;
|
|
1211
1227
|
|
|
1212
|
-
declare function CalendarViewWeekIcon(props: SvgProps):
|
|
1228
|
+
declare function CalendarViewWeekIcon(props: SvgProps): react.JSX.Element;
|
|
1213
1229
|
|
|
1214
|
-
declare function CallIcon(props: SvgProps):
|
|
1230
|
+
declare function CallIcon(props: SvgProps): react.JSX.Element;
|
|
1215
1231
|
|
|
1216
|
-
declare function CaringIcon(props: SvgProps):
|
|
1232
|
+
declare function CaringIcon(props: SvgProps): react.JSX.Element;
|
|
1217
1233
|
|
|
1218
|
-
declare function ChatIcon(props: SvgProps):
|
|
1234
|
+
declare function ChatIcon(props: SvgProps): react.JSX.Element;
|
|
1219
1235
|
|
|
1220
|
-
declare function CheckIcon(props: SvgProps):
|
|
1236
|
+
declare function CheckIcon(props: SvgProps): react.JSX.Element;
|
|
1221
1237
|
|
|
1222
|
-
declare function CheckCircledIcon(props: SvgProps):
|
|
1238
|
+
declare function CheckCircledIcon(props: SvgProps): react.JSX.Element;
|
|
1223
1239
|
|
|
1224
|
-
declare function ChecklistIcon(props: SvgProps):
|
|
1240
|
+
declare function ChecklistIcon(props: SvgProps): react.JSX.Element;
|
|
1225
1241
|
|
|
1226
|
-
declare function ChevronDownIcon(props: SvgProps):
|
|
1242
|
+
declare function ChevronDownIcon(props: SvgProps): react.JSX.Element;
|
|
1227
1243
|
|
|
1228
|
-
declare function ChevronFirstIcon(props: SvgProps):
|
|
1244
|
+
declare function ChevronFirstIcon(props: SvgProps): react.JSX.Element;
|
|
1229
1245
|
|
|
1230
|
-
declare function ChevronLastIcon(props: SvgProps):
|
|
1246
|
+
declare function ChevronLastIcon(props: SvgProps): react.JSX.Element;
|
|
1231
1247
|
|
|
1232
|
-
declare function ChevronLeftIcon(props: SvgProps):
|
|
1248
|
+
declare function ChevronLeftIcon(props: SvgProps): react.JSX.Element;
|
|
1233
1249
|
|
|
1234
|
-
declare function ChevronRightIcon(props: SvgProps):
|
|
1250
|
+
declare function ChevronRightIcon(props: SvgProps): react.JSX.Element;
|
|
1235
1251
|
|
|
1236
|
-
declare function ChevronUpIcon(props: SvgProps):
|
|
1252
|
+
declare function ChevronUpIcon(props: SvgProps): react.JSX.Element;
|
|
1237
1253
|
|
|
1238
|
-
declare function CircleIcon(props: SvgProps):
|
|
1254
|
+
declare function CircleIcon(props: SvgProps): react.JSX.Element;
|
|
1239
1255
|
|
|
1240
|
-
declare function CircleFilledIcon(props: SvgProps):
|
|
1256
|
+
declare function CircleFilledIcon(props: SvgProps): react.JSX.Element;
|
|
1241
1257
|
|
|
1242
|
-
declare function CloseIcon(props: SvgProps):
|
|
1258
|
+
declare function CloseIcon(props: SvgProps): react.JSX.Element;
|
|
1243
1259
|
|
|
1244
|
-
declare function CloseSmallIcon(props: SvgProps):
|
|
1260
|
+
declare function CloseSmallIcon(props: SvgProps): react.JSX.Element;
|
|
1245
1261
|
|
|
1246
|
-
declare function CloseCircledIcon(props: SvgProps):
|
|
1262
|
+
declare function CloseCircledIcon(props: SvgProps): react.JSX.Element;
|
|
1247
1263
|
|
|
1248
|
-
declare function CloudIcon(props: SvgProps):
|
|
1264
|
+
declare function CloudIcon(props: SvgProps): react.JSX.Element;
|
|
1249
1265
|
|
|
1250
|
-
declare function CollapseIcon(props: SvgProps):
|
|
1266
|
+
declare function CollapseIcon(props: SvgProps): react.JSX.Element;
|
|
1251
1267
|
|
|
1252
|
-
declare function CommentIcon(props: SvgProps):
|
|
1268
|
+
declare function CommentIcon(props: SvgProps): react.JSX.Element;
|
|
1253
1269
|
|
|
1254
|
-
declare function CopyIcon(props: SvgProps):
|
|
1270
|
+
declare function CopyIcon(props: SvgProps): react.JSX.Element;
|
|
1255
1271
|
|
|
1256
|
-
declare function CourtIcon(props: SvgProps):
|
|
1272
|
+
declare function CourtIcon(props: SvgProps): react.JSX.Element;
|
|
1257
1273
|
|
|
1258
|
-
declare function DateRangeIcon(props: SvgProps):
|
|
1274
|
+
declare function DateRangeIcon(props: SvgProps): react.JSX.Element;
|
|
1259
1275
|
|
|
1260
|
-
declare function DeathsIcon(props: SvgProps):
|
|
1276
|
+
declare function DeathsIcon(props: SvgProps): react.JSX.Element;
|
|
1261
1277
|
|
|
1262
|
-
declare function DoubleChevronLeftIcon(props: SvgProps):
|
|
1278
|
+
declare function DoubleChevronLeftIcon(props: SvgProps): react.JSX.Element;
|
|
1263
1279
|
|
|
1264
|
-
declare function DoubleChevronRightIcon(props: SvgProps):
|
|
1280
|
+
declare function DoubleChevronRightIcon(props: SvgProps): react.JSX.Element;
|
|
1265
1281
|
|
|
1266
|
-
declare function DownloadIcon(props: SvgProps):
|
|
1282
|
+
declare function DownloadIcon(props: SvgProps): react.JSX.Element;
|
|
1267
1283
|
|
|
1268
|
-
declare function DownloadDoneIcon(props: SvgProps):
|
|
1284
|
+
declare function DownloadDoneIcon(props: SvgProps): react.JSX.Element;
|
|
1269
1285
|
|
|
1270
|
-
declare function DragHandleIcon(props: SvgProps):
|
|
1286
|
+
declare function DragHandleIcon(props: SvgProps): react.JSX.Element;
|
|
1271
1287
|
|
|
1272
|
-
declare function EditIcon(props: SvgProps):
|
|
1288
|
+
declare function EditIcon(props: SvgProps): react.JSX.Element;
|
|
1273
1289
|
|
|
1274
|
-
declare function EditAltIcon(props: SvgProps):
|
|
1290
|
+
declare function EditAltIcon(props: SvgProps): react.JSX.Element;
|
|
1275
1291
|
|
|
1276
|
-
declare function ErrorIcon(props: SvgProps):
|
|
1292
|
+
declare function ErrorIcon(props: SvgProps): react.JSX.Element;
|
|
1277
1293
|
|
|
1278
|
-
declare function ExclaimIcon(props: SvgProps):
|
|
1294
|
+
declare function ExclaimIcon(props: SvgProps): react.JSX.Element;
|
|
1279
1295
|
|
|
1280
|
-
declare function ExpandIcon(props: SvgProps):
|
|
1296
|
+
declare function ExpandIcon(props: SvgProps): react.JSX.Element;
|
|
1281
1297
|
|
|
1282
|
-
declare function FacebookIcon(props: SvgProps):
|
|
1298
|
+
declare function FacebookIcon(props: SvgProps): react.JSX.Element;
|
|
1283
1299
|
|
|
1284
|
-
declare function FamilyIcon(props: SvgProps):
|
|
1300
|
+
declare function FamilyIcon(props: SvgProps): react.JSX.Element;
|
|
1285
1301
|
|
|
1286
|
-
declare function FeedbackIcon(props: SvgProps):
|
|
1302
|
+
declare function FeedbackIcon(props: SvgProps): react.JSX.Element;
|
|
1287
1303
|
|
|
1288
|
-
declare function FileIcon(props: SvgProps):
|
|
1304
|
+
declare function FileIcon(props: SvgProps): react.JSX.Element;
|
|
1289
1305
|
|
|
1290
|
-
declare function FileAddIcon(props: SvgProps):
|
|
1306
|
+
declare function FileAddIcon(props: SvgProps): react.JSX.Element;
|
|
1291
1307
|
|
|
1292
|
-
declare function FileShieldedIcon(props: SvgProps):
|
|
1308
|
+
declare function FileShieldedIcon(props: SvgProps): react.JSX.Element;
|
|
1293
1309
|
|
|
1294
|
-
declare function FileTextIcon(props: SvgProps):
|
|
1310
|
+
declare function FileTextIcon(props: SvgProps): react.JSX.Element;
|
|
1295
1311
|
|
|
1296
|
-
declare function FilterIcon(props: SvgProps):
|
|
1312
|
+
declare function FilterIcon(props: SvgProps): react.JSX.Element;
|
|
1297
1313
|
|
|
1298
|
-
declare function FilterListIcon(props: SvgProps):
|
|
1314
|
+
declare function FilterListIcon(props: SvgProps): react.JSX.Element;
|
|
1299
1315
|
|
|
1300
|
-
declare function FindInPageIcon(props: SvgProps):
|
|
1316
|
+
declare function FindInPageIcon(props: SvgProps): react.JSX.Element;
|
|
1301
1317
|
|
|
1302
|
-
declare function FlickrIcon(props: SvgProps):
|
|
1318
|
+
declare function FlickrIcon(props: SvgProps): react.JSX.Element;
|
|
1303
1319
|
|
|
1304
|
-
declare function FloppyDiskIcon(props: SvgProps):
|
|
1320
|
+
declare function FloppyDiskIcon(props: SvgProps): react.JSX.Element;
|
|
1305
1321
|
|
|
1306
|
-
declare function FolderIcon(props: SvgProps):
|
|
1322
|
+
declare function FolderIcon(props: SvgProps): react.JSX.Element;
|
|
1307
1323
|
|
|
1308
|
-
declare function FolderAddIcon(props: SvgProps):
|
|
1324
|
+
declare function FolderAddIcon(props: SvgProps): react.JSX.Element;
|
|
1309
1325
|
|
|
1310
|
-
declare function FolderShieldedIcon(props: SvgProps):
|
|
1326
|
+
declare function FolderShieldedIcon(props: SvgProps): react.JSX.Element;
|
|
1311
1327
|
|
|
1312
|
-
declare function FullscreenExitIcon(props: SvgProps):
|
|
1328
|
+
declare function FullscreenExitIcon(props: SvgProps): react.JSX.Element;
|
|
1313
1329
|
|
|
1314
|
-
declare function FullscreenIcon(props: SvgProps):
|
|
1330
|
+
declare function FullscreenIcon(props: SvgProps): react.JSX.Element;
|
|
1315
1331
|
|
|
1316
|
-
declare function GavelIcon(props: SvgProps):
|
|
1332
|
+
declare function GavelIcon(props: SvgProps): react.JSX.Element;
|
|
1317
1333
|
|
|
1318
|
-
declare function GroupIcon(props: SvgProps):
|
|
1334
|
+
declare function GroupIcon(props: SvgProps): react.JSX.Element;
|
|
1319
1335
|
|
|
1320
|
-
declare function GuardianIcon(props: SvgProps):
|
|
1336
|
+
declare function GuardianIcon(props: SvgProps): react.JSX.Element;
|
|
1321
1337
|
|
|
1322
|
-
declare function HelpIcon(props: SvgProps):
|
|
1338
|
+
declare function HelpIcon(props: SvgProps): react.JSX.Element;
|
|
1323
1339
|
|
|
1324
|
-
declare function HelpFilledIcon(props: SvgProps):
|
|
1340
|
+
declare function HelpFilledIcon(props: SvgProps): react.JSX.Element;
|
|
1325
1341
|
|
|
1326
|
-
declare function HomeIcon(props: SvgProps):
|
|
1342
|
+
declare function HomeIcon(props: SvgProps): react.JSX.Element;
|
|
1327
1343
|
|
|
1328
|
-
declare function HourglassEmptyIcon(props: SvgProps):
|
|
1344
|
+
declare function HourglassEmptyIcon(props: SvgProps): react.JSX.Element;
|
|
1329
1345
|
|
|
1330
|
-
declare function ImageIcon(props: SvgProps):
|
|
1346
|
+
declare function ImageIcon(props: SvgProps): react.JSX.Element;
|
|
1331
1347
|
|
|
1332
|
-
declare function InfoIcon(props: SvgProps):
|
|
1348
|
+
declare function InfoIcon(props: SvgProps): react.JSX.Element;
|
|
1333
1349
|
|
|
1334
|
-
declare function InstagramIcon(props: SvgProps):
|
|
1350
|
+
declare function InstagramIcon(props: SvgProps): react.JSX.Element;
|
|
1335
1351
|
|
|
1336
|
-
declare function JordskifterettIcon(props: SvgProps):
|
|
1352
|
+
declare function JordskifterettIcon(props: SvgProps): react.JSX.Element;
|
|
1337
1353
|
|
|
1338
|
-
declare function JordskiftesakIcon(props: SvgProps):
|
|
1354
|
+
declare function JordskiftesakIcon(props: SvgProps): react.JSX.Element;
|
|
1339
1355
|
|
|
1340
|
-
declare function KeyIcon(props: SvgProps):
|
|
1356
|
+
declare function KeyIcon(props: SvgProps): react.JSX.Element;
|
|
1341
1357
|
|
|
1342
|
-
declare function LagmannsrettIcon(props: SvgProps):
|
|
1358
|
+
declare function LagmannsrettIcon(props: SvgProps): react.JSX.Element;
|
|
1343
1359
|
|
|
1344
|
-
declare function LanguageIcon(props: SvgProps):
|
|
1360
|
+
declare function LanguageIcon(props: SvgProps): react.JSX.Element;
|
|
1345
1361
|
|
|
1346
|
-
declare function LinkIcon(props: SvgProps):
|
|
1362
|
+
declare function LinkIcon(props: SvgProps): react.JSX.Element;
|
|
1347
1363
|
|
|
1348
|
-
declare function LinkedInIcon(props: SvgProps):
|
|
1364
|
+
declare function LinkedInIcon(props: SvgProps): react.JSX.Element;
|
|
1349
1365
|
|
|
1350
|
-
declare function LinkOffIcon(props: SvgProps):
|
|
1366
|
+
declare function LinkOffIcon(props: SvgProps): react.JSX.Element;
|
|
1351
1367
|
|
|
1352
|
-
declare function ListIcon(props: SvgProps):
|
|
1368
|
+
declare function ListIcon(props: SvgProps): react.JSX.Element;
|
|
1353
1369
|
|
|
1354
|
-
declare function ListAltIcon(props: SvgProps):
|
|
1370
|
+
declare function ListAltIcon(props: SvgProps): react.JSX.Element;
|
|
1355
1371
|
|
|
1356
|
-
declare function LocationIcon(props: SvgProps):
|
|
1372
|
+
declare function LocationIcon(props: SvgProps): react.JSX.Element;
|
|
1357
1373
|
|
|
1358
|
-
declare function LockIcon(props: SvgProps):
|
|
1374
|
+
declare function LockIcon(props: SvgProps): react.JSX.Element;
|
|
1359
1375
|
|
|
1360
|
-
declare function LockFilledIcon(props: SvgProps):
|
|
1376
|
+
declare function LockFilledIcon(props: SvgProps): react.JSX.Element;
|
|
1361
1377
|
|
|
1362
|
-
declare function LockOpenIcon(props: SvgProps):
|
|
1378
|
+
declare function LockOpenIcon(props: SvgProps): react.JSX.Element;
|
|
1363
1379
|
|
|
1364
|
-
declare function LoginIcon(props: SvgProps):
|
|
1380
|
+
declare function LoginIcon(props: SvgProps): react.JSX.Element;
|
|
1365
1381
|
|
|
1366
|
-
declare function LogoutIcon(props: SvgProps):
|
|
1382
|
+
declare function LogoutIcon(props: SvgProps): react.JSX.Element;
|
|
1367
1383
|
|
|
1368
|
-
declare function MailIcon(props: SvgProps):
|
|
1384
|
+
declare function MailIcon(props: SvgProps): react.JSX.Element;
|
|
1369
1385
|
|
|
1370
|
-
declare function MailOpenIcon(props: SvgProps):
|
|
1386
|
+
declare function MailOpenIcon(props: SvgProps): react.JSX.Element;
|
|
1371
1387
|
|
|
1372
|
-
declare function MenuIcon(props: SvgProps):
|
|
1388
|
+
declare function MenuIcon(props: SvgProps): react.JSX.Element;
|
|
1373
1389
|
|
|
1374
|
-
declare function MinusIcon(props: SvgProps):
|
|
1390
|
+
declare function MinusIcon(props: SvgProps): react.JSX.Element;
|
|
1375
1391
|
|
|
1376
|
-
declare function MinusCircledIcon(props: SvgProps):
|
|
1392
|
+
declare function MinusCircledIcon(props: SvgProps): react.JSX.Element;
|
|
1377
1393
|
|
|
1378
|
-
declare function MoreHorizontalIcon(props: SvgProps):
|
|
1394
|
+
declare function MoreHorizontalIcon(props: SvgProps): react.JSX.Element;
|
|
1379
1395
|
|
|
1380
|
-
declare function MoreVerticalIcon(props: SvgProps):
|
|
1396
|
+
declare function MoreVerticalIcon(props: SvgProps): react.JSX.Element;
|
|
1381
1397
|
|
|
1382
|
-
declare function NotarialIcon(props: SvgProps):
|
|
1398
|
+
declare function NotarialIcon(props: SvgProps): react.JSX.Element;
|
|
1383
1399
|
|
|
1384
|
-
declare function NotificationsIcon(props: SvgProps):
|
|
1400
|
+
declare function NotificationsIcon(props: SvgProps): react.JSX.Element;
|
|
1385
1401
|
|
|
1386
|
-
declare function NotificationsOffIcon(props: SvgProps):
|
|
1402
|
+
declare function NotificationsOffIcon(props: SvgProps): react.JSX.Element;
|
|
1387
1403
|
|
|
1388
|
-
declare function OnlineMeetingIcon(props: SvgProps):
|
|
1404
|
+
declare function OnlineMeetingIcon(props: SvgProps): react.JSX.Element;
|
|
1389
1405
|
|
|
1390
|
-
declare function OpenExternalIcon(props: SvgProps):
|
|
1406
|
+
declare function OpenExternalIcon(props: SvgProps): react.JSX.Element;
|
|
1391
1407
|
|
|
1392
|
-
declare function PanelLeftIcon(props: SvgProps):
|
|
1408
|
+
declare function PanelLeftIcon(props: SvgProps): react.JSX.Element;
|
|
1393
1409
|
|
|
1394
|
-
declare function PaperPlaneIcon(props: SvgProps):
|
|
1410
|
+
declare function PaperPlaneIcon(props: SvgProps): react.JSX.Element;
|
|
1395
1411
|
|
|
1396
|
-
declare function PayoutIcon(props: SvgProps):
|
|
1412
|
+
declare function PayoutIcon(props: SvgProps): react.JSX.Element;
|
|
1397
1413
|
|
|
1398
|
-
declare function PdfIcon(props: SvgProps):
|
|
1414
|
+
declare function PdfIcon(props: SvgProps): react.JSX.Element;
|
|
1399
1415
|
|
|
1400
|
-
declare function PersonIcon(props: SvgProps):
|
|
1416
|
+
declare function PersonIcon(props: SvgProps): react.JSX.Element;
|
|
1401
1417
|
|
|
1402
|
-
declare function PersonAddIcon(props: SvgProps):
|
|
1418
|
+
declare function PersonAddIcon(props: SvgProps): react.JSX.Element;
|
|
1403
1419
|
|
|
1404
|
-
declare function PersonShieldedIcon(props: SvgProps):
|
|
1420
|
+
declare function PersonShieldedIcon(props: SvgProps): react.JSX.Element;
|
|
1405
1421
|
|
|
1406
|
-
declare function PinIcon(props: SvgProps):
|
|
1422
|
+
declare function PinIcon(props: SvgProps): react.JSX.Element;
|
|
1407
1423
|
|
|
1408
|
-
declare function PlusIcon(props: SvgProps):
|
|
1424
|
+
declare function PlusIcon(props: SvgProps): react.JSX.Element;
|
|
1409
1425
|
|
|
1410
|
-
declare function PlusCircledIcon(props: SvgProps):
|
|
1426
|
+
declare function PlusCircledIcon(props: SvgProps): react.JSX.Element;
|
|
1411
1427
|
|
|
1412
|
-
declare function PowerOfAttorneyIcon(props: SvgProps):
|
|
1428
|
+
declare function PowerOfAttorneyIcon(props: SvgProps): react.JSX.Element;
|
|
1413
1429
|
|
|
1414
|
-
declare function PrintIcon(props: SvgProps):
|
|
1430
|
+
declare function PrintIcon(props: SvgProps): react.JSX.Element;
|
|
1415
1431
|
|
|
1416
|
-
declare function PublishIcon(props: SvgProps):
|
|
1432
|
+
declare function PublishIcon(props: SvgProps): react.JSX.Element;
|
|
1417
1433
|
|
|
1418
|
-
declare function QuestionAnswerIcon(props: SvgProps):
|
|
1434
|
+
declare function QuestionAnswerIcon(props: SvgProps): react.JSX.Element;
|
|
1419
1435
|
|
|
1420
|
-
declare function ReceiptIcon(props: SvgProps):
|
|
1436
|
+
declare function ReceiptIcon(props: SvgProps): react.JSX.Element;
|
|
1421
1437
|
|
|
1422
|
-
declare function RedoIcon(props: SvgProps):
|
|
1438
|
+
declare function RedoIcon(props: SvgProps): react.JSX.Element;
|
|
1423
1439
|
|
|
1424
|
-
declare function RowsIcon(props: SvgProps):
|
|
1440
|
+
declare function RowsIcon(props: SvgProps): react.JSX.Element;
|
|
1425
1441
|
|
|
1426
|
-
declare function RefreshIcon(props: SvgProps):
|
|
1442
|
+
declare function RefreshIcon(props: SvgProps): react.JSX.Element;
|
|
1427
1443
|
|
|
1428
|
-
declare function ReplayIcon(props: SvgProps):
|
|
1444
|
+
declare function ReplayIcon(props: SvgProps): react.JSX.Element;
|
|
1429
1445
|
|
|
1430
|
-
declare function ScaleIcon(props: SvgProps):
|
|
1446
|
+
declare function ScaleIcon(props: SvgProps): react.JSX.Element;
|
|
1431
1447
|
|
|
1432
|
-
declare function SearchIcon(props: SvgProps):
|
|
1448
|
+
declare function SearchIcon(props: SvgProps): react.JSX.Element;
|
|
1433
1449
|
|
|
1434
|
-
declare function SectionIcon(props: SvgProps):
|
|
1450
|
+
declare function SectionIcon(props: SvgProps): react.JSX.Element;
|
|
1435
1451
|
|
|
1436
|
-
declare function SettingsIcon(props: SvgProps):
|
|
1452
|
+
declare function SettingsIcon(props: SvgProps): react.JSX.Element;
|
|
1437
1453
|
|
|
1438
|
-
declare function SmsIcon(props: SvgProps):
|
|
1454
|
+
declare function SmsIcon(props: SvgProps): react.JSX.Element;
|
|
1439
1455
|
|
|
1440
|
-
declare function StarIcon(props: SvgProps):
|
|
1456
|
+
declare function StarIcon(props: SvgProps): react.JSX.Element;
|
|
1441
1457
|
|
|
1442
|
-
declare function StarFilledIcon(props: SvgProps):
|
|
1458
|
+
declare function StarFilledIcon(props: SvgProps): react.JSX.Element;
|
|
1443
1459
|
|
|
1444
|
-
declare function StarHalfFilledIcon(props: SvgProps):
|
|
1460
|
+
declare function StarHalfFilledIcon(props: SvgProps): react.JSX.Element;
|
|
1445
1461
|
|
|
1446
|
-
declare function SyncIcon(props: SvgProps):
|
|
1462
|
+
declare function SyncIcon(props: SvgProps): react.JSX.Element;
|
|
1447
1463
|
|
|
1448
|
-
declare function ThumbDownIcon(props: SvgProps):
|
|
1464
|
+
declare function ThumbDownIcon(props: SvgProps): react.JSX.Element;
|
|
1449
1465
|
|
|
1450
|
-
declare function ThumbDownFilledIcon(props: SvgProps):
|
|
1466
|
+
declare function ThumbDownFilledIcon(props: SvgProps): react.JSX.Element;
|
|
1451
1467
|
|
|
1452
|
-
declare function ThumbUpIcon(props: SvgProps):
|
|
1468
|
+
declare function ThumbUpIcon(props: SvgProps): react.JSX.Element;
|
|
1453
1469
|
|
|
1454
|
-
declare function ThumbUpFilledIcon(props: SvgProps):
|
|
1470
|
+
declare function ThumbUpFilledIcon(props: SvgProps): react.JSX.Element;
|
|
1455
1471
|
|
|
1456
|
-
declare function TimeIcon(props: SvgProps):
|
|
1472
|
+
declare function TimeIcon(props: SvgProps): react.JSX.Element;
|
|
1457
1473
|
|
|
1458
|
-
declare function TingrettIcon(props: SvgProps):
|
|
1474
|
+
declare function TingrettIcon(props: SvgProps): react.JSX.Element;
|
|
1459
1475
|
|
|
1460
|
-
declare function TipIcon(props: SvgProps):
|
|
1476
|
+
declare function TipIcon(props: SvgProps): react.JSX.Element;
|
|
1461
1477
|
|
|
1462
|
-
declare function TrashIcon(props: SvgProps):
|
|
1478
|
+
declare function TrashIcon(props: SvgProps): react.JSX.Element;
|
|
1463
1479
|
|
|
1464
|
-
declare function UndoIcon(props: SvgProps):
|
|
1480
|
+
declare function UndoIcon(props: SvgProps): react.JSX.Element;
|
|
1465
1481
|
|
|
1466
|
-
declare function UnfoldLessIcon(props: SvgProps):
|
|
1482
|
+
declare function UnfoldLessIcon(props: SvgProps): react.JSX.Element;
|
|
1467
1483
|
|
|
1468
|
-
declare function UnfoldMoreIcon(props: SvgProps):
|
|
1484
|
+
declare function UnfoldMoreIcon(props: SvgProps): react.JSX.Element;
|
|
1469
1485
|
|
|
1470
|
-
declare function UploadIcon(props: SvgProps):
|
|
1486
|
+
declare function UploadIcon(props: SvgProps): react.JSX.Element;
|
|
1471
1487
|
|
|
1472
|
-
declare function VisibilityOffIcon(props: SvgProps):
|
|
1488
|
+
declare function VisibilityOffIcon(props: SvgProps): react.JSX.Element;
|
|
1473
1489
|
|
|
1474
|
-
declare function VisibilityOnIcon(props: SvgProps):
|
|
1490
|
+
declare function VisibilityOnIcon(props: SvgProps): react.JSX.Element;
|
|
1475
1491
|
|
|
1476
|
-
declare function WarningIcon(props: SvgProps):
|
|
1492
|
+
declare function WarningIcon(props: SvgProps): react.JSX.Element;
|
|
1477
1493
|
|
|
1478
|
-
declare function WebexIcon(props: SvgProps):
|
|
1494
|
+
declare function WebexIcon(props: SvgProps): react.JSX.Element;
|
|
1479
1495
|
|
|
1480
|
-
declare function XIcon(props: SvgProps):
|
|
1496
|
+
declare function XIcon(props: SvgProps): react.JSX.Element;
|
|
1481
1497
|
|
|
1482
|
-
declare function ZoomInIcon(props: SvgProps):
|
|
1498
|
+
declare function ZoomInIcon(props: SvgProps): react.JSX.Element;
|
|
1483
1499
|
|
|
1484
|
-
declare function ZoomOutIcon(props: SvgProps):
|
|
1500
|
+
declare function ZoomOutIcon(props: SvgProps): react.JSX.Element;
|
|
1485
1501
|
|
|
1486
|
-
declare function BarChartIcon(props: SvgProps):
|
|
1502
|
+
declare function BarChartIcon(props: SvgProps): react.JSX.Element;
|
|
1487
1503
|
|
|
1488
|
-
declare function BarChartBoxedIcon(props: SvgProps):
|
|
1504
|
+
declare function BarChartBoxedIcon(props: SvgProps): react.JSX.Element;
|
|
1489
1505
|
|
|
1490
|
-
declare function LineChartIcon(props: SvgProps):
|
|
1506
|
+
declare function LineChartIcon(props: SvgProps): react.JSX.Element;
|
|
1491
1507
|
|
|
1492
|
-
declare function TrendingUpIcon(props: SvgProps):
|
|
1508
|
+
declare function TrendingUpIcon(props: SvgProps): react.JSX.Element;
|
|
1493
1509
|
|
|
1494
|
-
declare function TrendingDownIcon(props: SvgProps):
|
|
1510
|
+
declare function TrendingDownIcon(props: SvgProps): react.JSX.Element;
|
|
1495
1511
|
|
|
1496
|
-
declare function HelpSimpleIcon(props: SvgProps):
|
|
1512
|
+
declare function HelpSimpleIcon(props: SvgProps): react.JSX.Element;
|
|
1497
1513
|
|
|
1498
1514
|
declare const STATES: readonly ["up", "down"];
|
|
1499
1515
|
type AnimatedChevronUpDownIconStates = (typeof STATES)[number];
|
|
1500
1516
|
declare function AnimatedChevronUpDownIcon(props: SvgProps & {
|
|
1501
1517
|
iconState?: AnimatedChevronUpDownIconStates;
|
|
1502
|
-
}):
|
|
1518
|
+
}): react.JSX.Element;
|
|
1503
1519
|
declare namespace AnimatedChevronUpDownIcon {
|
|
1504
1520
|
var states: readonly ["up", "down"];
|
|
1505
1521
|
}
|
|
1506
1522
|
|
|
1507
|
-
declare function FlagIcon(props: SvgProps):
|
|
1523
|
+
declare function FlagIcon(props: SvgProps): react.JSX.Element;
|
|
1508
1524
|
|
|
1509
|
-
declare function FlagFilledIcon(props: SvgProps):
|
|
1525
|
+
declare function FlagFilledIcon(props: SvgProps): react.JSX.Element;
|
|
1510
1526
|
|
|
1511
|
-
declare function LocationOffIcon(props: SvgProps):
|
|
1527
|
+
declare function LocationOffIcon(props: SvgProps): react.JSX.Element;
|
|
1512
1528
|
|
|
1513
|
-
declare function MapIcon(props: SvgProps):
|
|
1529
|
+
declare function MapIcon(props: SvgProps): react.JSX.Element;
|
|
1514
1530
|
|
|
1515
|
-
declare function MoonIcon(props: SvgProps):
|
|
1531
|
+
declare function MoonIcon(props: SvgProps): react.JSX.Element;
|
|
1516
1532
|
|
|
1517
|
-
declare function NotebookPenIcon(props: SvgProps):
|
|
1533
|
+
declare function NotebookPenIcon(props: SvgProps): react.JSX.Element;
|
|
1518
1534
|
|
|
1519
|
-
declare function StickyNoteIcon(props: SvgProps):
|
|
1535
|
+
declare function StickyNoteIcon(props: SvgProps): react.JSX.Element;
|
|
1520
1536
|
|
|
1521
|
-
declare function SunIcon(props: SvgProps):
|
|
1537
|
+
declare function SunIcon(props: SvgProps): react.JSX.Element;
|
|
1522
1538
|
|
|
1523
|
-
declare function SupportIcon(props: SvgProps):
|
|
1539
|
+
declare function SupportIcon(props: SvgProps): react.JSX.Element;
|
|
1524
1540
|
|
|
1525
1541
|
declare const index_AddressShieldedIcon: typeof AddressShieldedIcon;
|
|
1526
1542
|
declare const index_AgreementIcon: typeof AgreementIcon;
|
|
@@ -2145,6 +2161,14 @@ declare function useTheme(): {
|
|
|
2145
2161
|
ddsFontBodyShortXsmallLetterSpacing: "0.01em";
|
|
2146
2162
|
ddsFontBodyShortXsmallParagraphSpacing: "1em";
|
|
2147
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;
|
|
2148
2172
|
} | {
|
|
2149
2173
|
ddsFontFamilySans: "'IBM Plex Sans', Arial, sans-serif";
|
|
2150
2174
|
ddsFontFamilyMonospace: "'IBM Plex Mono', 'Courier New', monospace";
|
|
@@ -2574,6 +2598,14 @@ declare function useTheme(): {
|
|
|
2574
2598
|
ddsFontBodyShortXsmallLetterSpacing: "0.01em";
|
|
2575
2599
|
ddsFontBodyShortXsmallParagraphSpacing: "1em";
|
|
2576
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;
|
|
2577
2609
|
} | {
|
|
2578
2610
|
ddsFontFamilySans: "'IBM Plex Sans', Arial, sans-serif";
|
|
2579
2611
|
ddsFontFamilyMonospace: "'IBM Plex Mono', 'Courier New', monospace";
|
|
@@ -3003,6 +3035,14 @@ declare function useTheme(): {
|
|
|
3003
3035
|
ddsFontBodyShortXsmallLetterSpacing: "0.01em";
|
|
3004
3036
|
ddsFontBodyShortXsmallParagraphSpacing: "1em";
|
|
3005
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;
|
|
3006
3046
|
} | {
|
|
3007
3047
|
ddsFontFamilySans: "'IBM Plex Sans', Arial, sans-serif";
|
|
3008
3048
|
ddsFontFamilyMonospace: "'IBM Plex Mono', 'Courier New', monospace";
|
|
@@ -3432,6 +3472,14 @@ declare function useTheme(): {
|
|
|
3432
3472
|
ddsFontBodyShortXsmallLetterSpacing: "0.01em";
|
|
3433
3473
|
ddsFontBodyShortXsmallParagraphSpacing: "1em";
|
|
3434
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;
|
|
3435
3483
|
};
|
|
3436
3484
|
themeName: "core-light" | "core-dark" | "public-light" | "public-dark";
|
|
3437
3485
|
};
|
|
@@ -3444,7 +3492,7 @@ interface LanguageProviderProps {
|
|
|
3444
3492
|
}
|
|
3445
3493
|
|
|
3446
3494
|
type DdsProviderProps = LanguageProviderProps & ThemeProviderProps;
|
|
3447
|
-
declare function DdsProvider({ language, theme, children }: DdsProviderProps):
|
|
3495
|
+
declare function DdsProvider({ language, theme, children }: DdsProviderProps): react.JSX.Element;
|
|
3448
3496
|
|
|
3449
3497
|
type PropsOfWithRef<T extends ElementType> = ComponentPropsWithRef<T> & {
|
|
3450
3498
|
/** HTML- eller React-element som returneres. */
|
|
@@ -3452,16 +3500,16 @@ type PropsOfWithRef<T extends ElementType> = ComponentPropsWithRef<T> & {
|
|
|
3452
3500
|
} & Omit<React.ComponentPropsWithRef<T>, 'as'>;
|
|
3453
3501
|
|
|
3454
3502
|
type PolymorphicProps<T extends ElementType> = PropsOfWithRef<T>;
|
|
3455
|
-
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;
|
|
3456
3504
|
|
|
3457
3505
|
type AccordionProps = BaseComponentPropsWithChildren<HTMLDivElement, Pick<AccordionConfig, 'isExpanded' | 'isInitiallyExpanded' | 'onChange'>>;
|
|
3458
3506
|
declare const Accordion: {
|
|
3459
|
-
({ isInitiallyExpanded, isExpanded, onChange, id, children, className, style, htmlProps, ...rest }: AccordionProps):
|
|
3507
|
+
({ isInitiallyExpanded, isExpanded, onChange, id, children, className, style, htmlProps, ...rest }: AccordionProps): react.JSX.Element;
|
|
3460
3508
|
displayName: string;
|
|
3461
3509
|
};
|
|
3462
3510
|
|
|
3463
|
-
declare function TextOverflowEllipsisWrapper({ className, ...rest }: ComponentProps<'span'>):
|
|
3464
|
-
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;
|
|
3465
3513
|
|
|
3466
3514
|
type TypographyBodyShortType = 'bodyShortXsmall' | 'bodyShortSmall' | 'bodyShortMedium' | 'bodyShortLarge';
|
|
3467
3515
|
type TypographyBodyLongType = 'bodyLongXsmall' | 'bodyLongSmall' | 'bodyLongMedium' | 'bodyLongLarge';
|
|
@@ -3524,7 +3572,7 @@ type TypographyProps = ({
|
|
|
3524
3572
|
typographyType?: OtherTypographyType;
|
|
3525
3573
|
} & TypographyComponentProps & Omit<OtherTypographyProps, 'color'>);
|
|
3526
3574
|
declare const Typography: {
|
|
3527
|
-
(props: TypographyProps):
|
|
3575
|
+
(props: TypographyProps): react.JSX.Element;
|
|
3528
3576
|
displayName: string;
|
|
3529
3577
|
};
|
|
3530
3578
|
|
|
@@ -3539,7 +3587,7 @@ declare const getColorCn: (color?: TextColor) => string | null;
|
|
|
3539
3587
|
|
|
3540
3588
|
type CaptionProps = BaseComponentPropsWithChildren<HTMLTableCaptionElement, CommonBlockTypographyProps>;
|
|
3541
3589
|
declare const Caption: {
|
|
3542
|
-
({ id, className, style, htmlProps, children, ...rest }: CaptionProps):
|
|
3590
|
+
({ id, className, style, htmlProps, children, ...rest }: CaptionProps): react.JSX.Element;
|
|
3543
3591
|
displayName: string;
|
|
3544
3592
|
};
|
|
3545
3593
|
|
|
@@ -3553,7 +3601,7 @@ type HeadingProps = BaseComponentPropsWithChildren<HTMLHeadingElement, {
|
|
|
3553
3601
|
withMarginsOverInput?: boolean;
|
|
3554
3602
|
} & CommonBlockTypographyProps>;
|
|
3555
3603
|
declare const Heading: {
|
|
3556
|
-
({ 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;
|
|
3557
3605
|
displayName: string;
|
|
3558
3606
|
};
|
|
3559
3607
|
|
|
@@ -3568,7 +3616,7 @@ interface BaseLabelProps {
|
|
|
3568
3616
|
}
|
|
3569
3617
|
type LabelProps = BaseComponentPropsWithChildren<HTMLLabelElement, BaseLabelProps & CommonInlineTypographyProps & PickedHTMLAttributes$3>;
|
|
3570
3618
|
declare const Label: {
|
|
3571
|
-
({ showRequiredStyling, readOnly, id, className, style, htmlProps, children, afterLabelContent, ...rest }: LabelProps):
|
|
3619
|
+
({ showRequiredStyling, readOnly, id, className, style, htmlProps, children, afterLabelContent, ...rest }: LabelProps): react.JSX.Element;
|
|
3572
3620
|
displayName: string;
|
|
3573
3621
|
};
|
|
3574
3622
|
|
|
@@ -3579,7 +3627,7 @@ type LegendProps = BaseComponentPropsWithChildren<HTMLLegendElement, CommonBlock
|
|
|
3579
3627
|
withMarginsOverInput?: boolean;
|
|
3580
3628
|
}>;
|
|
3581
3629
|
declare const Legend: {
|
|
3582
|
-
({ id, className, style, htmlProps, typographyType, withMarginsOverInput, withMargins, ...rest }: LegendProps):
|
|
3630
|
+
({ id, className, style, htmlProps, typographyType, withMarginsOverInput, withMargins, ...rest }: LegendProps): react.JSX.Element;
|
|
3583
3631
|
displayName: string;
|
|
3584
3632
|
};
|
|
3585
3633
|
|
|
@@ -3600,7 +3648,7 @@ type LinkProps<T extends ElementType = 'a'> = PolymorphicBaseComponentProps<T, {
|
|
|
3600
3648
|
withIconStyling?: boolean;
|
|
3601
3649
|
} & CommonInlineTypographyProps & PickedHTMLAttributes$2>;
|
|
3602
3650
|
declare const Link: {
|
|
3603
|
-
<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;
|
|
3604
3652
|
displayName: string;
|
|
3605
3653
|
};
|
|
3606
3654
|
|
|
@@ -3611,7 +3659,7 @@ type ParagraphProps = BaseComponentPropsWithChildren<HTMLParagraphElement, {
|
|
|
3611
3659
|
typographyType?: TypographyBodyType | TypographyLeadType;
|
|
3612
3660
|
} & CommonBlockTypographyProps>;
|
|
3613
3661
|
declare const Paragraph: {
|
|
3614
|
-
({ id, className, style, htmlProps, children, typographyType, ...rest }: ParagraphProps):
|
|
3662
|
+
({ id, className, style, htmlProps, children, typographyType, ...rest }: ParagraphProps): react.JSX.Element;
|
|
3615
3663
|
displayName: string;
|
|
3616
3664
|
};
|
|
3617
3665
|
|
|
@@ -3622,13 +3670,13 @@ type AccordionHeaderProps = Omit<BaseComponentPropsWithChildren<HTMLButtonElemen
|
|
|
3622
3670
|
bold?: boolean;
|
|
3623
3671
|
}, ButtonHTMLAttributes<HTMLButtonElement>>, 'id'>;
|
|
3624
3672
|
declare const AccordionHeader: {
|
|
3625
|
-
({ children, className, style, htmlProps, typographyType, bold, ...rest }: AccordionHeaderProps):
|
|
3673
|
+
({ children, className, style, htmlProps, typographyType, bold, ...rest }: AccordionHeaderProps): react.JSX.Element;
|
|
3626
3674
|
displayName: string;
|
|
3627
3675
|
};
|
|
3628
3676
|
|
|
3629
3677
|
type AccordionBodyProps = Omit<BaseComponentPropsWithChildren<HTMLDivElement>, 'id'>;
|
|
3630
3678
|
declare const AccordionBody: {
|
|
3631
|
-
({ children, className, style, htmlProps, ...rest }: AccordionBodyProps):
|
|
3679
|
+
({ children, className, style, htmlProps, ...rest }: AccordionBodyProps): react.JSX.Element;
|
|
3632
3680
|
displayName: string;
|
|
3633
3681
|
};
|
|
3634
3682
|
|
|
@@ -3643,14 +3691,14 @@ type BackLinkProps = {
|
|
|
3643
3691
|
as?: ElementType;
|
|
3644
3692
|
} & Pick<ComponentPropsWithRef<'a'>, 'onClick' | 'href' | 'ref'>;
|
|
3645
3693
|
declare const BackLink: {
|
|
3646
|
-
({ label, ref, as, ...rest }: BackLinkProps):
|
|
3694
|
+
({ label, ref, as, ...rest }: BackLinkProps): react.JSX.Element;
|
|
3647
3695
|
displayName: string;
|
|
3648
3696
|
};
|
|
3649
3697
|
|
|
3650
3698
|
type BreadcrumbProps = ComponentPropsWithRef<'a'> | ComponentPropsWithRef<'span'>;
|
|
3651
3699
|
declare const isAnchorTypographyProps: (props: BreadcrumbProps) => props is ComponentPropsWithRef<"a">;
|
|
3652
3700
|
declare const Breadcrumb: {
|
|
3653
|
-
({ children, ref, ...rest }: BreadcrumbProps):
|
|
3701
|
+
({ children, ref, ...rest }: BreadcrumbProps): react.JSX.Element;
|
|
3654
3702
|
displayName: string;
|
|
3655
3703
|
};
|
|
3656
3704
|
|
|
@@ -3664,7 +3712,7 @@ type BreadcrumbsProps = BaseComponentProps<HTMLElement, {
|
|
|
3664
3712
|
children?: ReactNode;
|
|
3665
3713
|
}>;
|
|
3666
3714
|
declare const Breadcrumbs: {
|
|
3667
|
-
({ children, smallScreenBreakpoint, id, className, style, htmlProps, ...rest }: BreadcrumbsProps):
|
|
3715
|
+
({ children, smallScreenBreakpoint, id, className, style, htmlProps, ...rest }: BreadcrumbsProps): react.JSX.Element;
|
|
3668
3716
|
displayName: string;
|
|
3669
3717
|
};
|
|
3670
3718
|
|
|
@@ -3688,7 +3736,7 @@ type ButtonGroupProps = BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
3688
3736
|
role?: AriaRole;
|
|
3689
3737
|
} & Omit<ButtonHTMLAttributes<HTMLButtonElement>, keyof PickedHTMLAttributes$1>>;
|
|
3690
3738
|
declare const ButtonGroup: {
|
|
3691
|
-
({ children, id, className, style, htmlProps, direction, buttonSize, role, ...rest }: ButtonGroupProps):
|
|
3739
|
+
({ children, id, className, style, htmlProps, direction, buttonSize, role, ...rest }: ButtonGroupProps): react.JSX.Element;
|
|
3692
3740
|
displayName: string;
|
|
3693
3741
|
};
|
|
3694
3742
|
|
|
@@ -3731,7 +3779,7 @@ type CheckboxProps = BaseComponentProps<HTMLInputElement, SelectionControlCommon
|
|
|
3731
3779
|
} & CheckboxPickedHTMLAttributes & Pick<ComponentProps<'input'>, 'required'>, InputHTMLAttributes<HTMLInputElement>>;
|
|
3732
3780
|
|
|
3733
3781
|
declare const Checkbox: {
|
|
3734
|
-
({ 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;
|
|
3735
3783
|
displayName: string;
|
|
3736
3784
|
};
|
|
3737
3785
|
|
|
@@ -3740,7 +3788,7 @@ type CheckboxGroupProps = BaseComponentPropsWithChildren<HTMLDivElement, Selecti
|
|
|
3740
3788
|
required?: boolean;
|
|
3741
3789
|
}>;
|
|
3742
3790
|
declare const CheckboxGroup: {
|
|
3743
|
-
(props: CheckboxGroupProps):
|
|
3791
|
+
(props: CheckboxGroupProps): react.JSX.Element;
|
|
3744
3792
|
displayName: string;
|
|
3745
3793
|
};
|
|
3746
3794
|
|
|
@@ -3782,13 +3830,13 @@ type CardSelectableProps = BaseComponentPropsWithChildren<HTMLInputElement, Pick
|
|
|
3782
3830
|
} & RadioPickedInputHTMLAttributes & CheckboxPickedHTMLAttributes>;
|
|
3783
3831
|
|
|
3784
3832
|
declare const Card: {
|
|
3785
|
-
(props: CardProps):
|
|
3833
|
+
(props: CardProps): react.JSX.Element;
|
|
3786
3834
|
displayName: string;
|
|
3787
3835
|
};
|
|
3788
3836
|
|
|
3789
3837
|
type CardExpandableProps = BaseComponentPropsWithChildren<HTMLDivElement, Pick<AccordionConfig, 'isExpanded' | 'isInitiallyExpanded' | 'onChange'>>;
|
|
3790
3838
|
declare const CardExpandable: {
|
|
3791
|
-
({ isInitiallyExpanded, isExpanded, onChange, id, children, className, style, htmlProps, ...rest }: CardExpandableProps):
|
|
3839
|
+
({ isInitiallyExpanded, isExpanded, onChange, id, children, className, style, htmlProps, ...rest }: CardExpandableProps): react.JSX.Element;
|
|
3792
3840
|
displayName: string;
|
|
3793
3841
|
};
|
|
3794
3842
|
|
|
@@ -3801,7 +3849,7 @@ type CardExpandableHeaderProps = Omit<BaseComponentPropsWithChildren<HTMLButtonE
|
|
|
3801
3849
|
bold?: boolean;
|
|
3802
3850
|
}, ButtonHTMLAttributes<HTMLButtonElement>>, 'id'>;
|
|
3803
3851
|
declare const CardExpandableHeader: {
|
|
3804
|
-
({ children, className, style, htmlProps, padding, typographyType, bold, ...rest }: CardExpandableHeaderProps):
|
|
3852
|
+
({ children, className, style, htmlProps, padding, typographyType, bold, ...rest }: CardExpandableHeaderProps): react.JSX.Element;
|
|
3805
3853
|
displayName: string;
|
|
3806
3854
|
};
|
|
3807
3855
|
|
|
@@ -3810,12 +3858,12 @@ type CardExpandableBodyProps = Omit<BaseComponentPropsWithChildren<HTMLDivElemen
|
|
|
3810
3858
|
padding?: Property.Padding<string>;
|
|
3811
3859
|
}>, 'id'>;
|
|
3812
3860
|
declare const CardExpandableBody: {
|
|
3813
|
-
({ children, className, style, htmlProps, padding, ...rest }: CardExpandableBodyProps):
|
|
3861
|
+
({ children, className, style, htmlProps, padding, ...rest }: CardExpandableBodyProps): react.JSX.Element;
|
|
3814
3862
|
displayName: string;
|
|
3815
3863
|
};
|
|
3816
3864
|
|
|
3817
3865
|
declare const CardSelectable: {
|
|
3818
|
-
(props: CardSelectableProps):
|
|
3866
|
+
(props: CardSelectableProps): react.JSX.Element | null;
|
|
3819
3867
|
displayName: string;
|
|
3820
3868
|
};
|
|
3821
3869
|
|
|
@@ -3836,7 +3884,7 @@ type CardSelectableGroupProps<T extends string | number> = BaseComponentPropsWit
|
|
|
3836
3884
|
defaultValue?: T | undefined;
|
|
3837
3885
|
}, Omit<HTMLAttributes<HTMLDivElement>, 'onChange'>>;
|
|
3838
3886
|
declare const CardSelectableGroup: {
|
|
3839
|
-
<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;
|
|
3840
3888
|
displayName: string;
|
|
3841
3889
|
};
|
|
3842
3890
|
|
|
@@ -3847,13 +3895,13 @@ type ChipProps = BaseComponentProps<HTMLDivElement, {
|
|
|
3847
3895
|
onClose?: () => void;
|
|
3848
3896
|
}>;
|
|
3849
3897
|
declare const Chip: {
|
|
3850
|
-
({ children, onClose, id, className, style, htmlProps, ...rest }: ChipProps):
|
|
3898
|
+
({ children, onClose, id, className, style, htmlProps, ...rest }: ChipProps): react.JSX.Element | null;
|
|
3851
3899
|
displayName: string;
|
|
3852
3900
|
};
|
|
3853
3901
|
|
|
3854
3902
|
type ChipGroupProps = ComponentPropsWithRef<'ul'>;
|
|
3855
3903
|
declare const ChipGroup: {
|
|
3856
|
-
({ children, ...rest }: ChipGroupProps):
|
|
3904
|
+
({ children, ...rest }: ChipGroupProps): react.JSX.Element;
|
|
3857
3905
|
displayName: string;
|
|
3858
3906
|
};
|
|
3859
3907
|
|
|
@@ -3863,7 +3911,7 @@ type CookieBannerCheckboxProps = Omit<CheckboxProps, 'label' | 'children'> & {
|
|
|
3863
3911
|
/**Detaljer rundt den spesifikke typen informasjonskapsel. */
|
|
3864
3912
|
description: string;
|
|
3865
3913
|
};
|
|
3866
|
-
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;
|
|
3867
3915
|
declare namespace CookieBannerCheckbox {
|
|
3868
3916
|
var displayName: string;
|
|
3869
3917
|
}
|
|
@@ -3880,13 +3928,13 @@ type CookieBannerProps = BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
3880
3928
|
/**Brekkpunkt for sammentrukket variant; Brukes på siden med detaljer om informasjonskapsler. */
|
|
3881
3929
|
collapsedBreakpoint?: Breakpoint;
|
|
3882
3930
|
} & Pick<ResponsiveProps, 'position' | 'top' | 'bottom' | 'left' | 'right' | 'width' | 'maxHeight'>>;
|
|
3883
|
-
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;
|
|
3884
3932
|
declare namespace CookieBanner {
|
|
3885
3933
|
var displayName: string;
|
|
3886
3934
|
}
|
|
3887
3935
|
|
|
3888
3936
|
type CalendarProps<T extends DateValue> = AriaCalendarProps<T>;
|
|
3889
|
-
declare function Calendar<T extends DateValue>(props: CalendarProps<T>):
|
|
3937
|
+
declare function Calendar<T extends DateValue>(props: CalendarProps<T>): react.JSX.Element;
|
|
3890
3938
|
declare namespace Calendar {
|
|
3891
3939
|
var displayName: string;
|
|
3892
3940
|
}
|
|
@@ -3950,7 +3998,7 @@ interface DatePickerProps extends Omit<AriaDatePickerProps<CalendarDate>, 'granu
|
|
|
3950
3998
|
*/
|
|
3951
3999
|
clearable?: boolean;
|
|
3952
4000
|
}
|
|
3953
|
-
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;
|
|
3954
4002
|
declare namespace DatePicker {
|
|
3955
4003
|
var displayName: string;
|
|
3956
4004
|
}
|
|
@@ -3958,7 +4006,7 @@ declare namespace DatePicker {
|
|
|
3958
4006
|
type TimePickerProps = Omit<AriaTimeFieldProps<Time>, 'hideTimeZone'> & Pick<InputProps, 'componentSize' | 'errorMessage' | 'tip' | 'style' | 'width' | 'className'> & {
|
|
3959
4007
|
ref?: Ref<HTMLDivElement>;
|
|
3960
4008
|
};
|
|
3961
|
-
declare function TimePicker({ componentSize, width, ref, ...props }: TimePickerProps):
|
|
4009
|
+
declare function TimePicker({ componentSize, width, ref, ...props }: TimePickerProps): react.JSX.Element;
|
|
3962
4010
|
declare namespace TimePicker {
|
|
3963
4011
|
var displayName: string;
|
|
3964
4012
|
}
|
|
@@ -3979,13 +4027,13 @@ type DescriptionListProps = BaseComponentPropsWithChildren<HTMLDListElement, {
|
|
|
3979
4027
|
direction?: Direction$1;
|
|
3980
4028
|
}>;
|
|
3981
4029
|
declare const DescriptionList: {
|
|
3982
|
-
({ appearance, direction, children, id, className, style, htmlProps, ...rest }: DescriptionListProps):
|
|
4030
|
+
({ appearance, direction, children, id, className, style, htmlProps, ...rest }: DescriptionListProps): react.JSX.Element;
|
|
3983
4031
|
displayName: string;
|
|
3984
4032
|
};
|
|
3985
4033
|
|
|
3986
4034
|
type DescriptionListTermProps = ComponentPropsWithRef<'dt'>;
|
|
3987
4035
|
declare const DescriptionListTerm: {
|
|
3988
|
-
(props: DescriptionListTermProps):
|
|
4036
|
+
(props: DescriptionListTermProps): react.JSX.Element;
|
|
3989
4037
|
displayName: string;
|
|
3990
4038
|
};
|
|
3991
4039
|
|
|
@@ -3994,7 +4042,7 @@ type DescriptionListDescProps = BaseComponentPropsWithChildren<HTMLElement, {
|
|
|
3994
4042
|
icon?: SvgIcon;
|
|
3995
4043
|
}>;
|
|
3996
4044
|
declare const DescriptionListDesc: {
|
|
3997
|
-
({ children, icon, id, className, style, htmlProps, ...rest }: DescriptionListDescProps):
|
|
4045
|
+
({ children, icon, id, className, style, htmlProps, ...rest }: DescriptionListDescProps): react.JSX.Element;
|
|
3998
4046
|
displayName: string;
|
|
3999
4047
|
};
|
|
4000
4048
|
|
|
@@ -4007,7 +4055,7 @@ type DescriptionListGroupProps = BaseComponentPropsWithChildren<HTMLDivElement,
|
|
|
4007
4055
|
maxWidth?: Property.MaxWidth<string>;
|
|
4008
4056
|
}>;
|
|
4009
4057
|
declare const DescriptionListGroup: {
|
|
4010
|
-
({ children, margin, minWidth, maxWidth, id, className, style, htmlProps, ...rest }: DescriptionListGroupProps):
|
|
4058
|
+
({ children, margin, minWidth, maxWidth, id, className, style, htmlProps, ...rest }: DescriptionListGroupProps): react.JSX.Element;
|
|
4011
4059
|
displayName: string;
|
|
4012
4060
|
};
|
|
4013
4061
|
|
|
@@ -4033,25 +4081,25 @@ type DetailListProps = BaseComponentPropsWithChildren<HTMLDListElement, {
|
|
|
4033
4081
|
smallScreenBreakpoint?: Breakpoint;
|
|
4034
4082
|
}>;
|
|
4035
4083
|
declare const DetailList: {
|
|
4036
|
-
({ id, className, style, htmlProps, withDividers, striped, size, smallScreenBreakpoint, ...rest }: DetailListProps):
|
|
4084
|
+
({ id, className, style, htmlProps, withDividers, striped, size, smallScreenBreakpoint, ...rest }: DetailListProps): react.JSX.Element;
|
|
4037
4085
|
displayName: string;
|
|
4038
4086
|
};
|
|
4039
4087
|
|
|
4040
4088
|
type DetailListDescProps = ComponentPropsWithRef<'dd'> & Pick<ResponsiveProps, 'textAlign'>;
|
|
4041
4089
|
declare const DetailListDesc: {
|
|
4042
|
-
({ className, ...rest }: DetailListDescProps):
|
|
4090
|
+
({ className, ...rest }: DetailListDescProps): react.JSX.Element;
|
|
4043
4091
|
displayName: string;
|
|
4044
4092
|
};
|
|
4045
4093
|
|
|
4046
4094
|
type DetailListRowProps = ComponentPropsWithRef<'div'>;
|
|
4047
4095
|
declare const DetailListRow: {
|
|
4048
|
-
({ className, ...rest }: DetailListRowProps):
|
|
4096
|
+
({ className, ...rest }: DetailListRowProps): react.JSX.Element;
|
|
4049
4097
|
displayName: string;
|
|
4050
4098
|
};
|
|
4051
4099
|
|
|
4052
4100
|
type DetailListTermProps = ComponentPropsWithRef<'dt'>;
|
|
4053
4101
|
declare const DetailListTerm: {
|
|
4054
|
-
({ className, ...rest }: DetailListTermProps):
|
|
4102
|
+
({ className, ...rest }: DetailListTermProps): react.JSX.Element;
|
|
4055
4103
|
displayName: string;
|
|
4056
4104
|
};
|
|
4057
4105
|
|
|
@@ -4062,7 +4110,7 @@ type DividerProps = BaseComponentProps<HTMLHRElement, {
|
|
|
4062
4110
|
*/
|
|
4063
4111
|
color?: DividerColor;
|
|
4064
4112
|
}, Omit<HTMLAttributes<HTMLHRElement>, 'color'>>;
|
|
4065
|
-
declare const Divider: ({ color, id, className, style, htmlProps, ...rest }: DividerProps) =>
|
|
4113
|
+
declare const Divider: ({ color, id, className, style, htmlProps, ...rest }: DividerProps) => react.JSX.Element;
|
|
4066
4114
|
|
|
4067
4115
|
declare const DRAWER_SIZES: ["small", "medium", "large"];
|
|
4068
4116
|
type DrawerSize = (typeof DRAWER_SIZES)[number];
|
|
@@ -4116,7 +4164,7 @@ interface DrawerGroupProps {
|
|
|
4116
4164
|
onClose?: () => void;
|
|
4117
4165
|
}
|
|
4118
4166
|
declare const DrawerGroup: {
|
|
4119
|
-
({ children, isInitiallyOpen, isOpen: propIsOpen, setIsOpen: propSetIsOpen, drawerId, onOpen, onClose, }: DrawerGroupProps):
|
|
4167
|
+
({ children, isInitiallyOpen, isOpen: propIsOpen, setIsOpen: propSetIsOpen, drawerId, onOpen, onClose, }: DrawerGroupProps): react.JSX.Element;
|
|
4120
4168
|
displayName: string;
|
|
4121
4169
|
};
|
|
4122
4170
|
|
|
@@ -4130,7 +4178,7 @@ type EmptyContentProps = {
|
|
|
4130
4178
|
/**Melding - beskrivelse og forklaring på hvordan brukeren kan få innhold. Kan inneholde lenker og andre interaktive elementer. */
|
|
4131
4179
|
children: ReactNode;
|
|
4132
4180
|
} & Omit<HTMLAttributes<HTMLDivElement>, 'children'>;
|
|
4133
|
-
declare function EmptyContent({ headerText, children, headerHeadingLevel, ...rest }: EmptyContentProps):
|
|
4181
|
+
declare function EmptyContent({ headerText, children, headerHeadingLevel, ...rest }: EmptyContentProps): react.JSX.Element;
|
|
4134
4182
|
declare namespace EmptyContent {
|
|
4135
4183
|
var displayName: string;
|
|
4136
4184
|
}
|
|
@@ -4140,13 +4188,13 @@ type ErrorSummaryProps = BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
4140
4188
|
heading?: ReactNode;
|
|
4141
4189
|
}>;
|
|
4142
4190
|
declare const ErrorSummary: {
|
|
4143
|
-
({ heading: pHeading, className, style, children, id, htmlProps, ...props }: ErrorSummaryProps):
|
|
4191
|
+
({ heading: pHeading, className, style, children, id, htmlProps, ...props }: ErrorSummaryProps): react.JSX.Element;
|
|
4144
4192
|
displayName: string;
|
|
4145
4193
|
};
|
|
4146
4194
|
|
|
4147
4195
|
type ErrorSummaryItemProps<T extends ElementType> = LinkProps<T>;
|
|
4148
4196
|
declare const ErrorSummaryItem: {
|
|
4149
|
-
<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;
|
|
4150
4198
|
displayName: string;
|
|
4151
4199
|
};
|
|
4152
4200
|
|
|
@@ -4173,7 +4221,7 @@ type FavStarProps = BaseComponentPropsWithChildren<HTMLElement, {
|
|
|
4173
4221
|
size?: ComponentSize;
|
|
4174
4222
|
}, Omit<HTMLAttributes<HTMLElement>, 'onChange'>>;
|
|
4175
4223
|
declare const FavStar: {
|
|
4176
|
-
({ 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;
|
|
4177
4225
|
displayName: string;
|
|
4178
4226
|
};
|
|
4179
4227
|
|
|
@@ -4236,20 +4284,20 @@ interface FeedbackProps {
|
|
|
4236
4284
|
type Rating = 'positive' | 'negative';
|
|
4237
4285
|
type Layout = 'vertical' | 'horizontal';
|
|
4238
4286
|
|
|
4239
|
-
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;
|
|
4240
4288
|
|
|
4241
4289
|
type FieldsetProps = BaseComponentPropsWithChildren<HTMLFieldSetElement, {
|
|
4242
4290
|
/** Om alle inputfelt skal bli `disabled`. */
|
|
4243
4291
|
disabled?: boolean;
|
|
4244
4292
|
}>;
|
|
4245
4293
|
declare const Fieldset: {
|
|
4246
|
-
({ id, className, style, htmlProps, ...rest }: FieldsetProps):
|
|
4294
|
+
({ id, className, style, htmlProps, ...rest }: FieldsetProps): react.JSX.Element;
|
|
4247
4295
|
displayName: string;
|
|
4248
4296
|
};
|
|
4249
4297
|
|
|
4250
4298
|
type FieldsetGroupProps = BaseComponentPropsWithChildren<HTMLDivElement>;
|
|
4251
4299
|
declare const FieldsetGroup: {
|
|
4252
|
-
({ id, className, style, htmlProps, ...rest }: FieldsetGroupProps):
|
|
4300
|
+
({ id, className, style, htmlProps, ...rest }: FieldsetGroupProps): react.JSX.Element;
|
|
4253
4301
|
displayName: string;
|
|
4254
4302
|
};
|
|
4255
4303
|
|
|
@@ -4322,40 +4370,40 @@ type FileUploaderProps = {
|
|
|
4322
4370
|
onRetry?: (fileId: string) => void;
|
|
4323
4371
|
} & Pick<ResponsiveProps, 'width'> & Partial<FileUploaderHookProps> & Omit<ComponentPropsWithRef<'div'>, 'onChange' | 'id'> & Pick<InputProps, 'tip' | 'label' | 'afterLabelContent'>;
|
|
4324
4372
|
declare const FileUploader: {
|
|
4325
|
-
(props: FileUploaderProps):
|
|
4373
|
+
(props: FileUploaderProps): react.JSX.Element;
|
|
4326
4374
|
displayName: string;
|
|
4327
4375
|
};
|
|
4328
4376
|
|
|
4329
4377
|
type FooterProps = ComponentPropsWithRef<'footer'>;
|
|
4330
|
-
declare const Footer: ({ className, ...rest }: FooterProps) =>
|
|
4378
|
+
declare const Footer: ({ className, ...rest }: FooterProps) => react.JSX.Element;
|
|
4331
4379
|
|
|
4332
4380
|
type FooterListHeaderProps = Omit<HeadingProps, 'level' | 'withMargins'>;
|
|
4333
|
-
declare const FooterListHeader: (props: FooterListHeaderProps) =>
|
|
4381
|
+
declare const FooterListHeader: (props: FooterListHeaderProps) => react.JSX.Element;
|
|
4334
4382
|
|
|
4335
4383
|
type HideBreakpoint = 'xs' | 'sm' | 'md';
|
|
4336
4384
|
type FooterLogoProps = ComponentPropsWithRef<'img'> & {
|
|
4337
4385
|
/**Brekkepunkt når logoen skal skjules på mindre skjerm. */
|
|
4338
4386
|
hideBreakpoint?: HideBreakpoint;
|
|
4339
4387
|
};
|
|
4340
|
-
declare const FooterLogo: ({ hideBreakpoint, ...rest }: FooterLogoProps) =>
|
|
4388
|
+
declare const FooterLogo: ({ hideBreakpoint, ...rest }: FooterLogoProps) => react.JSX.Element;
|
|
4341
4389
|
|
|
4342
4390
|
type FooterListProps = ComponentPropsWithRef<'ul'>;
|
|
4343
|
-
declare const FooterList: ({ className, ...rest }: FooterListProps) =>
|
|
4391
|
+
declare const FooterList: ({ className, ...rest }: FooterListProps) => react.JSX.Element;
|
|
4344
4392
|
|
|
4345
4393
|
type FooterSocialsListProps = ComponentPropsWithRef<'ul'>;
|
|
4346
|
-
declare const FooterSocialsList: ({ className, ...rest }: FooterSocialsListProps) =>
|
|
4394
|
+
declare const FooterSocialsList: ({ className, ...rest }: FooterSocialsListProps) => react.JSX.Element;
|
|
4347
4395
|
|
|
4348
4396
|
type FooterSocialsGroupProps = ComponentPropsWithRef<'div'>;
|
|
4349
|
-
declare const FooterSocialsGroup: ({ className, ...rest }: FooterSocialsGroupProps) =>
|
|
4397
|
+
declare const FooterSocialsGroup: ({ className, ...rest }: FooterSocialsGroupProps) => react.JSX.Element;
|
|
4350
4398
|
|
|
4351
4399
|
type FooterListGroupProps = ComponentPropsWithRef<'div'>;
|
|
4352
|
-
declare const FooterListGroup: ({ className, ...rest }: FooterListGroupProps) =>
|
|
4400
|
+
declare const FooterListGroup: ({ className, ...rest }: FooterListGroupProps) => react.JSX.Element;
|
|
4353
4401
|
|
|
4354
4402
|
type FooterLeftProps = ComponentPropsWithRef<'div'>;
|
|
4355
|
-
declare const FooterLeft: ({ className, ...rest }: FooterLeftProps) =>
|
|
4403
|
+
declare const FooterLeft: ({ className, ...rest }: FooterLeftProps) => react.JSX.Element;
|
|
4356
4404
|
|
|
4357
4405
|
type FormSummaryProps = Pick<PaperProps, 'children' | 'htmlProps' | 'ref' | 'id' | 'style' | 'className' | 'padding' | 'paddingBlock' | 'paddingInline' | 'margin' | 'marginBlock' | 'marginInline' | 'width' | 'minWidth' | 'maxWidth'>;
|
|
4358
|
-
declare const FormSummary: (props: FormSummaryProps) =>
|
|
4406
|
+
declare const FormSummary: (props: FormSummaryProps) => react.JSX.Element;
|
|
4359
4407
|
|
|
4360
4408
|
type InputMessageType = 'error' | 'tip';
|
|
4361
4409
|
type InputMessageProps = BaseComponentProps<HTMLDivElement, {
|
|
@@ -4367,7 +4415,7 @@ type InputMessageProps = BaseComponentProps<HTMLDivElement, {
|
|
|
4367
4415
|
messageType: InputMessageType;
|
|
4368
4416
|
} & Pick<ResponsiveProps, 'margin' | 'marginInline' | 'marginBlock'>>;
|
|
4369
4417
|
declare const InputMessage: {
|
|
4370
|
-
({ messageType, id, className, style, htmlProps, children, ...rest }: InputMessageProps):
|
|
4418
|
+
({ messageType, id, className, style, htmlProps, children, ...rest }: InputMessageProps): react.JSX.Element;
|
|
4371
4419
|
displayName: string;
|
|
4372
4420
|
};
|
|
4373
4421
|
interface RenderInputMessageProps {
|
|
@@ -4377,34 +4425,34 @@ interface RenderInputMessageProps {
|
|
|
4377
4425
|
errorMessageId?: string;
|
|
4378
4426
|
noSpacing?: boolean;
|
|
4379
4427
|
}
|
|
4380
|
-
declare const renderInputMessage: ({ tip, tipId, errorMessage, errorMessageId, noSpacing, }: RenderInputMessageProps) =>
|
|
4428
|
+
declare const renderInputMessage: ({ tip, tipId, errorMessage, errorMessageId, noSpacing, }: RenderInputMessageProps) => react.JSX.Element;
|
|
4381
4429
|
|
|
4382
4430
|
type FormSummaryHeaderProps = ComponentPropsWithRef<'div'>;
|
|
4383
|
-
declare function FormSummaryHeader({ ...props }: FormSummaryHeaderProps):
|
|
4431
|
+
declare function FormSummaryHeader({ ...props }: FormSummaryHeaderProps): react.JSX.Element;
|
|
4384
4432
|
type FormSummaryHeadingProps = {
|
|
4385
4433
|
/** Heading level. */
|
|
4386
4434
|
level?: Exclude<HeadingProps['level'], 1>;
|
|
4387
4435
|
} & Omit<HeadingProps, 'level'>;
|
|
4388
|
-
declare function FormSummaryHeading({ level, ...props }: FormSummaryHeadingProps):
|
|
4436
|
+
declare function FormSummaryHeading({ level, ...props }: FormSummaryHeadingProps): react.JSX.Element;
|
|
4389
4437
|
type FormSummaryEditButtonProps = {
|
|
4390
4438
|
/**Formål med knappen. */
|
|
4391
4439
|
purpose?: ExtractStrict<ButtonPurpose, 'secondary' | 'tertiary'>;
|
|
4392
4440
|
} & Omit<ButtonProps, 'purpose'>;
|
|
4393
|
-
declare function FormSummaryEditButton({ purpose, ...props }: FormSummaryEditButtonProps):
|
|
4441
|
+
declare function FormSummaryEditButton({ purpose, ...props }: FormSummaryEditButtonProps): react.JSX.Element;
|
|
4394
4442
|
type FormSummaryFieldsProps = Omit<DescriptionListProps, 'direction'>;
|
|
4395
|
-
declare function FormSummaryFields({ ...props }: FormSummaryFieldsProps):
|
|
4443
|
+
declare function FormSummaryFields({ ...props }: FormSummaryFieldsProps): react.JSX.Element;
|
|
4396
4444
|
type FormSummaryFieldProps = ComponentPropsWithRef<'div'>;
|
|
4397
|
-
declare function FormSummaryField({ className, ...props }: FormSummaryFieldProps):
|
|
4445
|
+
declare function FormSummaryField({ className, ...props }: FormSummaryFieldProps): react.JSX.Element;
|
|
4398
4446
|
type FormSummaryLabelProps = DescriptionListTermProps;
|
|
4399
|
-
declare function FormSummaryLabel(props: FormSummaryLabelProps):
|
|
4447
|
+
declare function FormSummaryLabel(props: FormSummaryLabelProps): react.JSX.Element;
|
|
4400
4448
|
type FormSummaryValueProps = {
|
|
4401
4449
|
/**Hvis data hentes fra ekstern kilde kan feltet vise innlastning. */
|
|
4402
4450
|
isLoading?: boolean;
|
|
4403
4451
|
} & DescriptionListDescProps;
|
|
4404
|
-
declare function FormSummaryValue({ className, isLoading, children, ...props }: FormSummaryValueProps):
|
|
4405
|
-
declare function FormSummaryEmptyValue():
|
|
4452
|
+
declare function FormSummaryValue({ className, isLoading, children, ...props }: FormSummaryValueProps): react.JSX.Element;
|
|
4453
|
+
declare function FormSummaryEmptyValue(): react.JSX.Element;
|
|
4406
4454
|
type FormSummaryErrorProps = Omit<InputMessageProps, 'messageType' | 'message'>;
|
|
4407
|
-
declare function FormSummaryError({ ...props }: FormSummaryErrorProps):
|
|
4455
|
+
declare function FormSummaryError({ ...props }: FormSummaryErrorProps): react.JSX.Element;
|
|
4408
4456
|
|
|
4409
4457
|
declare const G_MESSAGE_PURPOSES: ["info", "warning", "danger"];
|
|
4410
4458
|
type GlobalMessagePurpose = (typeof G_MESSAGE_PURPOSES)[number];
|
|
@@ -4421,7 +4469,7 @@ type GlobalMessageProps = BaseComponentProps<HTMLDivElement, {
|
|
|
4421
4469
|
onClose?: () => void;
|
|
4422
4470
|
}>;
|
|
4423
4471
|
declare const GlobalMessage: {
|
|
4424
|
-
({ 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;
|
|
4425
4473
|
displayName: string;
|
|
4426
4474
|
};
|
|
4427
4475
|
|
|
@@ -4431,7 +4479,7 @@ type InlineButtonProps = {
|
|
|
4431
4479
|
*/
|
|
4432
4480
|
icon?: SvgIcon;
|
|
4433
4481
|
} & Pick<BaseTypographyProps, 'color'> & Omit<ComponentPropsWithRef<'button'>, 'color'>;
|
|
4434
|
-
declare const InlineButton: ({ className, color, icon, children, ...rest }: InlineButtonProps) =>
|
|
4482
|
+
declare const InlineButton: ({ className, color, icon, children, ...rest }: InlineButtonProps) => react.JSX.Element;
|
|
4435
4483
|
|
|
4436
4484
|
interface InlineEditContextType {
|
|
4437
4485
|
onChange: (e: ChangeEvent<EditElement>) => void;
|
|
@@ -4481,11 +4529,11 @@ type InlineEditTextAreaProps = InlineEditGenericProps<'textarea'>;
|
|
|
4481
4529
|
type InlineEditInputProps = InlineEditGenericProps<'input'>;
|
|
4482
4530
|
type InlineEditSelectProps = InlineEditGenericProps<'select'>;
|
|
4483
4531
|
|
|
4484
|
-
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;
|
|
4485
4533
|
|
|
4486
|
-
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;
|
|
4487
4535
|
|
|
4488
|
-
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;
|
|
4489
4537
|
|
|
4490
4538
|
type NavigationLinkProps = {
|
|
4491
4539
|
children: ReactNode;
|
|
@@ -4523,7 +4571,7 @@ type InternalHeaderProps = BaseComponentProps<HTMLDivElement, {
|
|
|
4523
4571
|
}>;
|
|
4524
4572
|
|
|
4525
4573
|
declare const InternalHeader: {
|
|
4526
|
-
(props: InternalHeaderProps):
|
|
4574
|
+
(props: InternalHeaderProps): react.JSX.Element;
|
|
4527
4575
|
displayName: string;
|
|
4528
4576
|
};
|
|
4529
4577
|
|
|
@@ -4540,13 +4588,13 @@ type ListProps = BaseComponentPropsWithChildren<HTMLUListElement | HTMLOListElem
|
|
|
4540
4588
|
typographyType?: ListTypographyType;
|
|
4541
4589
|
}>;
|
|
4542
4590
|
declare const List: {
|
|
4543
|
-
({ listType, typographyType, children, id, className, style, htmlProps, ...rest }: ListProps):
|
|
4591
|
+
({ listType, typographyType, children, id, className, style, htmlProps, ...rest }: ListProps): react.JSX.Element;
|
|
4544
4592
|
displayName: string;
|
|
4545
4593
|
};
|
|
4546
4594
|
|
|
4547
4595
|
type ListItemProps = ComponentPropsWithRef<'li'>;
|
|
4548
4596
|
declare const ListItem: {
|
|
4549
|
-
({ className, ...rest }: ListItemProps):
|
|
4597
|
+
({ className, ...rest }: ListItemProps): react.JSX.Element;
|
|
4550
4598
|
displayName: string;
|
|
4551
4599
|
};
|
|
4552
4600
|
|
|
@@ -4570,7 +4618,7 @@ type LocalMessageProps = BaseComponentProps<HTMLDivElement, {
|
|
|
4570
4618
|
layout?: LocalMessageLayout;
|
|
4571
4619
|
} & Pick<ResponsiveProps, 'width'>>;
|
|
4572
4620
|
declare const LocalMessage: {
|
|
4573
|
-
({ 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;
|
|
4574
4622
|
displayName: string;
|
|
4575
4623
|
};
|
|
4576
4624
|
|
|
@@ -4604,13 +4652,13 @@ type ModalBodyProps = BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
4604
4652
|
height?: ResponsiveProps['height'];
|
|
4605
4653
|
}>;
|
|
4606
4654
|
declare const ModalBody: {
|
|
4607
|
-
({ children, id, className, style, scrollable, htmlProps, height, ...rest }: ModalBodyProps):
|
|
4655
|
+
({ children, id, className, style, scrollable, htmlProps, height, ...rest }: ModalBodyProps): react.JSX.Element;
|
|
4608
4656
|
displayName: string;
|
|
4609
4657
|
};
|
|
4610
4658
|
|
|
4611
4659
|
type ModalActionsProps = ComponentPropsWithRef<'div'>;
|
|
4612
4660
|
declare const ModalActions: {
|
|
4613
|
-
(props: ModalActionsProps):
|
|
4661
|
+
(props: ModalActionsProps): react.JSX.Element;
|
|
4614
4662
|
displayName: string;
|
|
4615
4663
|
};
|
|
4616
4664
|
|
|
@@ -4652,12 +4700,12 @@ type NewsPopoverProps = BaseComponentProps<HTMLElement, {
|
|
|
4652
4700
|
smallScreenBreakpoint?: Breakpoint;
|
|
4653
4701
|
}>;
|
|
4654
4702
|
declare const NewsPopover: {
|
|
4655
|
-
({ 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;
|
|
4656
4704
|
displayName: string;
|
|
4657
4705
|
};
|
|
4658
4706
|
|
|
4659
4707
|
declare const OverflowMenu: {
|
|
4660
|
-
({ placement, offset, parentElement, portal, className, htmlProps, ref, style, ...rest }: OverflowMenuProps):
|
|
4708
|
+
({ placement, offset, parentElement, portal, className, htmlProps, ref, style, ...rest }: OverflowMenuProps): react.JSX.Element;
|
|
4661
4709
|
displayName: string;
|
|
4662
4710
|
};
|
|
4663
4711
|
|
|
@@ -4688,37 +4736,37 @@ type OverflowMenuProps = Omit<BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
4688
4736
|
}>, 'id'>;
|
|
4689
4737
|
|
|
4690
4738
|
declare const OverflowMenuButton: {
|
|
4691
|
-
({ onClick, onClickAsync, closeMenuOnClickAsync, purpose, loading, ref, ...rest }: OverflowMenuButtonProps):
|
|
4739
|
+
({ onClick, onClickAsync, closeMenuOnClickAsync, purpose, loading, ref, ...rest }: OverflowMenuButtonProps): react.JSX.Element;
|
|
4692
4740
|
displayName: string;
|
|
4693
4741
|
};
|
|
4694
4742
|
|
|
4695
4743
|
declare const OverflowMenuLink: {
|
|
4696
|
-
({ onClick, ref, ...rest }: OverflowMenuLinkProps):
|
|
4744
|
+
({ onClick, ref, ...rest }: OverflowMenuLinkProps): react.JSX.Element;
|
|
4697
4745
|
displayName: string;
|
|
4698
4746
|
};
|
|
4699
4747
|
|
|
4700
4748
|
declare const OverflowMenuToggle: {
|
|
4701
|
-
({ ref, ...rest }: OverflowMenuToggleProps):
|
|
4749
|
+
({ ref, ...rest }: OverflowMenuToggleProps): react.JSX.Element;
|
|
4702
4750
|
displayName: string;
|
|
4703
4751
|
};
|
|
4704
4752
|
|
|
4705
4753
|
type OverflowMenuDividerProps = Omit<DividerProps, 'color'>;
|
|
4706
4754
|
declare const OverflowMenuDivider: {
|
|
4707
|
-
({ id, className, style, htmlProps, ...rest }: OverflowMenuDividerProps):
|
|
4755
|
+
({ id, className, style, htmlProps, ...rest }: OverflowMenuDividerProps): react.JSX.Element;
|
|
4708
4756
|
displayName: string;
|
|
4709
4757
|
};
|
|
4710
4758
|
|
|
4711
4759
|
type OverflowMenuListProps = StylelessListProps;
|
|
4712
|
-
declare const OverflowMenuList: (props: OverflowMenuListProps) =>
|
|
4760
|
+
declare const OverflowMenuList: (props: OverflowMenuListProps) => react.JSX.Element;
|
|
4713
4761
|
|
|
4714
4762
|
declare const OverflowMenuSpan: {
|
|
4715
|
-
(props: OverflowMenuSpanProps):
|
|
4763
|
+
(props: OverflowMenuSpanProps): react.JSX.Element;
|
|
4716
4764
|
displayName: string;
|
|
4717
4765
|
};
|
|
4718
4766
|
|
|
4719
4767
|
type OverflowMenuListHeaderProps = ComponentPropsWithRef<'h2'>;
|
|
4720
4768
|
declare const OverflowMenuListHeader: {
|
|
4721
|
-
(props: OverflowMenuListHeaderProps):
|
|
4769
|
+
(props: OverflowMenuListHeaderProps): react.JSX.Element;
|
|
4722
4770
|
displayName: string;
|
|
4723
4771
|
};
|
|
4724
4772
|
|
|
@@ -4741,7 +4789,7 @@ interface OverflowMenuGroupProps {
|
|
|
4741
4789
|
overflowMenuId?: string;
|
|
4742
4790
|
}
|
|
4743
4791
|
declare const OverflowMenuGroup: {
|
|
4744
|
-
({ children, onClose, onOpen, setIsOpen: propSetIsOpen, isOpen: propIsOpen, isInitiallyOpen, overflowMenuId, }: OverflowMenuGroupProps):
|
|
4792
|
+
({ children, onClose, onOpen, setIsOpen: propSetIsOpen, isOpen: propIsOpen, isInitiallyOpen, overflowMenuId, }: OverflowMenuGroupProps): react.JSX.Element;
|
|
4745
4793
|
displayName: string;
|
|
4746
4794
|
};
|
|
4747
4795
|
|
|
@@ -4789,7 +4837,7 @@ type PaginationProps = BaseComponentProps<HTMLElement, {
|
|
|
4789
4837
|
smallScreenBreakpoint?: Breakpoint;
|
|
4790
4838
|
}, Omit<HTMLAttributes<HTMLElement>, 'onChange'>>;
|
|
4791
4839
|
declare const Pagination: {
|
|
4792
|
-
({ 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;
|
|
4793
4841
|
displayName: string;
|
|
4794
4842
|
};
|
|
4795
4843
|
|
|
@@ -4841,7 +4889,7 @@ type PhoneInputProps = {
|
|
|
4841
4889
|
groupLabel?: string;
|
|
4842
4890
|
} & Pick<InputProps, 'readOnly' | 'disabled' | 'width' | 'componentSize' | 'errorMessage' | 'label' | 'afterLabelContent' | 'tip' | 'required' | 'className' | 'style' | 'aria-required' | 'aria-describedby' | 'ref'>;
|
|
4843
4891
|
declare const PhoneInput: {
|
|
4844
|
-
({ 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;
|
|
4845
4893
|
displayName: string;
|
|
4846
4894
|
};
|
|
4847
4895
|
|
|
@@ -4885,7 +4933,7 @@ type PopoverProps = BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
4885
4933
|
onClose?: () => void;
|
|
4886
4934
|
}>;
|
|
4887
4935
|
declare const Popover: {
|
|
4888
|
-
({ 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;
|
|
4889
4937
|
displayName: string;
|
|
4890
4938
|
};
|
|
4891
4939
|
|
|
@@ -4906,7 +4954,7 @@ interface PopoverGroupProps {
|
|
|
4906
4954
|
popoverId?: string;
|
|
4907
4955
|
}
|
|
4908
4956
|
declare const PopoverGroup: {
|
|
4909
|
-
({ isOpen: propIsOpen, setIsOpen: propSetIsOpen, onClose, onOpen, isInitiallyOpen, children, popoverId, }: PopoverGroupProps):
|
|
4957
|
+
({ isOpen: propIsOpen, setIsOpen: propSetIsOpen, onClose, onOpen, isInitiallyOpen, children, popoverId, }: PopoverGroupProps): react.JSX.Element;
|
|
4910
4958
|
displayName: string;
|
|
4911
4959
|
};
|
|
4912
4960
|
|
|
@@ -4933,7 +4981,7 @@ type ProgressTrackerItemProps = BaseComponentPropsWithChildren<HTMLButtonElement
|
|
|
4933
4981
|
onClick?: undefined;
|
|
4934
4982
|
}>;
|
|
4935
4983
|
declare const ProgressTrackerItem: {
|
|
4936
|
-
(props: ProgressTrackerItemProps):
|
|
4984
|
+
(props: ProgressTrackerItemProps): react.JSX.Element;
|
|
4937
4985
|
displayName: string;
|
|
4938
4986
|
};
|
|
4939
4987
|
|
|
@@ -4973,7 +5021,7 @@ type ProgressBarProps = Pick<CommonInputProps, 'tip' | 'errorMessage' | 'label'
|
|
|
4973
5021
|
max?: number;
|
|
4974
5022
|
} & Omit<ComponentPropsWithRef<'progress'>, 'max' | 'value'>;
|
|
4975
5023
|
declare const ProgressBar: {
|
|
4976
|
-
({ 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;
|
|
4977
5025
|
displayName: string;
|
|
4978
5026
|
};
|
|
4979
5027
|
|
|
@@ -4994,7 +5042,7 @@ type SearchProps = Pick<InputProps, 'tip' | 'label'> & {
|
|
|
4994
5042
|
showIcon?: boolean;
|
|
4995
5043
|
} & Pick<InputProps, 'width'> & Omit<ComponentPropsWithRef<'input'>, 'width' | 'height'>;
|
|
4996
5044
|
declare const Search$1: {
|
|
4997
|
-
({ 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;
|
|
4998
5046
|
displayName: string;
|
|
4999
5047
|
};
|
|
5000
5048
|
|
|
@@ -5029,7 +5077,7 @@ interface SearchAutocompleteWrapperProps {
|
|
|
5029
5077
|
value?: string;
|
|
5030
5078
|
}
|
|
5031
5079
|
declare const SearchAutocompleteWrapper: {
|
|
5032
|
-
(props: SearchAutocompleteWrapperProps):
|
|
5080
|
+
(props: SearchAutocompleteWrapperProps): react.JSX.Element;
|
|
5033
5081
|
displayName: string;
|
|
5034
5082
|
};
|
|
5035
5083
|
|
|
@@ -5046,7 +5094,7 @@ type SearchSuggestionsProps = BaseComponentProps<HTMLDivElement, {
|
|
|
5046
5094
|
searchId: string;
|
|
5047
5095
|
}>;
|
|
5048
5096
|
declare const SearchSuggestions: {
|
|
5049
|
-
({ 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;
|
|
5050
5098
|
displayName: string;
|
|
5051
5099
|
};
|
|
5052
5100
|
|
|
@@ -5082,7 +5130,7 @@ type SelectProps<Option = unknown, IsMulti extends boolean = false> = {
|
|
|
5082
5130
|
ref?: SelectForwardRefType<Option, IsMulti>;
|
|
5083
5131
|
} & CommonInputProps & InputIconProps & Pick<HTMLAttributes<HTMLInputElement>, 'aria-required'> & WrappedReactSelectProps<Option, IsMulti, GroupBase<Option>>;
|
|
5084
5132
|
type SelectForwardRefType<Option, IsMulti extends boolean> = Ref<SelectInstance<Option, IsMulti, GroupBase<Option>>>;
|
|
5085
|
-
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;
|
|
5086
5134
|
declare namespace Select {
|
|
5087
5135
|
var displayName: string;
|
|
5088
5136
|
}
|
|
@@ -5093,12 +5141,12 @@ type NativeSelectProps = {
|
|
|
5093
5141
|
/** Implementerer `readOnly` oppførsel etter standard for `<input>` og setter `readOnly` styling. */
|
|
5094
5142
|
readOnly?: InputProps['readOnly'];
|
|
5095
5143
|
} & CommonInputProps & Pick<InputProps, 'componentSize'> & InputIconProps & ComponentPropsWithRef<'select'>;
|
|
5096
|
-
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;
|
|
5097
5145
|
|
|
5098
5146
|
declare const createSelectOptions: <TValue extends string | number>(...args: Array<TValue>) => Array<SelectOption<TValue>>;
|
|
5099
5147
|
|
|
5100
5148
|
declare const RadioButton: {
|
|
5101
|
-
({ 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;
|
|
5102
5150
|
displayName: string;
|
|
5103
5151
|
};
|
|
5104
5152
|
|
|
@@ -5115,7 +5163,7 @@ type RadioButtonGroupProps<T extends string | number> = BaseComponentPropsWithCh
|
|
|
5115
5163
|
defaultValue?: T | undefined;
|
|
5116
5164
|
}, Omit<HTMLAttributes<HTMLDivElement>, 'onChange'>>;
|
|
5117
5165
|
declare const RadioButtonGroup: {
|
|
5118
|
-
<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;
|
|
5119
5167
|
displayName: string;
|
|
5120
5168
|
};
|
|
5121
5169
|
|
|
@@ -5127,7 +5175,7 @@ type SkeletonProps = {
|
|
|
5127
5175
|
borderRadius?: Property.BorderRadius;
|
|
5128
5176
|
} & Pick<ResponsiveProps, 'width' | 'height'> & ComponentPropsWithRef<'div'>;
|
|
5129
5177
|
declare const Skeleton: {
|
|
5130
|
-
({ width, height, borderRadius, className, style, ref, ...rest }: SkeletonProps):
|
|
5178
|
+
({ width, height, borderRadius, className, style, ref, ...rest }: SkeletonProps): react.JSX.Element;
|
|
5131
5179
|
displayName: string;
|
|
5132
5180
|
};
|
|
5133
5181
|
|
|
@@ -5144,7 +5192,7 @@ type SkipToContentProps = BaseComponentProps<HTMLAnchorElement, {
|
|
|
5144
5192
|
top?: Property.Top;
|
|
5145
5193
|
}>;
|
|
5146
5194
|
declare const SkipToContent: {
|
|
5147
|
-
({ text, top, id, className, htmlProps, style, ...rest }: SkipToContentProps):
|
|
5195
|
+
({ text, top, id, className, htmlProps, style, ...rest }: SkipToContentProps): react.JSX.Element;
|
|
5148
5196
|
displayName: string;
|
|
5149
5197
|
};
|
|
5150
5198
|
|
|
@@ -5162,7 +5210,7 @@ type SpinnerProps = BaseComponentProps<SVGElement, {
|
|
|
5162
5210
|
*/
|
|
5163
5211
|
tooltip?: string;
|
|
5164
5212
|
}, Omit<HTMLAttributes<SVGSVGElement>, 'color'>>;
|
|
5165
|
-
declare function Spinner(props: SpinnerProps):
|
|
5213
|
+
declare function Spinner(props: SpinnerProps): react.JSX.Element;
|
|
5166
5214
|
declare namespace Spinner {
|
|
5167
5215
|
var displayName: string;
|
|
5168
5216
|
}
|
|
@@ -5181,13 +5229,13 @@ type SplitButtonProps = Pick<ButtonProps, 'size'> & {
|
|
|
5181
5229
|
purpose?: SplitButtonPurpose;
|
|
5182
5230
|
} & ComponentPropsWithRef<'div'>;
|
|
5183
5231
|
declare const SplitButton: {
|
|
5184
|
-
({ size, primaryAction, secondaryActions, purpose, className, ...rest }: SplitButtonProps):
|
|
5232
|
+
({ size, primaryAction, secondaryActions, purpose, className, ...rest }: SplitButtonProps): react.JSX.Element;
|
|
5185
5233
|
displayName: string;
|
|
5186
5234
|
};
|
|
5187
5235
|
|
|
5188
5236
|
type TableBodyProps = ComponentPropsWithRef<'tbody'>;
|
|
5189
5237
|
declare const Body: {
|
|
5190
|
-
(props: TableBodyProps):
|
|
5238
|
+
(props: TableBodyProps): react.JSX.Element;
|
|
5191
5239
|
displayName: string;
|
|
5192
5240
|
};
|
|
5193
5241
|
|
|
@@ -5210,18 +5258,18 @@ type TableCellProps = {
|
|
|
5210
5258
|
collapsibleProps?: CollapsibleProps;
|
|
5211
5259
|
} & (ComponentPropsWithRef<'td'> | ComponentPropsWithRef<'th'>);
|
|
5212
5260
|
declare const Cell: {
|
|
5213
|
-
({ children, type: _type, layout, collapsibleProps, className, ...rest }: TableCellProps):
|
|
5261
|
+
({ children, type: _type, layout, collapsibleProps, className, ...rest }: TableCellProps): react.JSX.Element;
|
|
5214
5262
|
displayName: string;
|
|
5215
5263
|
};
|
|
5216
5264
|
|
|
5217
5265
|
type TableFootProps = ComponentPropsWithRef<'tfoot'>;
|
|
5218
5266
|
declare const Foot: {
|
|
5219
|
-
(props: TableFootProps):
|
|
5267
|
+
(props: TableFootProps): react.JSX.Element;
|
|
5220
5268
|
displayName: string;
|
|
5221
5269
|
};
|
|
5222
5270
|
|
|
5223
5271
|
type TableHeadProps = ComponentPropsWithRef<'thead'>;
|
|
5224
|
-
declare const Head: ({ children, ...rest }: TableHeadProps) =>
|
|
5272
|
+
declare const Head: ({ children, ...rest }: TableHeadProps) => react.JSX.Element;
|
|
5225
5273
|
|
|
5226
5274
|
type TableSize = Extract<Size, 'small' | 'medium' | 'large'>;
|
|
5227
5275
|
type TableProps = {
|
|
@@ -5263,7 +5311,7 @@ type TableRowProps = {
|
|
|
5263
5311
|
} & ComponentPropsWithRef<'tr'>;
|
|
5264
5312
|
|
|
5265
5313
|
declare const Row: {
|
|
5266
|
-
({ type: _type, mode, hoverable, selected, className, ...rest }: TableRowProps):
|
|
5314
|
+
({ type: _type, mode, hoverable, selected, className, ...rest }: TableRowProps): react.JSX.Element;
|
|
5267
5315
|
displayName: string;
|
|
5268
5316
|
};
|
|
5269
5317
|
|
|
@@ -5277,18 +5325,18 @@ type TableSortCellProps = {
|
|
|
5277
5325
|
onClick: (event: MouseEvent$1<HTMLButtonElement>) => void;
|
|
5278
5326
|
} & Omit<TableCellProps, 'type'>;
|
|
5279
5327
|
declare const SortCell: {
|
|
5280
|
-
({ isSorted, sortOrder, onClick, children, ...rest }: TableSortCellProps):
|
|
5328
|
+
({ isSorted, sortOrder, onClick, children, ...rest }: TableSortCellProps): react.JSX.Element;
|
|
5281
5329
|
displayName: string;
|
|
5282
5330
|
};
|
|
5283
5331
|
|
|
5284
5332
|
declare const Table$1: {
|
|
5285
|
-
({ size, stickyHeader, withDividers, withStripes, className, children, ...rest }: TableProps):
|
|
5333
|
+
({ size, stickyHeader, withDividers, withStripes, className, children, ...rest }: TableProps): react.JSX.Element;
|
|
5286
5334
|
displayName: string;
|
|
5287
5335
|
};
|
|
5288
5336
|
|
|
5289
5337
|
type TableWrapperProps = HTMLAttributes<HTMLDivElement>;
|
|
5290
5338
|
declare const TableWrapper: {
|
|
5291
|
-
({ className, ...rest }: TableWrapperProps):
|
|
5339
|
+
({ className, ...rest }: TableWrapperProps): react.JSX.Element;
|
|
5292
5340
|
displayName: string;
|
|
5293
5341
|
};
|
|
5294
5342
|
|
|
@@ -5304,7 +5352,7 @@ type TableCompoundProps = typeof Table$1 & {
|
|
|
5304
5352
|
declare const Table: TableCompoundProps;
|
|
5305
5353
|
|
|
5306
5354
|
declare const CollapsibleRow: {
|
|
5307
|
-
({ type: _type, className, mode, selected, hoverable, children, ref, ...rest }: TableRowProps):
|
|
5355
|
+
({ type: _type, className, mode, selected, hoverable, children, ref, ...rest }: TableRowProps): react.JSX.Element;
|
|
5308
5356
|
displayName: string;
|
|
5309
5357
|
};
|
|
5310
5358
|
|
|
@@ -5321,7 +5369,7 @@ type CollapsibleTableProps = {
|
|
|
5321
5369
|
} & TableProps;
|
|
5322
5370
|
|
|
5323
5371
|
declare const CollapsibleTable$1: {
|
|
5324
|
-
({ isCollapsed, headerValues, definingColumnIndex, ...rest }: CollapsibleTableProps):
|
|
5372
|
+
({ isCollapsed, headerValues, definingColumnIndex, ...rest }: CollapsibleTableProps): react.JSX.Element;
|
|
5325
5373
|
displayName: string;
|
|
5326
5374
|
};
|
|
5327
5375
|
|
|
@@ -5338,7 +5386,7 @@ type AddTabButtonProps = {
|
|
|
5338
5386
|
index?: number;
|
|
5339
5387
|
} & ComponentPropsWithRef<'button'>;
|
|
5340
5388
|
declare const AddTabButton: {
|
|
5341
|
-
({ ref, children, index, className, width, ...rest }: AddTabButtonProps):
|
|
5389
|
+
({ ref, children, index, className, width, ...rest }: AddTabButtonProps): react.JSX.Element;
|
|
5342
5390
|
displayName: string;
|
|
5343
5391
|
};
|
|
5344
5392
|
|
|
@@ -5359,7 +5407,7 @@ type TabsProps = BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
5359
5407
|
addTabButtonProps?: Omit<AddTabButtonProps, 'index'>;
|
|
5360
5408
|
} & Pick<ResponsiveProps, 'width'>, Omit<HTMLAttributes<HTMLDivElement>, 'onChange'>>;
|
|
5361
5409
|
declare const Tabs: {
|
|
5362
|
-
({ 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;
|
|
5363
5411
|
displayName: string;
|
|
5364
5412
|
};
|
|
5365
5413
|
|
|
@@ -5383,13 +5431,13 @@ type TabProps = BaseComponentPropsWithChildren<HTMLButtonElement, {
|
|
|
5383
5431
|
width?: CSS.Properties['width'];
|
|
5384
5432
|
} & PickedAttributes, Omit<ButtonHTMLAttributes<HTMLButtonElement>, keyof PickedAttributes>>;
|
|
5385
5433
|
declare const Tab: {
|
|
5386
|
-
({ 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;
|
|
5387
5435
|
displayName: string;
|
|
5388
5436
|
};
|
|
5389
5437
|
|
|
5390
5438
|
type TabListProps = ComponentPropsWithRef<'div'>;
|
|
5391
5439
|
declare const TabList: {
|
|
5392
|
-
({ children, id, style, onFocus, ref, ...rest }: TabListProps):
|
|
5440
|
+
({ children, id, style, onFocus, ref, ...rest }: TabListProps): react.JSX.Element;
|
|
5393
5441
|
displayName: string;
|
|
5394
5442
|
};
|
|
5395
5443
|
|
|
@@ -5402,13 +5450,13 @@ type TabPanelProps = BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
5402
5450
|
padding?: ResponsiveProps['padding'];
|
|
5403
5451
|
}>;
|
|
5404
5452
|
declare const TabPanel: {
|
|
5405
|
-
({ active, children, id, className, style, htmlProps, padding, ...rest }: TabPanelProps):
|
|
5453
|
+
({ active, children, id, className, style, htmlProps, padding, ...rest }: TabPanelProps): react.JSX.Element;
|
|
5406
5454
|
displayName: string;
|
|
5407
5455
|
};
|
|
5408
5456
|
|
|
5409
5457
|
type TabPanelsProps = Pick<ResponsiveProps, 'padding' | 'paddingBlock' | 'paddingInline'> & ComponentPropsWithRef<'div'>;
|
|
5410
5458
|
declare const TabPanels: {
|
|
5411
|
-
({ children, ref, ...rest }: TabPanelsProps):
|
|
5459
|
+
({ children, ref, ...rest }: TabPanelsProps): react.JSX.Element;
|
|
5412
5460
|
displayName: string;
|
|
5413
5461
|
};
|
|
5414
5462
|
|
|
@@ -5437,7 +5485,7 @@ type TagProps = BaseComponentProps<HTMLSpanElement, {
|
|
|
5437
5485
|
withIcon?: boolean;
|
|
5438
5486
|
}>;
|
|
5439
5487
|
declare const Tag: {
|
|
5440
|
-
({ purpose, appearance, id, className, style, children, htmlProps, withIcon, ...rest }: TagProps):
|
|
5488
|
+
({ purpose, appearance, id, className, style, children, htmlProps, withIcon, ...rest }: TagProps): react.JSX.Element;
|
|
5441
5489
|
displayName: string;
|
|
5442
5490
|
};
|
|
5443
5491
|
|
|
@@ -5448,7 +5496,7 @@ type TextAreaProps = CommonInputProps & {
|
|
|
5448
5496
|
withCharacterCounter?: boolean;
|
|
5449
5497
|
} & ComponentPropsWithRef<'textarea'>;
|
|
5450
5498
|
declare const TextArea: {
|
|
5451
|
-
({ 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;
|
|
5452
5500
|
displayName: string;
|
|
5453
5501
|
};
|
|
5454
5502
|
|
|
@@ -5469,7 +5517,7 @@ interface TextAffixProps {
|
|
|
5469
5517
|
}
|
|
5470
5518
|
|
|
5471
5519
|
declare const TextInput: {
|
|
5472
|
-
({ 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;
|
|
5473
5521
|
displayName: string;
|
|
5474
5522
|
};
|
|
5475
5523
|
|
|
@@ -5501,11 +5549,10 @@ type ToggleBarProps<T extends string | number> = BaseComponentPropsWithChildren<
|
|
|
5501
5549
|
}, InputHTMLAttributes<HTMLInputElement>>;
|
|
5502
5550
|
|
|
5503
5551
|
declare const ToggleBar: {
|
|
5504
|
-
<T extends string | number = string>(props: ToggleBarProps<T>):
|
|
5552
|
+
<T extends string | number = string>(props: ToggleBarProps<T>): react.JSX.Element;
|
|
5505
5553
|
displayName: string;
|
|
5506
5554
|
};
|
|
5507
5555
|
|
|
5508
|
-
declare const typographyTypes: Record<ToggleBarSize, StaticTypographyType>;
|
|
5509
5556
|
type ToggleRadioProps = BaseComponentProps<HTMLInputElement, {
|
|
5510
5557
|
/**Ledetekst som vises i komponenten. */
|
|
5511
5558
|
label?: string;
|
|
@@ -5513,7 +5560,7 @@ type ToggleRadioProps = BaseComponentProps<HTMLInputElement, {
|
|
|
5513
5560
|
icon?: SvgIcon;
|
|
5514
5561
|
} & Pick<InputHTMLAttributes<HTMLInputElement>, 'name' | 'checked' | 'value' | 'onChange' | 'aria-label' | 'aria-labelledby'>>;
|
|
5515
5562
|
declare const ToggleRadio: {
|
|
5516
|
-
({ 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;
|
|
5517
5564
|
displayName: string;
|
|
5518
5565
|
};
|
|
5519
5566
|
|
|
@@ -5530,7 +5577,7 @@ type ToggleButtonProps = BaseComponentProps<HTMLInputElement, {
|
|
|
5530
5577
|
} & CheckboxPickedHTMLAttributes, InputHTMLAttributes<HTMLInputElement>>;
|
|
5531
5578
|
|
|
5532
5579
|
declare const ToggleButton: {
|
|
5533
|
-
({ id, label, icon, size, className, style, htmlProps, ...rest }: ToggleButtonProps):
|
|
5580
|
+
({ id, label, icon, size, className, style, htmlProps, ...rest }: ToggleButtonProps): react.JSX.Element;
|
|
5534
5581
|
displayName: string;
|
|
5535
5582
|
};
|
|
5536
5583
|
|
|
@@ -5546,7 +5593,7 @@ type ToggleButtonGroupProps = BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
5546
5593
|
labelId?: string;
|
|
5547
5594
|
}>;
|
|
5548
5595
|
declare const ToggleButtonGroup: {
|
|
5549
|
-
(props: ToggleButtonGroupProps):
|
|
5596
|
+
(props: ToggleButtonGroupProps): react.JSX.Element;
|
|
5550
5597
|
displayName: string;
|
|
5551
5598
|
};
|
|
5552
5599
|
|
|
@@ -5573,14 +5620,14 @@ type TooltipProps = BaseComponentProps<HTMLDivElement, {
|
|
|
5573
5620
|
keepMounted?: boolean;
|
|
5574
5621
|
} & PickedHTMLAttributes, Omit<HTMLAttributes<HTMLDivElement>, 'children' | keyof PickedHTMLAttributes>>;
|
|
5575
5622
|
declare const Tooltip: {
|
|
5576
|
-
({ 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;
|
|
5577
5624
|
displayName: string;
|
|
5578
5625
|
};
|
|
5579
5626
|
|
|
5580
5627
|
type VisuallyHiddenProps<T extends ElementType = 'span'> = PolymorphicBaseComponentProps<T>;
|
|
5581
5628
|
declare const VisuallyHidden: {
|
|
5582
|
-
<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;
|
|
5583
5630
|
displayName: string;
|
|
5584
5631
|
};
|
|
5585
5632
|
|
|
5586
|
-
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, 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 };
|