@wistia/ui 0.22.2-beta.dc92d160.633264e → 0.22.2-beta.e2306e43.a5e2fff
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.ts +469 -379
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +296 -26
- package/dist/index.js.map +1 -1
- package/package.json +15 -13
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
|
|
2
|
-
import * as react from "react";
|
|
2
|
+
import * as _$react from "react";
|
|
3
3
|
import { AnchorHTMLAttributes, CSSProperties, ChangeEvent, ComponentProps, ComponentPropsWithRef, ComponentPropsWithoutRef, Dispatch, ElementType, ForwardRefExoticComponent, HTMLAttributes, InputHTMLAttributes, JSX, LegacyRef, MouseEvent, MutableRefObject, PropsWithChildren, ReactElement, ReactNode, Ref, RefAttributes, RefCallback, RefObject, SetStateAction, SyntheticEvent, TdHTMLAttributes, ThHTMLAttributes } from "react";
|
|
4
|
-
import * as styled_components0 from "styled-components";
|
|
4
|
+
import * as _$styled_components0 from "styled-components";
|
|
5
5
|
import { css } from "styled-components";
|
|
6
|
-
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
6
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
7
7
|
import { FileAmountLimitValidator, FileSizeValidator, FileTypeValidator, ImageDimensionsValidator, PersistentFileAmountLimitValidator } from "use-file-picker/validators";
|
|
8
|
+
import { DateRange, Matcher } from "react-day-picker";
|
|
8
9
|
import { CollapsibleContentProps } from "@radix-ui/react-collapsible";
|
|
9
10
|
import { Color } from "culori/fn";
|
|
10
11
|
import { ToggleGroupSingleProps } from "@radix-ui/react-toggle-group";
|
|
@@ -26,7 +27,7 @@ type UIProviderProps = {
|
|
|
26
27
|
};
|
|
27
28
|
declare const UIProvider: ({
|
|
28
29
|
children
|
|
29
|
-
}: UIProviderProps) => react_jsx_runtime0.JSX.Element;
|
|
30
|
+
}: UIProviderProps) => _$react_jsx_runtime0.JSX.Element;
|
|
30
31
|
//#endregion
|
|
31
32
|
//#region src/helpers/coerceToBoolean/coerceToBoolean.d.ts
|
|
32
33
|
/**
|
|
@@ -351,11 +352,11 @@ type LinkProps = LinkAsButtonProps | LinkAsLinkProps;
|
|
|
351
352
|
* This means in addition to its own props, `Link` can use props from `react-router`'s `Link` component. View their documentation [here](https://reactrouter.com/en/main/components/link).
|
|
352
353
|
* The one prop we ignore from react-router is `to`. We use `href` instead and map it under the hood.
|
|
353
354
|
*/
|
|
354
|
-
declare const Link: react.ForwardRefExoticComponent<(Omit<LinkAsButtonProps, "ref"> | Omit<LinkAsLinkProps, "ref">) & react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
355
|
+
declare const Link: _$react.ForwardRefExoticComponent<(Omit<LinkAsButtonProps, "ref"> | Omit<LinkAsLinkProps, "ref">) & _$react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
355
356
|
//#endregion
|
|
356
357
|
//#region src/private/hooks/useResponsiveProp/useResponsiveProp.d.ts
|
|
357
358
|
type Breakpoints = 'isLgAndDown' | 'isLgAndUp' | 'isMdAndDown' | 'isMdAndUp' | 'isSmAndDown' | 'isSmAndUp' | 'isXlAndDown' | 'isXlAndUp' | 'isXsAndDown' | 'isXsAndUp';
|
|
358
|
-
type AtLeastOneBreakpoint<T, U = { [
|
|
359
|
+
type AtLeastOneBreakpoint<T, U = { [Key in keyof T]: Pick<T, Key> }> = Partial<T> & U[keyof U];
|
|
359
360
|
type ResponsiveObject<T> = AtLeastOneBreakpoint<Record<Breakpoints, T>> & {
|
|
360
361
|
base: T;
|
|
361
362
|
};
|
|
@@ -450,7 +451,7 @@ type ButtonProps = ButtonAsButtonProps | ButtonAsLinkProps;
|
|
|
450
451
|
* action, or performing a delete operation. It replaces the HTML `<button>` element,
|
|
451
452
|
* unless an `href` attribute is passed, in which it will render an `<a>` element.
|
|
452
453
|
*/
|
|
453
|
-
declare const Button: react.ForwardRefExoticComponent<(Omit<ButtonAsButtonProps, "ref"> | Omit<BaseButtonProps & react.ClassAttributes<HTMLAnchorElement> & react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
454
|
+
declare const Button: _$react.ForwardRefExoticComponent<(Omit<ButtonAsButtonProps, "ref"> | Omit<BaseButtonProps & _$react.ClassAttributes<HTMLAnchorElement> & _$react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
454
455
|
beforeAction?: (() => Promise<void>) | (() => void);
|
|
455
456
|
children: ReactNode;
|
|
456
457
|
colorScheme?: ColorSchemeTypes;
|
|
@@ -460,7 +461,7 @@ declare const Button: react.ForwardRefExoticComponent<(Omit<ButtonAsButtonProps,
|
|
|
460
461
|
rightIcon?: ReactNode | undefined;
|
|
461
462
|
type?: LinkTypes | undefined;
|
|
462
463
|
underline?: "always" | "hover" | "none";
|
|
463
|
-
} & react.ClassAttributes<HTMLButtonElement> & react.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
464
|
+
} & _$react.ClassAttributes<HTMLButtonElement> & _$react.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
464
465
|
href?: never;
|
|
465
466
|
type?: "button" | "reset" | "submit";
|
|
466
467
|
} & {
|
|
@@ -476,7 +477,7 @@ declare const Button: react.ForwardRefExoticComponent<(Omit<ButtonAsButtonProps,
|
|
|
476
477
|
* @ignore
|
|
477
478
|
*/
|
|
478
479
|
type?: LinkTypes;
|
|
479
|
-
}, "ref"> | Omit<BaseButtonProps & react.ClassAttributes<HTMLAnchorElement> & react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
480
|
+
}, "ref"> | Omit<BaseButtonProps & _$react.ClassAttributes<HTMLAnchorElement> & _$react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
480
481
|
beforeAction?: (() => Promise<void>) | (() => void);
|
|
481
482
|
children: ReactNode;
|
|
482
483
|
colorScheme?: ColorSchemeTypes;
|
|
@@ -486,7 +487,7 @@ declare const Button: react.ForwardRefExoticComponent<(Omit<ButtonAsButtonProps,
|
|
|
486
487
|
rightIcon?: ReactNode | undefined;
|
|
487
488
|
type?: LinkTypes | undefined;
|
|
488
489
|
underline?: "always" | "hover" | "none";
|
|
489
|
-
} & Omit<react.AnchorHTMLAttributes<HTMLAnchorElement>, "href"> & {
|
|
490
|
+
} & Omit<_$react.AnchorHTMLAttributes<HTMLAnchorElement>, "href"> & {
|
|
490
491
|
reloadDocument?: boolean;
|
|
491
492
|
replace?: boolean;
|
|
492
493
|
state?: any;
|
|
@@ -508,7 +509,7 @@ declare const Button: react.ForwardRefExoticComponent<(Omit<ButtonAsButtonProps,
|
|
|
508
509
|
* @ignore
|
|
509
510
|
*/
|
|
510
511
|
type?: LinkTypes;
|
|
511
|
-
}, "ref">) & react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
512
|
+
}, "ref">) & _$react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
512
513
|
//#endregion
|
|
513
514
|
//#region src/private/components/Toast/Toast.d.ts
|
|
514
515
|
type ToastProps = ComponentPropsWithoutRef<'div'> & {
|
|
@@ -586,7 +587,7 @@ type ActionButtonProps = {
|
|
|
586
587
|
/**
|
|
587
588
|
* Action Button component is used as one of a group of main actions on the page. It composes [Button]().
|
|
588
589
|
*/
|
|
589
|
-
declare const ActionButton: react.ForwardRefExoticComponent<(Omit<{
|
|
590
|
+
declare const ActionButton: _$react.ForwardRefExoticComponent<(Omit<{
|
|
590
591
|
/**
|
|
591
592
|
* @override
|
|
592
593
|
* The text to display for the ActionButton
|
|
@@ -644,7 +645,7 @@ declare const ActionButton: react.ForwardRefExoticComponent<(Omit<{
|
|
|
644
645
|
* Changes the secondary icon for different use cases
|
|
645
646
|
*/
|
|
646
647
|
variant?: "default" | "gated" | "menu-down" | "menu-up";
|
|
647
|
-
} & Omit<ButtonAsLinkProps, "variant" | "size" | "fullWidth" | "isLoading" | "leftIcon" | "rightIcon" | "unstyled">, "ref">) & react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
648
|
+
} & Omit<ButtonAsLinkProps, "variant" | "size" | "fullWidth" | "isLoading" | "leftIcon" | "rightIcon" | "unstyled">, "ref">) & _$react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
648
649
|
//#endregion
|
|
649
650
|
//#region src/components/Avatar/Avatar.d.ts
|
|
650
651
|
type AvatarInstanceType = 'image' | 'initials';
|
|
@@ -716,7 +717,7 @@ type BadgeProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
716
717
|
/**
|
|
717
718
|
* A `Badge` is a compact label, with optional icon, to convey status or context.
|
|
718
719
|
*/
|
|
719
|
-
declare const Badge: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
720
|
+
declare const Badge: _$react.ForwardRefExoticComponent<Omit<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
720
721
|
/**
|
|
721
722
|
* Sets the [color scheme](/docs/color-schemes)
|
|
722
723
|
*/
|
|
@@ -733,7 +734,7 @@ declare const Badge: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProp
|
|
|
733
734
|
* The variant of the `Badge`
|
|
734
735
|
*/
|
|
735
736
|
variant?: BadgeVariants;
|
|
736
|
-
} & react.RefAttributes<HTMLDivElement>>;
|
|
737
|
+
} & _$react.RefAttributes<HTMLDivElement>>;
|
|
737
738
|
//#endregion
|
|
738
739
|
//#region src/components/Banner/Banner.d.ts
|
|
739
740
|
type BannerProps = ComponentPropsWithoutRef<'div'> & {
|
|
@@ -981,7 +982,7 @@ type BoxProps = ComponentPropsWithoutRef<typeof DEFAULT_ELEMENT$1> & {
|
|
|
981
982
|
/**
|
|
982
983
|
* Box is a layout container using [CSS Flexbox](https://developer.mozilla.org/en-US/docs/Learn/CSS/CSS_layout/Flexbox).
|
|
983
984
|
*/
|
|
984
|
-
declare const Box: (<C extends ElementType = "div">(props: PolymorphicComponentProps<C, BoxProps>) => react.ReactElement | null) & UnknownRecord;
|
|
985
|
+
declare const Box: (<C extends ElementType = "div">(props: PolymorphicComponentProps<C, BoxProps>) => _$react.ReactElement | null) & UnknownRecord;
|
|
985
986
|
//#endregion
|
|
986
987
|
//#region src/components/Breadcrumbs/Breadcrumbs.d.ts
|
|
987
988
|
type BreadcrumbsProps = ComponentPropsWithoutRef<'div'> & {
|
|
@@ -1022,7 +1023,7 @@ declare const Breadcrumb: ({
|
|
|
1022
1023
|
href,
|
|
1023
1024
|
children,
|
|
1024
1025
|
...props
|
|
1025
|
-
}: BreadcrumbProps) => react_jsx_runtime0.JSX.Element;
|
|
1026
|
+
}: BreadcrumbProps) => _$react_jsx_runtime0.JSX.Element;
|
|
1026
1027
|
//#endregion
|
|
1027
1028
|
//#region src/components/ButtonGroup/ButtonGroup.d.ts
|
|
1028
1029
|
type ButtonGroupButtonSize = ButtonSizes | 'natural';
|
|
@@ -1067,6 +1068,95 @@ declare const ButtonGroup: {
|
|
|
1067
1068
|
displayName: string;
|
|
1068
1069
|
};
|
|
1069
1070
|
//#endregion
|
|
1071
|
+
//#region src/components/Calendar/Calendar.d.ts
|
|
1072
|
+
type CalendarBaseProps = {
|
|
1073
|
+
/**
|
|
1074
|
+
* The month to display. Use with `onMonthChange` for controlled navigation.
|
|
1075
|
+
*/
|
|
1076
|
+
month?: Date;
|
|
1077
|
+
/**
|
|
1078
|
+
* The initial month to show when uncontrolled.
|
|
1079
|
+
*/
|
|
1080
|
+
defaultMonth?: Date;
|
|
1081
|
+
/**
|
|
1082
|
+
* Callback when the displayed month changes.
|
|
1083
|
+
*/
|
|
1084
|
+
onMonthChange?: (month: Date) => void;
|
|
1085
|
+
/**
|
|
1086
|
+
* The earliest month available for navigation.
|
|
1087
|
+
*/
|
|
1088
|
+
startMonth?: Date;
|
|
1089
|
+
/**
|
|
1090
|
+
* The latest month available for navigation.
|
|
1091
|
+
*/
|
|
1092
|
+
endMonth?: Date;
|
|
1093
|
+
/**
|
|
1094
|
+
* Dates that cannot be selected.
|
|
1095
|
+
*/
|
|
1096
|
+
disabled?: Matcher | Matcher[];
|
|
1097
|
+
/**
|
|
1098
|
+
* The number of months to display side by side.
|
|
1099
|
+
*
|
|
1100
|
+
* @default 1
|
|
1101
|
+
*/
|
|
1102
|
+
numberOfMonths?: number;
|
|
1103
|
+
/**
|
|
1104
|
+
* When true, shows days from adjacent months.
|
|
1105
|
+
*
|
|
1106
|
+
* @default false
|
|
1107
|
+
*/
|
|
1108
|
+
showOutsideDays?: boolean;
|
|
1109
|
+
/**
|
|
1110
|
+
* Sets the first day of the week. 0 = Sunday, 1 = Monday, etc.
|
|
1111
|
+
*/
|
|
1112
|
+
weekStartsOn?: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
1113
|
+
};
|
|
1114
|
+
type CalendarSingleProps = CalendarBaseProps & {
|
|
1115
|
+
/**
|
|
1116
|
+
* Selection mode.
|
|
1117
|
+
*/
|
|
1118
|
+
mode: 'single';
|
|
1119
|
+
/**
|
|
1120
|
+
* The currently selected date.
|
|
1121
|
+
*/
|
|
1122
|
+
selected?: Date | undefined;
|
|
1123
|
+
/**
|
|
1124
|
+
* Callback when a date is selected.
|
|
1125
|
+
*/
|
|
1126
|
+
onSelect?: (date: Date | undefined) => void;
|
|
1127
|
+
};
|
|
1128
|
+
type CalendarRangeProps = CalendarBaseProps & {
|
|
1129
|
+
/**
|
|
1130
|
+
* Selection mode.
|
|
1131
|
+
*/
|
|
1132
|
+
mode: 'range';
|
|
1133
|
+
/**
|
|
1134
|
+
* The currently selected range.
|
|
1135
|
+
*/
|
|
1136
|
+
selected?: DateRange | undefined;
|
|
1137
|
+
/**
|
|
1138
|
+
* Callback when a range is selected.
|
|
1139
|
+
*/
|
|
1140
|
+
onSelect?: (range: DateRange | undefined) => void;
|
|
1141
|
+
/**
|
|
1142
|
+
* Minimum number of days in the range.
|
|
1143
|
+
*/
|
|
1144
|
+
min?: number;
|
|
1145
|
+
/**
|
|
1146
|
+
* Maximum number of days in the range.
|
|
1147
|
+
*/
|
|
1148
|
+
max?: number;
|
|
1149
|
+
};
|
|
1150
|
+
type CalendarProps = (CalendarSingleProps | CalendarRangeProps) & Omit<HTMLAttributes<HTMLDivElement>, 'onSelect'>;
|
|
1151
|
+
/**
|
|
1152
|
+
* A calendar grid for selecting dates or date ranges. Built on
|
|
1153
|
+
* react-day-picker and styled with WUI design tokens.
|
|
1154
|
+
*/
|
|
1155
|
+
declare const Calendar: {
|
|
1156
|
+
(props: CalendarProps): JSX.Element;
|
|
1157
|
+
displayName: string;
|
|
1158
|
+
};
|
|
1159
|
+
//#endregion
|
|
1070
1160
|
//#region src/css/designTokens/borderRadius.d.ts
|
|
1071
1161
|
type BorderRadius = 'border-radius-00' | 'border-radius-01' | 'border-radius-02' | 'border-radius-03' | 'border-radius-04' | 'border-radius-05' | 'border-radius-rounded';
|
|
1072
1162
|
//#endregion
|
|
@@ -1209,7 +1299,7 @@ type CenterProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
1209
1299
|
* Center component provides various ways to center content horizontally within a container.
|
|
1210
1300
|
* It supports max-width constraints, text alignment, gutters, and intrinsic content centering.
|
|
1211
1301
|
*/
|
|
1212
|
-
declare const Center: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
1302
|
+
declare const Center: _$react.ForwardRefExoticComponent<Omit<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
1213
1303
|
/**
|
|
1214
1304
|
* A CSS max-width value
|
|
1215
1305
|
*/
|
|
@@ -1226,11 +1316,11 @@ declare const Center: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLPro
|
|
|
1226
1316
|
* The content to be centered
|
|
1227
1317
|
*/
|
|
1228
1318
|
children: ReactNode;
|
|
1229
|
-
} & react.RefAttributes<HTMLDivElement>>;
|
|
1319
|
+
} & _$react.RefAttributes<HTMLDivElement>>;
|
|
1230
1320
|
//#endregion
|
|
1231
1321
|
//#region src/components/Checkbox/Checkbox.d.ts
|
|
1232
1322
|
type CheckboxSizeType = 'lg' | 'md' | 'sm';
|
|
1233
|
-
declare const Checkbox: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "onChange" | "size" | "hideLabel"> & {
|
|
1323
|
+
declare const Checkbox: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "onChange" | "size" | "hideLabel"> & {
|
|
1234
1324
|
/**
|
|
1235
1325
|
* Indicates the state of the checkbox
|
|
1236
1326
|
*/
|
|
@@ -1275,7 +1365,7 @@ declare const Checkbox: react.ForwardRefExoticComponent<Omit<Omit<react.Detailed
|
|
|
1275
1365
|
* Whether to visually hide the label (it will still be available to screen readers)
|
|
1276
1366
|
*/
|
|
1277
1367
|
hideLabel?: boolean;
|
|
1278
|
-
} & react.RefAttributes<HTMLInputElement>>;
|
|
1368
|
+
} & _$react.RefAttributes<HTMLInputElement>>;
|
|
1279
1369
|
//#endregion
|
|
1280
1370
|
//#region src/components/ClickRegion/ClickRegion.d.ts
|
|
1281
1371
|
type ClickRegionProps = {
|
|
@@ -1343,225 +1433,225 @@ type CollapsibleTriggerProps = {
|
|
|
1343
1433
|
};
|
|
1344
1434
|
declare const CollapsibleTrigger: ({
|
|
1345
1435
|
children
|
|
1346
|
-
}: CollapsibleTriggerProps) => react_jsx_runtime0.JSX.Element;
|
|
1436
|
+
}: CollapsibleTriggerProps) => _$react_jsx_runtime0.JSX.Element;
|
|
1347
1437
|
//#endregion
|
|
1348
1438
|
//#region src/components/Icon/iconMap.d.ts
|
|
1349
1439
|
declare const iconMap: {
|
|
1350
|
-
'ab-test': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1351
|
-
accessibility: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1352
|
-
activity: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1353
|
-
'add-folder': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1354
|
-
'add-layout': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1355
|
-
'add-media': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1356
|
-
'annotation-link': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1357
|
-
appearance: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1358
|
-
archive: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1359
|
-
'arrow-down': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1360
|
-
'arrow-left': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1361
|
-
'arrow-right': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1362
|
-
'arrow-up': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1363
|
-
'arrow-up-right': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1364
|
-
asterisk: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1365
|
-
'audio-description': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1366
|
-
'auto-scroll': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1367
|
-
background: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1368
|
-
bank: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1369
|
-
bell: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1370
|
-
bolt: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1371
|
-
'bullet-list': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1372
|
-
calendar: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1373
|
-
'call-to-action': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1374
|
-
camera: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1375
|
-
'camera-off': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1376
|
-
'caret-down': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1377
|
-
'caret-down-strong': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1378
|
-
'caret-left': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1379
|
-
'caret-left-strong': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1380
|
-
'caret-right': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1381
|
-
'caret-right-strong': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1382
|
-
'caret-up': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1383
|
-
'caret-up-strong': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1384
|
-
channel: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1385
|
-
chapters: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1386
|
-
checkmark: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1387
|
-
'checkmark-circle': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1388
|
-
'checkmark-circle-outline': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1389
|
-
'checkmark-three-quaters-circle': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1390
|
-
'circle-slashed': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1391
|
-
clapboard: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1392
|
-
clips: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1393
|
-
close: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1394
|
-
'close-octagon': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1395
|
-
'closed-captions': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1396
|
-
cmd: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1397
|
-
collapse: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1398
|
-
'collapse-diagonal': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1399
|
-
collection: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1400
|
-
comments: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1401
|
-
company: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1402
|
-
compare: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1403
|
-
'connection-okay': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1404
|
-
'connection-poor': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1405
|
-
'connection-strong': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1406
|
-
'content-library': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1407
|
-
controls: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1408
|
-
'credit-card': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1409
|
-
credits: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1410
|
-
'cursor-click': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1411
|
-
delete: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1412
|
-
desktop: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1413
|
-
'docs-dev': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1414
|
-
'dots-horizontal': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1415
|
-
download: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1416
|
-
'edit-transcript': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1417
|
-
'ellipses-vertical': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1418
|
-
embed: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1419
|
-
envelope: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1420
|
-
'envelope-open': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1421
|
-
error: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1422
|
-
expand: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1423
|
-
'expand-diagonal': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1424
|
-
'expand-diagonal-window': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1425
|
-
'expand-horizontal': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1426
|
-
'fast-forward': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1427
|
-
favorite: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1428
|
-
'favorite-outline': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1429
|
-
featured: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1430
|
-
'file-tree': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1431
|
-
fill: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1432
|
-
'film-strip': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1433
|
-
filter: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1434
|
-
fit: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1435
|
-
fonts: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1436
|
-
footer: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1437
|
-
'full-screen': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1438
|
-
gear: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1439
|
-
'getting-started': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1440
|
-
gradient: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1441
|
-
grid: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1442
|
-
'grip-dots-vertical': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1443
|
-
header: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1444
|
-
'help-center': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1445
|
-
hide: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1446
|
-
home: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1447
|
-
hourglass: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1448
|
-
import: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1449
|
-
info: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1450
|
-
integrations: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1451
|
-
keyboard: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1452
|
-
layout: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1453
|
-
leave: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1454
|
-
'light-bulb': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1455
|
-
link: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1456
|
-
list: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1457
|
-
live: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1458
|
-
localization: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1459
|
-
lock: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1460
|
-
logout: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1461
|
-
maximize: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1462
|
-
media: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1463
|
-
megaphone: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1464
|
-
menu: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1465
|
-
mic: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1466
|
-
'mic-off': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1467
|
-
minimize: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1468
|
-
minus: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1469
|
-
'minus-circle': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1470
|
-
mobile: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1471
|
-
'more-options': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1472
|
-
'move-left': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1473
|
-
'move-right': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1474
|
-
music: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1475
|
-
'my-library': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1476
|
-
'on-air': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1477
|
-
'open-new': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1478
|
-
overview: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1479
|
-
page: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1480
|
-
'panel-left': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1481
|
-
'panel-right': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1482
|
-
'panel-up': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1483
|
-
'paper-clip': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1484
|
-
password: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1485
|
-
pause: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1486
|
-
pencil: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1487
|
-
'pencil-sparkle': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1488
|
-
people: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1489
|
-
pin: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1490
|
-
'pin-slash': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1491
|
-
pip: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1492
|
-
play: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1493
|
-
player: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1494
|
-
playlist: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1495
|
-
plus: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1496
|
-
podcast: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1497
|
-
preview: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1498
|
-
'private-chat': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1499
|
-
'private-user-sessions': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1500
|
-
project: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1501
|
-
'project-open': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1502
|
-
properties: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1503
|
-
'question-chat': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1504
|
-
'question-mark': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1505
|
-
react: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1506
|
-
record: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1507
|
-
'record-group': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1508
|
-
redo: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1509
|
-
refresh: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1510
|
-
remix: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1511
|
-
replace: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1512
|
-
reply: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1513
|
-
'request-video': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1514
|
-
'revert-to-original': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1515
|
-
rewind: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1516
|
-
save: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1517
|
-
'save-as-copy': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1518
|
-
scissors: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1519
|
-
'screenshare-off': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1520
|
-
'screenshare-on': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1521
|
-
search: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1522
|
-
send: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1523
|
-
shapes: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1524
|
-
share: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1525
|
-
'sharing-permissions': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1526
|
-
simulcast: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1527
|
-
sort: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1528
|
-
sparkle: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1529
|
-
speed: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1530
|
-
spinner: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1531
|
-
stats: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1532
|
-
'switch-accounts': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1533
|
-
tag: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1534
|
-
teleprompter: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1535
|
-
'text-bold': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1536
|
-
'text-italics': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1537
|
-
'text-size': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1538
|
-
thumbnail: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1539
|
-
'thumbs-down': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1540
|
-
'thumbs-up': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1541
|
-
'timeline-vertical': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1542
|
-
token: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1543
|
-
transcript: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1544
|
-
transitions: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1545
|
-
transparency: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1546
|
-
trends: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1547
|
-
'trial-unlock-clock': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1548
|
-
trim: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1549
|
-
turnstile: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1550
|
-
undo: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1551
|
-
unlock: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1552
|
-
upload: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1553
|
-
'users-permissions': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1554
|
-
'view-stream': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1555
|
-
volume: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1556
|
-
'volume-off': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1557
|
-
'volume-up': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1558
|
-
'volume-x': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1559
|
-
wand: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1560
|
-
waveform: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1561
|
-
webhook: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1562
|
-
write: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1563
|
-
'zoom-in': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1564
|
-
'zoom-out': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime0.JSX.Element;
|
|
1440
|
+
'ab-test': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1441
|
+
accessibility: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1442
|
+
activity: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1443
|
+
'add-folder': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1444
|
+
'add-layout': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1445
|
+
'add-media': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1446
|
+
'annotation-link': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1447
|
+
appearance: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1448
|
+
archive: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1449
|
+
'arrow-down': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1450
|
+
'arrow-left': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1451
|
+
'arrow-right': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1452
|
+
'arrow-up': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1453
|
+
'arrow-up-right': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1454
|
+
asterisk: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1455
|
+
'audio-description': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1456
|
+
'auto-scroll': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1457
|
+
background: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1458
|
+
bank: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1459
|
+
bell: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1460
|
+
bolt: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1461
|
+
'bullet-list': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1462
|
+
calendar: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1463
|
+
'call-to-action': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1464
|
+
camera: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1465
|
+
'camera-off': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1466
|
+
'caret-down': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1467
|
+
'caret-down-strong': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1468
|
+
'caret-left': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1469
|
+
'caret-left-strong': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1470
|
+
'caret-right': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1471
|
+
'caret-right-strong': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1472
|
+
'caret-up': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1473
|
+
'caret-up-strong': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1474
|
+
channel: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1475
|
+
chapters: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1476
|
+
checkmark: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1477
|
+
'checkmark-circle': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1478
|
+
'checkmark-circle-outline': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1479
|
+
'checkmark-three-quaters-circle': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1480
|
+
'circle-slashed': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1481
|
+
clapboard: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1482
|
+
clips: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1483
|
+
close: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1484
|
+
'close-octagon': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1485
|
+
'closed-captions': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1486
|
+
cmd: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1487
|
+
collapse: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1488
|
+
'collapse-diagonal': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1489
|
+
collection: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1490
|
+
comments: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1491
|
+
company: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1492
|
+
compare: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1493
|
+
'connection-okay': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1494
|
+
'connection-poor': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1495
|
+
'connection-strong': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1496
|
+
'content-library': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1497
|
+
controls: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1498
|
+
'credit-card': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1499
|
+
credits: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1500
|
+
'cursor-click': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1501
|
+
delete: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1502
|
+
desktop: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1503
|
+
'docs-dev': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1504
|
+
'dots-horizontal': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1505
|
+
download: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1506
|
+
'edit-transcript': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1507
|
+
'ellipses-vertical': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1508
|
+
embed: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1509
|
+
envelope: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1510
|
+
'envelope-open': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1511
|
+
error: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1512
|
+
expand: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1513
|
+
'expand-diagonal': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1514
|
+
'expand-diagonal-window': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1515
|
+
'expand-horizontal': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1516
|
+
'fast-forward': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1517
|
+
favorite: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1518
|
+
'favorite-outline': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1519
|
+
featured: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1520
|
+
'file-tree': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1521
|
+
fill: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1522
|
+
'film-strip': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1523
|
+
filter: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1524
|
+
fit: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1525
|
+
fonts: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1526
|
+
footer: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1527
|
+
'full-screen': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1528
|
+
gear: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1529
|
+
'getting-started': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1530
|
+
gradient: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1531
|
+
grid: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1532
|
+
'grip-dots-vertical': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1533
|
+
header: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1534
|
+
'help-center': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1535
|
+
hide: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1536
|
+
home: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1537
|
+
hourglass: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1538
|
+
import: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1539
|
+
info: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1540
|
+
integrations: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1541
|
+
keyboard: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1542
|
+
layout: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1543
|
+
leave: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1544
|
+
'light-bulb': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1545
|
+
link: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1546
|
+
list: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1547
|
+
live: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1548
|
+
localization: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1549
|
+
lock: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1550
|
+
logout: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1551
|
+
maximize: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1552
|
+
media: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1553
|
+
megaphone: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1554
|
+
menu: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1555
|
+
mic: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1556
|
+
'mic-off': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1557
|
+
minimize: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1558
|
+
minus: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1559
|
+
'minus-circle': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1560
|
+
mobile: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1561
|
+
'more-options': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1562
|
+
'move-left': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1563
|
+
'move-right': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1564
|
+
music: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1565
|
+
'my-library': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1566
|
+
'on-air': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1567
|
+
'open-new': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1568
|
+
overview: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1569
|
+
page: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1570
|
+
'panel-left': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1571
|
+
'panel-right': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1572
|
+
'panel-up': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1573
|
+
'paper-clip': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1574
|
+
password: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1575
|
+
pause: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1576
|
+
pencil: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1577
|
+
'pencil-sparkle': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1578
|
+
people: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1579
|
+
pin: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1580
|
+
'pin-slash': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1581
|
+
pip: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1582
|
+
play: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1583
|
+
player: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1584
|
+
playlist: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1585
|
+
plus: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1586
|
+
podcast: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1587
|
+
preview: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1588
|
+
'private-chat': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1589
|
+
'private-user-sessions': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1590
|
+
project: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1591
|
+
'project-open': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1592
|
+
properties: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1593
|
+
'question-chat': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1594
|
+
'question-mark': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1595
|
+
react: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1596
|
+
record: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1597
|
+
'record-group': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1598
|
+
redo: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1599
|
+
refresh: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1600
|
+
remix: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1601
|
+
replace: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1602
|
+
reply: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1603
|
+
'request-video': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1604
|
+
'revert-to-original': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1605
|
+
rewind: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1606
|
+
save: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1607
|
+
'save-as-copy': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1608
|
+
scissors: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1609
|
+
'screenshare-off': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1610
|
+
'screenshare-on': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1611
|
+
search: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1612
|
+
send: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1613
|
+
shapes: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1614
|
+
share: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1615
|
+
'sharing-permissions': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1616
|
+
simulcast: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1617
|
+
sort: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1618
|
+
sparkle: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1619
|
+
speed: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1620
|
+
spinner: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1621
|
+
stats: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1622
|
+
'switch-accounts': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1623
|
+
tag: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1624
|
+
teleprompter: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1625
|
+
'text-bold': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1626
|
+
'text-italics': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1627
|
+
'text-size': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1628
|
+
thumbnail: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1629
|
+
'thumbs-down': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1630
|
+
'thumbs-up': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1631
|
+
'timeline-vertical': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1632
|
+
token: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1633
|
+
transcript: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1634
|
+
transitions: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1635
|
+
transparency: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1636
|
+
trends: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1637
|
+
'trial-unlock-clock': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1638
|
+
trim: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1639
|
+
turnstile: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1640
|
+
undo: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1641
|
+
unlock: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1642
|
+
upload: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1643
|
+
'users-permissions': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1644
|
+
'view-stream': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1645
|
+
volume: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1646
|
+
'volume-off': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1647
|
+
'volume-up': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1648
|
+
'volume-x': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1649
|
+
wand: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1650
|
+
waveform: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1651
|
+
webhook: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1652
|
+
write: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1653
|
+
'zoom-in': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1654
|
+
'zoom-out': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1565
1655
|
};
|
|
1566
1656
|
type IconNameType = keyof typeof iconMap;
|
|
1567
1657
|
//#endregion
|
|
@@ -1632,7 +1722,7 @@ declare const CollapsibleTriggerIcon: {
|
|
|
1632
1722
|
({
|
|
1633
1723
|
type,
|
|
1634
1724
|
...props
|
|
1635
|
-
}: CollapsibleTriggerIconProps): react_jsx_runtime0.JSX.Element;
|
|
1725
|
+
}: CollapsibleTriggerIconProps): _$react_jsx_runtime0.JSX.Element;
|
|
1636
1726
|
displayName: string;
|
|
1637
1727
|
};
|
|
1638
1728
|
//#endregion
|
|
@@ -1650,7 +1740,7 @@ type CollapsibleContentProps$1 = {
|
|
|
1650
1740
|
declare const CollapsibleContent: ({
|
|
1651
1741
|
clamp,
|
|
1652
1742
|
children
|
|
1653
|
-
}: CollapsibleContentProps$1) => react_jsx_runtime0.JSX.Element;
|
|
1743
|
+
}: CollapsibleContentProps$1) => _$react_jsx_runtime0.JSX.Element;
|
|
1654
1744
|
//#endregion
|
|
1655
1745
|
//#region src/components/ColorPicker/ColorGrid.d.ts
|
|
1656
1746
|
type ColorGridProps = PropsWithChildren & {
|
|
@@ -1814,9 +1904,9 @@ type ColorPickerTriggerProps = PropsWithChildren;
|
|
|
1814
1904
|
* it renders a swatch and hex label for the current color; pass custom children
|
|
1815
1905
|
* to replace that content.
|
|
1816
1906
|
*/
|
|
1817
|
-
declare const ColorPickerTrigger: react.ForwardRefExoticComponent<{
|
|
1818
|
-
children?: react.ReactNode | undefined;
|
|
1819
|
-
} & react.RefAttributes<HTMLButtonElement>>;
|
|
1907
|
+
declare const ColorPickerTrigger: _$react.ForwardRefExoticComponent<{
|
|
1908
|
+
children?: _$react.ReactNode | undefined;
|
|
1909
|
+
} & _$react.RefAttributes<HTMLButtonElement>>;
|
|
1820
1910
|
//#endregion
|
|
1821
1911
|
//#region src/components/ColorPicker/ContrastControls.d.ts
|
|
1822
1912
|
type ContrastControlsProps = object;
|
|
@@ -1971,7 +2061,7 @@ declare const Combobox: ({
|
|
|
1971
2061
|
children,
|
|
1972
2062
|
flipPopover,
|
|
1973
2063
|
fullWidth
|
|
1974
|
-
}: ComboboxProps) => react_jsx_runtime0.JSX.Element;
|
|
2064
|
+
}: ComboboxProps) => _$react_jsx_runtime0.JSX.Element;
|
|
1975
2065
|
//#endregion
|
|
1976
2066
|
//#region src/components/Combobox/ComboboxOption.d.ts
|
|
1977
2067
|
type ComboboxOptionProps = {
|
|
@@ -1981,7 +2071,7 @@ type ComboboxOptionProps = {
|
|
|
1981
2071
|
declare const ComboboxOption: ({
|
|
1982
2072
|
value,
|
|
1983
2073
|
children
|
|
1984
|
-
}: ComboboxOptionProps) => react_jsx_runtime0.JSX.Element;
|
|
2074
|
+
}: ComboboxOptionProps) => _$react_jsx_runtime0.JSX.Element;
|
|
1985
2075
|
//#endregion
|
|
1986
2076
|
//#region src/components/ContextMenu/ContextMenu.d.ts
|
|
1987
2077
|
type ContextMenuProps = {
|
|
@@ -2016,7 +2106,7 @@ declare const ContextMenu: ({
|
|
|
2016
2106
|
side,
|
|
2017
2107
|
onRequestClose,
|
|
2018
2108
|
compact
|
|
2019
|
-
}: ContextMenuProps) => react_jsx_runtime0.JSX.Element | null;
|
|
2109
|
+
}: ContextMenuProps) => _$react_jsx_runtime0.JSX.Element | null;
|
|
2020
2110
|
//#endregion
|
|
2021
2111
|
//#region src/components/CustomizableThemeWrapper/CustomizableThemeWrapper.d.ts
|
|
2022
2112
|
type CustomizableTokens = '--wui-color-backdrop' | '--wui-color-bg-app' | '--wui-color-bg-fill-active' | '--wui-color-bg-fill-hover' | '--wui-color-bg-fill-white ' | '--wui-color-bg-fill' | '--wui-color-bg-surface-active' | '--wui-color-bg-surface-disabled' | '--wui-color-bg-surface-hover' | '--wui-color-bg-surface-secondary-active' | '--wui-color-bg-surface-secondary-hover' | '--wui-color-bg-surface-secondary' | '--wui-color-bg-surface-selected-active' | '--wui-color-bg-surface-selected-hover' | '--wui-color-bg-surface-selected' | '--wui-color-bg-surface-tertiary' | '--wui-color-bg-surface' | '--wui-color-bg-tooltip' | '--wui-color-border-active-selected' | '--wui-color-border-active' | '--wui-color-border-disabled' | '--wui-color-border-hover-selected' | '--wui-color-border-hover' | '--wui-color-border-secondary-active' | '--wui-color-border-secondary-hover' | '--wui-color-border-secondary' | '--wui-color-border-selected' | '--wui-color-border' | '--wui-color-drop-shadow' | '--wui-color-focus-color' | '--wui-color-focus-ring-disabled' | '--wui-color-focus-ring' | '--wui-color-icon-disabled' | '--wui-color-icon-on-fill' | '--wui-color-icon-selected' | '--wui-color-icon' | '--wui-color-invalid-indicator' | '--wui-color-notification-pill-color' | '--wui-color-segmented-control-checked-background' | '--wui-color-text-button' | '--wui-color-text-disabled' | '--wui-color-text-link' | '--wui-color-text-on-fill-white-selected' | '--wui-color-text-on-fill' | '--wui-color-text-secondary' | '--wui-color-text-selected' | '--wui-color-text' | '--wui-typography-family-brand' | '--wui-typography-family-default' | '--wui-typography-family-mono' | '--wui-typography-weight-body-bold' | '--wui-typography-weight-body' | '--wui-typography-weight-heading' | '--wui-typography-weight-label-bold' | '--wui-typography-weight-label';
|
|
@@ -2073,7 +2163,7 @@ type DataCardProps = ComponentPropsWithoutRef<'div'> & Partial<Pick<ButtonAsLink
|
|
|
2073
2163
|
subtitle?: ReactNode;
|
|
2074
2164
|
};
|
|
2075
2165
|
declare const DataCard: {
|
|
2076
|
-
(props: DataCardProps): react_jsx_runtime0.JSX.Element;
|
|
2166
|
+
(props: DataCardProps): _$react_jsx_runtime0.JSX.Element;
|
|
2077
2167
|
displayName: string;
|
|
2078
2168
|
};
|
|
2079
2169
|
//#endregion
|
|
@@ -2135,7 +2225,7 @@ declare const DataCardTrend: ({
|
|
|
2135
2225
|
//#region src/components/DataCards/DataCardHoverArrow.d.ts
|
|
2136
2226
|
type DataCardHoverArrowProps = object;
|
|
2137
2227
|
declare const DataCardHoverArrow: {
|
|
2138
|
-
(props: DataCardHoverArrowProps): react_jsx_runtime0.JSX.Element;
|
|
2228
|
+
(props: DataCardHoverArrowProps): _$react_jsx_runtime0.JSX.Element;
|
|
2139
2229
|
displayName: string;
|
|
2140
2230
|
};
|
|
2141
2231
|
//#endregion
|
|
@@ -2192,18 +2282,18 @@ declare const DataListItem: {
|
|
|
2192
2282
|
//#region src/components/Text/Text.d.ts
|
|
2193
2283
|
type AlignmentTypes$1 = 'center' | 'justify' | 'left' | 'right';
|
|
2194
2284
|
declare const variantStyleMap$1: {
|
|
2195
|
-
body1: styled_components0.RuleSet<object>;
|
|
2196
|
-
body2: styled_components0.RuleSet<object>;
|
|
2197
|
-
body3: styled_components0.RuleSet<object>;
|
|
2198
|
-
body4: styled_components0.RuleSet<object>;
|
|
2199
|
-
body1Mono: styled_components0.RuleSet<object>;
|
|
2200
|
-
body2Mono: styled_components0.RuleSet<object>;
|
|
2201
|
-
body3Mono: styled_components0.RuleSet<object>;
|
|
2202
|
-
body4Mono: styled_components0.RuleSet<object>;
|
|
2203
|
-
label1: styled_components0.RuleSet<object>;
|
|
2204
|
-
label2: styled_components0.RuleSet<object>;
|
|
2205
|
-
label3: styled_components0.RuleSet<object>;
|
|
2206
|
-
label4: styled_components0.RuleSet<object>;
|
|
2285
|
+
body1: _$styled_components0.RuleSet<object>;
|
|
2286
|
+
body2: _$styled_components0.RuleSet<object>;
|
|
2287
|
+
body3: _$styled_components0.RuleSet<object>;
|
|
2288
|
+
body4: _$styled_components0.RuleSet<object>;
|
|
2289
|
+
body1Mono: _$styled_components0.RuleSet<object>;
|
|
2290
|
+
body2Mono: _$styled_components0.RuleSet<object>;
|
|
2291
|
+
body3Mono: _$styled_components0.RuleSet<object>;
|
|
2292
|
+
body4Mono: _$styled_components0.RuleSet<object>;
|
|
2293
|
+
label1: _$styled_components0.RuleSet<object>;
|
|
2294
|
+
label2: _$styled_components0.RuleSet<object>;
|
|
2295
|
+
label3: _$styled_components0.RuleSet<object>;
|
|
2296
|
+
label4: _$styled_components0.RuleSet<object>;
|
|
2207
2297
|
};
|
|
2208
2298
|
type TextProps = ComponentPropsWithoutRef<'div'> & {
|
|
2209
2299
|
/**
|
|
@@ -2260,7 +2350,7 @@ type TextProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
2260
2350
|
/**
|
|
2261
2351
|
* Used for rending paragraphs and inline text.
|
|
2262
2352
|
*/
|
|
2263
|
-
declare const Text: (<C extends ElementType = "p">(props: PolymorphicComponentProps<C, TextProps>) => react.ReactElement | null) & UnknownRecord;
|
|
2353
|
+
declare const Text: (<C extends ElementType = "p">(props: PolymorphicComponentProps<C, TextProps>) => _$react.ReactElement | null) & UnknownRecord;
|
|
2264
2354
|
//#endregion
|
|
2265
2355
|
//#region src/components/DataList/DataListItemLabel.d.ts
|
|
2266
2356
|
type DataListItemLabelProps = TextProps;
|
|
@@ -2308,13 +2398,13 @@ declare const Divider: {
|
|
|
2308
2398
|
//#region src/components/Heading/Heading.d.ts
|
|
2309
2399
|
type AlignmentTypes = 'center' | 'justify' | 'left' | 'right';
|
|
2310
2400
|
declare const variantStyleMap: {
|
|
2311
|
-
hero: styled_components0.RuleSet<object>;
|
|
2312
|
-
heading1: styled_components0.RuleSet<object>;
|
|
2313
|
-
heading2: styled_components0.RuleSet<object>;
|
|
2314
|
-
heading3: styled_components0.RuleSet<object>;
|
|
2315
|
-
heading4: styled_components0.RuleSet<object>;
|
|
2316
|
-
heading5: styled_components0.RuleSet<object>;
|
|
2317
|
-
heading6: styled_components0.RuleSet<object>;
|
|
2401
|
+
hero: _$styled_components0.RuleSet<object>;
|
|
2402
|
+
heading1: _$styled_components0.RuleSet<object>;
|
|
2403
|
+
heading2: _$styled_components0.RuleSet<object>;
|
|
2404
|
+
heading3: _$styled_components0.RuleSet<object>;
|
|
2405
|
+
heading4: _$styled_components0.RuleSet<object>;
|
|
2406
|
+
heading5: _$styled_components0.RuleSet<object>;
|
|
2407
|
+
heading6: _$styled_components0.RuleSet<object>;
|
|
2318
2408
|
};
|
|
2319
2409
|
declare const DEFAULT_ELEMENT = "h1";
|
|
2320
2410
|
type HeadingProps = ComponentPropsWithoutRef<typeof DEFAULT_ELEMENT> & {
|
|
@@ -2369,7 +2459,7 @@ type HeadingProps = ComponentPropsWithoutRef<typeof DEFAULT_ELEMENT> & {
|
|
|
2369
2459
|
/**
|
|
2370
2460
|
* Displaying heading text, both visually and semantically
|
|
2371
2461
|
*/
|
|
2372
|
-
declare const Heading: (<C extends ElementType = "h1">(props: PolymorphicComponentProps<C, HeadingProps>) => react.ReactElement | null) & UnknownRecord;
|
|
2462
|
+
declare const Heading: (<C extends ElementType = "h1">(props: PolymorphicComponentProps<C, HeadingProps>) => _$react.ReactElement | null) & UnknownRecord;
|
|
2373
2463
|
//#endregion
|
|
2374
2464
|
//#region src/components/EditableHeading/EditableHeading.d.ts
|
|
2375
2465
|
type EditableHeadingProps = {
|
|
@@ -2430,25 +2520,25 @@ declare const EditableHeading: ({
|
|
|
2430
2520
|
//#endregion
|
|
2431
2521
|
//#region src/private/helpers/getTypographicStyles/getTypographicStyles.d.ts
|
|
2432
2522
|
declare const typographicVariantStyleMap: {
|
|
2433
|
-
hero: styled_components0.RuleSet<object>;
|
|
2434
|
-
heading1: styled_components0.RuleSet<object>;
|
|
2435
|
-
heading2: styled_components0.RuleSet<object>;
|
|
2436
|
-
heading3: styled_components0.RuleSet<object>;
|
|
2437
|
-
heading4: styled_components0.RuleSet<object>;
|
|
2438
|
-
heading5: styled_components0.RuleSet<object>;
|
|
2439
|
-
heading6: styled_components0.RuleSet<object>;
|
|
2440
|
-
body1: styled_components0.RuleSet<object>;
|
|
2441
|
-
body2: styled_components0.RuleSet<object>;
|
|
2442
|
-
body3: styled_components0.RuleSet<object>;
|
|
2443
|
-
body4: styled_components0.RuleSet<object>;
|
|
2444
|
-
body1Mono: styled_components0.RuleSet<object>;
|
|
2445
|
-
body2Mono: styled_components0.RuleSet<object>;
|
|
2446
|
-
body3Mono: styled_components0.RuleSet<object>;
|
|
2447
|
-
body4Mono: styled_components0.RuleSet<object>;
|
|
2448
|
-
label1: styled_components0.RuleSet<object>;
|
|
2449
|
-
label2: styled_components0.RuleSet<object>;
|
|
2450
|
-
label3: styled_components0.RuleSet<object>;
|
|
2451
|
-
label4: styled_components0.RuleSet<object>;
|
|
2523
|
+
hero: _$styled_components0.RuleSet<object>;
|
|
2524
|
+
heading1: _$styled_components0.RuleSet<object>;
|
|
2525
|
+
heading2: _$styled_components0.RuleSet<object>;
|
|
2526
|
+
heading3: _$styled_components0.RuleSet<object>;
|
|
2527
|
+
heading4: _$styled_components0.RuleSet<object>;
|
|
2528
|
+
heading5: _$styled_components0.RuleSet<object>;
|
|
2529
|
+
heading6: _$styled_components0.RuleSet<object>;
|
|
2530
|
+
body1: _$styled_components0.RuleSet<object>;
|
|
2531
|
+
body2: _$styled_components0.RuleSet<object>;
|
|
2532
|
+
body3: _$styled_components0.RuleSet<object>;
|
|
2533
|
+
body4: _$styled_components0.RuleSet<object>;
|
|
2534
|
+
body1Mono: _$styled_components0.RuleSet<object>;
|
|
2535
|
+
body2Mono: _$styled_components0.RuleSet<object>;
|
|
2536
|
+
body3Mono: _$styled_components0.RuleSet<object>;
|
|
2537
|
+
body4Mono: _$styled_components0.RuleSet<object>;
|
|
2538
|
+
label1: _$styled_components0.RuleSet<object>;
|
|
2539
|
+
label2: _$styled_components0.RuleSet<object>;
|
|
2540
|
+
label3: _$styled_components0.RuleSet<object>;
|
|
2541
|
+
label4: _$styled_components0.RuleSet<object>;
|
|
2452
2542
|
};
|
|
2453
2543
|
type TypographicVariant = keyof typeof typographicVariantStyleMap;
|
|
2454
2544
|
//#endregion
|
|
@@ -2541,7 +2631,7 @@ type EditableTextContextValues = {
|
|
|
2541
2631
|
maxLines: number | undefined;
|
|
2542
2632
|
finalFocusEl: (() => HTMLElement | null) | undefined;
|
|
2543
2633
|
};
|
|
2544
|
-
declare const EditableTextContext: react.Context<EditableTextContextValues | null>;
|
|
2634
|
+
declare const EditableTextContext: _$react.Context<EditableTextContextValues | null>;
|
|
2545
2635
|
declare const EditableTextRoot: ({
|
|
2546
2636
|
children,
|
|
2547
2637
|
defaultValue,
|
|
@@ -2588,7 +2678,7 @@ type EditableTextDisplayProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
2588
2678
|
asTrigger?: boolean;
|
|
2589
2679
|
renderAs?: ElementType;
|
|
2590
2680
|
};
|
|
2591
|
-
declare const EditableTextDisplay: (<C extends ElementType = "h1">(props: PolymorphicComponentProps<C, EditableTextDisplayProps>) => react.ReactElement | null) & UnknownRecord;
|
|
2681
|
+
declare const EditableTextDisplay: (<C extends ElementType = "h1">(props: PolymorphicComponentProps<C, EditableTextDisplayProps>) => _$react.ReactElement | null) & UnknownRecord;
|
|
2592
2682
|
//#endregion
|
|
2593
2683
|
//#region src/components/Label/Label.d.ts
|
|
2594
2684
|
type LabelProps = ComponentPropsWithoutRef<'label'> & {
|
|
@@ -2633,7 +2723,7 @@ declare const Label: {
|
|
|
2633
2723
|
type EditableTextLabelProps = Omit<LabelProps, 'disabled' | 'htmlFor' | 'required'>;
|
|
2634
2724
|
declare const EditableTextLabel: ({
|
|
2635
2725
|
...props
|
|
2636
|
-
}: EditableTextLabelProps) => react_jsx_runtime0.JSX.Element;
|
|
2726
|
+
}: EditableTextLabelProps) => _$react_jsx_runtime0.JSX.Element;
|
|
2637
2727
|
//#endregion
|
|
2638
2728
|
//#region src/components/EditableText/EditableTextSubmitButton.d.ts
|
|
2639
2729
|
type EditableTextSubmitButtonProps = {
|
|
@@ -2709,7 +2799,7 @@ type InputProps = Omit<InputHTMLAttributes<HTMLInputElement | HTMLTextAreaElemen
|
|
|
2709
2799
|
/**
|
|
2710
2800
|
* Capture user input with a text field. Should be used within a [Form]() and [FormField]().
|
|
2711
2801
|
*/
|
|
2712
|
-
declare const Input: react.ForwardRefExoticComponent<Omit<InputHTMLAttributes<HTMLInputElement | HTMLTextAreaElement>, "type"> & {
|
|
2802
|
+
declare const Input: _$react.ForwardRefExoticComponent<Omit<InputHTMLAttributes<HTMLInputElement | HTMLTextAreaElement>, "type"> & {
|
|
2713
2803
|
/**
|
|
2714
2804
|
* When enabled, focusing the input will select the entire text within
|
|
2715
2805
|
*/
|
|
@@ -2747,7 +2837,7 @@ declare const Input: react.ForwardRefExoticComponent<Omit<InputHTMLAttributes<HT
|
|
|
2747
2837
|
* The type of the input
|
|
2748
2838
|
*/
|
|
2749
2839
|
type?: "email" | "multiline" | "number" | "password" | "phone" | "search" | "text" | "url";
|
|
2750
|
-
} & react.RefAttributes<HTMLInputElement | HTMLTextAreaElement>>;
|
|
2840
|
+
} & _$react.RefAttributes<HTMLInputElement | HTMLTextAreaElement>>;
|
|
2751
2841
|
//#endregion
|
|
2752
2842
|
//#region src/components/EditableText/EditableTextInput.d.ts
|
|
2753
2843
|
type EditableTextInputProps = Pick<InputProps, 'autoSelect'>;
|
|
@@ -2856,7 +2946,7 @@ declare const FeatureCardImage: ({
|
|
|
2856
2946
|
alt,
|
|
2857
2947
|
src,
|
|
2858
2948
|
...props
|
|
2859
|
-
}: FeatureCardImageProps) => react_jsx_runtime0.JSX.Element;
|
|
2949
|
+
}: FeatureCardImageProps) => _$react_jsx_runtime0.JSX.Element;
|
|
2860
2950
|
//#endregion
|
|
2861
2951
|
//#region src/components/Form/useFormState.d.ts
|
|
2862
2952
|
type ActionCallback<T> = (data: T, nextData: T) => Promise<T> | T;
|
|
@@ -2883,7 +2973,7 @@ type FormWithLabelProps = {
|
|
|
2883
2973
|
'aria-label': string;
|
|
2884
2974
|
'aria-labelledby'?: never;
|
|
2885
2975
|
};
|
|
2886
|
-
type FormErrors<T> = Partial<{ [
|
|
2976
|
+
type FormErrors<T> = Partial<{ [Key in keyof T]: string[] | string }>;
|
|
2887
2977
|
type FormProps<T> = Omit<ComponentPropsWithoutRef<'form'>, 'action' | 'aria-label' | 'aria-labelledby' | 'children'> & {
|
|
2888
2978
|
/**
|
|
2889
2979
|
* The action to be performed when the form is submitted. It can be asynchronous.
|
|
@@ -2929,7 +3019,7 @@ type FormErrorSummaryProps = {
|
|
|
2929
3019
|
};
|
|
2930
3020
|
declare const FormErrorSummary: ({
|
|
2931
3021
|
description
|
|
2932
|
-
}: FormErrorSummaryProps) => react_jsx_runtime0.JSX.Element | null;
|
|
3022
|
+
}: FormErrorSummaryProps) => _$react_jsx_runtime0.JSX.Element | null;
|
|
2933
3023
|
//#endregion
|
|
2934
3024
|
//#region src/components/Form/validateWithYup.d.ts
|
|
2935
3025
|
declare const validateWithYup: <T>(schema: Schema<T>) => (data: object) => {};
|
|
@@ -3087,7 +3177,7 @@ type GridProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
3087
3177
|
expandItems?: boolean;
|
|
3088
3178
|
renderAs?: ElementType;
|
|
3089
3179
|
};
|
|
3090
|
-
declare const Grid: (<C extends ElementType = "div">(props: PolymorphicComponentProps<C, GridProps>) => react.ReactElement | null) & UnknownRecord;
|
|
3180
|
+
declare const Grid: (<C extends ElementType = "div">(props: PolymorphicComponentProps<C, GridProps>) => _$react.ReactElement | null) & UnknownRecord;
|
|
3091
3181
|
//#endregion
|
|
3092
3182
|
//#region src/components/PreviewCard/PreviewCard.d.ts
|
|
3093
3183
|
type ContentProps$1 = Omit<HoverCardContentProps, 'alignOffset' | 'arrowPadding' | 'asChild' | 'collisionPadding' | 'hideWhenDetached' | 'sideOffset'>;
|
|
@@ -3167,7 +3257,7 @@ type IconButtonProps = {
|
|
|
3167
3257
|
* IconButton behaves like a [Button](?path=/docs/components-button--docs),
|
|
3168
3258
|
* but only accepts an [Icon](?path=/docs/components-icon--docs) as a child.
|
|
3169
3259
|
*/
|
|
3170
|
-
declare const IconButton: react.ForwardRefExoticComponent<(Omit<{
|
|
3260
|
+
declare const IconButton: _$react.ForwardRefExoticComponent<(Omit<{
|
|
3171
3261
|
/**
|
|
3172
3262
|
* Accessible text for screen readers.
|
|
3173
3263
|
*/
|
|
@@ -3185,7 +3275,7 @@ declare const IconButton: react.ForwardRefExoticComponent<(Omit<{
|
|
|
3185
3275
|
* The [Icon](?path=/docs/components-icon--docs) component to use, e.g. `<Icon type="favorite" />`
|
|
3186
3276
|
*/
|
|
3187
3277
|
children: JSX.Element;
|
|
3188
|
-
} & Omit<ButtonAsLinkProps, "fullWidth" | "leftIcon" | "rightIcon">, "ref">) & react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
3278
|
+
} & Omit<ButtonAsLinkProps, "fullWidth" | "leftIcon" | "rightIcon">, "ref">) & _$react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
3189
3279
|
//#endregion
|
|
3190
3280
|
//#region src/components/Image/Image.d.ts
|
|
3191
3281
|
type ImageProps = ComponentPropsWithoutRef<'img'> & {
|
|
@@ -3265,7 +3355,7 @@ type InputClickToCopyProps = Omit<InputProps, 'autoSelect' | 'disabled' | 'right
|
|
|
3265
3355
|
/**
|
|
3266
3356
|
* Provides a readonly input that copies the text to the clipboard when clicked.
|
|
3267
3357
|
*/
|
|
3268
|
-
declare const InputClickToCopy: react.ForwardRefExoticComponent<Omit<InputProps, "type" | "value" | "disabled" | "rightIcon" | "autoSelect"> & {
|
|
3358
|
+
declare const InputClickToCopy: _$react.ForwardRefExoticComponent<Omit<InputProps, "type" | "value" | "disabled" | "rightIcon" | "autoSelect"> & {
|
|
3269
3359
|
/**
|
|
3270
3360
|
* When disabled, the copy action will not be triggered
|
|
3271
3361
|
*/
|
|
@@ -3278,7 +3368,7 @@ declare const InputClickToCopy: react.ForwardRefExoticComponent<Omit<InputProps,
|
|
|
3278
3368
|
* the value of what is copied
|
|
3279
3369
|
*/
|
|
3280
3370
|
value: string;
|
|
3281
|
-
} & react.RefAttributes<HTMLInputElement>>;
|
|
3371
|
+
} & _$react.RefAttributes<HTMLInputElement>>;
|
|
3282
3372
|
//#endregion
|
|
3283
3373
|
//#region src/components/InputPassword/InputPassword.d.ts
|
|
3284
3374
|
type InputPasswordProps = Omit<InputProps, 'leftIcon' | 'monospace' | 'rightIcon' | 'type'> & {
|
|
@@ -3294,7 +3384,7 @@ type InputPasswordProps = Omit<InputProps, 'leftIcon' | 'monospace' | 'rightIcon
|
|
|
3294
3384
|
/**
|
|
3295
3385
|
* A password input component with a toggle button to show or hide the password text.
|
|
3296
3386
|
*/
|
|
3297
|
-
declare const InputPassword: react.ForwardRefExoticComponent<Omit<InputProps, "type" | "monospace" | "leftIcon" | "rightIcon"> & {
|
|
3387
|
+
declare const InputPassword: _$react.ForwardRefExoticComponent<Omit<InputProps, "type" | "monospace" | "leftIcon" | "rightIcon"> & {
|
|
3298
3388
|
/**
|
|
3299
3389
|
* Set the disabled state of the input
|
|
3300
3390
|
*/
|
|
@@ -3303,7 +3393,7 @@ declare const InputPassword: react.ForwardRefExoticComponent<Omit<InputProps, "t
|
|
|
3303
3393
|
* Callback function that is called when the visibility state changes
|
|
3304
3394
|
*/
|
|
3305
3395
|
onVisibilityToggle?: (isVisible: boolean) => void;
|
|
3306
|
-
} & react.RefAttributes<HTMLInputElement>>;
|
|
3396
|
+
} & _$react.RefAttributes<HTMLInputElement>>;
|
|
3307
3397
|
//#endregion
|
|
3308
3398
|
//#region src/components/KeyboardShortcut/KeyboardKeyTypes.d.ts
|
|
3309
3399
|
type AlphanumericKeyboardKeys = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | 'a' | 'b' | 'c' | 'd' | 'e' | 'f' | 'g' | 'h' | 'i' | 'j' | 'k' | 'l' | 'm' | 'n' | 'o' | 'p' | 'q' | 'r' | 's' | 't' | 'u' | 'v' | 'w' | 'x' | 'y' | 'z';
|
|
@@ -3495,7 +3585,7 @@ type MenuProps = MenuControlProps & {
|
|
|
3495
3585
|
/**
|
|
3496
3586
|
* Displays a menu to the users with a set of actions.
|
|
3497
3587
|
*/
|
|
3498
|
-
declare const Menu: react.ForwardRefExoticComponent<MenuProps & react.RefAttributes<HTMLButtonElement>>;
|
|
3588
|
+
declare const Menu: _$react.ForwardRefExoticComponent<MenuProps & _$react.RefAttributes<HTMLButtonElement>>;
|
|
3499
3589
|
//#endregion
|
|
3500
3590
|
//#region src/components/Menu/MenuLabel.d.ts
|
|
3501
3591
|
type MenuLabelProps = {
|
|
@@ -3508,7 +3598,7 @@ declare const MenuLabel: {
|
|
|
3508
3598
|
({
|
|
3509
3599
|
children,
|
|
3510
3600
|
...props
|
|
3511
|
-
}: MenuLabelProps): react_jsx_runtime0.JSX.Element;
|
|
3601
|
+
}: MenuLabelProps): _$react_jsx_runtime0.JSX.Element;
|
|
3512
3602
|
displayName: string;
|
|
3513
3603
|
};
|
|
3514
3604
|
//#endregion
|
|
@@ -3542,7 +3632,7 @@ declare const SubMenu: {
|
|
|
3542
3632
|
children,
|
|
3543
3633
|
onOpenChange,
|
|
3544
3634
|
...props
|
|
3545
|
-
}: SubMenuProps): react_jsx_runtime0.JSX.Element;
|
|
3635
|
+
}: SubMenuProps): _$react_jsx_runtime0.JSX.Element;
|
|
3546
3636
|
displayName: string;
|
|
3547
3637
|
};
|
|
3548
3638
|
//#endregion
|
|
@@ -3600,15 +3690,15 @@ type MenuItemButtonProps = ButtonProps & {
|
|
|
3600
3690
|
};
|
|
3601
3691
|
//#endregion
|
|
3602
3692
|
//#region src/components/Menu/MenuItem.d.ts
|
|
3603
|
-
declare const MenuItem: react.ForwardRefExoticComponent<(Omit<DropdownMenuItemProps & BaseButtonProps & react.ClassAttributes<HTMLButtonElement> & react.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
3693
|
+
declare const MenuItem: _$react.ForwardRefExoticComponent<(Omit<DropdownMenuItemProps & BaseButtonProps & _$react.ClassAttributes<HTMLButtonElement> & _$react.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
3604
3694
|
href?: never;
|
|
3605
3695
|
type?: "button" | "reset" | "submit";
|
|
3606
|
-
children: react.ReactNode;
|
|
3696
|
+
children: _$react.ReactNode;
|
|
3607
3697
|
} & {
|
|
3608
3698
|
appearance?: "dangerous" | "default" | "gated";
|
|
3609
|
-
badge?: react.JSX.Element;
|
|
3610
|
-
children?: react.ReactNode;
|
|
3611
|
-
command?: react.ReactNode;
|
|
3699
|
+
badge?: _$react.JSX.Element;
|
|
3700
|
+
children?: _$react.ReactNode;
|
|
3701
|
+
command?: _$react.ReactNode;
|
|
3612
3702
|
icon?: ButtonProps["leftIcon"];
|
|
3613
3703
|
leftIcon?: ButtonProps["leftIcon"];
|
|
3614
3704
|
rightIcon?: ButtonProps["rightIcon"];
|
|
@@ -3622,29 +3712,29 @@ declare const MenuItem: react.ForwardRefExoticComponent<(Omit<DropdownMenuItemPr
|
|
|
3622
3712
|
* Treats the menu item as a link when provided
|
|
3623
3713
|
*/
|
|
3624
3714
|
href?: MenuItemButtonProps["href"];
|
|
3625
|
-
}, "ref"> | Omit<DropdownMenuItemProps & BaseButtonProps & react.ClassAttributes<HTMLAnchorElement> & react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
3715
|
+
}, "ref"> | Omit<DropdownMenuItemProps & BaseButtonProps & _$react.ClassAttributes<HTMLAnchorElement> & _$react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
3626
3716
|
beforeAction?: (() => Promise<void>) | (() => void);
|
|
3627
|
-
children: react.ReactNode;
|
|
3717
|
+
children: _$react.ReactNode;
|
|
3628
3718
|
colorScheme?: ColorSchemeTypes;
|
|
3629
3719
|
disabled?: boolean;
|
|
3630
3720
|
inheritColor?: boolean;
|
|
3631
|
-
leftIcon?: react.ReactNode | undefined;
|
|
3632
|
-
rightIcon?: react.ReactNode | undefined;
|
|
3721
|
+
leftIcon?: _$react.ReactNode | undefined;
|
|
3722
|
+
rightIcon?: _$react.ReactNode | undefined;
|
|
3633
3723
|
type?: LinkTypes | undefined;
|
|
3634
3724
|
underline?: "always" | "hover" | "none";
|
|
3635
|
-
} & react.ClassAttributes<HTMLButtonElement> & react.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
3725
|
+
} & _$react.ClassAttributes<HTMLButtonElement> & _$react.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
3636
3726
|
href?: never;
|
|
3637
3727
|
type?: "button" | "reset" | "submit";
|
|
3638
3728
|
} & {
|
|
3639
3729
|
href: string | undefined;
|
|
3640
|
-
children: react.ReactNode;
|
|
3730
|
+
children: _$react.ReactNode;
|
|
3641
3731
|
beforeAction?: (() => Promise<void>) | (() => void);
|
|
3642
3732
|
type?: LinkTypes;
|
|
3643
3733
|
} & {
|
|
3644
3734
|
appearance?: "dangerous" | "default" | "gated";
|
|
3645
|
-
badge?: react.JSX.Element;
|
|
3646
|
-
children?: react.ReactNode;
|
|
3647
|
-
command?: react.ReactNode;
|
|
3735
|
+
badge?: _$react.JSX.Element;
|
|
3736
|
+
children?: _$react.ReactNode;
|
|
3737
|
+
command?: _$react.ReactNode;
|
|
3648
3738
|
icon?: ButtonProps["leftIcon"];
|
|
3649
3739
|
leftIcon?: ButtonProps["leftIcon"];
|
|
3650
3740
|
rightIcon?: ButtonProps["rightIcon"];
|
|
@@ -3658,17 +3748,17 @@ declare const MenuItem: react.ForwardRefExoticComponent<(Omit<DropdownMenuItemPr
|
|
|
3658
3748
|
* Treats the menu item as a link when provided
|
|
3659
3749
|
*/
|
|
3660
3750
|
href?: MenuItemButtonProps["href"];
|
|
3661
|
-
}, "ref"> | Omit<DropdownMenuItemProps & BaseButtonProps & react.ClassAttributes<HTMLAnchorElement> & react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
3751
|
+
}, "ref"> | Omit<DropdownMenuItemProps & BaseButtonProps & _$react.ClassAttributes<HTMLAnchorElement> & _$react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
3662
3752
|
beforeAction?: (() => Promise<void>) | (() => void);
|
|
3663
|
-
children: react.ReactNode;
|
|
3753
|
+
children: _$react.ReactNode;
|
|
3664
3754
|
colorScheme?: ColorSchemeTypes;
|
|
3665
3755
|
disabled?: boolean;
|
|
3666
3756
|
inheritColor?: boolean;
|
|
3667
|
-
leftIcon?: react.ReactNode | undefined;
|
|
3668
|
-
rightIcon?: react.ReactNode | undefined;
|
|
3757
|
+
leftIcon?: _$react.ReactNode | undefined;
|
|
3758
|
+
rightIcon?: _$react.ReactNode | undefined;
|
|
3669
3759
|
type?: LinkTypes | undefined;
|
|
3670
3760
|
underline?: "always" | "hover" | "none";
|
|
3671
|
-
} & Omit<react.AnchorHTMLAttributes<HTMLAnchorElement>, "href"> & {
|
|
3761
|
+
} & Omit<_$react.AnchorHTMLAttributes<HTMLAnchorElement>, "href"> & {
|
|
3672
3762
|
reloadDocument?: boolean;
|
|
3673
3763
|
replace?: boolean;
|
|
3674
3764
|
state?: any;
|
|
@@ -3679,14 +3769,14 @@ declare const MenuItem: react.ForwardRefExoticComponent<(Omit<DropdownMenuItemPr
|
|
|
3679
3769
|
type?: LinkTypes;
|
|
3680
3770
|
} & {
|
|
3681
3771
|
href: string | undefined;
|
|
3682
|
-
children: react.ReactNode;
|
|
3772
|
+
children: _$react.ReactNode;
|
|
3683
3773
|
beforeAction?: (() => Promise<void>) | (() => void);
|
|
3684
3774
|
type?: LinkTypes;
|
|
3685
3775
|
} & {
|
|
3686
3776
|
appearance?: "dangerous" | "default" | "gated";
|
|
3687
|
-
badge?: react.JSX.Element;
|
|
3688
|
-
children?: react.ReactNode;
|
|
3689
|
-
command?: react.ReactNode;
|
|
3777
|
+
badge?: _$react.JSX.Element;
|
|
3778
|
+
children?: _$react.ReactNode;
|
|
3779
|
+
command?: _$react.ReactNode;
|
|
3690
3780
|
icon?: ButtonProps["leftIcon"];
|
|
3691
3781
|
leftIcon?: ButtonProps["leftIcon"];
|
|
3692
3782
|
rightIcon?: ButtonProps["rightIcon"];
|
|
@@ -3700,7 +3790,7 @@ declare const MenuItem: react.ForwardRefExoticComponent<(Omit<DropdownMenuItemPr
|
|
|
3700
3790
|
* Treats the menu item as a link when provided
|
|
3701
3791
|
*/
|
|
3702
3792
|
href?: MenuItemButtonProps["href"];
|
|
3703
|
-
}, "ref">) & react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
3793
|
+
}, "ref">) & _$react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
3704
3794
|
//#endregion
|
|
3705
3795
|
//#region src/components/Menu/MenuItemLabel.d.ts
|
|
3706
3796
|
type MenuItemLabelProps = {
|
|
@@ -3711,7 +3801,7 @@ type MenuItemLabelProps = {
|
|
|
3711
3801
|
};
|
|
3712
3802
|
declare const MenuItemLabel: ({
|
|
3713
3803
|
children
|
|
3714
|
-
}: MenuItemLabelProps) => react_jsx_runtime0.JSX.Element;
|
|
3804
|
+
}: MenuItemLabelProps) => _$react_jsx_runtime0.JSX.Element;
|
|
3715
3805
|
//#endregion
|
|
3716
3806
|
//#region src/components/Menu/MenuItemDescription.d.ts
|
|
3717
3807
|
type MenuItemDescriptionProps = {
|
|
@@ -3722,7 +3812,7 @@ type MenuItemDescriptionProps = {
|
|
|
3722
3812
|
};
|
|
3723
3813
|
declare const MenuItemDescription: ({
|
|
3724
3814
|
children
|
|
3725
|
-
}: MenuItemDescriptionProps) => react_jsx_runtime0.JSX.Element;
|
|
3815
|
+
}: MenuItemDescriptionProps) => _$react_jsx_runtime0.JSX.Element;
|
|
3726
3816
|
//#endregion
|
|
3727
3817
|
//#region src/components/Menu/MenuRadioGroup.d.ts
|
|
3728
3818
|
type MenuRadioGroupProps = DropdownMenuRadioGroupProps & {
|
|
@@ -3739,7 +3829,7 @@ declare const MenuRadioGroup: {
|
|
|
3739
3829
|
({
|
|
3740
3830
|
children,
|
|
3741
3831
|
...props
|
|
3742
|
-
}: MenuRadioGroupProps): react_jsx_runtime0.JSX.Element;
|
|
3832
|
+
}: MenuRadioGroupProps): _$react_jsx_runtime0.JSX.Element;
|
|
3743
3833
|
displayName: string;
|
|
3744
3834
|
};
|
|
3745
3835
|
//#endregion
|
|
@@ -3772,7 +3862,7 @@ declare const RadioMenuItem: {
|
|
|
3772
3862
|
value,
|
|
3773
3863
|
indicator,
|
|
3774
3864
|
...props
|
|
3775
|
-
}: RadioMenuItemProps): react_jsx_runtime0.JSX.Element;
|
|
3865
|
+
}: RadioMenuItemProps): _$react_jsx_runtime0.JSX.Element;
|
|
3776
3866
|
displayName: string;
|
|
3777
3867
|
};
|
|
3778
3868
|
//#endregion
|
|
@@ -3806,7 +3896,7 @@ declare const CheckboxMenuItem: {
|
|
|
3806
3896
|
checked,
|
|
3807
3897
|
onCheckedChange,
|
|
3808
3898
|
...props
|
|
3809
|
-
}: CheckboxMenuItemProps): react_jsx_runtime0.JSX.Element;
|
|
3899
|
+
}: CheckboxMenuItemProps): _$react_jsx_runtime0.JSX.Element;
|
|
3810
3900
|
displayName: string;
|
|
3811
3901
|
};
|
|
3812
3902
|
//#endregion
|
|
@@ -3835,10 +3925,10 @@ declare const FilterMenuItem: {
|
|
|
3835
3925
|
checked,
|
|
3836
3926
|
onCheckedChange,
|
|
3837
3927
|
...props
|
|
3838
|
-
}: CheckboxMenuItemProps): react_jsx_runtime0.JSX.Element;
|
|
3928
|
+
}: CheckboxMenuItemProps): _$react_jsx_runtime0.JSX.Element;
|
|
3839
3929
|
displayName: string;
|
|
3840
3930
|
};
|
|
3841
|
-
declare const FilterMenu: react.ForwardRefExoticComponent<FilterMenuProps & react.RefAttributes<HTMLButtonElement>>;
|
|
3931
|
+
declare const FilterMenu: _$react.ForwardRefExoticComponent<FilterMenuProps & _$react.RefAttributes<HTMLButtonElement>>;
|
|
3842
3932
|
//#endregion
|
|
3843
3933
|
//#region src/components/Meter/Meter.d.ts
|
|
3844
3934
|
type MeterSegment = {
|
|
@@ -3951,7 +4041,7 @@ type ModalProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
3951
4041
|
* A Modal is a focused UI element that appears atop the main interface, requiring
|
|
3952
4042
|
* user interaction or dismissal before returning to the underlying content.
|
|
3953
4043
|
*/
|
|
3954
|
-
declare const Modal: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
4044
|
+
declare const Modal: _$react.ForwardRefExoticComponent<Omit<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
3955
4045
|
/**
|
|
3956
4046
|
* The content of the modal.
|
|
3957
4047
|
*/
|
|
@@ -3994,7 +4084,7 @@ declare const Modal: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProp
|
|
|
3994
4084
|
* The width of the modal when space allows. On smaller screens, the modal automatically adjusts to fit the available space.
|
|
3995
4085
|
*/
|
|
3996
4086
|
width?: string;
|
|
3997
|
-
} & react.RefAttributes<HTMLDivElement>>;
|
|
4087
|
+
} & _$react.RefAttributes<HTMLDivElement>>;
|
|
3998
4088
|
//#endregion
|
|
3999
4089
|
//#region src/components/Modal/ModalCallouts.d.ts
|
|
4000
4090
|
type ModalCalloutsProps = {
|
|
@@ -4006,7 +4096,7 @@ type ModalCalloutsProps = {
|
|
|
4006
4096
|
declare const ModalCallouts: {
|
|
4007
4097
|
({
|
|
4008
4098
|
children
|
|
4009
|
-
}: ModalCalloutsProps): react_jsx_runtime0.JSX.Element;
|
|
4099
|
+
}: ModalCalloutsProps): _$react_jsx_runtime0.JSX.Element;
|
|
4010
4100
|
displayName: string;
|
|
4011
4101
|
};
|
|
4012
4102
|
type ModalCalloutProps = {
|
|
@@ -4022,7 +4112,7 @@ declare const ModalCallout: {
|
|
|
4022
4112
|
title,
|
|
4023
4113
|
image,
|
|
4024
4114
|
children
|
|
4025
|
-
}: ModalCalloutProps): react_jsx_runtime0.JSX.Element;
|
|
4115
|
+
}: ModalCalloutProps): _$react_jsx_runtime0.JSX.Element;
|
|
4026
4116
|
displayName: string;
|
|
4027
4117
|
};
|
|
4028
4118
|
//#endregion
|
|
@@ -4201,7 +4291,7 @@ type RadioProps = Omit<ComponentPropsWithoutRef<'input'>, 'hideLabel' | 'label'
|
|
|
4201
4291
|
*/
|
|
4202
4292
|
hideLabel?: boolean;
|
|
4203
4293
|
};
|
|
4204
|
-
declare const Radio: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "onChange" | "value" | "size" | "hideLabel"> & {
|
|
4294
|
+
declare const Radio: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "onChange" | "value" | "size" | "hideLabel"> & {
|
|
4205
4295
|
/**
|
|
4206
4296
|
* Indicates the state of the radio
|
|
4207
4297
|
*/
|
|
@@ -4251,7 +4341,7 @@ declare const Radio: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTM
|
|
|
4251
4341
|
* Whether to visually hide the label (it will still be available to screen readers)
|
|
4252
4342
|
*/
|
|
4253
4343
|
hideLabel?: boolean;
|
|
4254
|
-
} & react.RefAttributes<HTMLInputElement>>;
|
|
4344
|
+
} & _$react.RefAttributes<HTMLInputElement>>;
|
|
4255
4345
|
//#endregion
|
|
4256
4346
|
//#region src/components/RadioCard/RadioCardDefaultLayout.d.ts
|
|
4257
4347
|
type RadioCardDefaultLayoutProps = {
|
|
@@ -4323,7 +4413,7 @@ type RadioCardWithDefaultLayout = BaseRadioCardProps & RadioCardDefaultLayoutPro
|
|
|
4323
4413
|
children?: never;
|
|
4324
4414
|
};
|
|
4325
4415
|
type RadioCardProps = RadioCardWithChildren | RadioCardWithDefaultLayout;
|
|
4326
|
-
declare const RadioCard: react.ForwardRefExoticComponent<RadioCardProps & react.RefAttributes<HTMLInputElement>>;
|
|
4416
|
+
declare const RadioCard: _$react.ForwardRefExoticComponent<RadioCardProps & _$react.RefAttributes<HTMLInputElement>>;
|
|
4327
4417
|
//#endregion
|
|
4328
4418
|
//#region src/components/RadioCard/RadioCardImage.d.ts
|
|
4329
4419
|
type RadioCardImageProps = Omit<ComponentPropsWithoutRef<'input'>, 'onChange'> & {
|
|
@@ -4368,7 +4458,7 @@ type RadioCardImageProps = Omit<ComponentPropsWithoutRef<'input'>, 'onChange'> &
|
|
|
4368
4458
|
*/
|
|
4369
4459
|
padding?: Spacings;
|
|
4370
4460
|
};
|
|
4371
|
-
declare const RadioCardImage: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "onChange"> & {
|
|
4461
|
+
declare const RadioCardImage: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "onChange"> & {
|
|
4372
4462
|
/**
|
|
4373
4463
|
* Indicates the state of the radio
|
|
4374
4464
|
*/
|
|
@@ -4409,7 +4499,7 @@ declare const RadioCardImage: react.ForwardRefExoticComponent<Omit<Omit<react.De
|
|
|
4409
4499
|
* The padding of the card
|
|
4410
4500
|
*/
|
|
4411
4501
|
padding?: Spacings;
|
|
4412
|
-
} & react.RefAttributes<HTMLInputElement>>;
|
|
4502
|
+
} & _$react.RefAttributes<HTMLInputElement>>;
|
|
4413
4503
|
//#endregion
|
|
4414
4504
|
//#region src/components/ScreenReaderOnly/ScreenReaderOnly.d.ts
|
|
4415
4505
|
type ScreenReaderOnlyProps = ComponentPropsWithoutRef<'div'> & {
|
|
@@ -4436,7 +4526,7 @@ declare const ScreenReaderOnly: {
|
|
|
4436
4526
|
children,
|
|
4437
4527
|
focusable,
|
|
4438
4528
|
...props
|
|
4439
|
-
}: ScreenReaderOnlyProps): react_jsx_runtime0.JSX.Element;
|
|
4529
|
+
}: ScreenReaderOnlyProps): _$react_jsx_runtime0.JSX.Element;
|
|
4440
4530
|
displayName: string;
|
|
4441
4531
|
};
|
|
4442
4532
|
//#endregion
|
|
@@ -4453,14 +4543,14 @@ type ScrollAreaProps = HTMLAttributes<HTMLDivElement> & {
|
|
|
4453
4543
|
* ScrollArea is a simple scrollable container with shadow effects to indicate
|
|
4454
4544
|
* scrollability.
|
|
4455
4545
|
*/
|
|
4456
|
-
declare const ScrollArea: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
|
|
4546
|
+
declare const ScrollArea: _$react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
|
|
4457
4547
|
/**
|
|
4458
4548
|
* When true, disables scrolling. Useful to temporarily prevent scrolling,
|
|
4459
4549
|
* like when drag-and-dropping an item from inside to outside of the scroll
|
|
4460
4550
|
* area.
|
|
4461
4551
|
*/
|
|
4462
4552
|
locked?: boolean;
|
|
4463
|
-
} & react.RefAttributes<HTMLDivElement>>;
|
|
4553
|
+
} & _$react.RefAttributes<HTMLDivElement>>;
|
|
4464
4554
|
//#endregion
|
|
4465
4555
|
//#region src/components/SegmentedControl/SegmentedControl.d.ts
|
|
4466
4556
|
type SegmentedControlProps = Omit<ToggleGroupSingleProps, 'type'> & {
|
|
@@ -4536,7 +4626,7 @@ type NoIcon$1 = {
|
|
|
4536
4626
|
'aria-label'?: never;
|
|
4537
4627
|
};
|
|
4538
4628
|
type SegmentedControlItemProps = BaseProps$1 & (IconWithAriaLabel$1 | IconWithLabel$1 | NoIcon$1);
|
|
4539
|
-
declare const SegmentedControlItem: react.ForwardRefExoticComponent<SegmentedControlItemProps & react.RefAttributes<HTMLButtonElement>>;
|
|
4629
|
+
declare const SegmentedControlItem: _$react.ForwardRefExoticComponent<SegmentedControlItemProps & _$react.RefAttributes<HTMLButtonElement>>;
|
|
4540
4630
|
//#endregion
|
|
4541
4631
|
//#region src/components/Select/Select.d.ts
|
|
4542
4632
|
type SelectProps = {
|
|
@@ -4591,7 +4681,7 @@ type SelectProps = {
|
|
|
4591
4681
|
/**
|
|
4592
4682
|
* Display a list of options and choose one of them. Replacement for the native Select HTML element.
|
|
4593
4683
|
*/
|
|
4594
|
-
declare const Select: react.ForwardRefExoticComponent<SelectProps & react.RefAttributes<HTMLButtonElement>>;
|
|
4684
|
+
declare const Select: _$react.ForwardRefExoticComponent<SelectProps & _$react.RefAttributes<HTMLButtonElement>>;
|
|
4595
4685
|
//#endregion
|
|
4596
4686
|
//#region src/components/Select/SelectOption.d.ts
|
|
4597
4687
|
type SelectOptionProps = {
|
|
@@ -4624,7 +4714,7 @@ type SelectOptionProps = {
|
|
|
4624
4714
|
*/
|
|
4625
4715
|
checkmarkVerticalAlign?: 'center' | 'top';
|
|
4626
4716
|
};
|
|
4627
|
-
declare const SelectOption: react.ForwardRefExoticComponent<SelectOptionProps & react.RefAttributes<HTMLDivElement>>;
|
|
4717
|
+
declare const SelectOption: _$react.ForwardRefExoticComponent<SelectOptionProps & _$react.RefAttributes<HTMLDivElement>>;
|
|
4628
4718
|
//#endregion
|
|
4629
4719
|
//#region src/components/Select/SelectOptionGroup.d.ts
|
|
4630
4720
|
type SelectOptionGroupProps = {
|
|
@@ -4635,7 +4725,7 @@ declare const SelectOptionGroup: ({
|
|
|
4635
4725
|
children,
|
|
4636
4726
|
label,
|
|
4637
4727
|
...props
|
|
4638
|
-
}: SelectOptionGroupProps) => react_jsx_runtime0.JSX.Element;
|
|
4728
|
+
}: SelectOptionGroupProps) => _$react_jsx_runtime0.JSX.Element;
|
|
4639
4729
|
//#endregion
|
|
4640
4730
|
//#region src/components/Slider/Slider.d.ts
|
|
4641
4731
|
type SliderProps = Omit<ComponentPropsWithoutRef<'div'>, 'onChange'> & {
|
|
@@ -4800,7 +4890,7 @@ type StackProps = {
|
|
|
4800
4890
|
* Used to layout its children in a vertical or horizontal stack. The gap between each item in the stack can be customized.
|
|
4801
4891
|
* This allows for layouting children in a consistent way without needing to manually add margins or padding.
|
|
4802
4892
|
*/
|
|
4803
|
-
declare const Stack: (<C extends ElementType = "div">(props: PolymorphicComponentProps<C, StackProps>) => react.ReactElement | null) & UnknownRecord;
|
|
4893
|
+
declare const Stack: (<C extends ElementType = "div">(props: PolymorphicComponentProps<C, StackProps>) => _$react.ReactElement | null) & UnknownRecord;
|
|
4804
4894
|
//#endregion
|
|
4805
4895
|
//#region src/components/Switch/Switch.d.ts
|
|
4806
4896
|
type SwitchSizeType = 'lg' | 'md' | 'sm';
|
|
@@ -4854,7 +4944,7 @@ type SwitchProps = Omit<ComponentPropsWithoutRef<'input'>, 'hideLabel' | 'label'
|
|
|
4854
4944
|
*/
|
|
4855
4945
|
hideLabel?: boolean;
|
|
4856
4946
|
};
|
|
4857
|
-
declare const Switch: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "size" | "hideLabel"> & {
|
|
4947
|
+
declare const Switch: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "size" | "hideLabel"> & {
|
|
4858
4948
|
/**
|
|
4859
4949
|
* The alignment of the switch relative to the label
|
|
4860
4950
|
*/
|
|
@@ -4903,7 +4993,7 @@ declare const Switch: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHT
|
|
|
4903
4993
|
* Whether to visually hide the label (it will still be available to screen readers)
|
|
4904
4994
|
*/
|
|
4905
4995
|
hideLabel?: boolean;
|
|
4906
|
-
} & react.RefAttributes<HTMLInputElement>>;
|
|
4996
|
+
} & _$react.RefAttributes<HTMLInputElement>>;
|
|
4907
4997
|
//#endregion
|
|
4908
4998
|
//#region src/components/Table/TableBody.d.ts
|
|
4909
4999
|
type TableBodyProps = HTMLAttributes<HTMLTableSectionElement> & {
|
|
@@ -5052,7 +5142,7 @@ type NoIcon = {
|
|
|
5052
5142
|
'aria-label'?: never;
|
|
5053
5143
|
};
|
|
5054
5144
|
type TabsTriggerProps$1 = BaseProps & (IconWithAriaLabel | IconWithLabel | NoIcon);
|
|
5055
|
-
declare const TabsTrigger: react.ForwardRefExoticComponent<TabsTriggerProps$1 & react.RefAttributes<HTMLButtonElement>>;
|
|
5145
|
+
declare const TabsTrigger: _$react.ForwardRefExoticComponent<TabsTriggerProps$1 & _$react.RefAttributes<HTMLButtonElement>>;
|
|
5056
5146
|
//#endregion
|
|
5057
5147
|
//#region src/components/Tag/Tag.d.ts
|
|
5058
5148
|
type TagProps = ComponentPropsWithoutRef<'div'> & {
|
|
@@ -5084,7 +5174,7 @@ type TagProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
5084
5174
|
/**
|
|
5085
5175
|
* A `Tag` is an optionally linked label, with an optional action button, to categorize content.
|
|
5086
5176
|
*/
|
|
5087
|
-
declare const Tag: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
5177
|
+
declare const Tag: _$react.ForwardRefExoticComponent<Omit<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
5088
5178
|
/**
|
|
5089
5179
|
* Sets the [color scheme](../?path=/docs/docs-color-schemes--docs)
|
|
5090
5180
|
*/
|
|
@@ -5109,7 +5199,7 @@ declare const Tag: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<
|
|
|
5109
5199
|
* Accessible label for the `x` button (ie. "Remove tag")
|
|
5110
5200
|
*/
|
|
5111
5201
|
onClickRemoveLabel?: string | undefined;
|
|
5112
|
-
} & react.RefAttributes<HTMLDivElement>>;
|
|
5202
|
+
} & _$react.RefAttributes<HTMLDivElement>>;
|
|
5113
5203
|
//#endregion
|
|
5114
5204
|
//#region src/components/Thumbnail/ThumbnailBadge.d.ts
|
|
5115
5205
|
type ThumbnailBadgeProps = {
|
|
@@ -5133,22 +5223,22 @@ declare const ThumbnailBadge: {
|
|
|
5133
5223
|
//#endregion
|
|
5134
5224
|
//#region src/private/helpers/getBackgroundGradient/getBackgroundGradient.d.ts
|
|
5135
5225
|
declare const gradients: {
|
|
5136
|
-
defaultDarkOne: styled_components0.RuleSet<object>;
|
|
5137
|
-
defaultDarkTwo: styled_components0.RuleSet<object>;
|
|
5138
|
-
defaultLightOne: styled_components0.RuleSet<object>;
|
|
5139
|
-
defaultLightTwo: styled_components0.RuleSet<object>;
|
|
5140
|
-
defaultMidOne: styled_components0.RuleSet<object>;
|
|
5141
|
-
defaultMidTwo: styled_components0.RuleSet<object>;
|
|
5142
|
-
green: styled_components0.RuleSet<object>;
|
|
5143
|
-
greenWithPop: styled_components0.RuleSet<object>;
|
|
5144
|
-
pink: styled_components0.RuleSet<object>;
|
|
5145
|
-
pinkWithPop: styled_components0.RuleSet<object>;
|
|
5146
|
-
playfulGradientOne: styled_components0.RuleSet<object>;
|
|
5147
|
-
playfulGradientTwo: styled_components0.RuleSet<object>;
|
|
5148
|
-
purple: styled_components0.RuleSet<object>;
|
|
5149
|
-
purpleWithPop: styled_components0.RuleSet<object>;
|
|
5150
|
-
yellow: styled_components0.RuleSet<object>;
|
|
5151
|
-
yellowWithPop: styled_components0.RuleSet<object>;
|
|
5226
|
+
defaultDarkOne: _$styled_components0.RuleSet<object>;
|
|
5227
|
+
defaultDarkTwo: _$styled_components0.RuleSet<object>;
|
|
5228
|
+
defaultLightOne: _$styled_components0.RuleSet<object>;
|
|
5229
|
+
defaultLightTwo: _$styled_components0.RuleSet<object>;
|
|
5230
|
+
defaultMidOne: _$styled_components0.RuleSet<object>;
|
|
5231
|
+
defaultMidTwo: _$styled_components0.RuleSet<object>;
|
|
5232
|
+
green: _$styled_components0.RuleSet<object>;
|
|
5233
|
+
greenWithPop: _$styled_components0.RuleSet<object>;
|
|
5234
|
+
pink: _$styled_components0.RuleSet<object>;
|
|
5235
|
+
pinkWithPop: _$styled_components0.RuleSet<object>;
|
|
5236
|
+
playfulGradientOne: _$styled_components0.RuleSet<object>;
|
|
5237
|
+
playfulGradientTwo: _$styled_components0.RuleSet<object>;
|
|
5238
|
+
purple: _$styled_components0.RuleSet<object>;
|
|
5239
|
+
purpleWithPop: _$styled_components0.RuleSet<object>;
|
|
5240
|
+
yellow: _$styled_components0.RuleSet<object>;
|
|
5241
|
+
yellowWithPop: _$styled_components0.RuleSet<object>;
|
|
5152
5242
|
};
|
|
5153
5243
|
type GradientNameType = keyof typeof gradients;
|
|
5154
5244
|
//#endregion
|
|
@@ -5205,7 +5295,7 @@ type ThumbnailProps = Omit<ComponentPropsWithoutRef<'div'>, 'children'> & {
|
|
|
5205
5295
|
/**
|
|
5206
5296
|
* A `Thumbnail` is a small, reduced-size version of an image or video used as a preview or representative image.
|
|
5207
5297
|
*/
|
|
5208
|
-
declare const Thumbnail: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, "children"> & {
|
|
5298
|
+
declare const Thumbnail: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, "children"> & {
|
|
5209
5299
|
/**
|
|
5210
5300
|
* The desired display of the thumbnail, either wide or square
|
|
5211
5301
|
*/
|
|
@@ -5241,7 +5331,7 @@ declare const Thumbnail: react.ForwardRefExoticComponent<Omit<Omit<react.Detaile
|
|
|
5241
5331
|
* 'wide' maps to 16:9 ratio, 'square' maps to 1:1 ratio.
|
|
5242
5332
|
*/
|
|
5243
5333
|
aspectRatio?: AspectRatioType;
|
|
5244
|
-
} & react.RefAttributes<HTMLDivElement>>;
|
|
5334
|
+
} & _$react.RefAttributes<HTMLDivElement>>;
|
|
5245
5335
|
//#endregion
|
|
5246
5336
|
//#region src/components/ThumbnailCollage/ThumbnailCollage.d.ts
|
|
5247
5337
|
type ThumbnailCollageProps = {
|
|
@@ -5369,12 +5459,12 @@ declare const WistiaLogo: {
|
|
|
5369
5459
|
title,
|
|
5370
5460
|
variant,
|
|
5371
5461
|
...props
|
|
5372
|
-
}: WistiaLogoProps): react_jsx_runtime0.JSX.Element;
|
|
5462
|
+
}: WistiaLogoProps): _$react_jsx_runtime0.JSX.Element;
|
|
5373
5463
|
displayName: string;
|
|
5374
5464
|
};
|
|
5375
5465
|
declare namespace index_d_exports {
|
|
5376
|
-
export { ActionButton, ActionButtonProps, Avatar, AvatarProps, AvatarStatus, Badge, BadgeProps, Banner, BannerProps, Box, BoxProps, Breadcrumb, BreadcrumbProps, Breadcrumbs, BreadcrumbsProps, Button, ButtonGroup, ButtonProps, Card, CardProps, Center, CenterProps, Checkbox, CheckboxGroup, CheckboxMenuItem, ClickRegion, ClickRegionProps, Collapsible, CollapsibleContent, CollapsibleProps, CollapsibleTrigger, CollapsibleTriggerIcon, ColorGrid, ColorGridOption, ColorGridOptionProps, ColorGridProps, ColorList, ColorListGroup, ColorListGroupProps, ColorListOption, ColorListOptionProps, ColorListProps, ColorPicker, ColorPickerPopoverContent, ColorPickerPopoverContentProps, ColorPickerProps, ColorPickerSection, ColorPickerSectionProps, ColorPickerTrigger, ColorPickerTriggerProps, ColorSchemeTypes, ColorSchemeWrapper, ColorSchemeWrapperProps, Combobox, ComboboxOption, ComboboxOptionProps, ComboboxProps, ContextMenu, ContextMenuProps, ContrastControls, CustomizableThemeWrapper, CustomizableThemeWrapperProps, DataCard, DataCardHoverArrow, DataCardProps, DataCardTrend, DataCardTrendProps, DataCards, DataCardsProps, DataList, DataListItem, DataListItemLabel, DataListItemValue, DataListProps, Divider, EditableHeading, EditableHeadingProps, EditableText, EditableTextCancelButton, EditableTextContext, EditableTextDisplay, EditableTextInput, EditableTextLabel, EditableTextProps, EditableTextRoot, EditableTextRootProps, EditableTextSubmitButton, EditableTextTrigger, Ellipsis, EllipsisProps, FeatureCard, FeatureCardImage, FeatureCardProps, FileAmountLimitValidator, FileSizeValidator, FileTypeValidator, FilterMenu, FilterMenuItem, Form, FormErrorSummary, FormField, FormFieldProps, FormGroup, FormGroupProps, FormProps, Grid, GridProps, Heading, HeadingProps, HexColorInput, HexColorInputProps, HueSlider, Icon, IconButton, IconButtonProps, IconNameType, Image, ImageDimensionsValidator, ImageProps, Input, InputClickToCopy, InputClickToCopyProps, InputPassword, InputPasswordProps, InputProps, KeyboardKeys, KeyboardShortcut, Label, LabelProps, Link, LinkProps, List, ListItem, ListItemProps, ListProps, Mark, MarkProps, Markdown, MarkdownProps, Menu, MenuItem, MenuItemDescription, MenuItemLabel, MenuLabel, MenuRadioGroup, Meter, MeterProps, MeterSegment, Modal, ModalCallout, ModalCallouts, ModalProps, PersistentFileAmountLimitValidator, Popover, PopoverProps, PreviewCard, PreviewCardProps, ProgressBar, ProgressBarProps, Radio, RadioCard, RadioCardImage, RadioCardImageProps, RadioCardProps, RadioGroup, RadioMenuItem, RadioProps, SaturationAndValuePicker, ScreenReaderOnly, ScrollArea, ScrollAreaProps, SegmentedControl, SegmentedControlItem, SegmentedControlItemProps, SegmentedControlProps, Select, SelectOption, SelectOptionGroup, SelectOptionGroupProps, SelectOptionProps, SelectProps, Slider, SliderProps, SplitButton, SplitButtonProps, Stack, SubMenu, Switch, SwitchProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableFoot, TableFootProps, TableHead, TableHeadProps, TableProps, TableRow, TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, Tag, TagProps, Text, TextProps, Thumbnail, ThumbnailBadge, ThumbnailBadgeProps, ThumbnailCollage, ThumbnailCollageProps, ThumbnailProps, Tooltip, TooltipProps, UIProvider, UseActiveMqReturnType, UseIsHoveredReturnType, UseMqReturnType, UseToastProps, ValueNameOrHexCode, ValueSwatch, WistiaLogo, calculateContrast, coerceToBoolean, colorSchemeOptions, copyToClipboard, dateTime, iconSizeMap, isKeyboardKey, mergeRefs, mq, useActiveMq, useAriaLive, useBoolean, useClipboard, useElementObserver, useFilePicker, useFocusTrap, useForceUpdate, useFormState, useImperativeFilePicker, useIsHovered, useKey, useKeyPress, useLocalStorage, useLockBodyScroll, useMq, useOnClickOutside, usePreviousValue, useToast, useWindowSize, validateWithYup };
|
|
5466
|
+
export { ActionButton, ActionButtonProps, Avatar, AvatarProps, AvatarStatus, Badge, BadgeProps, Banner, BannerProps, Box, BoxProps, Breadcrumb, BreadcrumbProps, Breadcrumbs, BreadcrumbsProps, Button, ButtonGroup, ButtonProps, Calendar, CalendarProps, Card, CardProps, Center, CenterProps, Checkbox, CheckboxGroup, CheckboxMenuItem, ClickRegion, ClickRegionProps, Collapsible, CollapsibleContent, CollapsibleProps, CollapsibleTrigger, CollapsibleTriggerIcon, ColorGrid, ColorGridOption, ColorGridOptionProps, ColorGridProps, ColorList, ColorListGroup, ColorListGroupProps, ColorListOption, ColorListOptionProps, ColorListProps, ColorPicker, ColorPickerPopoverContent, ColorPickerPopoverContentProps, ColorPickerProps, ColorPickerSection, ColorPickerSectionProps, ColorPickerTrigger, ColorPickerTriggerProps, ColorSchemeTypes, ColorSchemeWrapper, ColorSchemeWrapperProps, Combobox, ComboboxOption, ComboboxOptionProps, ComboboxProps, ContextMenu, ContextMenuProps, ContrastControls, CustomizableThemeWrapper, CustomizableThemeWrapperProps, DataCard, DataCardHoverArrow, DataCardProps, DataCardTrend, DataCardTrendProps, DataCards, DataCardsProps, DataList, DataListItem, DataListItemLabel, DataListItemValue, DataListProps, Divider, EditableHeading, EditableHeadingProps, EditableText, EditableTextCancelButton, EditableTextContext, EditableTextDisplay, EditableTextInput, EditableTextLabel, EditableTextProps, EditableTextRoot, EditableTextRootProps, EditableTextSubmitButton, EditableTextTrigger, Ellipsis, EllipsisProps, FeatureCard, FeatureCardImage, FeatureCardProps, FileAmountLimitValidator, FileSizeValidator, FileTypeValidator, FilterMenu, FilterMenuItem, Form, FormErrorSummary, FormField, FormFieldProps, FormGroup, FormGroupProps, FormProps, Grid, GridProps, Heading, HeadingProps, HexColorInput, HexColorInputProps, HueSlider, Icon, IconButton, IconButtonProps, IconNameType, Image, ImageDimensionsValidator, ImageProps, Input, InputClickToCopy, InputClickToCopyProps, InputPassword, InputPasswordProps, InputProps, KeyboardKeys, KeyboardShortcut, Label, LabelProps, Link, LinkProps, List, ListItem, ListItemProps, ListProps, Mark, MarkProps, Markdown, MarkdownProps, Menu, MenuItem, MenuItemDescription, MenuItemLabel, MenuLabel, MenuRadioGroup, Meter, MeterProps, MeterSegment, Modal, ModalCallout, ModalCallouts, ModalProps, PersistentFileAmountLimitValidator, Popover, PopoverProps, PreviewCard, PreviewCardProps, ProgressBar, ProgressBarProps, Radio, RadioCard, RadioCardImage, RadioCardImageProps, RadioCardProps, RadioGroup, RadioMenuItem, RadioProps, SaturationAndValuePicker, ScreenReaderOnly, ScrollArea, ScrollAreaProps, SegmentedControl, SegmentedControlItem, SegmentedControlItemProps, SegmentedControlProps, Select, SelectOption, SelectOptionGroup, SelectOptionGroupProps, SelectOptionProps, SelectProps, Slider, SliderProps, SplitButton, SplitButtonProps, Stack, SubMenu, Switch, SwitchProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableFoot, TableFootProps, TableHead, TableHeadProps, TableProps, TableRow, TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, Tag, TagProps, Text, TextProps, Thumbnail, ThumbnailBadge, ThumbnailBadgeProps, ThumbnailCollage, ThumbnailCollageProps, ThumbnailProps, Tooltip, TooltipProps, UIProvider, UseActiveMqReturnType, UseIsHoveredReturnType, UseMqReturnType, UseToastProps, ValueNameOrHexCode, ValueSwatch, WistiaLogo, calculateContrast, coerceToBoolean, colorSchemeOptions, copyToClipboard, dateTime, iconSizeMap, isKeyboardKey, mergeRefs, mq, useActiveMq, useAriaLive, useBoolean, useClipboard, useElementObserver, useFilePicker, useFocusTrap, useForceUpdate, useFormState, useImperativeFilePicker, useIsHovered, useKey, useKeyPress, useLocalStorage, useLockBodyScroll, useMq, useOnClickOutside, usePreviousValue, useToast, useWindowSize, validateWithYup };
|
|
5377
5467
|
}
|
|
5378
5468
|
//#endregion
|
|
5379
|
-
export { ActionButton, type ActionButtonProps, Avatar, type AvatarProps, type AvatarStatus, Badge, type BadgeProps, Banner, type BannerProps, Box, type BoxProps, Breadcrumb, type BreadcrumbProps, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonProps, Card, type CardProps, Center, type CenterProps, Checkbox, CheckboxGroup, CheckboxMenuItem, ClickRegion, type ClickRegionProps, Collapsible, CollapsibleContent, type CollapsibleProps, CollapsibleTrigger, CollapsibleTriggerIcon, ColorGrid, ColorGridOption, type ColorGridOptionProps, type ColorGridProps, ColorList, ColorListGroup, type ColorListGroupProps, ColorListOption, type ColorListOptionProps, type ColorListProps, ColorPicker, ColorPickerPopoverContent, type ColorPickerPopoverContentProps, type ColorPickerProps, ColorPickerSection, type ColorPickerSectionProps, ColorPickerTrigger, type ColorPickerTriggerProps, type ColorSchemeTypes, ColorSchemeWrapper, type ColorSchemeWrapperProps, Combobox, ComboboxOption, type ComboboxOptionProps, type ComboboxProps, ContextMenu, type ContextMenuProps, ContrastControls, CustomizableThemeWrapper, type CustomizableThemeWrapperProps, DataCard, DataCardHoverArrow, type DataCardProps, DataCardTrend, type DataCardTrendProps, DataCards, type DataCardsProps, DataList, DataListItem, DataListItemLabel, DataListItemValue, type DataListProps, Divider, EditableHeading, type EditableHeadingProps, EditableText, EditableTextCancelButton, EditableTextContext, EditableTextDisplay, EditableTextInput, EditableTextLabel, type EditableTextProps, EditableTextRoot, type EditableTextRootProps, EditableTextSubmitButton, EditableTextTrigger, Ellipsis, type EllipsisProps, FeatureCard, FeatureCardImage, type FeatureCardProps, FileAmountLimitValidator, FileSizeValidator, FileTypeValidator, FilterMenu, FilterMenuItem, Form, FormErrorSummary, FormField, type FormFieldProps, FormGroup, type FormGroupProps, type FormProps, Grid, type GridProps, Heading, type HeadingProps, HexColorInput, type HexColorInputProps, HueSlider, Icon, IconButton, type IconButtonProps, type IconNameType, Image, ImageDimensionsValidator, type ImageProps, Input, InputClickToCopy, type InputClickToCopyProps, InputPassword, type InputPasswordProps, type InputProps, type KeyboardKeys, KeyboardShortcut, Label, type LabelProps, Link, type LinkProps, List, ListItem, type ListItemProps, type ListProps, Mark, type MarkProps, Markdown, type MarkdownProps, Menu, MenuItem, MenuItemDescription, MenuItemLabel, MenuLabel, MenuRadioGroup, Meter, type MeterProps, type MeterSegment, Modal, ModalCallout, ModalCallouts, type ModalProps, PersistentFileAmountLimitValidator, Popover, type PopoverProps, PreviewCard, type PreviewCardProps, ProgressBar, type ProgressBarProps, Radio, RadioCard, RadioCardImage, type RadioCardImageProps, type RadioCardProps, RadioGroup, RadioMenuItem, type RadioProps, SaturationAndValuePicker, ScreenReaderOnly, ScrollArea, ScrollAreaProps, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, SelectOption, SelectOptionGroup, type SelectOptionGroupProps, type SelectOptionProps, type SelectProps, Slider, type SliderProps, SplitButton, type SplitButtonProps, Stack, SubMenu, Switch, type SwitchProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, Tag, type TagProps, Text, type TextProps, Thumbnail, ThumbnailBadge, type ThumbnailBadgeProps, ThumbnailCollage, type ThumbnailCollageProps, type ThumbnailProps, Tooltip, type TooltipProps, UIProvider, UseActiveMqReturnType, UseIsHoveredReturnType, UseMqReturnType, type UseToastProps, ValueNameOrHexCode, ValueSwatch, WistiaLogo, calculateContrast, coerceToBoolean, colorSchemeOptions, copyToClipboard, dateTime, iconSizeMap, isKeyboardKey, mergeRefs, mq, useActiveMq, useAriaLive, useBoolean, useClipboard, useElementObserver, useFilePicker, useFocusTrap, useForceUpdate, useFormState, useImperativeFilePicker, useIsHovered, useKey, useKeyPress, useLocalStorage, useLockBodyScroll, useMq, useOnClickOutside, usePreviousValue, useToast, useWindowSize, validateWithYup };
|
|
5469
|
+
export { ActionButton, type ActionButtonProps, Avatar, type AvatarProps, type AvatarStatus, Badge, type BadgeProps, Banner, type BannerProps, Box, type BoxProps, Breadcrumb, type BreadcrumbProps, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonProps, Calendar, type CalendarProps, Card, type CardProps, Center, type CenterProps, Checkbox, CheckboxGroup, CheckboxMenuItem, ClickRegion, type ClickRegionProps, Collapsible, CollapsibleContent, type CollapsibleProps, CollapsibleTrigger, CollapsibleTriggerIcon, ColorGrid, ColorGridOption, type ColorGridOptionProps, type ColorGridProps, ColorList, ColorListGroup, type ColorListGroupProps, ColorListOption, type ColorListOptionProps, type ColorListProps, ColorPicker, ColorPickerPopoverContent, type ColorPickerPopoverContentProps, type ColorPickerProps, ColorPickerSection, type ColorPickerSectionProps, ColorPickerTrigger, type ColorPickerTriggerProps, type ColorSchemeTypes, ColorSchemeWrapper, type ColorSchemeWrapperProps, Combobox, ComboboxOption, type ComboboxOptionProps, type ComboboxProps, ContextMenu, type ContextMenuProps, ContrastControls, CustomizableThemeWrapper, type CustomizableThemeWrapperProps, DataCard, DataCardHoverArrow, type DataCardProps, DataCardTrend, type DataCardTrendProps, DataCards, type DataCardsProps, DataList, DataListItem, DataListItemLabel, DataListItemValue, type DataListProps, Divider, EditableHeading, type EditableHeadingProps, EditableText, EditableTextCancelButton, EditableTextContext, EditableTextDisplay, EditableTextInput, EditableTextLabel, type EditableTextProps, EditableTextRoot, type EditableTextRootProps, EditableTextSubmitButton, EditableTextTrigger, Ellipsis, type EllipsisProps, FeatureCard, FeatureCardImage, type FeatureCardProps, FileAmountLimitValidator, FileSizeValidator, FileTypeValidator, FilterMenu, FilterMenuItem, Form, FormErrorSummary, FormField, type FormFieldProps, FormGroup, type FormGroupProps, type FormProps, Grid, type GridProps, Heading, type HeadingProps, HexColorInput, type HexColorInputProps, HueSlider, Icon, IconButton, type IconButtonProps, type IconNameType, Image, ImageDimensionsValidator, type ImageProps, Input, InputClickToCopy, type InputClickToCopyProps, InputPassword, type InputPasswordProps, type InputProps, type KeyboardKeys, KeyboardShortcut, Label, type LabelProps, Link, type LinkProps, List, ListItem, type ListItemProps, type ListProps, Mark, type MarkProps, Markdown, type MarkdownProps, Menu, MenuItem, MenuItemDescription, MenuItemLabel, MenuLabel, MenuRadioGroup, Meter, type MeterProps, type MeterSegment, Modal, ModalCallout, ModalCallouts, type ModalProps, PersistentFileAmountLimitValidator, Popover, type PopoverProps, PreviewCard, type PreviewCardProps, ProgressBar, type ProgressBarProps, Radio, RadioCard, RadioCardImage, type RadioCardImageProps, type RadioCardProps, RadioGroup, RadioMenuItem, type RadioProps, SaturationAndValuePicker, ScreenReaderOnly, ScrollArea, ScrollAreaProps, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, SelectOption, SelectOptionGroup, type SelectOptionGroupProps, type SelectOptionProps, type SelectProps, Slider, type SliderProps, SplitButton, type SplitButtonProps, Stack, SubMenu, Switch, type SwitchProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, Tag, type TagProps, Text, type TextProps, Thumbnail, ThumbnailBadge, type ThumbnailBadgeProps, ThumbnailCollage, type ThumbnailCollageProps, type ThumbnailProps, Tooltip, type TooltipProps, UIProvider, UseActiveMqReturnType, UseIsHoveredReturnType, UseMqReturnType, type UseToastProps, ValueNameOrHexCode, ValueSwatch, WistiaLogo, calculateContrast, coerceToBoolean, colorSchemeOptions, copyToClipboard, dateTime, iconSizeMap, isKeyboardKey, mergeRefs, mq, useActiveMq, useAriaLive, useBoolean, useClipboard, useElementObserver, useFilePicker, useFocusTrap, useForceUpdate, useFormState, useImperativeFilePicker, useIsHovered, useKey, useKeyPress, useLocalStorage, useLockBodyScroll, useMq, useOnClickOutside, usePreviousValue, useToast, useWindowSize, validateWithYup };
|
|
5380
5470
|
//# sourceMappingURL=index.d.ts.map
|