@norges-domstoler/dds-components 0.0.0-dev-20260605083837 → 0.0.0-dev-20260605084148
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.d.mts +326 -327
- package/dist/index.d.ts +326 -327
- 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, iconPosition, loading, loadingTooltip, fullWidth, icon, iconState, onClick, onFocus, onBlur, id, ref, className, style, htmlProps, ...props }: ButtonProps<I, T>): react.JSX.Element;
|
|
397
396
|
displayName: string;
|
|
398
397
|
};
|
|
399
398
|
|
|
@@ -438,7 +437,7 @@ type ToggleProps = BaseComponentProps<HTMLElement, {
|
|
|
438
437
|
variant?: ToggleVariant;
|
|
439
438
|
} & Pick<ComponentProps<'input'>, 'name' | 'aria-describedby' | 'onBlur'>, InputHTMLAttributes<HTMLInputElement>>;
|
|
440
439
|
declare const Toggle: {
|
|
441
|
-
({ id, children, size, checked: checkedProp, defaultChecked, onChange, disabled, readOnly, isLoading, className, style, htmlProps, variant, ...rest }: ToggleProps):
|
|
440
|
+
({ id, children, size, checked: checkedProp, defaultChecked, onChange, disabled, readOnly, isLoading, className, style, htmlProps, variant, ...rest }: ToggleProps): react.JSX.Element;
|
|
442
441
|
displayName: string;
|
|
443
442
|
};
|
|
444
443
|
|
|
@@ -459,7 +458,7 @@ type StylelessButtonProps<TProps extends object = object> = TProps & ComponentPr
|
|
|
459
458
|
* </StylelessButton>
|
|
460
459
|
* ```
|
|
461
460
|
*/
|
|
462
|
-
declare const StylelessButton: ({ className, ...rest }: StylelessButtonProps) =>
|
|
461
|
+
declare const StylelessButton: ({ className, ...rest }: StylelessButtonProps) => react.JSX.Element;
|
|
463
462
|
|
|
464
463
|
type DropdownItemT = 'span' | 'a' | typeof StylelessButton | typeof Toggle;
|
|
465
464
|
type DropdownItemButtonProps = {
|
|
@@ -480,10 +479,10 @@ interface DropdownItemCustomProps<T extends DropdownItemT = 'span'> {
|
|
|
480
479
|
purpose?: 'default' | 'danger';
|
|
481
480
|
}
|
|
482
481
|
type DropdownItemProps<T extends DropdownItemT = 'span'> = DropdownItemCustomProps<T> & DropdownItemButtonProps & (T extends typeof StylelessButton ? StylelessButtonProps : ComponentPropsWithRef<T>);
|
|
483
|
-
declare const DropdownItem: <T extends DropdownItemT = "span">({ icon, className, children: propChildren, purpose, loading, loadingTooltip, ...rest }: DropdownItemProps<T>) =>
|
|
482
|
+
declare const DropdownItem: <T extends DropdownItemT = "span">({ icon, className, children: propChildren, purpose, loading, loadingTooltip, ...rest }: DropdownItemProps<T>) => react.JSX.Element;
|
|
484
483
|
|
|
485
484
|
type DropdownHeaderProps = ComponentPropsWithRef<'h2'>;
|
|
486
|
-
declare const DropdownHeader: ({ className, ...rest }: DropdownHeaderProps) =>
|
|
485
|
+
declare const DropdownHeader: ({ className, ...rest }: DropdownHeaderProps) => react.JSX.Element;
|
|
487
486
|
|
|
488
487
|
/**
|
|
489
488
|
* Usynlig `<input>` til bruk for skjermlesere, typisk for custom radioknapper o.l..
|
|
@@ -502,7 +501,7 @@ declare const DropdownHeader: ({ className, ...rest }: DropdownHeaderProps) => r
|
|
|
502
501
|
* });
|
|
503
502
|
* ```
|
|
504
503
|
*/
|
|
505
|
-
declare const HiddenInput: ({ className, ...rest }: ComponentPropsWithRef<"input">) =>
|
|
504
|
+
declare const HiddenInput: ({ className, ...rest }: ComponentPropsWithRef<"input">) => react.JSX.Element;
|
|
506
505
|
|
|
507
506
|
/**
|
|
508
507
|
* Hook som returnerer en callback-funksjon som refererer til den nyeste versjonen av den opprinnelige funksjonen.
|
|
@@ -1025,7 +1024,7 @@ type StylelessListProps<TProps extends object = object> = TProps & ComponentProp
|
|
|
1025
1024
|
* </StylelessList>
|
|
1026
1025
|
* ```
|
|
1027
1026
|
*/
|
|
1028
|
-
declare const StylelessList: ({ className, ...rest }: StylelessListProps) =>
|
|
1027
|
+
declare const StylelessList: ({ className, ...rest }: StylelessListProps) => react.JSX.Element;
|
|
1029
1028
|
type StylelessOListProps<TProps extends object = object> = TProps & ComponentPropsWithRef<'ol'>;
|
|
1030
1029
|
/**
|
|
1031
1030
|
* Normalisert `<ol>` uten styling. Base for custom ol styling.
|
|
@@ -1044,7 +1043,7 @@ type StylelessOListProps<TProps extends object = object> = TProps & ComponentPro
|
|
|
1044
1043
|
* </StylelessOList>
|
|
1045
1044
|
* ```
|
|
1046
1045
|
*/
|
|
1047
|
-
declare const StylelessOList: ({ className, ...rest }: StylelessOListProps) =>
|
|
1046
|
+
declare const StylelessOList: ({ className, ...rest }: StylelessOListProps) => react.JSX.Element;
|
|
1048
1047
|
|
|
1049
1048
|
/**
|
|
1050
1049
|
* Styling utils i TS (CSS-in-JS)
|
|
@@ -1108,19 +1107,19 @@ type BleedProps<T extends ElementType = 'div'> = PolymorphicBaseComponentProps<T
|
|
|
1108
1107
|
reflectivePadding?: boolean;
|
|
1109
1108
|
} & ResponsiveBleedProps>;
|
|
1110
1109
|
declare const Bleed: {
|
|
1111
|
-
<T extends ElementType = "div">({ id, className, style, htmlProps, bleedMarginBlock, bleedMarginInline, reflectivePadding, ...rest }: BleedProps<T>):
|
|
1110
|
+
<T extends ElementType = "div">({ id, className, style, htmlProps, bleedMarginBlock, bleedMarginInline, reflectivePadding, ...rest }: BleedProps<T>): react.JSX.Element;
|
|
1112
1111
|
displayName: string;
|
|
1113
1112
|
};
|
|
1114
1113
|
|
|
1115
1114
|
type BoxProps<T extends ElementType = 'div'> = PolymorphicBaseComponentProps<T, ResponsiveProps>;
|
|
1116
1115
|
declare const Box: {
|
|
1117
|
-
<T extends ElementType = "div">({ id, className, style, padding, paddingInline, paddingBlock, margin, marginInline, marginBlock, height, maxHeight, minHeight, width, maxWidth, minWidth, position, left, right, bottom, top, overflow, overflowX, overflowY, display, textAlign, flexDirection, gap, columnGap, rowGap, alignItems, alignContent, justifyItems, placeItems, justifyContent, flexWrap, flexBasis, flexFlow, wordBreak, htmlProps, ...rest }: BoxProps<T>):
|
|
1116
|
+
<T extends ElementType = "div">({ id, className, style, padding, paddingInline, paddingBlock, margin, marginInline, marginBlock, height, maxHeight, minHeight, width, maxWidth, minWidth, position, left, right, bottom, top, overflow, overflowX, overflowY, display, textAlign, flexDirection, gap, columnGap, rowGap, alignItems, alignContent, justifyItems, placeItems, justifyContent, flexWrap, flexBasis, flexFlow, wordBreak, htmlProps, ...rest }: BoxProps<T>): react.JSX.Element;
|
|
1118
1117
|
displayName: string;
|
|
1119
1118
|
};
|
|
1120
1119
|
|
|
1121
1120
|
type ContrastProps<T extends ElementType = 'div'> = BoxProps<T>;
|
|
1122
1121
|
declare const Contrast: {
|
|
1123
|
-
<T extends ElementType = "div">({ id, className, style, htmlProps, ...rest }: ContrastProps<T>):
|
|
1122
|
+
<T extends ElementType = "div">({ id, className, style, htmlProps, ...rest }: ContrastProps<T>): react.JSX.Element;
|
|
1124
1123
|
displayName: string;
|
|
1125
1124
|
};
|
|
1126
1125
|
|
|
@@ -1137,7 +1136,7 @@ type GridProps<T extends ElementType = 'div'> = PolymorphicBaseComponentProps<T,
|
|
|
1137
1136
|
gridTemplateColumns?: ResponsiveProp<Property.GridTemplateColumns>;
|
|
1138
1137
|
} & ResponsiveProps, 'display'>>;
|
|
1139
1138
|
declare const Grid: {
|
|
1140
|
-
<T extends ElementType = "div">({ id, className, htmlProps, gridTemplateColumns, columnGap, rowGap, marginInline, style, ...rest }: GridProps<T>):
|
|
1139
|
+
<T extends ElementType = "div">({ id, className, htmlProps, gridTemplateColumns, columnGap, rowGap, marginInline, style, ...rest }: GridProps<T>): react.JSX.Element;
|
|
1141
1140
|
displayName: string;
|
|
1142
1141
|
};
|
|
1143
1142
|
|
|
@@ -1152,7 +1151,7 @@ type GridChildProps<T extends ElementType = 'div'> = PolymorphicBaseComponentPro
|
|
|
1152
1151
|
gridRow?: ResponsiveProp<Property.GridRow>;
|
|
1153
1152
|
} & Omit<ResponsiveProps, 'display'>>;
|
|
1154
1153
|
declare const GridChild: {
|
|
1155
|
-
<T extends ElementType = "div">({ id, className, htmlProps, style, gridRow, justifySelf, columnsOccupied, ...rest }: GridChildProps<T>):
|
|
1154
|
+
<T extends ElementType = "div">({ id, className, htmlProps, style, gridRow, justifySelf, columnsOccupied, ...rest }: GridChildProps<T>): react.JSX.Element;
|
|
1156
1155
|
displayName: string;
|
|
1157
1156
|
};
|
|
1158
1157
|
|
|
@@ -1170,374 +1169,374 @@ type PaperProps<T extends ElementType = 'div'> = PolymorphicBaseComponentProps<T
|
|
|
1170
1169
|
/**Bakgrunn. Støtter dds tokens. */
|
|
1171
1170
|
background?: PaperBackground;
|
|
1172
1171
|
} & ResponsiveProps & PickedAttributes$1>;
|
|
1173
|
-
declare const Paper: <T extends ElementType = "div">({ id, elevation, border, borderRadius, background, className, htmlProps, style, ...rest }: PaperProps<T>) =>
|
|
1172
|
+
declare const Paper: <T extends ElementType = "div">({ id, elevation, border, borderRadius, background, className, htmlProps, style, ...rest }: PaperProps<T>) => react.JSX.Element;
|
|
1174
1173
|
|
|
1175
1174
|
type ShowHideProps<T extends ElementType = 'div'> = PolymorphicBaseComponentProps<T, PrimitiveDisplayProps>;
|
|
1176
1175
|
declare const ShowHide: {
|
|
1177
|
-
<T extends ElementType = "div">({ hideBelow, showBelow, className, style, htmlProps, id, as: C, ...rest }: ShowHideProps<T>):
|
|
1176
|
+
<T extends ElementType = "div">({ hideBelow, showBelow, className, style, htmlProps, id, as: C, ...rest }: ShowHideProps<T>): react.JSX.Element;
|
|
1178
1177
|
displayName: string;
|
|
1179
1178
|
};
|
|
1180
1179
|
|
|
1181
1180
|
type VStackProps<T extends ElementType = 'div'> = PolymorphicBaseComponentProps<T, ResponsiveStackProps>;
|
|
1182
1181
|
declare const VStack: {
|
|
1183
|
-
<T extends ElementType = "div">({ id, className, style, htmlProps, ...rest }: VStackProps<T>):
|
|
1182
|
+
<T extends ElementType = "div">({ id, className, style, htmlProps, ...rest }: VStackProps<T>): react.JSX.Element;
|
|
1184
1183
|
displayName: string;
|
|
1185
1184
|
};
|
|
1186
1185
|
|
|
1187
1186
|
type HStackProps<T extends ElementType = 'div'> = PolymorphicBaseComponentProps<T, ResponsiveStackProps>;
|
|
1188
1187
|
declare const HStack: {
|
|
1189
|
-
<T extends ElementType = "div">({ id, className, style, htmlProps, ...rest }: HStackProps<T>):
|
|
1188
|
+
<T extends ElementType = "div">({ id, className, style, htmlProps, ...rest }: HStackProps<T>): react.JSX.Element;
|
|
1190
1189
|
displayName: string;
|
|
1191
1190
|
};
|
|
1192
1191
|
|
|
1193
|
-
declare function AddressShieldedIcon(props: SvgProps):
|
|
1192
|
+
declare function AddressShieldedIcon(props: SvgProps): react.JSX.Element;
|
|
1194
1193
|
|
|
1195
|
-
declare function AgreementIcon(props: SvgProps):
|
|
1194
|
+
declare function AgreementIcon(props: SvgProps): react.JSX.Element;
|
|
1196
1195
|
|
|
1197
|
-
declare function AppsIcon(props: SvgProps):
|
|
1196
|
+
declare function AppsIcon(props: SvgProps): react.JSX.Element;
|
|
1198
1197
|
|
|
1199
|
-
declare function ArchiveIcon(props: SvgProps):
|
|
1198
|
+
declare function ArchiveIcon(props: SvgProps): react.JSX.Element;
|
|
1200
1199
|
|
|
1201
|
-
declare function ArrowDownIcon(props: SvgProps):
|
|
1200
|
+
declare function ArrowDownIcon(props: SvgProps): react.JSX.Element;
|
|
1202
1201
|
|
|
1203
|
-
declare function ArrowLeftIcon(props: SvgProps):
|
|
1202
|
+
declare function ArrowLeftIcon(props: SvgProps): react.JSX.Element;
|
|
1204
1203
|
|
|
1205
|
-
declare function ArrowRightIcon(props: SvgProps):
|
|
1204
|
+
declare function ArrowRightIcon(props: SvgProps): react.JSX.Element;
|
|
1206
1205
|
|
|
1207
|
-
declare function ArrowUpIcon(props: SvgProps):
|
|
1206
|
+
declare function ArrowUpIcon(props: SvgProps): react.JSX.Element;
|
|
1208
1207
|
|
|
1209
|
-
declare function AttachmentIcon(props: SvgProps):
|
|
1208
|
+
declare function AttachmentIcon(props: SvgProps): react.JSX.Element;
|
|
1210
1209
|
|
|
1211
|
-
declare function BlockIcon(props: SvgProps):
|
|
1210
|
+
declare function BlockIcon(props: SvgProps): react.JSX.Element;
|
|
1212
1211
|
|
|
1213
|
-
declare function BookIcon(props: SvgProps):
|
|
1212
|
+
declare function BookIcon(props: SvgProps): react.JSX.Element;
|
|
1214
1213
|
|
|
1215
|
-
declare function BriefcaseIcon(props: SvgProps):
|
|
1214
|
+
declare function BriefcaseIcon(props: SvgProps): react.JSX.Element;
|
|
1216
1215
|
|
|
1217
|
-
declare function BuildIcon(props: SvgProps):
|
|
1216
|
+
declare function BuildIcon(props: SvgProps): react.JSX.Element;
|
|
1218
1217
|
|
|
1219
|
-
declare function BuildingIcon(props: SvgProps):
|
|
1218
|
+
declare function BuildingIcon(props: SvgProps): react.JSX.Element;
|
|
1220
1219
|
|
|
1221
|
-
declare function CalendarIcon(props: SvgProps):
|
|
1220
|
+
declare function CalendarIcon(props: SvgProps): react.JSX.Element;
|
|
1222
1221
|
|
|
1223
|
-
declare function CalendarMonthIcon(props: SvgProps):
|
|
1222
|
+
declare function CalendarMonthIcon(props: SvgProps): react.JSX.Element;
|
|
1224
1223
|
|
|
1225
|
-
declare function CalendarViewDayIcon(props: SvgProps):
|
|
1224
|
+
declare function CalendarViewDayIcon(props: SvgProps): react.JSX.Element;
|
|
1226
1225
|
|
|
1227
|
-
declare function CalendarViewMonthIcon(props: SvgProps):
|
|
1226
|
+
declare function CalendarViewMonthIcon(props: SvgProps): react.JSX.Element;
|
|
1228
1227
|
|
|
1229
|
-
declare function CalendarViewWeekIcon(props: SvgProps):
|
|
1228
|
+
declare function CalendarViewWeekIcon(props: SvgProps): react.JSX.Element;
|
|
1230
1229
|
|
|
1231
|
-
declare function CallIcon(props: SvgProps):
|
|
1230
|
+
declare function CallIcon(props: SvgProps): react.JSX.Element;
|
|
1232
1231
|
|
|
1233
|
-
declare function CaringIcon(props: SvgProps):
|
|
1232
|
+
declare function CaringIcon(props: SvgProps): react.JSX.Element;
|
|
1234
1233
|
|
|
1235
|
-
declare function ChatIcon(props: SvgProps):
|
|
1234
|
+
declare function ChatIcon(props: SvgProps): react.JSX.Element;
|
|
1236
1235
|
|
|
1237
|
-
declare function CheckIcon(props: SvgProps):
|
|
1236
|
+
declare function CheckIcon(props: SvgProps): react.JSX.Element;
|
|
1238
1237
|
|
|
1239
|
-
declare function CheckCircledIcon(props: SvgProps):
|
|
1238
|
+
declare function CheckCircledIcon(props: SvgProps): react.JSX.Element;
|
|
1240
1239
|
|
|
1241
|
-
declare function ChecklistIcon(props: SvgProps):
|
|
1240
|
+
declare function ChecklistIcon(props: SvgProps): react.JSX.Element;
|
|
1242
1241
|
|
|
1243
|
-
declare function ChevronDownIcon(props: SvgProps):
|
|
1242
|
+
declare function ChevronDownIcon(props: SvgProps): react.JSX.Element;
|
|
1244
1243
|
|
|
1245
|
-
declare function ChevronFirstIcon(props: SvgProps):
|
|
1244
|
+
declare function ChevronFirstIcon(props: SvgProps): react.JSX.Element;
|
|
1246
1245
|
|
|
1247
|
-
declare function ChevronLastIcon(props: SvgProps):
|
|
1246
|
+
declare function ChevronLastIcon(props: SvgProps): react.JSX.Element;
|
|
1248
1247
|
|
|
1249
|
-
declare function ChevronLeftIcon(props: SvgProps):
|
|
1248
|
+
declare function ChevronLeftIcon(props: SvgProps): react.JSX.Element;
|
|
1250
1249
|
|
|
1251
|
-
declare function ChevronRightIcon(props: SvgProps):
|
|
1250
|
+
declare function ChevronRightIcon(props: SvgProps): react.JSX.Element;
|
|
1252
1251
|
|
|
1253
|
-
declare function ChevronUpIcon(props: SvgProps):
|
|
1252
|
+
declare function ChevronUpIcon(props: SvgProps): react.JSX.Element;
|
|
1254
1253
|
|
|
1255
|
-
declare function CircleIcon(props: SvgProps):
|
|
1254
|
+
declare function CircleIcon(props: SvgProps): react.JSX.Element;
|
|
1256
1255
|
|
|
1257
|
-
declare function CircleFilledIcon(props: SvgProps):
|
|
1256
|
+
declare function CircleFilledIcon(props: SvgProps): react.JSX.Element;
|
|
1258
1257
|
|
|
1259
|
-
declare function CloseIcon(props: SvgProps):
|
|
1258
|
+
declare function CloseIcon(props: SvgProps): react.JSX.Element;
|
|
1260
1259
|
|
|
1261
|
-
declare function CloseSmallIcon(props: SvgProps):
|
|
1260
|
+
declare function CloseSmallIcon(props: SvgProps): react.JSX.Element;
|
|
1262
1261
|
|
|
1263
|
-
declare function CloseCircledIcon(props: SvgProps):
|
|
1262
|
+
declare function CloseCircledIcon(props: SvgProps): react.JSX.Element;
|
|
1264
1263
|
|
|
1265
|
-
declare function CloudIcon(props: SvgProps):
|
|
1264
|
+
declare function CloudIcon(props: SvgProps): react.JSX.Element;
|
|
1266
1265
|
|
|
1267
|
-
declare function CollapseIcon(props: SvgProps):
|
|
1266
|
+
declare function CollapseIcon(props: SvgProps): react.JSX.Element;
|
|
1268
1267
|
|
|
1269
|
-
declare function CommentIcon(props: SvgProps):
|
|
1268
|
+
declare function CommentIcon(props: SvgProps): react.JSX.Element;
|
|
1270
1269
|
|
|
1271
|
-
declare function CopyIcon(props: SvgProps):
|
|
1270
|
+
declare function CopyIcon(props: SvgProps): react.JSX.Element;
|
|
1272
1271
|
|
|
1273
|
-
declare function CourtIcon(props: SvgProps):
|
|
1272
|
+
declare function CourtIcon(props: SvgProps): react.JSX.Element;
|
|
1274
1273
|
|
|
1275
|
-
declare function DateRangeIcon(props: SvgProps):
|
|
1274
|
+
declare function DateRangeIcon(props: SvgProps): react.JSX.Element;
|
|
1276
1275
|
|
|
1277
|
-
declare function DeathsIcon(props: SvgProps):
|
|
1276
|
+
declare function DeathsIcon(props: SvgProps): react.JSX.Element;
|
|
1278
1277
|
|
|
1279
|
-
declare function DoubleChevronLeftIcon(props: SvgProps):
|
|
1278
|
+
declare function DoubleChevronLeftIcon(props: SvgProps): react.JSX.Element;
|
|
1280
1279
|
|
|
1281
|
-
declare function DoubleChevronRightIcon(props: SvgProps):
|
|
1280
|
+
declare function DoubleChevronRightIcon(props: SvgProps): react.JSX.Element;
|
|
1282
1281
|
|
|
1283
|
-
declare function DownloadIcon(props: SvgProps):
|
|
1282
|
+
declare function DownloadIcon(props: SvgProps): react.JSX.Element;
|
|
1284
1283
|
|
|
1285
|
-
declare function DownloadDoneIcon(props: SvgProps):
|
|
1284
|
+
declare function DownloadDoneIcon(props: SvgProps): react.JSX.Element;
|
|
1286
1285
|
|
|
1287
|
-
declare function DragHandleIcon(props: SvgProps):
|
|
1286
|
+
declare function DragHandleIcon(props: SvgProps): react.JSX.Element;
|
|
1288
1287
|
|
|
1289
|
-
declare function EditIcon(props: SvgProps):
|
|
1288
|
+
declare function EditIcon(props: SvgProps): react.JSX.Element;
|
|
1290
1289
|
|
|
1291
|
-
declare function EditAltIcon(props: SvgProps):
|
|
1290
|
+
declare function EditAltIcon(props: SvgProps): react.JSX.Element;
|
|
1292
1291
|
|
|
1293
|
-
declare function ErrorIcon(props: SvgProps):
|
|
1292
|
+
declare function ErrorIcon(props: SvgProps): react.JSX.Element;
|
|
1294
1293
|
|
|
1295
|
-
declare function ExclaimIcon(props: SvgProps):
|
|
1294
|
+
declare function ExclaimIcon(props: SvgProps): react.JSX.Element;
|
|
1296
1295
|
|
|
1297
|
-
declare function ExpandIcon(props: SvgProps):
|
|
1296
|
+
declare function ExpandIcon(props: SvgProps): react.JSX.Element;
|
|
1298
1297
|
|
|
1299
|
-
declare function FacebookIcon(props: SvgProps):
|
|
1298
|
+
declare function FacebookIcon(props: SvgProps): react.JSX.Element;
|
|
1300
1299
|
|
|
1301
|
-
declare function FamilyIcon(props: SvgProps):
|
|
1300
|
+
declare function FamilyIcon(props: SvgProps): react.JSX.Element;
|
|
1302
1301
|
|
|
1303
|
-
declare function FeedbackIcon(props: SvgProps):
|
|
1302
|
+
declare function FeedbackIcon(props: SvgProps): react.JSX.Element;
|
|
1304
1303
|
|
|
1305
|
-
declare function FileIcon(props: SvgProps):
|
|
1304
|
+
declare function FileIcon(props: SvgProps): react.JSX.Element;
|
|
1306
1305
|
|
|
1307
|
-
declare function FileAddIcon(props: SvgProps):
|
|
1306
|
+
declare function FileAddIcon(props: SvgProps): react.JSX.Element;
|
|
1308
1307
|
|
|
1309
|
-
declare function FileShieldedIcon(props: SvgProps):
|
|
1308
|
+
declare function FileShieldedIcon(props: SvgProps): react.JSX.Element;
|
|
1310
1309
|
|
|
1311
|
-
declare function FileTextIcon(props: SvgProps):
|
|
1310
|
+
declare function FileTextIcon(props: SvgProps): react.JSX.Element;
|
|
1312
1311
|
|
|
1313
|
-
declare function FilterIcon(props: SvgProps):
|
|
1312
|
+
declare function FilterIcon(props: SvgProps): react.JSX.Element;
|
|
1314
1313
|
|
|
1315
|
-
declare function FilterListIcon(props: SvgProps):
|
|
1314
|
+
declare function FilterListIcon(props: SvgProps): react.JSX.Element;
|
|
1316
1315
|
|
|
1317
|
-
declare function FindInPageIcon(props: SvgProps):
|
|
1316
|
+
declare function FindInPageIcon(props: SvgProps): react.JSX.Element;
|
|
1318
1317
|
|
|
1319
|
-
declare function FlickrIcon(props: SvgProps):
|
|
1318
|
+
declare function FlickrIcon(props: SvgProps): react.JSX.Element;
|
|
1320
1319
|
|
|
1321
|
-
declare function FloppyDiskIcon(props: SvgProps):
|
|
1320
|
+
declare function FloppyDiskIcon(props: SvgProps): react.JSX.Element;
|
|
1322
1321
|
|
|
1323
|
-
declare function FolderIcon(props: SvgProps):
|
|
1322
|
+
declare function FolderIcon(props: SvgProps): react.JSX.Element;
|
|
1324
1323
|
|
|
1325
|
-
declare function FolderAddIcon(props: SvgProps):
|
|
1324
|
+
declare function FolderAddIcon(props: SvgProps): react.JSX.Element;
|
|
1326
1325
|
|
|
1327
|
-
declare function FolderShieldedIcon(props: SvgProps):
|
|
1326
|
+
declare function FolderShieldedIcon(props: SvgProps): react.JSX.Element;
|
|
1328
1327
|
|
|
1329
|
-
declare function FullscreenExitIcon(props: SvgProps):
|
|
1328
|
+
declare function FullscreenExitIcon(props: SvgProps): react.JSX.Element;
|
|
1330
1329
|
|
|
1331
|
-
declare function FullscreenIcon(props: SvgProps):
|
|
1330
|
+
declare function FullscreenIcon(props: SvgProps): react.JSX.Element;
|
|
1332
1331
|
|
|
1333
|
-
declare function GavelIcon(props: SvgProps):
|
|
1332
|
+
declare function GavelIcon(props: SvgProps): react.JSX.Element;
|
|
1334
1333
|
|
|
1335
|
-
declare function GroupIcon(props: SvgProps):
|
|
1334
|
+
declare function GroupIcon(props: SvgProps): react.JSX.Element;
|
|
1336
1335
|
|
|
1337
|
-
declare function GuardianIcon(props: SvgProps):
|
|
1336
|
+
declare function GuardianIcon(props: SvgProps): react.JSX.Element;
|
|
1338
1337
|
|
|
1339
|
-
declare function HelpIcon(props: SvgProps):
|
|
1338
|
+
declare function HelpIcon(props: SvgProps): react.JSX.Element;
|
|
1340
1339
|
|
|
1341
|
-
declare function HelpFilledIcon(props: SvgProps):
|
|
1340
|
+
declare function HelpFilledIcon(props: SvgProps): react.JSX.Element;
|
|
1342
1341
|
|
|
1343
|
-
declare function HomeIcon(props: SvgProps):
|
|
1342
|
+
declare function HomeIcon(props: SvgProps): react.JSX.Element;
|
|
1344
1343
|
|
|
1345
|
-
declare function HourglassEmptyIcon(props: SvgProps):
|
|
1344
|
+
declare function HourglassEmptyIcon(props: SvgProps): react.JSX.Element;
|
|
1346
1345
|
|
|
1347
|
-
declare function ImageIcon(props: SvgProps):
|
|
1346
|
+
declare function ImageIcon(props: SvgProps): react.JSX.Element;
|
|
1348
1347
|
|
|
1349
|
-
declare function InfoIcon(props: SvgProps):
|
|
1348
|
+
declare function InfoIcon(props: SvgProps): react.JSX.Element;
|
|
1350
1349
|
|
|
1351
|
-
declare function InstagramIcon(props: SvgProps):
|
|
1350
|
+
declare function InstagramIcon(props: SvgProps): react.JSX.Element;
|
|
1352
1351
|
|
|
1353
|
-
declare function JordskifterettIcon(props: SvgProps):
|
|
1352
|
+
declare function JordskifterettIcon(props: SvgProps): react.JSX.Element;
|
|
1354
1353
|
|
|
1355
|
-
declare function JordskiftesakIcon(props: SvgProps):
|
|
1354
|
+
declare function JordskiftesakIcon(props: SvgProps): react.JSX.Element;
|
|
1356
1355
|
|
|
1357
|
-
declare function KeyIcon(props: SvgProps):
|
|
1356
|
+
declare function KeyIcon(props: SvgProps): react.JSX.Element;
|
|
1358
1357
|
|
|
1359
|
-
declare function LagmannsrettIcon(props: SvgProps):
|
|
1358
|
+
declare function LagmannsrettIcon(props: SvgProps): react.JSX.Element;
|
|
1360
1359
|
|
|
1361
|
-
declare function LanguageIcon(props: SvgProps):
|
|
1360
|
+
declare function LanguageIcon(props: SvgProps): react.JSX.Element;
|
|
1362
1361
|
|
|
1363
|
-
declare function LinkIcon(props: SvgProps):
|
|
1362
|
+
declare function LinkIcon(props: SvgProps): react.JSX.Element;
|
|
1364
1363
|
|
|
1365
|
-
declare function LinkedInIcon(props: SvgProps):
|
|
1364
|
+
declare function LinkedInIcon(props: SvgProps): react.JSX.Element;
|
|
1366
1365
|
|
|
1367
|
-
declare function LinkOffIcon(props: SvgProps):
|
|
1366
|
+
declare function LinkOffIcon(props: SvgProps): react.JSX.Element;
|
|
1368
1367
|
|
|
1369
|
-
declare function ListIcon(props: SvgProps):
|
|
1368
|
+
declare function ListIcon(props: SvgProps): react.JSX.Element;
|
|
1370
1369
|
|
|
1371
|
-
declare function ListAltIcon(props: SvgProps):
|
|
1370
|
+
declare function ListAltIcon(props: SvgProps): react.JSX.Element;
|
|
1372
1371
|
|
|
1373
|
-
declare function LocationIcon(props: SvgProps):
|
|
1372
|
+
declare function LocationIcon(props: SvgProps): react.JSX.Element;
|
|
1374
1373
|
|
|
1375
|
-
declare function LockIcon(props: SvgProps):
|
|
1374
|
+
declare function LockIcon(props: SvgProps): react.JSX.Element;
|
|
1376
1375
|
|
|
1377
|
-
declare function LockFilledIcon(props: SvgProps):
|
|
1376
|
+
declare function LockFilledIcon(props: SvgProps): react.JSX.Element;
|
|
1378
1377
|
|
|
1379
|
-
declare function LockOpenIcon(props: SvgProps):
|
|
1378
|
+
declare function LockOpenIcon(props: SvgProps): react.JSX.Element;
|
|
1380
1379
|
|
|
1381
|
-
declare function LoginIcon(props: SvgProps):
|
|
1380
|
+
declare function LoginIcon(props: SvgProps): react.JSX.Element;
|
|
1382
1381
|
|
|
1383
|
-
declare function LogoutIcon(props: SvgProps):
|
|
1382
|
+
declare function LogoutIcon(props: SvgProps): react.JSX.Element;
|
|
1384
1383
|
|
|
1385
|
-
declare function MailIcon(props: SvgProps):
|
|
1384
|
+
declare function MailIcon(props: SvgProps): react.JSX.Element;
|
|
1386
1385
|
|
|
1387
|
-
declare function MailOpenIcon(props: SvgProps):
|
|
1386
|
+
declare function MailOpenIcon(props: SvgProps): react.JSX.Element;
|
|
1388
1387
|
|
|
1389
|
-
declare function MenuIcon(props: SvgProps):
|
|
1388
|
+
declare function MenuIcon(props: SvgProps): react.JSX.Element;
|
|
1390
1389
|
|
|
1391
|
-
declare function MinusIcon(props: SvgProps):
|
|
1390
|
+
declare function MinusIcon(props: SvgProps): react.JSX.Element;
|
|
1392
1391
|
|
|
1393
|
-
declare function MinusCircledIcon(props: SvgProps):
|
|
1392
|
+
declare function MinusCircledIcon(props: SvgProps): react.JSX.Element;
|
|
1394
1393
|
|
|
1395
|
-
declare function MoreHorizontalIcon(props: SvgProps):
|
|
1394
|
+
declare function MoreHorizontalIcon(props: SvgProps): react.JSX.Element;
|
|
1396
1395
|
|
|
1397
|
-
declare function MoreVerticalIcon(props: SvgProps):
|
|
1396
|
+
declare function MoreVerticalIcon(props: SvgProps): react.JSX.Element;
|
|
1398
1397
|
|
|
1399
|
-
declare function NotarialIcon(props: SvgProps):
|
|
1398
|
+
declare function NotarialIcon(props: SvgProps): react.JSX.Element;
|
|
1400
1399
|
|
|
1401
|
-
declare function NotificationsIcon(props: SvgProps):
|
|
1400
|
+
declare function NotificationsIcon(props: SvgProps): react.JSX.Element;
|
|
1402
1401
|
|
|
1403
|
-
declare function NotificationsOffIcon(props: SvgProps):
|
|
1402
|
+
declare function NotificationsOffIcon(props: SvgProps): react.JSX.Element;
|
|
1404
1403
|
|
|
1405
|
-
declare function OnlineMeetingIcon(props: SvgProps):
|
|
1404
|
+
declare function OnlineMeetingIcon(props: SvgProps): react.JSX.Element;
|
|
1406
1405
|
|
|
1407
|
-
declare function OpenExternalIcon(props: SvgProps):
|
|
1406
|
+
declare function OpenExternalIcon(props: SvgProps): react.JSX.Element;
|
|
1408
1407
|
|
|
1409
|
-
declare function PanelLeftIcon(props: SvgProps):
|
|
1408
|
+
declare function PanelLeftIcon(props: SvgProps): react.JSX.Element;
|
|
1410
1409
|
|
|
1411
|
-
declare function PaperPlaneIcon(props: SvgProps):
|
|
1410
|
+
declare function PaperPlaneIcon(props: SvgProps): react.JSX.Element;
|
|
1412
1411
|
|
|
1413
|
-
declare function PayoutIcon(props: SvgProps):
|
|
1412
|
+
declare function PayoutIcon(props: SvgProps): react.JSX.Element;
|
|
1414
1413
|
|
|
1415
|
-
declare function PdfIcon(props: SvgProps):
|
|
1414
|
+
declare function PdfIcon(props: SvgProps): react.JSX.Element;
|
|
1416
1415
|
|
|
1417
|
-
declare function PersonIcon(props: SvgProps):
|
|
1416
|
+
declare function PersonIcon(props: SvgProps): react.JSX.Element;
|
|
1418
1417
|
|
|
1419
|
-
declare function PersonAddIcon(props: SvgProps):
|
|
1418
|
+
declare function PersonAddIcon(props: SvgProps): react.JSX.Element;
|
|
1420
1419
|
|
|
1421
|
-
declare function PersonShieldedIcon(props: SvgProps):
|
|
1420
|
+
declare function PersonShieldedIcon(props: SvgProps): react.JSX.Element;
|
|
1422
1421
|
|
|
1423
|
-
declare function PinIcon(props: SvgProps):
|
|
1422
|
+
declare function PinIcon(props: SvgProps): react.JSX.Element;
|
|
1424
1423
|
|
|
1425
|
-
declare function PlusIcon(props: SvgProps):
|
|
1424
|
+
declare function PlusIcon(props: SvgProps): react.JSX.Element;
|
|
1426
1425
|
|
|
1427
|
-
declare function PlusCircledIcon(props: SvgProps):
|
|
1426
|
+
declare function PlusCircledIcon(props: SvgProps): react.JSX.Element;
|
|
1428
1427
|
|
|
1429
|
-
declare function PowerOfAttorneyIcon(props: SvgProps):
|
|
1428
|
+
declare function PowerOfAttorneyIcon(props: SvgProps): react.JSX.Element;
|
|
1430
1429
|
|
|
1431
|
-
declare function PrintIcon(props: SvgProps):
|
|
1430
|
+
declare function PrintIcon(props: SvgProps): react.JSX.Element;
|
|
1432
1431
|
|
|
1433
|
-
declare function PublishIcon(props: SvgProps):
|
|
1432
|
+
declare function PublishIcon(props: SvgProps): react.JSX.Element;
|
|
1434
1433
|
|
|
1435
|
-
declare function QuestionAnswerIcon(props: SvgProps):
|
|
1434
|
+
declare function QuestionAnswerIcon(props: SvgProps): react.JSX.Element;
|
|
1436
1435
|
|
|
1437
|
-
declare function ReceiptIcon(props: SvgProps):
|
|
1436
|
+
declare function ReceiptIcon(props: SvgProps): react.JSX.Element;
|
|
1438
1437
|
|
|
1439
|
-
declare function RedoIcon(props: SvgProps):
|
|
1438
|
+
declare function RedoIcon(props: SvgProps): react.JSX.Element;
|
|
1440
1439
|
|
|
1441
|
-
declare function RowsIcon(props: SvgProps):
|
|
1440
|
+
declare function RowsIcon(props: SvgProps): react.JSX.Element;
|
|
1442
1441
|
|
|
1443
|
-
declare function RefreshIcon(props: SvgProps):
|
|
1442
|
+
declare function RefreshIcon(props: SvgProps): react.JSX.Element;
|
|
1444
1443
|
|
|
1445
|
-
declare function ReplayIcon(props: SvgProps):
|
|
1444
|
+
declare function ReplayIcon(props: SvgProps): react.JSX.Element;
|
|
1446
1445
|
|
|
1447
|
-
declare function ScaleIcon(props: SvgProps):
|
|
1446
|
+
declare function ScaleIcon(props: SvgProps): react.JSX.Element;
|
|
1448
1447
|
|
|
1449
|
-
declare function SearchIcon(props: SvgProps):
|
|
1448
|
+
declare function SearchIcon(props: SvgProps): react.JSX.Element;
|
|
1450
1449
|
|
|
1451
|
-
declare function SectionIcon(props: SvgProps):
|
|
1450
|
+
declare function SectionIcon(props: SvgProps): react.JSX.Element;
|
|
1452
1451
|
|
|
1453
|
-
declare function SettingsIcon(props: SvgProps):
|
|
1452
|
+
declare function SettingsIcon(props: SvgProps): react.JSX.Element;
|
|
1454
1453
|
|
|
1455
|
-
declare function SmsIcon(props: SvgProps):
|
|
1454
|
+
declare function SmsIcon(props: SvgProps): react.JSX.Element;
|
|
1456
1455
|
|
|
1457
|
-
declare function StarIcon(props: SvgProps):
|
|
1456
|
+
declare function StarIcon(props: SvgProps): react.JSX.Element;
|
|
1458
1457
|
|
|
1459
|
-
declare function StarFilledIcon(props: SvgProps):
|
|
1458
|
+
declare function StarFilledIcon(props: SvgProps): react.JSX.Element;
|
|
1460
1459
|
|
|
1461
|
-
declare function StarHalfFilledIcon(props: SvgProps):
|
|
1460
|
+
declare function StarHalfFilledIcon(props: SvgProps): react.JSX.Element;
|
|
1462
1461
|
|
|
1463
|
-
declare function SyncIcon(props: SvgProps):
|
|
1462
|
+
declare function SyncIcon(props: SvgProps): react.JSX.Element;
|
|
1464
1463
|
|
|
1465
|
-
declare function ThumbDownIcon(props: SvgProps):
|
|
1464
|
+
declare function ThumbDownIcon(props: SvgProps): react.JSX.Element;
|
|
1466
1465
|
|
|
1467
|
-
declare function ThumbDownFilledIcon(props: SvgProps):
|
|
1466
|
+
declare function ThumbDownFilledIcon(props: SvgProps): react.JSX.Element;
|
|
1468
1467
|
|
|
1469
|
-
declare function ThumbUpIcon(props: SvgProps):
|
|
1468
|
+
declare function ThumbUpIcon(props: SvgProps): react.JSX.Element;
|
|
1470
1469
|
|
|
1471
|
-
declare function ThumbUpFilledIcon(props: SvgProps):
|
|
1470
|
+
declare function ThumbUpFilledIcon(props: SvgProps): react.JSX.Element;
|
|
1472
1471
|
|
|
1473
|
-
declare function TimeIcon(props: SvgProps):
|
|
1472
|
+
declare function TimeIcon(props: SvgProps): react.JSX.Element;
|
|
1474
1473
|
|
|
1475
|
-
declare function TingrettIcon(props: SvgProps):
|
|
1474
|
+
declare function TingrettIcon(props: SvgProps): react.JSX.Element;
|
|
1476
1475
|
|
|
1477
|
-
declare function TipIcon(props: SvgProps):
|
|
1476
|
+
declare function TipIcon(props: SvgProps): react.JSX.Element;
|
|
1478
1477
|
|
|
1479
|
-
declare function TrashIcon(props: SvgProps):
|
|
1478
|
+
declare function TrashIcon(props: SvgProps): react.JSX.Element;
|
|
1480
1479
|
|
|
1481
|
-
declare function UndoIcon(props: SvgProps):
|
|
1480
|
+
declare function UndoIcon(props: SvgProps): react.JSX.Element;
|
|
1482
1481
|
|
|
1483
|
-
declare function UnfoldLessIcon(props: SvgProps):
|
|
1482
|
+
declare function UnfoldLessIcon(props: SvgProps): react.JSX.Element;
|
|
1484
1483
|
|
|
1485
|
-
declare function UnfoldMoreIcon(props: SvgProps):
|
|
1484
|
+
declare function UnfoldMoreIcon(props: SvgProps): react.JSX.Element;
|
|
1486
1485
|
|
|
1487
|
-
declare function UploadIcon(props: SvgProps):
|
|
1486
|
+
declare function UploadIcon(props: SvgProps): react.JSX.Element;
|
|
1488
1487
|
|
|
1489
|
-
declare function VisibilityOffIcon(props: SvgProps):
|
|
1488
|
+
declare function VisibilityOffIcon(props: SvgProps): react.JSX.Element;
|
|
1490
1489
|
|
|
1491
|
-
declare function VisibilityOnIcon(props: SvgProps):
|
|
1490
|
+
declare function VisibilityOnIcon(props: SvgProps): react.JSX.Element;
|
|
1492
1491
|
|
|
1493
|
-
declare function WarningIcon(props: SvgProps):
|
|
1492
|
+
declare function WarningIcon(props: SvgProps): react.JSX.Element;
|
|
1494
1493
|
|
|
1495
|
-
declare function WebexIcon(props: SvgProps):
|
|
1494
|
+
declare function WebexIcon(props: SvgProps): react.JSX.Element;
|
|
1496
1495
|
|
|
1497
|
-
declare function XIcon(props: SvgProps):
|
|
1496
|
+
declare function XIcon(props: SvgProps): react.JSX.Element;
|
|
1498
1497
|
|
|
1499
|
-
declare function ZoomInIcon(props: SvgProps):
|
|
1498
|
+
declare function ZoomInIcon(props: SvgProps): react.JSX.Element;
|
|
1500
1499
|
|
|
1501
|
-
declare function ZoomOutIcon(props: SvgProps):
|
|
1500
|
+
declare function ZoomOutIcon(props: SvgProps): react.JSX.Element;
|
|
1502
1501
|
|
|
1503
|
-
declare function BarChartIcon(props: SvgProps):
|
|
1502
|
+
declare function BarChartIcon(props: SvgProps): react.JSX.Element;
|
|
1504
1503
|
|
|
1505
|
-
declare function BarChartBoxedIcon(props: SvgProps):
|
|
1504
|
+
declare function BarChartBoxedIcon(props: SvgProps): react.JSX.Element;
|
|
1506
1505
|
|
|
1507
|
-
declare function LineChartIcon(props: SvgProps):
|
|
1506
|
+
declare function LineChartIcon(props: SvgProps): react.JSX.Element;
|
|
1508
1507
|
|
|
1509
|
-
declare function TrendingUpIcon(props: SvgProps):
|
|
1508
|
+
declare function TrendingUpIcon(props: SvgProps): react.JSX.Element;
|
|
1510
1509
|
|
|
1511
|
-
declare function TrendingDownIcon(props: SvgProps):
|
|
1510
|
+
declare function TrendingDownIcon(props: SvgProps): react.JSX.Element;
|
|
1512
1511
|
|
|
1513
|
-
declare function HelpSimpleIcon(props: SvgProps):
|
|
1512
|
+
declare function HelpSimpleIcon(props: SvgProps): react.JSX.Element;
|
|
1514
1513
|
|
|
1515
1514
|
declare const STATES: readonly ["up", "down"];
|
|
1516
1515
|
type AnimatedChevronUpDownIconStates = (typeof STATES)[number];
|
|
1517
1516
|
declare function AnimatedChevronUpDownIcon(props: SvgProps & {
|
|
1518
1517
|
iconState?: AnimatedChevronUpDownIconStates;
|
|
1519
|
-
}):
|
|
1518
|
+
}): react.JSX.Element;
|
|
1520
1519
|
declare namespace AnimatedChevronUpDownIcon {
|
|
1521
1520
|
var states: readonly ["up", "down"];
|
|
1522
1521
|
}
|
|
1523
1522
|
|
|
1524
|
-
declare function FlagIcon(props: SvgProps):
|
|
1523
|
+
declare function FlagIcon(props: SvgProps): react.JSX.Element;
|
|
1525
1524
|
|
|
1526
|
-
declare function FlagFilledIcon(props: SvgProps):
|
|
1525
|
+
declare function FlagFilledIcon(props: SvgProps): react.JSX.Element;
|
|
1527
1526
|
|
|
1528
|
-
declare function LocationOffIcon(props: SvgProps):
|
|
1527
|
+
declare function LocationOffIcon(props: SvgProps): react.JSX.Element;
|
|
1529
1528
|
|
|
1530
|
-
declare function MapIcon(props: SvgProps):
|
|
1529
|
+
declare function MapIcon(props: SvgProps): react.JSX.Element;
|
|
1531
1530
|
|
|
1532
|
-
declare function MoonIcon(props: SvgProps):
|
|
1531
|
+
declare function MoonIcon(props: SvgProps): react.JSX.Element;
|
|
1533
1532
|
|
|
1534
|
-
declare function NotebookPenIcon(props: SvgProps):
|
|
1533
|
+
declare function NotebookPenIcon(props: SvgProps): react.JSX.Element;
|
|
1535
1534
|
|
|
1536
|
-
declare function StickyNoteIcon(props: SvgProps):
|
|
1535
|
+
declare function StickyNoteIcon(props: SvgProps): react.JSX.Element;
|
|
1537
1536
|
|
|
1538
|
-
declare function SunIcon(props: SvgProps):
|
|
1537
|
+
declare function SunIcon(props: SvgProps): react.JSX.Element;
|
|
1539
1538
|
|
|
1540
|
-
declare function SupportIcon(props: SvgProps):
|
|
1539
|
+
declare function SupportIcon(props: SvgProps): react.JSX.Element;
|
|
1541
1540
|
|
|
1542
1541
|
declare const index_AddressShieldedIcon: typeof AddressShieldedIcon;
|
|
1543
1542
|
declare const index_AgreementIcon: typeof AgreementIcon;
|
|
@@ -3493,7 +3492,7 @@ interface LanguageProviderProps {
|
|
|
3493
3492
|
}
|
|
3494
3493
|
|
|
3495
3494
|
type DdsProviderProps = LanguageProviderProps & ThemeProviderProps;
|
|
3496
|
-
declare function DdsProvider({ language, theme, children }: DdsProviderProps):
|
|
3495
|
+
declare function DdsProvider({ language, theme, children }: DdsProviderProps): react.JSX.Element;
|
|
3497
3496
|
|
|
3498
3497
|
type PropsOfWithRef<T extends ElementType> = ComponentPropsWithRef<T> & {
|
|
3499
3498
|
/** HTML- eller React-element som returneres. */
|
|
@@ -3501,16 +3500,16 @@ type PropsOfWithRef<T extends ElementType> = ComponentPropsWithRef<T> & {
|
|
|
3501
3500
|
} & Omit<React.ComponentPropsWithRef<T>, 'as'>;
|
|
3502
3501
|
|
|
3503
3502
|
type PolymorphicProps<T extends ElementType> = PropsOfWithRef<T>;
|
|
3504
|
-
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;
|
|
3505
3504
|
|
|
3506
3505
|
type AccordionProps = BaseComponentPropsWithChildren<HTMLDivElement, Pick<AccordionConfig, 'isExpanded' | 'isInitiallyExpanded' | 'onChange'>>;
|
|
3507
3506
|
declare const Accordion: {
|
|
3508
|
-
({ isInitiallyExpanded, isExpanded, onChange, id, children, className, style, htmlProps, ...rest }: AccordionProps):
|
|
3507
|
+
({ isInitiallyExpanded, isExpanded, onChange, id, children, className, style, htmlProps, ...rest }: AccordionProps): react.JSX.Element;
|
|
3509
3508
|
displayName: string;
|
|
3510
3509
|
};
|
|
3511
3510
|
|
|
3512
|
-
declare function TextOverflowEllipsisWrapper({ className, ...rest }: ComponentProps<'span'>):
|
|
3513
|
-
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;
|
|
3514
3513
|
|
|
3515
3514
|
type TypographyBodyShortType = 'bodyShortXsmall' | 'bodyShortSmall' | 'bodyShortMedium' | 'bodyShortLarge';
|
|
3516
3515
|
type TypographyBodyLongType = 'bodyLongXsmall' | 'bodyLongSmall' | 'bodyLongMedium' | 'bodyLongLarge';
|
|
@@ -3573,7 +3572,7 @@ type TypographyProps = ({
|
|
|
3573
3572
|
typographyType?: OtherTypographyType;
|
|
3574
3573
|
} & TypographyComponentProps & Omit<OtherTypographyProps, 'color'>);
|
|
3575
3574
|
declare const Typography: {
|
|
3576
|
-
(props: TypographyProps):
|
|
3575
|
+
(props: TypographyProps): react.JSX.Element;
|
|
3577
3576
|
displayName: string;
|
|
3578
3577
|
};
|
|
3579
3578
|
|
|
@@ -3588,7 +3587,7 @@ declare const getColorCn: (color?: TextColor) => string | null;
|
|
|
3588
3587
|
|
|
3589
3588
|
type CaptionProps = BaseComponentPropsWithChildren<HTMLTableCaptionElement, CommonBlockTypographyProps>;
|
|
3590
3589
|
declare const Caption: {
|
|
3591
|
-
({ id, className, style, htmlProps, children, ...rest }: CaptionProps):
|
|
3590
|
+
({ id, className, style, htmlProps, children, ...rest }: CaptionProps): react.JSX.Element;
|
|
3592
3591
|
displayName: string;
|
|
3593
3592
|
};
|
|
3594
3593
|
|
|
@@ -3602,7 +3601,7 @@ type HeadingProps = BaseComponentPropsWithChildren<HTMLHeadingElement, {
|
|
|
3602
3601
|
withMarginsOverInput?: boolean;
|
|
3603
3602
|
} & CommonBlockTypographyProps>;
|
|
3604
3603
|
declare const Heading: {
|
|
3605
|
-
({ 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;
|
|
3606
3605
|
displayName: string;
|
|
3607
3606
|
};
|
|
3608
3607
|
|
|
@@ -3617,7 +3616,7 @@ interface BaseLabelProps {
|
|
|
3617
3616
|
}
|
|
3618
3617
|
type LabelProps = BaseComponentPropsWithChildren<HTMLLabelElement, BaseLabelProps & CommonInlineTypographyProps & PickedHTMLAttributes$3>;
|
|
3619
3618
|
declare const Label: {
|
|
3620
|
-
({ showRequiredStyling, readOnly, id, className, style, htmlProps, children, afterLabelContent, ...rest }: LabelProps):
|
|
3619
|
+
({ showRequiredStyling, readOnly, id, className, style, htmlProps, children, afterLabelContent, ...rest }: LabelProps): react.JSX.Element;
|
|
3621
3620
|
displayName: string;
|
|
3622
3621
|
};
|
|
3623
3622
|
|
|
@@ -3628,7 +3627,7 @@ type LegendProps = BaseComponentPropsWithChildren<HTMLLegendElement, CommonBlock
|
|
|
3628
3627
|
withMarginsOverInput?: boolean;
|
|
3629
3628
|
}>;
|
|
3630
3629
|
declare const Legend: {
|
|
3631
|
-
({ id, className, style, htmlProps, typographyType, withMarginsOverInput, withMargins, ...rest }: LegendProps):
|
|
3630
|
+
({ id, className, style, htmlProps, typographyType, withMarginsOverInput, withMargins, ...rest }: LegendProps): react.JSX.Element;
|
|
3632
3631
|
displayName: string;
|
|
3633
3632
|
};
|
|
3634
3633
|
|
|
@@ -3649,7 +3648,7 @@ type LinkProps<T extends ElementType = 'a'> = PolymorphicBaseComponentProps<T, {
|
|
|
3649
3648
|
withIconStyling?: boolean;
|
|
3650
3649
|
} & CommonInlineTypographyProps & PickedHTMLAttributes$2>;
|
|
3651
3650
|
declare const Link: {
|
|
3652
|
-
<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;
|
|
3653
3652
|
displayName: string;
|
|
3654
3653
|
};
|
|
3655
3654
|
|
|
@@ -3660,7 +3659,7 @@ type ParagraphProps = BaseComponentPropsWithChildren<HTMLParagraphElement, {
|
|
|
3660
3659
|
typographyType?: TypographyBodyType | TypographyLeadType;
|
|
3661
3660
|
} & CommonBlockTypographyProps>;
|
|
3662
3661
|
declare const Paragraph: {
|
|
3663
|
-
({ id, className, style, htmlProps, children, typographyType, ...rest }: ParagraphProps):
|
|
3662
|
+
({ id, className, style, htmlProps, children, typographyType, ...rest }: ParagraphProps): react.JSX.Element;
|
|
3664
3663
|
displayName: string;
|
|
3665
3664
|
};
|
|
3666
3665
|
|
|
@@ -3671,13 +3670,13 @@ type AccordionHeaderProps = Omit<BaseComponentPropsWithChildren<HTMLButtonElemen
|
|
|
3671
3670
|
bold?: boolean;
|
|
3672
3671
|
}, ButtonHTMLAttributes<HTMLButtonElement>>, 'id'>;
|
|
3673
3672
|
declare const AccordionHeader: {
|
|
3674
|
-
({ children, className, style, htmlProps, typographyType, bold, ...rest }: AccordionHeaderProps):
|
|
3673
|
+
({ children, className, style, htmlProps, typographyType, bold, ...rest }: AccordionHeaderProps): react.JSX.Element;
|
|
3675
3674
|
displayName: string;
|
|
3676
3675
|
};
|
|
3677
3676
|
|
|
3678
3677
|
type AccordionBodyProps = Omit<BaseComponentPropsWithChildren<HTMLDivElement>, 'id'>;
|
|
3679
3678
|
declare const AccordionBody: {
|
|
3680
|
-
({ children, className, style, htmlProps, ...rest }: AccordionBodyProps):
|
|
3679
|
+
({ children, className, style, htmlProps, ...rest }: AccordionBodyProps): react.JSX.Element;
|
|
3681
3680
|
displayName: string;
|
|
3682
3681
|
};
|
|
3683
3682
|
|
|
@@ -3692,14 +3691,14 @@ type BackLinkProps = {
|
|
|
3692
3691
|
as?: ElementType;
|
|
3693
3692
|
} & Pick<ComponentPropsWithRef<'a'>, 'onClick' | 'href' | 'ref'>;
|
|
3694
3693
|
declare const BackLink: {
|
|
3695
|
-
({ label, ref, as, ...rest }: BackLinkProps):
|
|
3694
|
+
({ label, ref, as, ...rest }: BackLinkProps): react.JSX.Element;
|
|
3696
3695
|
displayName: string;
|
|
3697
3696
|
};
|
|
3698
3697
|
|
|
3699
3698
|
type BreadcrumbProps = ComponentPropsWithRef<'a'> | ComponentPropsWithRef<'span'>;
|
|
3700
3699
|
declare const isAnchorTypographyProps: (props: BreadcrumbProps) => props is ComponentPropsWithRef<"a">;
|
|
3701
3700
|
declare const Breadcrumb: {
|
|
3702
|
-
({ children, ref, ...rest }: BreadcrumbProps):
|
|
3701
|
+
({ children, ref, ...rest }: BreadcrumbProps): react.JSX.Element;
|
|
3703
3702
|
displayName: string;
|
|
3704
3703
|
};
|
|
3705
3704
|
|
|
@@ -3713,7 +3712,7 @@ type BreadcrumbsProps = BaseComponentProps<HTMLElement, {
|
|
|
3713
3712
|
children?: ReactNode;
|
|
3714
3713
|
}>;
|
|
3715
3714
|
declare const Breadcrumbs: {
|
|
3716
|
-
({ children, smallScreenBreakpoint, id, className, style, htmlProps, ...rest }: BreadcrumbsProps):
|
|
3715
|
+
({ children, smallScreenBreakpoint, id, className, style, htmlProps, ...rest }: BreadcrumbsProps): react.JSX.Element;
|
|
3717
3716
|
displayName: string;
|
|
3718
3717
|
};
|
|
3719
3718
|
|
|
@@ -3737,7 +3736,7 @@ type ButtonGroupProps = BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
3737
3736
|
role?: AriaRole;
|
|
3738
3737
|
} & Omit<ButtonHTMLAttributes<HTMLButtonElement>, keyof PickedHTMLAttributes$1>>;
|
|
3739
3738
|
declare const ButtonGroup: {
|
|
3740
|
-
({ children, id, className, style, htmlProps, direction, buttonSize, role, ...rest }: ButtonGroupProps):
|
|
3739
|
+
({ children, id, className, style, htmlProps, direction, buttonSize, role, ...rest }: ButtonGroupProps): react.JSX.Element;
|
|
3741
3740
|
displayName: string;
|
|
3742
3741
|
};
|
|
3743
3742
|
|
|
@@ -3780,7 +3779,7 @@ type CheckboxProps = BaseComponentProps<HTMLInputElement, SelectionControlCommon
|
|
|
3780
3779
|
} & CheckboxPickedHTMLAttributes & Pick<ComponentProps<'input'>, 'required'>, InputHTMLAttributes<HTMLInputElement>>;
|
|
3781
3780
|
|
|
3782
3781
|
declare const Checkbox: {
|
|
3783
|
-
({ 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;
|
|
3784
3783
|
displayName: string;
|
|
3785
3784
|
};
|
|
3786
3785
|
|
|
@@ -3789,7 +3788,7 @@ type CheckboxGroupProps = BaseComponentPropsWithChildren<HTMLDivElement, Selecti
|
|
|
3789
3788
|
required?: boolean;
|
|
3790
3789
|
}>;
|
|
3791
3790
|
declare const CheckboxGroup: {
|
|
3792
|
-
(props: CheckboxGroupProps):
|
|
3791
|
+
(props: CheckboxGroupProps): react.JSX.Element;
|
|
3793
3792
|
displayName: string;
|
|
3794
3793
|
};
|
|
3795
3794
|
|
|
@@ -3831,13 +3830,13 @@ type CardSelectableProps = BaseComponentPropsWithChildren<HTMLInputElement, Pick
|
|
|
3831
3830
|
} & RadioPickedInputHTMLAttributes & CheckboxPickedHTMLAttributes>;
|
|
3832
3831
|
|
|
3833
3832
|
declare const Card: {
|
|
3834
|
-
(props: CardProps):
|
|
3833
|
+
(props: CardProps): react.JSX.Element;
|
|
3835
3834
|
displayName: string;
|
|
3836
3835
|
};
|
|
3837
3836
|
|
|
3838
3837
|
type CardExpandableProps = BaseComponentPropsWithChildren<HTMLDivElement, Pick<AccordionConfig, 'isExpanded' | 'isInitiallyExpanded' | 'onChange'>>;
|
|
3839
3838
|
declare const CardExpandable: {
|
|
3840
|
-
({ isInitiallyExpanded, isExpanded, onChange, id, children, className, style, htmlProps, ...rest }: CardExpandableProps):
|
|
3839
|
+
({ isInitiallyExpanded, isExpanded, onChange, id, children, className, style, htmlProps, ...rest }: CardExpandableProps): react.JSX.Element;
|
|
3841
3840
|
displayName: string;
|
|
3842
3841
|
};
|
|
3843
3842
|
|
|
@@ -3850,7 +3849,7 @@ type CardExpandableHeaderProps = Omit<BaseComponentPropsWithChildren<HTMLButtonE
|
|
|
3850
3849
|
bold?: boolean;
|
|
3851
3850
|
}, ButtonHTMLAttributes<HTMLButtonElement>>, 'id'>;
|
|
3852
3851
|
declare const CardExpandableHeader: {
|
|
3853
|
-
({ children, className, style, htmlProps, padding, typographyType, bold, ...rest }: CardExpandableHeaderProps):
|
|
3852
|
+
({ children, className, style, htmlProps, padding, typographyType, bold, ...rest }: CardExpandableHeaderProps): react.JSX.Element;
|
|
3854
3853
|
displayName: string;
|
|
3855
3854
|
};
|
|
3856
3855
|
|
|
@@ -3859,12 +3858,12 @@ type CardExpandableBodyProps = Omit<BaseComponentPropsWithChildren<HTMLDivElemen
|
|
|
3859
3858
|
padding?: Property.Padding<string>;
|
|
3860
3859
|
}>, 'id'>;
|
|
3861
3860
|
declare const CardExpandableBody: {
|
|
3862
|
-
({ children, className, style, htmlProps, padding, ...rest }: CardExpandableBodyProps):
|
|
3861
|
+
({ children, className, style, htmlProps, padding, ...rest }: CardExpandableBodyProps): react.JSX.Element;
|
|
3863
3862
|
displayName: string;
|
|
3864
3863
|
};
|
|
3865
3864
|
|
|
3866
3865
|
declare const CardSelectable: {
|
|
3867
|
-
(props: CardSelectableProps):
|
|
3866
|
+
(props: CardSelectableProps): react.JSX.Element | null;
|
|
3868
3867
|
displayName: string;
|
|
3869
3868
|
};
|
|
3870
3869
|
|
|
@@ -3885,7 +3884,7 @@ type CardSelectableGroupProps<T extends string | number> = BaseComponentPropsWit
|
|
|
3885
3884
|
defaultValue?: T | undefined;
|
|
3886
3885
|
}, Omit<HTMLAttributes<HTMLDivElement>, 'onChange'>>;
|
|
3887
3886
|
declare const CardSelectableGroup: {
|
|
3888
|
-
<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;
|
|
3889
3888
|
displayName: string;
|
|
3890
3889
|
};
|
|
3891
3890
|
|
|
@@ -3896,13 +3895,13 @@ type ChipProps = BaseComponentProps<HTMLDivElement, {
|
|
|
3896
3895
|
onClose?: () => void;
|
|
3897
3896
|
}>;
|
|
3898
3897
|
declare const Chip: {
|
|
3899
|
-
({ children, onClose, id, className, style, htmlProps, ...rest }: ChipProps):
|
|
3898
|
+
({ children, onClose, id, className, style, htmlProps, ...rest }: ChipProps): react.JSX.Element | null;
|
|
3900
3899
|
displayName: string;
|
|
3901
3900
|
};
|
|
3902
3901
|
|
|
3903
3902
|
type ChipGroupProps = ComponentPropsWithRef<'ul'>;
|
|
3904
3903
|
declare const ChipGroup: {
|
|
3905
|
-
({ children, ...rest }: ChipGroupProps):
|
|
3904
|
+
({ children, ...rest }: ChipGroupProps): react.JSX.Element;
|
|
3906
3905
|
displayName: string;
|
|
3907
3906
|
};
|
|
3908
3907
|
|
|
@@ -3912,7 +3911,7 @@ type CookieBannerCheckboxProps = Omit<CheckboxProps, 'label' | 'children'> & {
|
|
|
3912
3911
|
/**Detaljer rundt den spesifikke typen informasjonskapsel. */
|
|
3913
3912
|
description: string;
|
|
3914
3913
|
};
|
|
3915
|
-
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;
|
|
3916
3915
|
declare namespace CookieBannerCheckbox {
|
|
3917
3916
|
var displayName: string;
|
|
3918
3917
|
}
|
|
@@ -3929,13 +3928,13 @@ type CookieBannerProps = BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
3929
3928
|
/**Brekkpunkt for sammentrukket variant; Brukes på siden med detaljer om informasjonskapsler. */
|
|
3930
3929
|
collapsedBreakpoint?: Breakpoint;
|
|
3931
3930
|
} & Pick<ResponsiveProps, 'position' | 'top' | 'bottom' | 'left' | 'right' | 'width' | 'maxHeight'>>;
|
|
3932
|
-
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;
|
|
3933
3932
|
declare namespace CookieBanner {
|
|
3934
3933
|
var displayName: string;
|
|
3935
3934
|
}
|
|
3936
3935
|
|
|
3937
3936
|
type CalendarProps<T extends DateValue> = AriaCalendarProps<T>;
|
|
3938
|
-
declare function Calendar<T extends DateValue>(props: CalendarProps<T>):
|
|
3937
|
+
declare function Calendar<T extends DateValue>(props: CalendarProps<T>): react.JSX.Element;
|
|
3939
3938
|
declare namespace Calendar {
|
|
3940
3939
|
var displayName: string;
|
|
3941
3940
|
}
|
|
@@ -3999,7 +3998,7 @@ interface DatePickerProps extends Omit<AriaDatePickerProps<CalendarDate>, 'granu
|
|
|
3999
3998
|
*/
|
|
4000
3999
|
clearable?: boolean;
|
|
4001
4000
|
}
|
|
4002
|
-
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;
|
|
4003
4002
|
declare namespace DatePicker {
|
|
4004
4003
|
var displayName: string;
|
|
4005
4004
|
}
|
|
@@ -4007,7 +4006,7 @@ declare namespace DatePicker {
|
|
|
4007
4006
|
type TimePickerProps = Omit<AriaTimeFieldProps<Time>, 'hideTimeZone'> & Pick<InputProps, 'componentSize' | 'errorMessage' | 'tip' | 'style' | 'width' | 'className'> & {
|
|
4008
4007
|
ref?: Ref<HTMLDivElement>;
|
|
4009
4008
|
};
|
|
4010
|
-
declare function TimePicker({ componentSize, width, ref, ...props }: TimePickerProps):
|
|
4009
|
+
declare function TimePicker({ componentSize, width, ref, ...props }: TimePickerProps): react.JSX.Element;
|
|
4011
4010
|
declare namespace TimePicker {
|
|
4012
4011
|
var displayName: string;
|
|
4013
4012
|
}
|
|
@@ -4028,13 +4027,13 @@ type DescriptionListProps = BaseComponentPropsWithChildren<HTMLDListElement, {
|
|
|
4028
4027
|
direction?: Direction$1;
|
|
4029
4028
|
}>;
|
|
4030
4029
|
declare const DescriptionList: {
|
|
4031
|
-
({ appearance, direction, children, id, className, style, htmlProps, ...rest }: DescriptionListProps):
|
|
4030
|
+
({ appearance, direction, children, id, className, style, htmlProps, ...rest }: DescriptionListProps): react.JSX.Element;
|
|
4032
4031
|
displayName: string;
|
|
4033
4032
|
};
|
|
4034
4033
|
|
|
4035
4034
|
type DescriptionListTermProps = ComponentPropsWithRef<'dt'>;
|
|
4036
4035
|
declare const DescriptionListTerm: {
|
|
4037
|
-
(props: DescriptionListTermProps):
|
|
4036
|
+
(props: DescriptionListTermProps): react.JSX.Element;
|
|
4038
4037
|
displayName: string;
|
|
4039
4038
|
};
|
|
4040
4039
|
|
|
@@ -4043,7 +4042,7 @@ type DescriptionListDescProps = BaseComponentPropsWithChildren<HTMLElement, {
|
|
|
4043
4042
|
icon?: SvgIcon;
|
|
4044
4043
|
}>;
|
|
4045
4044
|
declare const DescriptionListDesc: {
|
|
4046
|
-
({ children, icon, id, className, style, htmlProps, ...rest }: DescriptionListDescProps):
|
|
4045
|
+
({ children, icon, id, className, style, htmlProps, ...rest }: DescriptionListDescProps): react.JSX.Element;
|
|
4047
4046
|
displayName: string;
|
|
4048
4047
|
};
|
|
4049
4048
|
|
|
@@ -4056,7 +4055,7 @@ type DescriptionListGroupProps = BaseComponentPropsWithChildren<HTMLDivElement,
|
|
|
4056
4055
|
maxWidth?: Property.MaxWidth<string>;
|
|
4057
4056
|
}>;
|
|
4058
4057
|
declare const DescriptionListGroup: {
|
|
4059
|
-
({ children, margin, minWidth, maxWidth, id, className, style, htmlProps, ...rest }: DescriptionListGroupProps):
|
|
4058
|
+
({ children, margin, minWidth, maxWidth, id, className, style, htmlProps, ...rest }: DescriptionListGroupProps): react.JSX.Element;
|
|
4060
4059
|
displayName: string;
|
|
4061
4060
|
};
|
|
4062
4061
|
|
|
@@ -4082,25 +4081,25 @@ type DetailListProps = BaseComponentPropsWithChildren<HTMLDListElement, {
|
|
|
4082
4081
|
smallScreenBreakpoint?: Breakpoint;
|
|
4083
4082
|
}>;
|
|
4084
4083
|
declare const DetailList: {
|
|
4085
|
-
({ id, className, style, htmlProps, withDividers, striped, size, smallScreenBreakpoint, ...rest }: DetailListProps):
|
|
4084
|
+
({ id, className, style, htmlProps, withDividers, striped, size, smallScreenBreakpoint, ...rest }: DetailListProps): react.JSX.Element;
|
|
4086
4085
|
displayName: string;
|
|
4087
4086
|
};
|
|
4088
4087
|
|
|
4089
4088
|
type DetailListDescProps = ComponentPropsWithRef<'dd'> & Pick<ResponsiveProps, 'textAlign'>;
|
|
4090
4089
|
declare const DetailListDesc: {
|
|
4091
|
-
({ className, ...rest }: DetailListDescProps):
|
|
4090
|
+
({ className, ...rest }: DetailListDescProps): react.JSX.Element;
|
|
4092
4091
|
displayName: string;
|
|
4093
4092
|
};
|
|
4094
4093
|
|
|
4095
4094
|
type DetailListRowProps = ComponentPropsWithRef<'div'>;
|
|
4096
4095
|
declare const DetailListRow: {
|
|
4097
|
-
({ className, ...rest }: DetailListRowProps):
|
|
4096
|
+
({ className, ...rest }: DetailListRowProps): react.JSX.Element;
|
|
4098
4097
|
displayName: string;
|
|
4099
4098
|
};
|
|
4100
4099
|
|
|
4101
4100
|
type DetailListTermProps = ComponentPropsWithRef<'dt'>;
|
|
4102
4101
|
declare const DetailListTerm: {
|
|
4103
|
-
({ className, ...rest }: DetailListTermProps):
|
|
4102
|
+
({ className, ...rest }: DetailListTermProps): react.JSX.Element;
|
|
4104
4103
|
displayName: string;
|
|
4105
4104
|
};
|
|
4106
4105
|
|
|
@@ -4111,7 +4110,7 @@ type DividerProps = BaseComponentProps<HTMLHRElement, {
|
|
|
4111
4110
|
*/
|
|
4112
4111
|
color?: DividerColor;
|
|
4113
4112
|
}, Omit<HTMLAttributes<HTMLHRElement>, 'color'>>;
|
|
4114
|
-
declare const Divider: ({ color, id, className, style, htmlProps, ...rest }: DividerProps) =>
|
|
4113
|
+
declare const Divider: ({ color, id, className, style, htmlProps, ...rest }: DividerProps) => react.JSX.Element;
|
|
4115
4114
|
|
|
4116
4115
|
declare const DRAWER_SIZES: ["small", "medium", "large"];
|
|
4117
4116
|
type DrawerSize = (typeof DRAWER_SIZES)[number];
|
|
@@ -4165,7 +4164,7 @@ interface DrawerGroupProps {
|
|
|
4165
4164
|
onClose?: () => void;
|
|
4166
4165
|
}
|
|
4167
4166
|
declare const DrawerGroup: {
|
|
4168
|
-
({ children, isInitiallyOpen, isOpen: propIsOpen, setIsOpen: propSetIsOpen, drawerId, onOpen, onClose, }: DrawerGroupProps):
|
|
4167
|
+
({ children, isInitiallyOpen, isOpen: propIsOpen, setIsOpen: propSetIsOpen, drawerId, onOpen, onClose, }: DrawerGroupProps): react.JSX.Element;
|
|
4169
4168
|
displayName: string;
|
|
4170
4169
|
};
|
|
4171
4170
|
|
|
@@ -4179,7 +4178,7 @@ type EmptyContentProps = {
|
|
|
4179
4178
|
/**Melding - beskrivelse og forklaring på hvordan brukeren kan få innhold. Kan inneholde lenker og andre interaktive elementer. */
|
|
4180
4179
|
children: ReactNode;
|
|
4181
4180
|
} & Omit<HTMLAttributes<HTMLDivElement>, 'children'>;
|
|
4182
|
-
declare function EmptyContent({ headerText, children, headerHeadingLevel, ...rest }: EmptyContentProps):
|
|
4181
|
+
declare function EmptyContent({ headerText, children, headerHeadingLevel, ...rest }: EmptyContentProps): react.JSX.Element;
|
|
4183
4182
|
declare namespace EmptyContent {
|
|
4184
4183
|
var displayName: string;
|
|
4185
4184
|
}
|
|
@@ -4189,13 +4188,13 @@ type ErrorSummaryProps = BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
4189
4188
|
heading?: ReactNode;
|
|
4190
4189
|
}>;
|
|
4191
4190
|
declare const ErrorSummary: {
|
|
4192
|
-
({ heading: pHeading, className, style, children, id, htmlProps, ...props }: ErrorSummaryProps):
|
|
4191
|
+
({ heading: pHeading, className, style, children, id, htmlProps, ...props }: ErrorSummaryProps): react.JSX.Element;
|
|
4193
4192
|
displayName: string;
|
|
4194
4193
|
};
|
|
4195
4194
|
|
|
4196
4195
|
type ErrorSummaryItemProps<T extends ElementType> = LinkProps<T>;
|
|
4197
4196
|
declare const ErrorSummaryItem: {
|
|
4198
|
-
<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;
|
|
4199
4198
|
displayName: string;
|
|
4200
4199
|
};
|
|
4201
4200
|
|
|
@@ -4222,7 +4221,7 @@ type FavStarProps = BaseComponentPropsWithChildren<HTMLElement, {
|
|
|
4222
4221
|
size?: ComponentSize;
|
|
4223
4222
|
}, Omit<HTMLAttributes<HTMLElement>, 'onChange'>>;
|
|
4224
4223
|
declare const FavStar: {
|
|
4225
|
-
({ 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;
|
|
4226
4225
|
displayName: string;
|
|
4227
4226
|
};
|
|
4228
4227
|
|
|
@@ -4285,20 +4284,20 @@ interface FeedbackProps {
|
|
|
4285
4284
|
type Rating = 'positive' | 'negative';
|
|
4286
4285
|
type Layout = 'vertical' | 'horizontal';
|
|
4287
4286
|
|
|
4288
|
-
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;
|
|
4289
4288
|
|
|
4290
4289
|
type FieldsetProps = BaseComponentPropsWithChildren<HTMLFieldSetElement, {
|
|
4291
4290
|
/** Om alle inputfelt skal bli `disabled`. */
|
|
4292
4291
|
disabled?: boolean;
|
|
4293
4292
|
}>;
|
|
4294
4293
|
declare const Fieldset: {
|
|
4295
|
-
({ id, className, style, htmlProps, ...rest }: FieldsetProps):
|
|
4294
|
+
({ id, className, style, htmlProps, ...rest }: FieldsetProps): react.JSX.Element;
|
|
4296
4295
|
displayName: string;
|
|
4297
4296
|
};
|
|
4298
4297
|
|
|
4299
4298
|
type FieldsetGroupProps = BaseComponentPropsWithChildren<HTMLDivElement>;
|
|
4300
4299
|
declare const FieldsetGroup: {
|
|
4301
|
-
({ id, className, style, htmlProps, ...rest }: FieldsetGroupProps):
|
|
4300
|
+
({ id, className, style, htmlProps, ...rest }: FieldsetGroupProps): react.JSX.Element;
|
|
4302
4301
|
displayName: string;
|
|
4303
4302
|
};
|
|
4304
4303
|
|
|
@@ -4371,40 +4370,40 @@ type FileUploaderProps = {
|
|
|
4371
4370
|
onRetry?: (fileId: string) => void;
|
|
4372
4371
|
} & Pick<ResponsiveProps, 'width'> & Partial<FileUploaderHookProps> & Omit<ComponentPropsWithRef<'div'>, 'onChange' | 'id'> & Pick<InputProps, 'tip' | 'label' | 'afterLabelContent'>;
|
|
4373
4372
|
declare const FileUploader: {
|
|
4374
|
-
(props: FileUploaderProps):
|
|
4373
|
+
(props: FileUploaderProps): react.JSX.Element;
|
|
4375
4374
|
displayName: string;
|
|
4376
4375
|
};
|
|
4377
4376
|
|
|
4378
4377
|
type FooterProps = ComponentPropsWithRef<'footer'>;
|
|
4379
|
-
declare const Footer: ({ className, ...rest }: FooterProps) =>
|
|
4378
|
+
declare const Footer: ({ className, ...rest }: FooterProps) => react.JSX.Element;
|
|
4380
4379
|
|
|
4381
4380
|
type FooterListHeaderProps = Omit<HeadingProps, 'level' | 'withMargins'>;
|
|
4382
|
-
declare const FooterListHeader: (props: FooterListHeaderProps) =>
|
|
4381
|
+
declare const FooterListHeader: (props: FooterListHeaderProps) => react.JSX.Element;
|
|
4383
4382
|
|
|
4384
4383
|
type HideBreakpoint = 'xs' | 'sm' | 'md';
|
|
4385
4384
|
type FooterLogoProps = ComponentPropsWithRef<'img'> & {
|
|
4386
4385
|
/**Brekkepunkt når logoen skal skjules på mindre skjerm. */
|
|
4387
4386
|
hideBreakpoint?: HideBreakpoint;
|
|
4388
4387
|
};
|
|
4389
|
-
declare const FooterLogo: ({ hideBreakpoint, ...rest }: FooterLogoProps) =>
|
|
4388
|
+
declare const FooterLogo: ({ hideBreakpoint, ...rest }: FooterLogoProps) => react.JSX.Element;
|
|
4390
4389
|
|
|
4391
4390
|
type FooterListProps = ComponentPropsWithRef<'ul'>;
|
|
4392
|
-
declare const FooterList: ({ className, ...rest }: FooterListProps) =>
|
|
4391
|
+
declare const FooterList: ({ className, ...rest }: FooterListProps) => react.JSX.Element;
|
|
4393
4392
|
|
|
4394
4393
|
type FooterSocialsListProps = ComponentPropsWithRef<'ul'>;
|
|
4395
|
-
declare const FooterSocialsList: ({ className, ...rest }: FooterSocialsListProps) =>
|
|
4394
|
+
declare const FooterSocialsList: ({ className, ...rest }: FooterSocialsListProps) => react.JSX.Element;
|
|
4396
4395
|
|
|
4397
4396
|
type FooterSocialsGroupProps = ComponentPropsWithRef<'div'>;
|
|
4398
|
-
declare const FooterSocialsGroup: ({ className, ...rest }: FooterSocialsGroupProps) =>
|
|
4397
|
+
declare const FooterSocialsGroup: ({ className, ...rest }: FooterSocialsGroupProps) => react.JSX.Element;
|
|
4399
4398
|
|
|
4400
4399
|
type FooterListGroupProps = ComponentPropsWithRef<'div'>;
|
|
4401
|
-
declare const FooterListGroup: ({ className, ...rest }: FooterListGroupProps) =>
|
|
4400
|
+
declare const FooterListGroup: ({ className, ...rest }: FooterListGroupProps) => react.JSX.Element;
|
|
4402
4401
|
|
|
4403
4402
|
type FooterLeftProps = ComponentPropsWithRef<'div'>;
|
|
4404
|
-
declare const FooterLeft: ({ className, ...rest }: FooterLeftProps) =>
|
|
4403
|
+
declare const FooterLeft: ({ className, ...rest }: FooterLeftProps) => react.JSX.Element;
|
|
4405
4404
|
|
|
4406
4405
|
type FormSummaryProps = Pick<PaperProps, 'children' | 'htmlProps' | 'ref' | 'id' | 'style' | 'className' | 'padding' | 'paddingBlock' | 'paddingInline' | 'margin' | 'marginBlock' | 'marginInline' | 'width' | 'minWidth' | 'maxWidth'>;
|
|
4407
|
-
declare const FormSummary: (props: FormSummaryProps) =>
|
|
4406
|
+
declare const FormSummary: (props: FormSummaryProps) => react.JSX.Element;
|
|
4408
4407
|
|
|
4409
4408
|
type InputMessageType = 'error' | 'tip';
|
|
4410
4409
|
type InputMessageProps = BaseComponentProps<HTMLDivElement, {
|
|
@@ -4416,7 +4415,7 @@ type InputMessageProps = BaseComponentProps<HTMLDivElement, {
|
|
|
4416
4415
|
messageType: InputMessageType;
|
|
4417
4416
|
} & Pick<ResponsiveProps, 'margin' | 'marginInline' | 'marginBlock'>>;
|
|
4418
4417
|
declare const InputMessage: {
|
|
4419
|
-
({ messageType, id, className, style, htmlProps, children, ...rest }: InputMessageProps):
|
|
4418
|
+
({ messageType, id, className, style, htmlProps, children, ...rest }: InputMessageProps): react.JSX.Element;
|
|
4420
4419
|
displayName: string;
|
|
4421
4420
|
};
|
|
4422
4421
|
interface RenderInputMessageProps {
|
|
@@ -4426,34 +4425,34 @@ interface RenderInputMessageProps {
|
|
|
4426
4425
|
errorMessageId?: string;
|
|
4427
4426
|
noSpacing?: boolean;
|
|
4428
4427
|
}
|
|
4429
|
-
declare const renderInputMessage: ({ tip, tipId, errorMessage, errorMessageId, noSpacing, }: RenderInputMessageProps) =>
|
|
4428
|
+
declare const renderInputMessage: ({ tip, tipId, errorMessage, errorMessageId, noSpacing, }: RenderInputMessageProps) => react.JSX.Element;
|
|
4430
4429
|
|
|
4431
4430
|
type FormSummaryHeaderProps = ComponentPropsWithRef<'div'>;
|
|
4432
|
-
declare function FormSummaryHeader({ ...props }: FormSummaryHeaderProps):
|
|
4431
|
+
declare function FormSummaryHeader({ ...props }: FormSummaryHeaderProps): react.JSX.Element;
|
|
4433
4432
|
type FormSummaryHeadingProps = {
|
|
4434
4433
|
/** Heading level. */
|
|
4435
4434
|
level?: Exclude<HeadingProps['level'], 1>;
|
|
4436
4435
|
} & Omit<HeadingProps, 'level'>;
|
|
4437
|
-
declare function FormSummaryHeading({ level, ...props }: FormSummaryHeadingProps):
|
|
4436
|
+
declare function FormSummaryHeading({ level, ...props }: FormSummaryHeadingProps): react.JSX.Element;
|
|
4438
4437
|
type FormSummaryEditButtonProps = {
|
|
4439
4438
|
/**Formål med knappen. */
|
|
4440
4439
|
purpose?: ExtractStrict<ButtonPurpose, 'secondary' | 'tertiary'>;
|
|
4441
4440
|
} & Omit<ButtonProps, 'purpose'>;
|
|
4442
|
-
declare function FormSummaryEditButton({ purpose, ...props }: FormSummaryEditButtonProps):
|
|
4441
|
+
declare function FormSummaryEditButton({ purpose, ...props }: FormSummaryEditButtonProps): react.JSX.Element;
|
|
4443
4442
|
type FormSummaryFieldsProps = Omit<DescriptionListProps, 'direction'>;
|
|
4444
|
-
declare function FormSummaryFields({ ...props }: FormSummaryFieldsProps):
|
|
4443
|
+
declare function FormSummaryFields({ ...props }: FormSummaryFieldsProps): react.JSX.Element;
|
|
4445
4444
|
type FormSummaryFieldProps = ComponentPropsWithRef<'div'>;
|
|
4446
|
-
declare function FormSummaryField({ className, ...props }: FormSummaryFieldProps):
|
|
4445
|
+
declare function FormSummaryField({ className, ...props }: FormSummaryFieldProps): react.JSX.Element;
|
|
4447
4446
|
type FormSummaryLabelProps = DescriptionListTermProps;
|
|
4448
|
-
declare function FormSummaryLabel(props: FormSummaryLabelProps):
|
|
4447
|
+
declare function FormSummaryLabel(props: FormSummaryLabelProps): react.JSX.Element;
|
|
4449
4448
|
type FormSummaryValueProps = {
|
|
4450
4449
|
/**Hvis data hentes fra ekstern kilde kan feltet vise innlastning. */
|
|
4451
4450
|
isLoading?: boolean;
|
|
4452
4451
|
} & DescriptionListDescProps;
|
|
4453
|
-
declare function FormSummaryValue({ className, isLoading, children, ...props }: FormSummaryValueProps):
|
|
4454
|
-
declare function FormSummaryEmptyValue():
|
|
4452
|
+
declare function FormSummaryValue({ className, isLoading, children, ...props }: FormSummaryValueProps): react.JSX.Element;
|
|
4453
|
+
declare function FormSummaryEmptyValue(): react.JSX.Element;
|
|
4455
4454
|
type FormSummaryErrorProps = Omit<InputMessageProps, 'messageType' | 'message'>;
|
|
4456
|
-
declare function FormSummaryError({ ...props }: FormSummaryErrorProps):
|
|
4455
|
+
declare function FormSummaryError({ ...props }: FormSummaryErrorProps): react.JSX.Element;
|
|
4457
4456
|
|
|
4458
4457
|
declare const G_MESSAGE_PURPOSES: ["info", "warning", "danger"];
|
|
4459
4458
|
type GlobalMessagePurpose = (typeof G_MESSAGE_PURPOSES)[number];
|
|
@@ -4470,7 +4469,7 @@ type GlobalMessageProps = BaseComponentProps<HTMLDivElement, {
|
|
|
4470
4469
|
onClose?: () => void;
|
|
4471
4470
|
}>;
|
|
4472
4471
|
declare const GlobalMessage: {
|
|
4473
|
-
({ 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;
|
|
4474
4473
|
displayName: string;
|
|
4475
4474
|
};
|
|
4476
4475
|
|
|
@@ -4480,7 +4479,7 @@ type InlineButtonProps = {
|
|
|
4480
4479
|
*/
|
|
4481
4480
|
icon?: SvgIcon;
|
|
4482
4481
|
} & Pick<BaseTypographyProps, 'color'> & Omit<ComponentPropsWithRef<'button'>, 'color'>;
|
|
4483
|
-
declare const InlineButton: ({ className, color, icon, children, ...rest }: InlineButtonProps) =>
|
|
4482
|
+
declare const InlineButton: ({ className, color, icon, children, ...rest }: InlineButtonProps) => react.JSX.Element;
|
|
4484
4483
|
|
|
4485
4484
|
interface InlineEditContextType {
|
|
4486
4485
|
onChange: (e: ChangeEvent<EditElement>) => void;
|
|
@@ -4530,11 +4529,11 @@ type InlineEditTextAreaProps = InlineEditGenericProps<'textarea'>;
|
|
|
4530
4529
|
type InlineEditInputProps = InlineEditGenericProps<'input'>;
|
|
4531
4530
|
type InlineEditSelectProps = InlineEditGenericProps<'select'>;
|
|
4532
4531
|
|
|
4533
|
-
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;
|
|
4534
4533
|
|
|
4535
|
-
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;
|
|
4536
4535
|
|
|
4537
|
-
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;
|
|
4538
4537
|
|
|
4539
4538
|
type NavigationLinkProps = {
|
|
4540
4539
|
children: ReactNode;
|
|
@@ -4572,7 +4571,7 @@ type InternalHeaderProps = BaseComponentProps<HTMLDivElement, {
|
|
|
4572
4571
|
}>;
|
|
4573
4572
|
|
|
4574
4573
|
declare const InternalHeader: {
|
|
4575
|
-
(props: InternalHeaderProps):
|
|
4574
|
+
(props: InternalHeaderProps): react.JSX.Element;
|
|
4576
4575
|
displayName: string;
|
|
4577
4576
|
};
|
|
4578
4577
|
|
|
@@ -4589,13 +4588,13 @@ type ListProps = BaseComponentPropsWithChildren<HTMLUListElement | HTMLOListElem
|
|
|
4589
4588
|
typographyType?: ListTypographyType;
|
|
4590
4589
|
}>;
|
|
4591
4590
|
declare const List: {
|
|
4592
|
-
({ listType, typographyType, children, id, className, style, htmlProps, ...rest }: ListProps):
|
|
4591
|
+
({ listType, typographyType, children, id, className, style, htmlProps, ...rest }: ListProps): react.JSX.Element;
|
|
4593
4592
|
displayName: string;
|
|
4594
4593
|
};
|
|
4595
4594
|
|
|
4596
4595
|
type ListItemProps = ComponentPropsWithRef<'li'>;
|
|
4597
4596
|
declare const ListItem: {
|
|
4598
|
-
({ className, ...rest }: ListItemProps):
|
|
4597
|
+
({ className, ...rest }: ListItemProps): react.JSX.Element;
|
|
4599
4598
|
displayName: string;
|
|
4600
4599
|
};
|
|
4601
4600
|
|
|
@@ -4619,7 +4618,7 @@ type LocalMessageProps = BaseComponentProps<HTMLDivElement, {
|
|
|
4619
4618
|
layout?: LocalMessageLayout;
|
|
4620
4619
|
} & Pick<ResponsiveProps, 'width'>>;
|
|
4621
4620
|
declare const LocalMessage: {
|
|
4622
|
-
({ 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;
|
|
4623
4622
|
displayName: string;
|
|
4624
4623
|
};
|
|
4625
4624
|
|
|
@@ -4653,13 +4652,13 @@ type ModalBodyProps = BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
4653
4652
|
height?: ResponsiveProps['height'];
|
|
4654
4653
|
}>;
|
|
4655
4654
|
declare const ModalBody: {
|
|
4656
|
-
({ children, id, className, style, scrollable, htmlProps, height, ...rest }: ModalBodyProps):
|
|
4655
|
+
({ children, id, className, style, scrollable, htmlProps, height, ...rest }: ModalBodyProps): react.JSX.Element;
|
|
4657
4656
|
displayName: string;
|
|
4658
4657
|
};
|
|
4659
4658
|
|
|
4660
4659
|
type ModalActionsProps = ComponentPropsWithRef<'div'>;
|
|
4661
4660
|
declare const ModalActions: {
|
|
4662
|
-
(props: ModalActionsProps):
|
|
4661
|
+
(props: ModalActionsProps): react.JSX.Element;
|
|
4663
4662
|
displayName: string;
|
|
4664
4663
|
};
|
|
4665
4664
|
|
|
@@ -4701,12 +4700,12 @@ type NewsPopoverProps = BaseComponentProps<HTMLElement, {
|
|
|
4701
4700
|
smallScreenBreakpoint?: Breakpoint;
|
|
4702
4701
|
}>;
|
|
4703
4702
|
declare const NewsPopover: {
|
|
4704
|
-
({ 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;
|
|
4705
4704
|
displayName: string;
|
|
4706
4705
|
};
|
|
4707
4706
|
|
|
4708
4707
|
declare const OverflowMenu: {
|
|
4709
|
-
({ placement, offset, parentElement, portal, className, htmlProps, ref, style, ...rest }: OverflowMenuProps):
|
|
4708
|
+
({ placement, offset, parentElement, portal, className, htmlProps, ref, style, ...rest }: OverflowMenuProps): react.JSX.Element;
|
|
4710
4709
|
displayName: string;
|
|
4711
4710
|
};
|
|
4712
4711
|
|
|
@@ -4737,37 +4736,37 @@ type OverflowMenuProps = Omit<BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
4737
4736
|
}>, 'id'>;
|
|
4738
4737
|
|
|
4739
4738
|
declare const OverflowMenuButton: {
|
|
4740
|
-
({ onClick, onClickAsync, closeMenuOnClickAsync, purpose, loading, ref, ...rest }: OverflowMenuButtonProps):
|
|
4739
|
+
({ onClick, onClickAsync, closeMenuOnClickAsync, purpose, loading, ref, ...rest }: OverflowMenuButtonProps): react.JSX.Element;
|
|
4741
4740
|
displayName: string;
|
|
4742
4741
|
};
|
|
4743
4742
|
|
|
4744
4743
|
declare const OverflowMenuLink: {
|
|
4745
|
-
({ onClick, ref, ...rest }: OverflowMenuLinkProps):
|
|
4744
|
+
({ onClick, ref, ...rest }: OverflowMenuLinkProps): react.JSX.Element;
|
|
4746
4745
|
displayName: string;
|
|
4747
4746
|
};
|
|
4748
4747
|
|
|
4749
4748
|
declare const OverflowMenuToggle: {
|
|
4750
|
-
({ ref, ...rest }: OverflowMenuToggleProps):
|
|
4749
|
+
({ ref, ...rest }: OverflowMenuToggleProps): react.JSX.Element;
|
|
4751
4750
|
displayName: string;
|
|
4752
4751
|
};
|
|
4753
4752
|
|
|
4754
4753
|
type OverflowMenuDividerProps = Omit<DividerProps, 'color'>;
|
|
4755
4754
|
declare const OverflowMenuDivider: {
|
|
4756
|
-
({ id, className, style, htmlProps, ...rest }: OverflowMenuDividerProps):
|
|
4755
|
+
({ id, className, style, htmlProps, ...rest }: OverflowMenuDividerProps): react.JSX.Element;
|
|
4757
4756
|
displayName: string;
|
|
4758
4757
|
};
|
|
4759
4758
|
|
|
4760
4759
|
type OverflowMenuListProps = StylelessListProps;
|
|
4761
|
-
declare const OverflowMenuList: (props: OverflowMenuListProps) =>
|
|
4760
|
+
declare const OverflowMenuList: (props: OverflowMenuListProps) => react.JSX.Element;
|
|
4762
4761
|
|
|
4763
4762
|
declare const OverflowMenuSpan: {
|
|
4764
|
-
(props: OverflowMenuSpanProps):
|
|
4763
|
+
(props: OverflowMenuSpanProps): react.JSX.Element;
|
|
4765
4764
|
displayName: string;
|
|
4766
4765
|
};
|
|
4767
4766
|
|
|
4768
4767
|
type OverflowMenuListHeaderProps = ComponentPropsWithRef<'h2'>;
|
|
4769
4768
|
declare const OverflowMenuListHeader: {
|
|
4770
|
-
(props: OverflowMenuListHeaderProps):
|
|
4769
|
+
(props: OverflowMenuListHeaderProps): react.JSX.Element;
|
|
4771
4770
|
displayName: string;
|
|
4772
4771
|
};
|
|
4773
4772
|
|
|
@@ -4790,7 +4789,7 @@ interface OverflowMenuGroupProps {
|
|
|
4790
4789
|
overflowMenuId?: string;
|
|
4791
4790
|
}
|
|
4792
4791
|
declare const OverflowMenuGroup: {
|
|
4793
|
-
({ children, onClose, onOpen, setIsOpen: propSetIsOpen, isOpen: propIsOpen, isInitiallyOpen, overflowMenuId, }: OverflowMenuGroupProps):
|
|
4792
|
+
({ children, onClose, onOpen, setIsOpen: propSetIsOpen, isOpen: propIsOpen, isInitiallyOpen, overflowMenuId, }: OverflowMenuGroupProps): react.JSX.Element;
|
|
4794
4793
|
displayName: string;
|
|
4795
4794
|
};
|
|
4796
4795
|
|
|
@@ -4838,7 +4837,7 @@ type PaginationProps = BaseComponentProps<HTMLElement, {
|
|
|
4838
4837
|
smallScreenBreakpoint?: Breakpoint;
|
|
4839
4838
|
}, Omit<HTMLAttributes<HTMLElement>, 'onChange'>>;
|
|
4840
4839
|
declare const Pagination: {
|
|
4841
|
-
({ 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;
|
|
4842
4841
|
displayName: string;
|
|
4843
4842
|
};
|
|
4844
4843
|
|
|
@@ -4890,7 +4889,7 @@ type PhoneInputProps = {
|
|
|
4890
4889
|
groupLabel?: string;
|
|
4891
4890
|
} & Pick<InputProps, 'readOnly' | 'disabled' | 'width' | 'componentSize' | 'errorMessage' | 'label' | 'afterLabelContent' | 'tip' | 'required' | 'className' | 'style' | 'aria-required' | 'aria-describedby' | 'ref'>;
|
|
4892
4891
|
declare const PhoneInput: {
|
|
4893
|
-
({ 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;
|
|
4894
4893
|
displayName: string;
|
|
4895
4894
|
};
|
|
4896
4895
|
|
|
@@ -4934,7 +4933,7 @@ type PopoverProps = BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
4934
4933
|
onClose?: () => void;
|
|
4935
4934
|
}>;
|
|
4936
4935
|
declare const Popover: {
|
|
4937
|
-
({ 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;
|
|
4938
4937
|
displayName: string;
|
|
4939
4938
|
};
|
|
4940
4939
|
|
|
@@ -4955,7 +4954,7 @@ interface PopoverGroupProps {
|
|
|
4955
4954
|
popoverId?: string;
|
|
4956
4955
|
}
|
|
4957
4956
|
declare const PopoverGroup: {
|
|
4958
|
-
({ isOpen: propIsOpen, setIsOpen: propSetIsOpen, onClose, onOpen, isInitiallyOpen, children, popoverId, }: PopoverGroupProps):
|
|
4957
|
+
({ isOpen: propIsOpen, setIsOpen: propSetIsOpen, onClose, onOpen, isInitiallyOpen, children, popoverId, }: PopoverGroupProps): react.JSX.Element;
|
|
4959
4958
|
displayName: string;
|
|
4960
4959
|
};
|
|
4961
4960
|
|
|
@@ -4982,7 +4981,7 @@ type ProgressTrackerItemProps = BaseComponentPropsWithChildren<HTMLButtonElement
|
|
|
4982
4981
|
onClick?: undefined;
|
|
4983
4982
|
}>;
|
|
4984
4983
|
declare const ProgressTrackerItem: {
|
|
4985
|
-
(props: ProgressTrackerItemProps):
|
|
4984
|
+
(props: ProgressTrackerItemProps): react.JSX.Element;
|
|
4986
4985
|
displayName: string;
|
|
4987
4986
|
};
|
|
4988
4987
|
|
|
@@ -5022,7 +5021,7 @@ type ProgressBarProps = Pick<CommonInputProps, 'tip' | 'errorMessage' | 'label'
|
|
|
5022
5021
|
max?: number;
|
|
5023
5022
|
} & Omit<ComponentPropsWithRef<'progress'>, 'max' | 'value'>;
|
|
5024
5023
|
declare const ProgressBar: {
|
|
5025
|
-
({ 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;
|
|
5026
5025
|
displayName: string;
|
|
5027
5026
|
};
|
|
5028
5027
|
|
|
@@ -5043,7 +5042,7 @@ type SearchProps = Pick<InputProps, 'tip' | 'label'> & {
|
|
|
5043
5042
|
showIcon?: boolean;
|
|
5044
5043
|
} & Pick<InputProps, 'width'> & Omit<ComponentPropsWithRef<'input'>, 'width' | 'height'>;
|
|
5045
5044
|
declare const Search$1: {
|
|
5046
|
-
({ 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;
|
|
5047
5046
|
displayName: string;
|
|
5048
5047
|
};
|
|
5049
5048
|
|
|
@@ -5078,7 +5077,7 @@ interface SearchAutocompleteWrapperProps {
|
|
|
5078
5077
|
value?: string;
|
|
5079
5078
|
}
|
|
5080
5079
|
declare const SearchAutocompleteWrapper: {
|
|
5081
|
-
(props: SearchAutocompleteWrapperProps):
|
|
5080
|
+
(props: SearchAutocompleteWrapperProps): react.JSX.Element;
|
|
5082
5081
|
displayName: string;
|
|
5083
5082
|
};
|
|
5084
5083
|
|
|
@@ -5095,7 +5094,7 @@ type SearchSuggestionsProps = BaseComponentProps<HTMLDivElement, {
|
|
|
5095
5094
|
searchId: string;
|
|
5096
5095
|
}>;
|
|
5097
5096
|
declare const SearchSuggestions: {
|
|
5098
|
-
({ 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;
|
|
5099
5098
|
displayName: string;
|
|
5100
5099
|
};
|
|
5101
5100
|
|
|
@@ -5131,7 +5130,7 @@ type SelectProps<Option = unknown, IsMulti extends boolean = false> = {
|
|
|
5131
5130
|
ref?: SelectForwardRefType<Option, IsMulti>;
|
|
5132
5131
|
} & CommonInputProps & InputIconProps & Pick<HTMLAttributes<HTMLInputElement>, 'aria-required'> & WrappedReactSelectProps<Option, IsMulti, GroupBase<Option>>;
|
|
5133
5132
|
type SelectForwardRefType<Option, IsMulti extends boolean> = Ref<SelectInstance<Option, IsMulti, GroupBase<Option>>>;
|
|
5134
|
-
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;
|
|
5135
5134
|
declare namespace Select {
|
|
5136
5135
|
var displayName: string;
|
|
5137
5136
|
}
|
|
@@ -5142,12 +5141,12 @@ type NativeSelectProps = {
|
|
|
5142
5141
|
/** Implementerer `readOnly` oppførsel etter standard for `<input>` og setter `readOnly` styling. */
|
|
5143
5142
|
readOnly?: InputProps['readOnly'];
|
|
5144
5143
|
} & CommonInputProps & Pick<InputProps, 'componentSize'> & InputIconProps & ComponentPropsWithRef<'select'>;
|
|
5145
|
-
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;
|
|
5146
5145
|
|
|
5147
5146
|
declare const createSelectOptions: <TValue extends string | number>(...args: Array<TValue>) => Array<SelectOption<TValue>>;
|
|
5148
5147
|
|
|
5149
5148
|
declare const RadioButton: {
|
|
5150
|
-
({ 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;
|
|
5151
5150
|
displayName: string;
|
|
5152
5151
|
};
|
|
5153
5152
|
|
|
@@ -5164,7 +5163,7 @@ type RadioButtonGroupProps<T extends string | number> = BaseComponentPropsWithCh
|
|
|
5164
5163
|
defaultValue?: T | undefined;
|
|
5165
5164
|
}, Omit<HTMLAttributes<HTMLDivElement>, 'onChange'>>;
|
|
5166
5165
|
declare const RadioButtonGroup: {
|
|
5167
|
-
<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;
|
|
5168
5167
|
displayName: string;
|
|
5169
5168
|
};
|
|
5170
5169
|
|
|
@@ -5176,7 +5175,7 @@ type SkeletonProps = {
|
|
|
5176
5175
|
borderRadius?: Property.BorderRadius;
|
|
5177
5176
|
} & Pick<ResponsiveProps, 'width' | 'height'> & ComponentPropsWithRef<'div'>;
|
|
5178
5177
|
declare const Skeleton: {
|
|
5179
|
-
({ width, height, borderRadius, className, style, ref, ...rest }: SkeletonProps):
|
|
5178
|
+
({ width, height, borderRadius, className, style, ref, ...rest }: SkeletonProps): react.JSX.Element;
|
|
5180
5179
|
displayName: string;
|
|
5181
5180
|
};
|
|
5182
5181
|
|
|
@@ -5193,7 +5192,7 @@ type SkipToContentProps = BaseComponentProps<HTMLAnchorElement, {
|
|
|
5193
5192
|
top?: Property.Top;
|
|
5194
5193
|
}>;
|
|
5195
5194
|
declare const SkipToContent: {
|
|
5196
|
-
({ text, top, id, className, htmlProps, style, ...rest }: SkipToContentProps):
|
|
5195
|
+
({ text, top, id, className, htmlProps, style, ...rest }: SkipToContentProps): react.JSX.Element;
|
|
5197
5196
|
displayName: string;
|
|
5198
5197
|
};
|
|
5199
5198
|
|
|
@@ -5211,7 +5210,7 @@ type SpinnerProps = BaseComponentProps<SVGElement, {
|
|
|
5211
5210
|
*/
|
|
5212
5211
|
tooltip?: string;
|
|
5213
5212
|
}, Omit<HTMLAttributes<SVGSVGElement>, 'color'>>;
|
|
5214
|
-
declare function Spinner(props: SpinnerProps):
|
|
5213
|
+
declare function Spinner(props: SpinnerProps): react.JSX.Element;
|
|
5215
5214
|
declare namespace Spinner {
|
|
5216
5215
|
var displayName: string;
|
|
5217
5216
|
}
|
|
@@ -5230,13 +5229,13 @@ type SplitButtonProps = Pick<ButtonProps, 'size'> & {
|
|
|
5230
5229
|
purpose?: SplitButtonPurpose;
|
|
5231
5230
|
} & ComponentPropsWithRef<'div'>;
|
|
5232
5231
|
declare const SplitButton: {
|
|
5233
|
-
({ size, primaryAction, secondaryActions, purpose, className, ...rest }: SplitButtonProps):
|
|
5232
|
+
({ size, primaryAction, secondaryActions, purpose, className, ...rest }: SplitButtonProps): react.JSX.Element;
|
|
5234
5233
|
displayName: string;
|
|
5235
5234
|
};
|
|
5236
5235
|
|
|
5237
5236
|
type TableBodyProps = ComponentPropsWithRef<'tbody'>;
|
|
5238
5237
|
declare const Body: {
|
|
5239
|
-
(props: TableBodyProps):
|
|
5238
|
+
(props: TableBodyProps): react.JSX.Element;
|
|
5240
5239
|
displayName: string;
|
|
5241
5240
|
};
|
|
5242
5241
|
|
|
@@ -5259,18 +5258,18 @@ type TableCellProps = {
|
|
|
5259
5258
|
collapsibleProps?: CollapsibleProps;
|
|
5260
5259
|
} & (ComponentPropsWithRef<'td'> | ComponentPropsWithRef<'th'>);
|
|
5261
5260
|
declare const Cell: {
|
|
5262
|
-
({ children, type: _type, layout, collapsibleProps, className, ...rest }: TableCellProps):
|
|
5261
|
+
({ children, type: _type, layout, collapsibleProps, className, ...rest }: TableCellProps): react.JSX.Element;
|
|
5263
5262
|
displayName: string;
|
|
5264
5263
|
};
|
|
5265
5264
|
|
|
5266
5265
|
type TableFootProps = ComponentPropsWithRef<'tfoot'>;
|
|
5267
5266
|
declare const Foot: {
|
|
5268
|
-
(props: TableFootProps):
|
|
5267
|
+
(props: TableFootProps): react.JSX.Element;
|
|
5269
5268
|
displayName: string;
|
|
5270
5269
|
};
|
|
5271
5270
|
|
|
5272
5271
|
type TableHeadProps = ComponentPropsWithRef<'thead'>;
|
|
5273
|
-
declare const Head: ({ children, ...rest }: TableHeadProps) =>
|
|
5272
|
+
declare const Head: ({ children, ...rest }: TableHeadProps) => react.JSX.Element;
|
|
5274
5273
|
|
|
5275
5274
|
type TableSize = Extract<Size, 'small' | 'medium' | 'large'>;
|
|
5276
5275
|
type TableProps = {
|
|
@@ -5312,7 +5311,7 @@ type TableRowProps = {
|
|
|
5312
5311
|
} & ComponentPropsWithRef<'tr'>;
|
|
5313
5312
|
|
|
5314
5313
|
declare const Row: {
|
|
5315
|
-
({ type: _type, mode, hoverable, selected, className, ...rest }: TableRowProps):
|
|
5314
|
+
({ type: _type, mode, hoverable, selected, className, ...rest }: TableRowProps): react.JSX.Element;
|
|
5316
5315
|
displayName: string;
|
|
5317
5316
|
};
|
|
5318
5317
|
|
|
@@ -5326,18 +5325,18 @@ type TableSortCellProps = {
|
|
|
5326
5325
|
onClick: (event: MouseEvent$1<HTMLButtonElement>) => void;
|
|
5327
5326
|
} & Omit<TableCellProps, 'type'>;
|
|
5328
5327
|
declare const SortCell: {
|
|
5329
|
-
({ isSorted, sortOrder, onClick, children, ...rest }: TableSortCellProps):
|
|
5328
|
+
({ isSorted, sortOrder, onClick, children, ...rest }: TableSortCellProps): react.JSX.Element;
|
|
5330
5329
|
displayName: string;
|
|
5331
5330
|
};
|
|
5332
5331
|
|
|
5333
5332
|
declare const Table$1: {
|
|
5334
|
-
({ size, stickyHeader, withDividers, withStripes, className, children, ...rest }: TableProps):
|
|
5333
|
+
({ size, stickyHeader, withDividers, withStripes, className, children, ...rest }: TableProps): react.JSX.Element;
|
|
5335
5334
|
displayName: string;
|
|
5336
5335
|
};
|
|
5337
5336
|
|
|
5338
5337
|
type TableWrapperProps = HTMLAttributes<HTMLDivElement>;
|
|
5339
5338
|
declare const TableWrapper: {
|
|
5340
|
-
({ className, ...rest }: TableWrapperProps):
|
|
5339
|
+
({ className, ...rest }: TableWrapperProps): react.JSX.Element;
|
|
5341
5340
|
displayName: string;
|
|
5342
5341
|
};
|
|
5343
5342
|
|
|
@@ -5353,7 +5352,7 @@ type TableCompoundProps = typeof Table$1 & {
|
|
|
5353
5352
|
declare const Table: TableCompoundProps;
|
|
5354
5353
|
|
|
5355
5354
|
declare const CollapsibleRow: {
|
|
5356
|
-
({ type: _type, className, mode, selected, hoverable, children, ref, ...rest }: TableRowProps):
|
|
5355
|
+
({ type: _type, className, mode, selected, hoverable, children, ref, ...rest }: TableRowProps): react.JSX.Element;
|
|
5357
5356
|
displayName: string;
|
|
5358
5357
|
};
|
|
5359
5358
|
|
|
@@ -5370,7 +5369,7 @@ type CollapsibleTableProps = {
|
|
|
5370
5369
|
} & TableProps;
|
|
5371
5370
|
|
|
5372
5371
|
declare const CollapsibleTable$1: {
|
|
5373
|
-
({ isCollapsed, headerValues, definingColumnIndex, ...rest }: CollapsibleTableProps):
|
|
5372
|
+
({ isCollapsed, headerValues, definingColumnIndex, ...rest }: CollapsibleTableProps): react.JSX.Element;
|
|
5374
5373
|
displayName: string;
|
|
5375
5374
|
};
|
|
5376
5375
|
|
|
@@ -5387,7 +5386,7 @@ type AddTabButtonProps = {
|
|
|
5387
5386
|
index?: number;
|
|
5388
5387
|
} & ComponentPropsWithRef<'button'>;
|
|
5389
5388
|
declare const AddTabButton: {
|
|
5390
|
-
({ ref, children, index, className, width, ...rest }: AddTabButtonProps):
|
|
5389
|
+
({ ref, children, index, className, width, ...rest }: AddTabButtonProps): react.JSX.Element;
|
|
5391
5390
|
displayName: string;
|
|
5392
5391
|
};
|
|
5393
5392
|
|
|
@@ -5408,7 +5407,7 @@ type TabsProps = BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
5408
5407
|
addTabButtonProps?: Omit<AddTabButtonProps, 'index'>;
|
|
5409
5408
|
} & Pick<ResponsiveProps, 'width'>, Omit<HTMLAttributes<HTMLDivElement>, 'onChange'>>;
|
|
5410
5409
|
declare const Tabs: {
|
|
5411
|
-
({ 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;
|
|
5412
5411
|
displayName: string;
|
|
5413
5412
|
};
|
|
5414
5413
|
|
|
@@ -5432,13 +5431,13 @@ type TabProps = BaseComponentPropsWithChildren<HTMLButtonElement, {
|
|
|
5432
5431
|
width?: CSS.Properties['width'];
|
|
5433
5432
|
} & PickedAttributes, Omit<ButtonHTMLAttributes<HTMLButtonElement>, keyof PickedAttributes>>;
|
|
5434
5433
|
declare const Tab: {
|
|
5435
|
-
({ 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;
|
|
5436
5435
|
displayName: string;
|
|
5437
5436
|
};
|
|
5438
5437
|
|
|
5439
5438
|
type TabListProps = ComponentPropsWithRef<'div'>;
|
|
5440
5439
|
declare const TabList: {
|
|
5441
|
-
({ children, id, style, onFocus, ref, ...rest }: TabListProps):
|
|
5440
|
+
({ children, id, style, onFocus, ref, ...rest }: TabListProps): react.JSX.Element;
|
|
5442
5441
|
displayName: string;
|
|
5443
5442
|
};
|
|
5444
5443
|
|
|
@@ -5451,13 +5450,13 @@ type TabPanelProps = BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
5451
5450
|
padding?: ResponsiveProps['padding'];
|
|
5452
5451
|
}>;
|
|
5453
5452
|
declare const TabPanel: {
|
|
5454
|
-
({ active, children, id, className, style, htmlProps, padding, ...rest }: TabPanelProps):
|
|
5453
|
+
({ active, children, id, className, style, htmlProps, padding, ...rest }: TabPanelProps): react.JSX.Element;
|
|
5455
5454
|
displayName: string;
|
|
5456
5455
|
};
|
|
5457
5456
|
|
|
5458
5457
|
type TabPanelsProps = Pick<ResponsiveProps, 'padding' | 'paddingBlock' | 'paddingInline'> & ComponentPropsWithRef<'div'>;
|
|
5459
5458
|
declare const TabPanels: {
|
|
5460
|
-
({ children, ref, ...rest }: TabPanelsProps):
|
|
5459
|
+
({ children, ref, ...rest }: TabPanelsProps): react.JSX.Element;
|
|
5461
5460
|
displayName: string;
|
|
5462
5461
|
};
|
|
5463
5462
|
|
|
@@ -5486,7 +5485,7 @@ type TagProps = BaseComponentProps<HTMLSpanElement, {
|
|
|
5486
5485
|
withIcon?: boolean;
|
|
5487
5486
|
}>;
|
|
5488
5487
|
declare const Tag: {
|
|
5489
|
-
({ purpose, appearance, id, className, style, children, htmlProps, withIcon, ...rest }: TagProps):
|
|
5488
|
+
({ purpose, appearance, id, className, style, children, htmlProps, withIcon, ...rest }: TagProps): react.JSX.Element;
|
|
5490
5489
|
displayName: string;
|
|
5491
5490
|
};
|
|
5492
5491
|
|
|
@@ -5497,7 +5496,7 @@ type TextAreaProps = CommonInputProps & {
|
|
|
5497
5496
|
withCharacterCounter?: boolean;
|
|
5498
5497
|
} & ComponentPropsWithRef<'textarea'>;
|
|
5499
5498
|
declare const TextArea: {
|
|
5500
|
-
({ 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;
|
|
5501
5500
|
displayName: string;
|
|
5502
5501
|
};
|
|
5503
5502
|
|
|
@@ -5518,7 +5517,7 @@ interface TextAffixProps {
|
|
|
5518
5517
|
}
|
|
5519
5518
|
|
|
5520
5519
|
declare const TextInput: {
|
|
5521
|
-
({ 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;
|
|
5522
5521
|
displayName: string;
|
|
5523
5522
|
};
|
|
5524
5523
|
|
|
@@ -5550,7 +5549,7 @@ type ToggleBarProps<T extends string | number> = BaseComponentPropsWithChildren<
|
|
|
5550
5549
|
}, InputHTMLAttributes<HTMLInputElement>>;
|
|
5551
5550
|
|
|
5552
5551
|
declare const ToggleBar: {
|
|
5553
|
-
<T extends string | number = string>(props: ToggleBarProps<T>):
|
|
5552
|
+
<T extends string | number = string>(props: ToggleBarProps<T>): react.JSX.Element;
|
|
5554
5553
|
displayName: string;
|
|
5555
5554
|
};
|
|
5556
5555
|
|
|
@@ -5561,7 +5560,7 @@ type ToggleRadioProps = BaseComponentProps<HTMLInputElement, {
|
|
|
5561
5560
|
icon?: SvgIcon;
|
|
5562
5561
|
} & Pick<InputHTMLAttributes<HTMLInputElement>, 'name' | 'checked' | 'value' | 'onChange' | 'aria-label' | 'aria-labelledby'>>;
|
|
5563
5562
|
declare const ToggleRadio: {
|
|
5564
|
-
({ 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;
|
|
5565
5564
|
displayName: string;
|
|
5566
5565
|
};
|
|
5567
5566
|
|
|
@@ -5578,7 +5577,7 @@ type ToggleButtonProps = BaseComponentProps<HTMLInputElement, {
|
|
|
5578
5577
|
} & CheckboxPickedHTMLAttributes, InputHTMLAttributes<HTMLInputElement>>;
|
|
5579
5578
|
|
|
5580
5579
|
declare const ToggleButton: {
|
|
5581
|
-
({ id, label, icon, size, className, style, htmlProps, ...rest }: ToggleButtonProps):
|
|
5580
|
+
({ id, label, icon, size, className, style, htmlProps, ...rest }: ToggleButtonProps): react.JSX.Element;
|
|
5582
5581
|
displayName: string;
|
|
5583
5582
|
};
|
|
5584
5583
|
|
|
@@ -5594,7 +5593,7 @@ type ToggleButtonGroupProps = BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
|
5594
5593
|
labelId?: string;
|
|
5595
5594
|
}>;
|
|
5596
5595
|
declare const ToggleButtonGroup: {
|
|
5597
|
-
(props: ToggleButtonGroupProps):
|
|
5596
|
+
(props: ToggleButtonGroupProps): react.JSX.Element;
|
|
5598
5597
|
displayName: string;
|
|
5599
5598
|
};
|
|
5600
5599
|
|
|
@@ -5621,13 +5620,13 @@ type TooltipProps = BaseComponentProps<HTMLDivElement, {
|
|
|
5621
5620
|
keepMounted?: boolean;
|
|
5622
5621
|
} & PickedHTMLAttributes, Omit<HTMLAttributes<HTMLDivElement>, 'children' | keyof PickedHTMLAttributes>>;
|
|
5623
5622
|
declare const Tooltip: {
|
|
5624
|
-
({ 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;
|
|
5625
5624
|
displayName: string;
|
|
5626
5625
|
};
|
|
5627
5626
|
|
|
5628
5627
|
type VisuallyHiddenProps<T extends ElementType = 'span'> = PolymorphicBaseComponentProps<T>;
|
|
5629
5628
|
declare const VisuallyHidden: {
|
|
5630
|
-
<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;
|
|
5631
5630
|
displayName: string;
|
|
5632
5631
|
};
|
|
5633
5632
|
|