@norges-domstoler/dds-components 0.0.0-dev-20260121140713 → 0.0.0-dev-20260121140924
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +165 -165
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +56 -82
- package/dist/index.d.ts +56 -82
- package/dist/index.js +1530 -1614
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1347 -1421
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as react from 'react';
|
|
3
|
-
import { ComponentPropsWithRef, ElementType, CSSProperties, Ref, ComponentPropsWithoutRef, HTMLAttributes, ReactNode, SVGAttributes, JSX, ButtonHTMLAttributes, MouseEventHandler, DependencyList, RefCallback, Dispatch, SetStateAction, ChangeEvent, RefObject, KeyboardEvent as KeyboardEvent$1,
|
|
3
|
+
import { ComponentPropsWithRef, ElementType, CSSProperties, Ref, ComponentPropsWithoutRef, HTMLAttributes, ReactNode, SVGAttributes, JSX, ButtonHTMLAttributes, ComponentProps, InputHTMLAttributes, MouseEventHandler, DependencyList, RefCallback, Dispatch, SetStateAction, ChangeEvent, RefObject, KeyboardEvent as KeyboardEvent$1, AnchorHTMLAttributes, LabelHTMLAttributes, AriaRole, FocusEvent, ForwardedRef, ForwardRefExoticComponent, MouseEvent as MouseEvent$1, ReactElement } from 'react';
|
|
4
4
|
import * as CSS from 'csstype';
|
|
5
5
|
import { Property, StandardProperties } from 'csstype';
|
|
6
6
|
import { Strategy, UseFloatingReturn, Placement as Placement$1 } from '@floating-ui/react-dom';
|
|
@@ -254,6 +254,45 @@ declare const Button: {
|
|
|
254
254
|
displayName: string;
|
|
255
255
|
};
|
|
256
256
|
|
|
257
|
+
declare const TOGGLE_SIZES: ["medium", "large"];
|
|
258
|
+
type ToggleSize = (typeof TOGGLE_SIZES)[number];
|
|
259
|
+
type ToggleProps = BaseComponentProps<HTMLElement, {
|
|
260
|
+
/**Ledetekst; tillater bruk av f.eks. `<VisuallyHidden>` for usynlig tekst. */
|
|
261
|
+
children?: ReactNode;
|
|
262
|
+
/**
|
|
263
|
+
* Callback som blir kalt når brukeren endrer toggle-verdien.
|
|
264
|
+
*/
|
|
265
|
+
onChange?: (checked: boolean) => void;
|
|
266
|
+
/**
|
|
267
|
+
* Om toggle er av eller på.
|
|
268
|
+
*/
|
|
269
|
+
checked?: boolean;
|
|
270
|
+
/**
|
|
271
|
+
* Den initielle verdien når komponenten brukes uncontrolled.
|
|
272
|
+
* @default false
|
|
273
|
+
*/
|
|
274
|
+
defaultChecked?: boolean;
|
|
275
|
+
/**Spesifiserer om input er `disabled`. */
|
|
276
|
+
disabled?: boolean;
|
|
277
|
+
/**
|
|
278
|
+
* Inputelementet blir `readonly` - den kan ikke interageres med. Brukes bl.a. til å presentere input brukeren har fylt ut andre steder.
|
|
279
|
+
*/
|
|
280
|
+
readOnly?: boolean;
|
|
281
|
+
/**
|
|
282
|
+
* Indikerer at verdien prosesseres; viser loading-tilstand og setter `disabled`.
|
|
283
|
+
*/
|
|
284
|
+
isLoading?: boolean;
|
|
285
|
+
/**
|
|
286
|
+
* Størrelse.
|
|
287
|
+
* @default "medium"
|
|
288
|
+
*/
|
|
289
|
+
size?: ToggleSize;
|
|
290
|
+
} & Pick<ComponentProps<'input'>, 'name' | 'aria-describedby' | 'onBlur'>, InputHTMLAttributes<HTMLInputElement>>;
|
|
291
|
+
declare const Toggle: {
|
|
292
|
+
({ id, children, size, checked: checkedProp, defaultChecked, onChange, disabled, readOnly, isLoading, className, style, htmlProps, ...rest }: ToggleProps): react_jsx_runtime.JSX.Element;
|
|
293
|
+
displayName: string;
|
|
294
|
+
};
|
|
295
|
+
|
|
257
296
|
type StylelessButtonProps<TProps extends object = object> = TProps & ComponentPropsWithRef<'button'>;
|
|
258
297
|
/**
|
|
259
298
|
* Normalisert `<button>` uten styling. Base for custom buttom styling.
|
|
@@ -273,12 +312,12 @@ type StylelessButtonProps<TProps extends object = object> = TProps & ComponentPr
|
|
|
273
312
|
*/
|
|
274
313
|
declare const StylelessButton: ({ className, ...rest }: StylelessButtonProps) => react_jsx_runtime.JSX.Element;
|
|
275
314
|
|
|
276
|
-
type DropdownItemT = 'span' | 'a' | typeof StylelessButton;
|
|
315
|
+
type DropdownItemT = 'span' | 'a' | typeof StylelessButton | typeof Toggle;
|
|
277
316
|
type DropdownItemButtonProps = {
|
|
278
317
|
/**Asynkron `onClick` event; håndterer loading status, slik at menyen ikke lukker seg under loading. */
|
|
279
318
|
onClickAsync?: MouseEventHandler<HTMLButtonElement>;
|
|
280
319
|
} & Pick<ButtonProps, 'loading' | 'loadingTooltip'>;
|
|
281
|
-
|
|
320
|
+
interface DropdownItemCustomProps<T extends DropdownItemT = 'span'> {
|
|
282
321
|
as?: T;
|
|
283
322
|
/**Ikon som vises ved teksten. **OBS!** Settes i tillegg til `children` for riktig layout. */
|
|
284
323
|
icon?: SvgIcon;
|
|
@@ -286,8 +325,9 @@ type DropdownItemProps<T extends DropdownItemT = 'span'> = {
|
|
|
286
325
|
* @default "default"
|
|
287
326
|
*/
|
|
288
327
|
purpose?: 'default' | 'danger';
|
|
289
|
-
}
|
|
290
|
-
|
|
328
|
+
}
|
|
329
|
+
type DropdownItemProps<T extends DropdownItemT = 'span'> = DropdownItemCustomProps<T> & DropdownItemButtonProps & (T extends typeof StylelessButton ? StylelessButtonProps : ComponentPropsWithRef<T>);
|
|
330
|
+
declare const DropdownItem: <T extends DropdownItemT = "span">({ icon, className, children: propChildren, purpose, loading, loadingTooltip, ...rest }: DropdownItemProps<T>) => react_jsx_runtime.JSX.Element;
|
|
291
331
|
|
|
292
332
|
type DropdownHeaderProps = ComponentPropsWithRef<'h2'>;
|
|
293
333
|
declare const DropdownHeader: ({ className, ...rest }: DropdownHeaderProps) => react_jsx_runtime.JSX.Element;
|
|
@@ -1006,8 +1046,6 @@ declare function BookIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
|
1006
1046
|
|
|
1007
1047
|
declare function BuildIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
1008
1048
|
|
|
1009
|
-
declare function BuildCircledIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
1010
|
-
|
|
1011
1049
|
declare function CalendarIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
1012
1050
|
|
|
1013
1051
|
declare function CalendarMonthIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
@@ -1034,10 +1072,6 @@ declare function ChevronDownIcon(props: SvgProps): react_jsx_runtime.JSX.Element
|
|
|
1034
1072
|
|
|
1035
1073
|
declare function ChevronFirstIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
1036
1074
|
|
|
1037
|
-
declare function ChevronLargeLeftIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
1038
|
-
|
|
1039
|
-
declare function ChevronLargeRightIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
1040
|
-
|
|
1041
1075
|
declare function ChevronLastIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
1042
1076
|
|
|
1043
1077
|
declare function ChevronLeftIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
@@ -1102,10 +1136,6 @@ declare function FilterIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
|
1102
1136
|
|
|
1103
1137
|
declare function FilterListIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
1104
1138
|
|
|
1105
|
-
declare function FilterListOffIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
1106
|
-
|
|
1107
|
-
declare function FilterOffIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
1108
|
-
|
|
1109
1139
|
declare function FindInPageIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
1110
1140
|
|
|
1111
1141
|
declare function FlickrIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
@@ -1130,16 +1160,8 @@ declare function HelpFilledIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
|
1130
1160
|
|
|
1131
1161
|
declare function HomeIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
1132
1162
|
|
|
1133
|
-
declare function HourglassBottomIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
1134
|
-
|
|
1135
|
-
declare function HourglassDisabledIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
1136
|
-
|
|
1137
1163
|
declare function HourglassEmptyIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
1138
1164
|
|
|
1139
|
-
declare function HourglassFullIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
1140
|
-
|
|
1141
|
-
declare function HourglassTopIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
1142
|
-
|
|
1143
1165
|
declare function ImageIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
1144
1166
|
|
|
1145
1167
|
declare function InfoIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
@@ -1220,8 +1242,6 @@ declare function PowerOfAttorneyIcon(props: SvgProps): react_jsx_runtime.JSX.Ele
|
|
|
1220
1242
|
|
|
1221
1243
|
declare function PrintIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
1222
1244
|
|
|
1223
|
-
declare function PropertyIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
1224
|
-
|
|
1225
1245
|
declare function PublishIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
1226
1246
|
|
|
1227
1247
|
declare function QuestionAnswerIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
@@ -1300,8 +1320,6 @@ declare function TrendingUpIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
|
1300
1320
|
|
|
1301
1321
|
declare function TrendingDownIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
1302
1322
|
|
|
1303
|
-
declare function LibraryAddIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
1304
|
-
|
|
1305
1323
|
declare function HelpSimpleIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
1306
1324
|
|
|
1307
1325
|
declare const STATES: readonly ["up", "down"];
|
|
@@ -1328,7 +1346,6 @@ declare const index_BarChartBoxedIcon: typeof BarChartBoxedIcon;
|
|
|
1328
1346
|
declare const index_BarChartIcon: typeof BarChartIcon;
|
|
1329
1347
|
declare const index_BlockIcon: typeof BlockIcon;
|
|
1330
1348
|
declare const index_BookIcon: typeof BookIcon;
|
|
1331
|
-
declare const index_BuildCircledIcon: typeof BuildCircledIcon;
|
|
1332
1349
|
declare const index_BuildIcon: typeof BuildIcon;
|
|
1333
1350
|
declare const index_CalendarIcon: typeof CalendarIcon;
|
|
1334
1351
|
declare const index_CalendarMonthIcon: typeof CalendarMonthIcon;
|
|
@@ -1343,8 +1360,6 @@ declare const index_CheckIcon: typeof CheckIcon;
|
|
|
1343
1360
|
declare const index_ChecklistIcon: typeof ChecklistIcon;
|
|
1344
1361
|
declare const index_ChevronDownIcon: typeof ChevronDownIcon;
|
|
1345
1362
|
declare const index_ChevronFirstIcon: typeof ChevronFirstIcon;
|
|
1346
|
-
declare const index_ChevronLargeLeftIcon: typeof ChevronLargeLeftIcon;
|
|
1347
|
-
declare const index_ChevronLargeRightIcon: typeof ChevronLargeRightIcon;
|
|
1348
1363
|
declare const index_ChevronLastIcon: typeof ChevronLastIcon;
|
|
1349
1364
|
declare const index_ChevronLeftIcon: typeof ChevronLeftIcon;
|
|
1350
1365
|
declare const index_ChevronRightIcon: typeof ChevronRightIcon;
|
|
@@ -1377,8 +1392,6 @@ declare const index_FileShieldedIcon: typeof FileShieldedIcon;
|
|
|
1377
1392
|
declare const index_FileTextIcon: typeof FileTextIcon;
|
|
1378
1393
|
declare const index_FilterIcon: typeof FilterIcon;
|
|
1379
1394
|
declare const index_FilterListIcon: typeof FilterListIcon;
|
|
1380
|
-
declare const index_FilterListOffIcon: typeof FilterListOffIcon;
|
|
1381
|
-
declare const index_FilterOffIcon: typeof FilterOffIcon;
|
|
1382
1395
|
declare const index_FindInPageIcon: typeof FindInPageIcon;
|
|
1383
1396
|
declare const index_FlickrIcon: typeof FlickrIcon;
|
|
1384
1397
|
declare const index_FolderAddIcon: typeof FolderAddIcon;
|
|
@@ -1392,11 +1405,7 @@ declare const index_HelpFilledIcon: typeof HelpFilledIcon;
|
|
|
1392
1405
|
declare const index_HelpIcon: typeof HelpIcon;
|
|
1393
1406
|
declare const index_HelpSimpleIcon: typeof HelpSimpleIcon;
|
|
1394
1407
|
declare const index_HomeIcon: typeof HomeIcon;
|
|
1395
|
-
declare const index_HourglassBottomIcon: typeof HourglassBottomIcon;
|
|
1396
|
-
declare const index_HourglassDisabledIcon: typeof HourglassDisabledIcon;
|
|
1397
1408
|
declare const index_HourglassEmptyIcon: typeof HourglassEmptyIcon;
|
|
1398
|
-
declare const index_HourglassFullIcon: typeof HourglassFullIcon;
|
|
1399
|
-
declare const index_HourglassTopIcon: typeof HourglassTopIcon;
|
|
1400
1409
|
declare const index_ImageIcon: typeof ImageIcon;
|
|
1401
1410
|
declare const index_InfoIcon: typeof InfoIcon;
|
|
1402
1411
|
declare const index_InstagramIcon: typeof InstagramIcon;
|
|
@@ -1405,7 +1414,6 @@ declare const index_JordskiftesakIcon: typeof JordskiftesakIcon;
|
|
|
1405
1414
|
declare const index_KeyIcon: typeof KeyIcon;
|
|
1406
1415
|
declare const index_LagmannsrettIcon: typeof LagmannsrettIcon;
|
|
1407
1416
|
declare const index_LanguageIcon: typeof LanguageIcon;
|
|
1408
|
-
declare const index_LibraryAddIcon: typeof LibraryAddIcon;
|
|
1409
1417
|
declare const index_LineChartIcon: typeof LineChartIcon;
|
|
1410
1418
|
declare const index_LinkIcon: typeof LinkIcon;
|
|
1411
1419
|
declare const index_LinkOffIcon: typeof LinkOffIcon;
|
|
@@ -1439,7 +1447,6 @@ declare const index_PlusCircledIcon: typeof PlusCircledIcon;
|
|
|
1439
1447
|
declare const index_PlusIcon: typeof PlusIcon;
|
|
1440
1448
|
declare const index_PowerOfAttorneyIcon: typeof PowerOfAttorneyIcon;
|
|
1441
1449
|
declare const index_PrintIcon: typeof PrintIcon;
|
|
1442
|
-
declare const index_PropertyIcon: typeof PropertyIcon;
|
|
1443
1450
|
declare const index_PublishIcon: typeof PublishIcon;
|
|
1444
1451
|
declare const index_QuestionAnswerIcon: typeof QuestionAnswerIcon;
|
|
1445
1452
|
declare const index_ReceiptIcon: typeof ReceiptIcon;
|
|
@@ -1477,7 +1484,7 @@ declare const index_XIcon: typeof XIcon;
|
|
|
1477
1484
|
declare const index_ZoomInIcon: typeof ZoomInIcon;
|
|
1478
1485
|
declare const index_ZoomOutIcon: typeof ZoomOutIcon;
|
|
1479
1486
|
declare namespace index {
|
|
1480
|
-
export { index_AddressShieldedIcon as AddressShieldedIcon, index_AgreementIcon as AgreementIcon, index_AnimatedChevronUpDownIcon as AnimatedChevronUpDownIcon, type index_AnimatedChevronUpDownIconStates as AnimatedChevronUpDownIconStates, index_AppsIcon as AppsIcon, index_ArchiveIcon as ArchiveIcon, index_ArrowDownIcon as ArrowDownIcon, index_ArrowLeftIcon as ArrowLeftIcon, index_ArrowRightIcon as ArrowRightIcon, index_ArrowUpIcon as ArrowUpIcon, index_AttachmentIcon as AttachmentIcon, index_BarChartBoxedIcon as BarChartBoxedIcon, index_BarChartIcon as BarChartIcon, index_BlockIcon as BlockIcon, index_BookIcon as BookIcon,
|
|
1487
|
+
export { index_AddressShieldedIcon as AddressShieldedIcon, index_AgreementIcon as AgreementIcon, index_AnimatedChevronUpDownIcon as AnimatedChevronUpDownIcon, type index_AnimatedChevronUpDownIconStates as AnimatedChevronUpDownIconStates, index_AppsIcon as AppsIcon, index_ArchiveIcon as ArchiveIcon, index_ArrowDownIcon as ArrowDownIcon, index_ArrowLeftIcon as ArrowLeftIcon, index_ArrowRightIcon as ArrowRightIcon, index_ArrowUpIcon as ArrowUpIcon, index_AttachmentIcon as AttachmentIcon, index_BarChartBoxedIcon as BarChartBoxedIcon, index_BarChartIcon as BarChartIcon, index_BlockIcon as BlockIcon, index_BookIcon as BookIcon, index_BuildIcon as BuildIcon, index_CalendarIcon as CalendarIcon, index_CalendarMonthIcon as CalendarMonthIcon, index_CalendarViewDayIcon as CalendarViewDayIcon, index_CalendarViewMonthIcon as CalendarViewMonthIcon, index_CalendarViewWeekIcon as CalendarViewWeekIcon, index_CallIcon as CallIcon, index_CaringIcon as CaringIcon, index_ChatIcon as ChatIcon, index_CheckCircledIcon as CheckCircledIcon, index_CheckIcon as CheckIcon, index_ChecklistIcon as ChecklistIcon, index_ChevronDownIcon as ChevronDownIcon, index_ChevronFirstIcon as ChevronFirstIcon, index_ChevronLastIcon as ChevronLastIcon, index_ChevronLeftIcon as ChevronLeftIcon, index_ChevronRightIcon as ChevronRightIcon, index_ChevronUpIcon as ChevronUpIcon, index_CloseCircledIcon as CloseCircledIcon, index_CloseIcon as CloseIcon, index_CloseSmallIcon as CloseSmallIcon, index_CloudIcon as CloudIcon, index_CollapseIcon as CollapseIcon, index_CommentIcon as CommentIcon, index_CopyIcon as CopyIcon, index_CourtIcon as CourtIcon, index_DateRangeIcon as DateRangeIcon, index_DeathsIcon as DeathsIcon, index_DoubleChevronLeftIcon as DoubleChevronLeftIcon, index_DoubleChevronRightIcon as DoubleChevronRightIcon, index_DownloadDoneIcon as DownloadDoneIcon, index_DownloadIcon as DownloadIcon, index_DragHandleIcon as DragHandleIcon, index_EditIcon as EditIcon, index_ErrorIcon as ErrorIcon, index_ExclaimIcon as ExclaimIcon, index_ExpandIcon as ExpandIcon, index_FacebookIcon as FacebookIcon, index_FamilyIcon as FamilyIcon, index_FeedbackIcon as FeedbackIcon, index_FileAddIcon as FileAddIcon, index_FileIcon as FileIcon, index_FileShieldedIcon as FileShieldedIcon, index_FileTextIcon as FileTextIcon, index_FilterIcon as FilterIcon, index_FilterListIcon as FilterListIcon, index_FindInPageIcon as FindInPageIcon, index_FlickrIcon as FlickrIcon, index_FolderAddIcon as FolderAddIcon, index_FolderIcon as FolderIcon, index_FolderShieldedIcon as FolderShieldedIcon, index_FullscreenExitIcon as FullscreenExitIcon, index_FullscreenIcon as FullscreenIcon, index_GavelIcon as GavelIcon, index_GuardianIcon as GuardianIcon, index_HelpFilledIcon as HelpFilledIcon, index_HelpIcon as HelpIcon, index_HelpSimpleIcon as HelpSimpleIcon, index_HomeIcon as HomeIcon, index_HourglassEmptyIcon as HourglassEmptyIcon, index_ImageIcon as ImageIcon, index_InfoIcon as InfoIcon, index_InstagramIcon as InstagramIcon, index_JordskifterettIcon as JordskifterettIcon, index_JordskiftesakIcon as JordskiftesakIcon, index_KeyIcon as KeyIcon, index_LagmannsrettIcon as LagmannsrettIcon, index_LanguageIcon as LanguageIcon, index_LineChartIcon as LineChartIcon, index_LinkIcon as LinkIcon, index_LinkOffIcon as LinkOffIcon, index_LinkedInIcon as LinkedInIcon, index_ListAltIcon as ListAltIcon, index_ListIcon as ListIcon, index_LocationIcon as LocationIcon, index_LockIcon as LockIcon, index_LockOpenIcon as LockOpenIcon, index_LoginIcon as LoginIcon, index_LogoutIcon as LogoutIcon, index_MailIcon as MailIcon, index_MailOpenIcon as MailOpenIcon, index_MenuIcon as MenuIcon, index_MinusCirledIcon as MinusCirledIcon, index_MinusIcon as MinusIcon, index_MoreHorizontalIcon as MoreHorizontalIcon, index_MoreVerticalIcon as MoreVerticalIcon, index_NotarialIcon as NotarialIcon, index_NotificationsIcon as NotificationsIcon, index_NotificationsOffIcon as NotificationsOffIcon, index_OnlineMeetingIcon as OnlineMeetingIcon, index_OpenExternalIcon as OpenExternalIcon, index_PayoutIcon as PayoutIcon, index_PdfIcon as PdfIcon, index_PersonAddIcon as PersonAddIcon, index_PersonIcon as PersonIcon, index_PersonShieldedIcon as PersonShieldedIcon, index_PinIcon as PinIcon, index_PlusCircledIcon as PlusCircledIcon, index_PlusIcon as PlusIcon, index_PowerOfAttorneyIcon as PowerOfAttorneyIcon, index_PrintIcon as PrintIcon, index_PublishIcon as PublishIcon, index_QuestionAnswerIcon as QuestionAnswerIcon, index_ReceiptIcon as ReceiptIcon, index_RedoIcon as RedoIcon, index_RefreshIcon as RefreshIcon, index_ReplayIcon as ReplayIcon, index_ScaleIcon as ScaleIcon, index_SearchIcon as SearchIcon, index_SectionIcon as SectionIcon, index_SettingsIcon as SettingsIcon, index_SmsIcon as SmsIcon, index_StarFilledIcon as StarFilledIcon, index_StarHalfFilled as StarHalfFilled, index_StarIcon as StarIcon, index_SyncIcon as SyncIcon, index_ThumbDownFilledIcon as ThumbDownFilledIcon, index_ThumbDownIcon as ThumbDownIcon, index_ThumbUpFilledIcon as ThumbUpFilledIcon, index_ThumbUpIcon as ThumbUpIcon, index_TimeIcon as TimeIcon, index_TingrettIcon as TingrettIcon, index_TipIcon as TipIcon, index_TrashIcon as TrashIcon, index_TrendingDownIcon as TrendingDownIcon, index_TrendingUpIcon as TrendingUpIcon, index_UndoIcon as UndoIcon, index_UnfoldLessIcon as UnfoldLessIcon, index_UnfoldMoreIcon as UnfoldMoreIcon, index_UploadIcon as UploadIcon, index_VisibilityOffIcon as VisibilityOffIcon, index_VisibilityOnIcon as VisibilityOnIcon, index_WarningIcon as WarningIcon, index_WebexIcon as WebexIcon, index_XIcon as XIcon, index_ZoomInIcon as ZoomInIcon, index_ZoomOutIcon as ZoomOutIcon };
|
|
1481
1488
|
}
|
|
1482
1489
|
|
|
1483
1490
|
type DdsTheme = keyof typeof ddsTokens;
|
|
@@ -4362,9 +4369,10 @@ declare const OverflowMenu: {
|
|
|
4362
4369
|
displayName: string;
|
|
4363
4370
|
};
|
|
4364
4371
|
|
|
4365
|
-
type OverflowMenuButtonProps = DropdownItemProps<typeof StylelessButton>;
|
|
4366
|
-
type OverflowMenuLinkProps = Omit<DropdownItemProps<'a'>, keyof DropdownItemButtonProps>;
|
|
4367
|
-
type OverflowMenuSpanProps = Omit<DropdownItemProps<'span'>, keyof DropdownItemButtonProps>;
|
|
4372
|
+
type OverflowMenuButtonProps = Omit<DropdownItemProps<typeof StylelessButton>, 'as'>;
|
|
4373
|
+
type OverflowMenuLinkProps = Omit<DropdownItemProps<'a'>, keyof DropdownItemButtonProps | 'as'>;
|
|
4374
|
+
type OverflowMenuSpanProps = Omit<DropdownItemProps<'span'>, keyof DropdownItemButtonProps | 'as'>;
|
|
4375
|
+
type OverflowMenuToggleProps = Omit<DropdownItemProps<typeof Toggle>, keyof DropdownItemButtonProps | 'as' | 'purpose' | 'icon'>;
|
|
4368
4376
|
type OverflowMenuProps = Omit<BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
4369
4377
|
/**Plassering av menyen i forhold til anchor-elementet.
|
|
4370
4378
|
* @default "bottom-end"
|
|
@@ -4386,6 +4394,11 @@ declare const OverflowMenuLink: {
|
|
|
4386
4394
|
displayName: string;
|
|
4387
4395
|
};
|
|
4388
4396
|
|
|
4397
|
+
declare const OverflowMenuToggle: {
|
|
4398
|
+
({ ref, ...rest }: OverflowMenuToggleProps): react_jsx_runtime.JSX.Element;
|
|
4399
|
+
displayName: string;
|
|
4400
|
+
};
|
|
4401
|
+
|
|
4389
4402
|
type OverflowMenuDividerProps = Omit<DividerProps, 'color'>;
|
|
4390
4403
|
declare const OverflowMenuDivider: {
|
|
4391
4404
|
({ id, className, style, htmlProps, ...rest }: OverflowMenuDividerProps): react_jsx_runtime.JSX.Element;
|
|
@@ -5153,45 +5166,6 @@ declare const TextInput: {
|
|
|
5153
5166
|
displayName: string;
|
|
5154
5167
|
};
|
|
5155
5168
|
|
|
5156
|
-
declare const TOGGLE_SIZES: ["medium", "large"];
|
|
5157
|
-
type ToggleSize = (typeof TOGGLE_SIZES)[number];
|
|
5158
|
-
type ToggleProps = BaseComponentProps<HTMLElement, {
|
|
5159
|
-
/**Ledetekst; tillater bruk av f.eks. `<VisuallyHidden>` for usynlig tekst. */
|
|
5160
|
-
children?: ReactNode;
|
|
5161
|
-
/**
|
|
5162
|
-
* Callback som blir kalt når brukeren endrer toggle-verdien.
|
|
5163
|
-
*/
|
|
5164
|
-
onChange?: (checked: boolean) => void;
|
|
5165
|
-
/**
|
|
5166
|
-
* Om toggle er av eller på.
|
|
5167
|
-
*/
|
|
5168
|
-
checked?: boolean;
|
|
5169
|
-
/**
|
|
5170
|
-
* Den initielle verdien når komponenten brukes uncontrolled.
|
|
5171
|
-
* @default false
|
|
5172
|
-
*/
|
|
5173
|
-
defaultChecked?: boolean;
|
|
5174
|
-
/**Spesifiserer om input er `disabled`. */
|
|
5175
|
-
disabled?: boolean;
|
|
5176
|
-
/**
|
|
5177
|
-
* Inputelementet blir `readonly` - den kan ikke interageres med. Brukes bl.a. til å presentere input brukeren har fylt ut andre steder.
|
|
5178
|
-
*/
|
|
5179
|
-
readOnly?: boolean;
|
|
5180
|
-
/**
|
|
5181
|
-
* Indikerer at verdien prosesseres; viser loading-tilstand og setter `disabled`.
|
|
5182
|
-
*/
|
|
5183
|
-
isLoading?: boolean;
|
|
5184
|
-
/**
|
|
5185
|
-
* Størrelse.
|
|
5186
|
-
* @default "medium"
|
|
5187
|
-
*/
|
|
5188
|
-
size?: ToggleSize;
|
|
5189
|
-
} & Pick<ComponentProps<'input'>, 'name' | 'aria-describedby' | 'onBlur'>, InputHTMLAttributes<HTMLInputElement>>;
|
|
5190
|
-
declare const Toggle: {
|
|
5191
|
-
({ id, children, size, checked: checkedProp, defaultChecked, onChange, disabled, readOnly, isLoading, className, style, htmlProps, ...rest }: ToggleProps): react_jsx_runtime.JSX.Element;
|
|
5192
|
-
displayName: string;
|
|
5193
|
-
};
|
|
5194
|
-
|
|
5195
5169
|
type ToggleBarValue = string | number | null | undefined;
|
|
5196
5170
|
declare const TOGGLE_BAR_SIZES: ["xsmall", "small", "medium", "large"];
|
|
5197
5171
|
type ToggleBarSize = (typeof TOGGLE_BAR_SIZES)[number];
|
|
@@ -5295,4 +5269,4 @@ declare const VisuallyHidden: {
|
|
|
5295
5269
|
displayName: string;
|
|
5296
5270
|
};
|
|
5297
5271
|
|
|
5298
|
-
export { Accordion, AccordionBody, type AccordionBodyProps, AccordionHeader, type AccordionHeaderProps, type AccordionProps, AddTabButton, type AddTabButtonProps, AddressShieldedIcon, AgreementIcon, AnimatedChevronUpDownIcon, type AnimatedChevronUpDownIconStates, AppsIcon, ArchiveIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AttachmentIcon, BORDER_COLORS, BORDER_RADII, BackLink, type BackLinkProps, Backdrop, BarChartBoxedIcon, BarChartIcon, type BaseComponentProps, type BaseComponentPropsWithChildren, type BaseItemProps, type BaseLabelProps, type BaseTypographyProps, BlockIcon, BookIcon, type BorderColor, type BorderRadius, Box, type BoxProps, Breadcrumb, type BreadcrumbProps, Breadcrumbs, type BreadcrumbsProps, type Breakpoint, BuildCircledIcon, BuildIcon, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, type ButtonPurpose, type ButtonSize, Calendar, CalendarIcon, CalendarMonthIcon, type CalendarProps, CalendarViewDayIcon, CalendarViewMonthIcon, CalendarViewWeekIcon, CallIcon, type Callback, Caption, type CaptionProps, Card, CardExpandable, CardExpandableBody, type CardExpandableBodyProps, CardExpandableHeader, type CardExpandableHeaderProps, type CardExpandableProps, type CardProps, CardSelectable, CardSelectableGroup, type CardSelectableGroupProps, type CardSelectableProps, CaringIcon, ChatIcon, CheckCircledIcon, CheckIcon, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxPickedHTMLAttributes, type CheckboxProps, ChecklistIcon, ChevronDownIcon, ChevronFirstIcon, ChevronLargeLeftIcon, ChevronLargeRightIcon, ChevronLastIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, Chip, ChipGroup, type ChipGroupProps, type ChipProps, CloseCircledIcon, CloseIcon, CloseSmallIcon, CloudIcon, CollapseIcon, CollapsibleTable, type CollapsibleTableProps, CollapsibleRow as CollapsibleTableRow, type ColumnsOccupied, CommentIcon, Contrast, type ContrastProps, CookieBanner, CookieBannerCheckbox, type CookieBannerCheckboxProps, type CookieBannerProps, CopyIcon, CourtIcon, DatePicker, type DatePickerProps, DateRangeIcon, DdsProvider, type DdsProviderProps, DeathsIcon, DescriptionList, type DescriptionListAppearance, DescriptionListDesc, type DescriptionListDescProps, DescriptionListGroup, type DescriptionListGroupProps, type DescriptionListProps, DescriptionListTerm, type DescriptionListTermProps, DetailList, DetailListDesc, type DetailListDescProps, type DetailListProps, DetailListRow, type DetailListRowProps, type DetailListSize, DetailListTerm, type DetailListTermProps, type Direction$1 as Direction, Divider, type DividerColor, type DividerProps, DoubleChevronLeftIcon, DoubleChevronRightIcon, DownloadDoneIcon, DownloadIcon, DragHandleIcon, Drawer, DrawerGroup, type DrawerGroupProps, type DrawerPlacement, type DrawerProps, type DrawerSize, DropdownHeader, DropdownItem, type DropdownItemButtonProps, type DropdownItemProps, ELEVATIONS, EditIcon, ElementAs, type Elevation, EmptyContent, type EmptyContentProps, ErrorIcon, ExclaimIcon, ExpandIcon, type ExtractStrict, FacebookIcon, FamilyIcon, FavStar, type FavStarProps, Feedback, FeedbackIcon, type FeedbackProps, Fieldset, FieldsetGroup, type FieldsetGroupProps, type FieldsetProps, FileAddIcon, FileIcon, type FileList, FileShieldedIcon, FileTextIcon, FileUploader, type FileUploaderAccept, type FileUploaderProps, FilterIcon, FilterListIcon, FilterListOffIcon, FilterOffIcon, FindInPageIcon, FlickrIcon, type FloatingStyles, FolderAddIcon, FolderIcon, FolderShieldedIcon, Footer, FooterLeft, type FooterLeftProps, FooterList, FooterListGroup, type FooterListGroupProps, FooterListHeader, type FooterListHeaderProps, type FooterListProps, FooterLogo, type FooterLogoProps, type FooterProps, FooterSocialsGroup, type FooterSocialsGroupProps, FooterSocialsList, type FooterSocialsListProps, FormSummary, FormSummaryEditButton, FormSummaryEmptyValue, FormSummaryError, FormSummaryField, FormSummaryFields, FormSummaryHeader, FormSummaryHeading, FormSummaryLabel, type FormSummaryProps, FormSummaryValue, FullscreenExitIcon, FullscreenIcon, GavelIcon, GlobalMessage, type GlobalMessageProps, type GlobalMessagePurpose, Grid, GridChild, type GridChildProps, type GridProps, GuardianIcon, HStack, type HStackProps, Heading, type HeadingLevel, type HeadingProps, HelpFilledIcon, HelpIcon, HelpSimpleIcon, HiddenInput, HomeIcon, HourglassBottomIcon, HourglassDisabledIcon, HourglassEmptyIcon, HourglassFullIcon, HourglassTopIcon, type HyphenTypographyType, Icon, type IconPosition, type IconProps, type IconSize, ImageIcon, InfoIcon, InlineButton, type InlineButtonProps, InlineEditInput, type InlineEditInputProps, InlineEditSelect, type InlineEditSelectProps, InlineEditTextArea, type InlineEditTextAreaProps, type InlineElement, InputMessage, type InputMessageProps, type InputMessageType, InstagramIcon, InternalHeader, type InternalHeaderProps, JordskifterettIcon, JordskiftesakIcon, KeyIcon, L_MESSAGE_PURPOSES, Label, type LabelProps, LagmannsrettIcon, LanguageIcon, type Layout, Legend, type LegendProps, LibraryAddIcon, LineChartIcon, Link, LinkIcon, LinkOffIcon, type LinkProps, LinkedInIcon, List, ListAltIcon, ListIcon, ListItem, type ListItemProps, type ListProps, type ListType, type ListTypographyType, LocalMessage, type LocalMessageLayout, type LocalMessageProps, type LocalMessagePurpose, LocationIcon, LockIcon, LockOpenIcon, LoginIcon, LogoutIcon, MailIcon, MailOpenIcon, MenuIcon, MinusCirledIcon, MinusIcon, Modal, ModalActions, type ModalActionsProps, ModalBody, type ModalBodyProps, type ModalProps, MoreHorizontalIcon, MoreVerticalIcon, NativeSelect, type NativeSelectProps, NotarialIcon, NotificationsIcon, NotificationsOffIcon, type Nullable, OnlineMeetingIcon, OpenExternalIcon, type OtherTypographyType, OverflowMenu, OverflowMenuButton, type OverflowMenuButtonProps, OverflowMenuDivider, OverflowMenuGroup, type OverflowMenuGroupProps, OverflowMenuLink, type OverflowMenuLinkProps, OverflowMenuList, OverflowMenuListHeader, type OverflowMenuProps, OverflowMenuSpan, type OverflowMenuSpanProps, Pagination, type PaginationOption, type PaginationProps, Paper, type PaperBackground, type PaperBorder, type PaperBorderRadius, type PaperElevation, type PaperProps, Paragraph, type ParagraphProps, PayoutIcon, PdfIcon, PersonAddIcon, PersonIcon, PersonShieldedIcon, PhoneInput, type PhoneInputProps, type PhoneInputValue, PinIcon, type Placement, PlusCircledIcon, PlusIcon, type PolymorphicBaseComponentProps, type PolymorphicProps, Popover, PopoverGroup, type PopoverGroupProps, type PopoverProps, type PopoverSizeProps, PowerOfAttorneyIcon, PrintIcon, ProgressBar, type ProgressBarProps, type ProgressBarSize, ProgressTracker, ProgressTrackerItem, type ProgressTrackerItemProps, type ProgressTrackerProps, PropertyIcon, PublishIcon, type Purpose, QuestionAnswerIcon, RadioButton, RadioButtonGroup, type RadioButtonGroupProps, type RadioButtonProps, type RadioValue, type Rating, ReceiptIcon, RedoIcon, RefreshIcon, type RemoteFile, ReplayIcon, type ResponsiveProps, type ResponsiveStackProps, ScaleIcon, ScreenSize, Search, SearchAutocompleteWrapper, type SearchAutocompleteWrapperProps, type SearchButtonProps, type SearchData, SearchIcon, type SearchProps, type SearchSize, SearchSuggestions, type SearchSuggestionsProps, SectionIcon, Select, type SelectForwardRefType, type SelectOption, type SelectProps, SettingsIcon, ShowHide, type ShowHideProps, type Size, Skeleton, type SkeletonAppearance, type SkeletonProps, SkipToContent, type SkipToContentProps, SmsIcon, type SortOrder, type SpacingScale, Spinner, type SpinnerProps, SplitButton, type SplitButtonPrimaryActionProps, type SplitButtonProps, type SplitButtonPurpose, type SplitButtonSecondaryActionsProps, StarFilledIcon, StarHalfFilled, StarIcon, type StaticTypographyType, StylelessButton, type StylelessButtonProps, StylelessList, type StylelessListProps, StylelessOList, type StylelessOListProps, type SvgIcon, type SvgProps, SyncIcon, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, TabPanels, type TabPanelsProps, type TabProps, type TabSize, Table, Body as TableBody, type TableBodyProps, Cell as TableCell, type TableCellLayout, type TableCellProps, type TableCellType, Foot as TableFoot, type TableFootProps, Head as TableHead, type TableHeadProps, type TableProps, Row as TableRow, type TableRowProps, type TableRowType, type TableSize, SortCell as TableSortCell, type TableSortCellProps, TableWrapper, Tabs, type TabsProps, Tag, type TagAppearance, type TagProps, type TagPurpose, type TextAffixProps, TextArea, type TextAreaProps, TextInput, type TextInputProps, TextOverflowEllipsisInner, TextOverflowEllipsisWrapper, ThumbDownFilledIcon, ThumbDownIcon, ThumbUpFilledIcon, ThumbUpIcon, TimeIcon, TimePicker, type TimePickerProps, TingrettIcon, TipIcon, Toggle, ToggleBar, type ToggleBarProps, type ToggleBarSize, type ToggleBarValue, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, type ToggleProps, ToggleRadio, type ToggleRadioProps, type ToggleSize, Tooltip, type TooltipProps, TrashIcon, TrendingDownIcon, TrendingUpIcon, Typography, type TypographyAnchorType, type TypographyBodyLongType, type TypographyBodyShortType, type TypographyBodyType, type TypographyComponentProps, type TypographyHeadingType, type TypographyLabelType, type TypographyLeadType, type TypographyProps, type TypographyType, UndoIcon, UnfoldLessIcon, UnfoldMoreIcon, UploadIcon, type UseControllableGroupStateProps, type UseControllableStateProps, type UseFloatPositionOptions, VStack, type VStackProps, VisibilityOffIcon, VisibilityOnIcon, VisuallyHidden, type VisuallyHiddenProps, WarningIcon, WebexIcon, type WeightedSearchData, type WithRequiredIf, XIcon, ZoomInIcon, ZoomOutIcon, calendarDateToNativeDate, cn, countryOptions, createPurposes, createSelectOptions, createSizes, dateValueToNativeDate, focusVisible, focusVisibleInset, focusVisibleTransitionValue, getBaseHTMLProps, getColorCn, getElementType, getLiteralScreenSize, getTypographyCn, handleElementWithBackdropMount, handleElementWithBackdropUnmount, hideInput, index as icons, inheritLinkStyling, inlineElements, isAnchorTypographyProps, isBorderColor, isBorderRadius, isCaption, isElevation, isHeading, isInlineElement, isKeyboardEvent, isLegend, isPaperBackground, nativeDateToCalendarDate, nativeDateToDateValue, nativeDateToTime, normalizeButton, outlineInset, outlineOffset, removeButtonStyling, removeListStyling, renderInputMessage, scrollbarStyling, typographyTypes, useCallbackRef, useCombinedRef, useControllableGroupState, useControllableState, useFloatPosition, useFocusTrap, useIsMounted, useMountTransition, useOnClickOutside, useOnKeyDown, useReturnFocusOnBlur, useRoveFocus, useScreenSize, useTheme, useWindowResize, visibilityTransition };
|
|
5272
|
+
export { Accordion, AccordionBody, type AccordionBodyProps, AccordionHeader, type AccordionHeaderProps, type AccordionProps, AddTabButton, type AddTabButtonProps, AddressShieldedIcon, AgreementIcon, AnimatedChevronUpDownIcon, type AnimatedChevronUpDownIconStates, AppsIcon, ArchiveIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AttachmentIcon, BORDER_COLORS, BORDER_RADII, BackLink, type BackLinkProps, Backdrop, BarChartBoxedIcon, BarChartIcon, type BaseComponentProps, type BaseComponentPropsWithChildren, type BaseItemProps, type BaseLabelProps, type BaseTypographyProps, BlockIcon, BookIcon, type BorderColor, type BorderRadius, Box, type BoxProps, Breadcrumb, type BreadcrumbProps, Breadcrumbs, type BreadcrumbsProps, type Breakpoint, BuildIcon, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, type ButtonPurpose, type ButtonSize, Calendar, CalendarIcon, CalendarMonthIcon, type CalendarProps, CalendarViewDayIcon, CalendarViewMonthIcon, CalendarViewWeekIcon, CallIcon, type Callback, Caption, type CaptionProps, Card, CardExpandable, CardExpandableBody, type CardExpandableBodyProps, CardExpandableHeader, type CardExpandableHeaderProps, type CardExpandableProps, type CardProps, CardSelectable, CardSelectableGroup, type CardSelectableGroupProps, type CardSelectableProps, CaringIcon, ChatIcon, CheckCircledIcon, CheckIcon, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxPickedHTMLAttributes, type CheckboxProps, ChecklistIcon, ChevronDownIcon, ChevronFirstIcon, ChevronLastIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, Chip, ChipGroup, type ChipGroupProps, type ChipProps, CloseCircledIcon, CloseIcon, CloseSmallIcon, CloudIcon, CollapseIcon, CollapsibleTable, type CollapsibleTableProps, CollapsibleRow as CollapsibleTableRow, type ColumnsOccupied, CommentIcon, Contrast, type ContrastProps, CookieBanner, CookieBannerCheckbox, type CookieBannerCheckboxProps, type CookieBannerProps, CopyIcon, CourtIcon, DatePicker, type DatePickerProps, DateRangeIcon, DdsProvider, type DdsProviderProps, DeathsIcon, DescriptionList, type DescriptionListAppearance, DescriptionListDesc, type DescriptionListDescProps, DescriptionListGroup, type DescriptionListGroupProps, type DescriptionListProps, DescriptionListTerm, type DescriptionListTermProps, DetailList, DetailListDesc, type DetailListDescProps, type DetailListProps, DetailListRow, type DetailListRowProps, type DetailListSize, DetailListTerm, type DetailListTermProps, type Direction$1 as Direction, Divider, type DividerColor, type DividerProps, DoubleChevronLeftIcon, DoubleChevronRightIcon, DownloadDoneIcon, DownloadIcon, DragHandleIcon, Drawer, DrawerGroup, type DrawerGroupProps, type DrawerPlacement, type DrawerProps, type DrawerSize, DropdownHeader, DropdownItem, type DropdownItemButtonProps, type DropdownItemCustomProps, type DropdownItemProps, ELEVATIONS, EditIcon, ElementAs, type Elevation, EmptyContent, type EmptyContentProps, ErrorIcon, ExclaimIcon, ExpandIcon, type ExtractStrict, FacebookIcon, FamilyIcon, FavStar, type FavStarProps, Feedback, FeedbackIcon, type FeedbackProps, Fieldset, FieldsetGroup, type FieldsetGroupProps, type FieldsetProps, FileAddIcon, FileIcon, type FileList, FileShieldedIcon, FileTextIcon, FileUploader, type FileUploaderAccept, type FileUploaderProps, FilterIcon, FilterListIcon, FindInPageIcon, FlickrIcon, type FloatingStyles, FolderAddIcon, FolderIcon, FolderShieldedIcon, Footer, FooterLeft, type FooterLeftProps, FooterList, FooterListGroup, type FooterListGroupProps, FooterListHeader, type FooterListHeaderProps, type FooterListProps, FooterLogo, type FooterLogoProps, type FooterProps, FooterSocialsGroup, type FooterSocialsGroupProps, FooterSocialsList, type FooterSocialsListProps, FormSummary, FormSummaryEditButton, FormSummaryEmptyValue, FormSummaryError, FormSummaryField, FormSummaryFields, FormSummaryHeader, FormSummaryHeading, FormSummaryLabel, type FormSummaryProps, FormSummaryValue, FullscreenExitIcon, FullscreenIcon, GavelIcon, GlobalMessage, type GlobalMessageProps, type GlobalMessagePurpose, Grid, GridChild, type GridChildProps, type GridProps, GuardianIcon, HStack, type HStackProps, Heading, type HeadingLevel, type HeadingProps, HelpFilledIcon, HelpIcon, HelpSimpleIcon, HiddenInput, HomeIcon, HourglassEmptyIcon, type HyphenTypographyType, Icon, type IconPosition, type IconProps, type IconSize, ImageIcon, InfoIcon, InlineButton, type InlineButtonProps, InlineEditInput, type InlineEditInputProps, InlineEditSelect, type InlineEditSelectProps, InlineEditTextArea, type InlineEditTextAreaProps, type InlineElement, InputMessage, type InputMessageProps, type InputMessageType, InstagramIcon, InternalHeader, type InternalHeaderProps, JordskifterettIcon, JordskiftesakIcon, KeyIcon, L_MESSAGE_PURPOSES, Label, type LabelProps, LagmannsrettIcon, LanguageIcon, type Layout, Legend, type LegendProps, LineChartIcon, Link, LinkIcon, LinkOffIcon, type LinkProps, LinkedInIcon, List, ListAltIcon, ListIcon, ListItem, type ListItemProps, type ListProps, type ListType, type ListTypographyType, LocalMessage, type LocalMessageLayout, type LocalMessageProps, type LocalMessagePurpose, LocationIcon, LockIcon, LockOpenIcon, LoginIcon, LogoutIcon, MailIcon, MailOpenIcon, MenuIcon, MinusCirledIcon, MinusIcon, Modal, ModalActions, type ModalActionsProps, ModalBody, type ModalBodyProps, type ModalProps, MoreHorizontalIcon, MoreVerticalIcon, NativeSelect, type NativeSelectProps, NotarialIcon, NotificationsIcon, NotificationsOffIcon, type Nullable, OnlineMeetingIcon, OpenExternalIcon, type OtherTypographyType, OverflowMenu, OverflowMenuButton, type OverflowMenuButtonProps, OverflowMenuDivider, OverflowMenuGroup, type OverflowMenuGroupProps, OverflowMenuLink, type OverflowMenuLinkProps, OverflowMenuList, OverflowMenuListHeader, type OverflowMenuProps, OverflowMenuSpan, type OverflowMenuSpanProps, OverflowMenuToggle, type OverflowMenuToggleProps, Pagination, type PaginationOption, type PaginationProps, Paper, type PaperBackground, type PaperBorder, type PaperBorderRadius, type PaperElevation, type PaperProps, Paragraph, type ParagraphProps, PayoutIcon, PdfIcon, PersonAddIcon, PersonIcon, PersonShieldedIcon, PhoneInput, type PhoneInputProps, type PhoneInputValue, PinIcon, type Placement, PlusCircledIcon, PlusIcon, type PolymorphicBaseComponentProps, type PolymorphicProps, Popover, PopoverGroup, type PopoverGroupProps, type PopoverProps, type PopoverSizeProps, PowerOfAttorneyIcon, PrintIcon, ProgressBar, type ProgressBarProps, type ProgressBarSize, ProgressTracker, ProgressTrackerItem, type ProgressTrackerItemProps, type ProgressTrackerProps, PublishIcon, type Purpose, QuestionAnswerIcon, RadioButton, RadioButtonGroup, type RadioButtonGroupProps, type RadioButtonProps, type RadioValue, type Rating, ReceiptIcon, RedoIcon, RefreshIcon, type RemoteFile, ReplayIcon, type ResponsiveProps, type ResponsiveStackProps, ScaleIcon, ScreenSize, Search, SearchAutocompleteWrapper, type SearchAutocompleteWrapperProps, type SearchButtonProps, type SearchData, SearchIcon, type SearchProps, type SearchSize, SearchSuggestions, type SearchSuggestionsProps, SectionIcon, Select, type SelectForwardRefType, type SelectOption, type SelectProps, SettingsIcon, ShowHide, type ShowHideProps, type Size, Skeleton, type SkeletonAppearance, type SkeletonProps, SkipToContent, type SkipToContentProps, SmsIcon, type SortOrder, type SpacingScale, Spinner, type SpinnerProps, SplitButton, type SplitButtonPrimaryActionProps, type SplitButtonProps, type SplitButtonPurpose, type SplitButtonSecondaryActionsProps, StarFilledIcon, StarHalfFilled, StarIcon, type StaticTypographyType, StylelessButton, type StylelessButtonProps, StylelessList, type StylelessListProps, StylelessOList, type StylelessOListProps, type SvgIcon, type SvgProps, SyncIcon, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, TabPanels, type TabPanelsProps, type TabProps, type TabSize, Table, Body as TableBody, type TableBodyProps, Cell as TableCell, type TableCellLayout, type TableCellProps, type TableCellType, Foot as TableFoot, type TableFootProps, Head as TableHead, type TableHeadProps, type TableProps, Row as TableRow, type TableRowProps, type TableRowType, type TableSize, SortCell as TableSortCell, type TableSortCellProps, TableWrapper, Tabs, type TabsProps, Tag, type TagAppearance, type TagProps, type TagPurpose, type TextAffixProps, TextArea, type TextAreaProps, TextInput, type TextInputProps, TextOverflowEllipsisInner, TextOverflowEllipsisWrapper, ThumbDownFilledIcon, ThumbDownIcon, ThumbUpFilledIcon, ThumbUpIcon, TimeIcon, TimePicker, type TimePickerProps, TingrettIcon, TipIcon, Toggle, ToggleBar, type ToggleBarProps, type ToggleBarSize, type ToggleBarValue, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, type ToggleProps, ToggleRadio, type ToggleRadioProps, type ToggleSize, Tooltip, type TooltipProps, TrashIcon, TrendingDownIcon, TrendingUpIcon, Typography, type TypographyAnchorType, type TypographyBodyLongType, type TypographyBodyShortType, type TypographyBodyType, type TypographyComponentProps, type TypographyHeadingType, type TypographyLabelType, type TypographyLeadType, type TypographyProps, type TypographyType, UndoIcon, UnfoldLessIcon, UnfoldMoreIcon, UploadIcon, type UseControllableGroupStateProps, type UseControllableStateProps, type UseFloatPositionOptions, VStack, type VStackProps, VisibilityOffIcon, VisibilityOnIcon, VisuallyHidden, type VisuallyHiddenProps, WarningIcon, WebexIcon, type WeightedSearchData, type WithRequiredIf, XIcon, ZoomInIcon, ZoomOutIcon, calendarDateToNativeDate, cn, countryOptions, createPurposes, createSelectOptions, createSizes, dateValueToNativeDate, focusVisible, focusVisibleInset, focusVisibleTransitionValue, getBaseHTMLProps, getColorCn, getElementType, getLiteralScreenSize, getTypographyCn, handleElementWithBackdropMount, handleElementWithBackdropUnmount, hideInput, index as icons, inheritLinkStyling, inlineElements, isAnchorTypographyProps, isBorderColor, isBorderRadius, isCaption, isElevation, isHeading, isInlineElement, isKeyboardEvent, isLegend, isPaperBackground, nativeDateToCalendarDate, nativeDateToDateValue, nativeDateToTime, normalizeButton, outlineInset, outlineOffset, removeButtonStyling, removeListStyling, renderInputMessage, scrollbarStyling, typographyTypes, useCallbackRef, useCombinedRef, useControllableGroupState, useControllableState, useFloatPosition, useFocusTrap, useIsMounted, useMountTransition, useOnClickOutside, useOnKeyDown, useReturnFocusOnBlur, useRoveFocus, useScreenSize, useTheme, useWindowResize, visibilityTransition };
|