@wistia/ui 0.22.2-beta.21a0f2ab.393508b → 0.22.2-beta.21d69964.f14fca2
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 +500 -380
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +466 -99
- 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";
|
|
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";
|
|
2
|
+
import * as _$react from "react";
|
|
3
|
+
import { AnchorHTMLAttributes, ButtonHTMLAttributes, 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";
|
|
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" | "fullWidth" | "isLoading" | "leftIcon" | "rightIcon" | "size" | "unstyled">, "ref">) & react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
648
|
+
} & Omit<ButtonAsLinkProps, "variant" | "fullWidth" | "isLoading" | "leftIcon" | "rightIcon" | "size" | "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,125 @@ 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
|
+
* `CalendarPreset` children rendered alongside the calendar grid as shortcuts.
|
|
1115
|
+
*/
|
|
1116
|
+
children?: ReactNode;
|
|
1117
|
+
};
|
|
1118
|
+
type CalendarSingleProps = CalendarBaseProps & {
|
|
1119
|
+
/**
|
|
1120
|
+
* Selection mode.
|
|
1121
|
+
*/
|
|
1122
|
+
mode: 'single';
|
|
1123
|
+
/**
|
|
1124
|
+
* The currently selected date.
|
|
1125
|
+
*/
|
|
1126
|
+
selected?: Date | undefined;
|
|
1127
|
+
/**
|
|
1128
|
+
* Callback when a date is selected.
|
|
1129
|
+
*/
|
|
1130
|
+
onSelect?: (date: Date | undefined) => void;
|
|
1131
|
+
};
|
|
1132
|
+
type CalendarRangeProps = CalendarBaseProps & {
|
|
1133
|
+
/**
|
|
1134
|
+
* Selection mode.
|
|
1135
|
+
*/
|
|
1136
|
+
mode: 'range';
|
|
1137
|
+
/**
|
|
1138
|
+
* The currently selected range.
|
|
1139
|
+
*/
|
|
1140
|
+
selected?: DateRange | undefined;
|
|
1141
|
+
/**
|
|
1142
|
+
* Callback when a range is selected.
|
|
1143
|
+
*/
|
|
1144
|
+
onSelect?: (range: DateRange | undefined) => void;
|
|
1145
|
+
/**
|
|
1146
|
+
* Minimum number of days in the range.
|
|
1147
|
+
*/
|
|
1148
|
+
min?: number;
|
|
1149
|
+
/**
|
|
1150
|
+
* Maximum number of days in the range.
|
|
1151
|
+
*/
|
|
1152
|
+
max?: number;
|
|
1153
|
+
};
|
|
1154
|
+
type CalendarProps = (CalendarSingleProps | CalendarRangeProps) & Omit<HTMLAttributes<HTMLDivElement>, 'onSelect' | 'children'>;
|
|
1155
|
+
/**
|
|
1156
|
+
* A calendar grid for selecting dates or date ranges. Built on
|
|
1157
|
+
* react-day-picker and styled with WUI design tokens. Pass `CalendarPreset`
|
|
1158
|
+
* children to render preset shortcuts next to the grid.
|
|
1159
|
+
*/
|
|
1160
|
+
declare const Calendar: {
|
|
1161
|
+
(props: CalendarProps): JSX.Element;
|
|
1162
|
+
displayName: string;
|
|
1163
|
+
};
|
|
1164
|
+
//#endregion
|
|
1165
|
+
//#region src/components/Calendar/CalendarPreset.d.ts
|
|
1166
|
+
type CalendarPresetProps = {
|
|
1167
|
+
/**
|
|
1168
|
+
* The value selected when the preset is clicked. Use a `Date` inside a
|
|
1169
|
+
* single-mode Calendar and a `DateRange` inside a range-mode Calendar.
|
|
1170
|
+
*/
|
|
1171
|
+
value: Date | DateRange;
|
|
1172
|
+
/**
|
|
1173
|
+
* The label to display for the preset.
|
|
1174
|
+
*/
|
|
1175
|
+
children: ReactNode;
|
|
1176
|
+
} & Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'value' | 'children' | 'onClick' | 'type'>;
|
|
1177
|
+
/**
|
|
1178
|
+
* A single preset button rendered inside a `Calendar`. Clicking a preset
|
|
1179
|
+
* selects its `value` and navigates the calendar to show it.
|
|
1180
|
+
*/
|
|
1181
|
+
declare const CalendarPreset: {
|
|
1182
|
+
({
|
|
1183
|
+
value,
|
|
1184
|
+
children,
|
|
1185
|
+
...rest
|
|
1186
|
+
}: CalendarPresetProps): JSX.Element;
|
|
1187
|
+
displayName: string;
|
|
1188
|
+
};
|
|
1189
|
+
//#endregion
|
|
1070
1190
|
//#region src/css/designTokens/borderRadius.d.ts
|
|
1071
1191
|
type BorderRadius = 'border-radius-00' | 'border-radius-01' | 'border-radius-02' | 'border-radius-03' | 'border-radius-04' | 'border-radius-05' | 'border-radius-rounded';
|
|
1072
1192
|
//#endregion
|
|
@@ -1209,7 +1329,7 @@ type CenterProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
1209
1329
|
* Center component provides various ways to center content horizontally within a container.
|
|
1210
1330
|
* It supports max-width constraints, text alignment, gutters, and intrinsic content centering.
|
|
1211
1331
|
*/
|
|
1212
|
-
declare const Center: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
1332
|
+
declare const Center: _$react.ForwardRefExoticComponent<Omit<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
1213
1333
|
/**
|
|
1214
1334
|
* A CSS max-width value
|
|
1215
1335
|
*/
|
|
@@ -1226,11 +1346,11 @@ declare const Center: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLPro
|
|
|
1226
1346
|
* The content to be centered
|
|
1227
1347
|
*/
|
|
1228
1348
|
children: ReactNode;
|
|
1229
|
-
} & react.RefAttributes<HTMLDivElement>>;
|
|
1349
|
+
} & _$react.RefAttributes<HTMLDivElement>>;
|
|
1230
1350
|
//#endregion
|
|
1231
1351
|
//#region src/components/Checkbox/Checkbox.d.ts
|
|
1232
1352
|
type CheckboxSizeType = 'lg' | 'md' | 'sm';
|
|
1233
|
-
declare const Checkbox: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "onChange" | "size" | "hideLabel"> & {
|
|
1353
|
+
declare const Checkbox: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "onChange" | "size" | "hideLabel"> & {
|
|
1234
1354
|
/**
|
|
1235
1355
|
* Indicates the state of the checkbox
|
|
1236
1356
|
*/
|
|
@@ -1275,7 +1395,7 @@ declare const Checkbox: react.ForwardRefExoticComponent<Omit<Omit<react.Detailed
|
|
|
1275
1395
|
* Whether to visually hide the label (it will still be available to screen readers)
|
|
1276
1396
|
*/
|
|
1277
1397
|
hideLabel?: boolean;
|
|
1278
|
-
} & react.RefAttributes<HTMLInputElement>>;
|
|
1398
|
+
} & _$react.RefAttributes<HTMLInputElement>>;
|
|
1279
1399
|
//#endregion
|
|
1280
1400
|
//#region src/components/ClickRegion/ClickRegion.d.ts
|
|
1281
1401
|
type ClickRegionProps = {
|
|
@@ -1343,225 +1463,225 @@ type CollapsibleTriggerProps = {
|
|
|
1343
1463
|
};
|
|
1344
1464
|
declare const CollapsibleTrigger: ({
|
|
1345
1465
|
children
|
|
1346
|
-
}: CollapsibleTriggerProps) => react_jsx_runtime0.JSX.Element;
|
|
1466
|
+
}: CollapsibleTriggerProps) => _$react_jsx_runtime0.JSX.Element;
|
|
1347
1467
|
//#endregion
|
|
1348
1468
|
//#region src/components/Icon/iconMap.d.ts
|
|
1349
1469
|
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;
|
|
1470
|
+
'ab-test': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1471
|
+
accessibility: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1472
|
+
activity: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1473
|
+
'add-folder': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1474
|
+
'add-layout': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1475
|
+
'add-media': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1476
|
+
'annotation-link': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1477
|
+
appearance: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1478
|
+
archive: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1479
|
+
'arrow-down': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1480
|
+
'arrow-left': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1481
|
+
'arrow-right': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1482
|
+
'arrow-up': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1483
|
+
'arrow-up-right': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1484
|
+
asterisk: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1485
|
+
'audio-description': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1486
|
+
'auto-scroll': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1487
|
+
background: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1488
|
+
bank: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1489
|
+
bell: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1490
|
+
bolt: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1491
|
+
'bullet-list': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1492
|
+
calendar: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1493
|
+
'call-to-action': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1494
|
+
camera: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1495
|
+
'camera-off': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1496
|
+
'caret-down': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1497
|
+
'caret-down-strong': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1498
|
+
'caret-left': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1499
|
+
'caret-left-strong': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1500
|
+
'caret-right': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1501
|
+
'caret-right-strong': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1502
|
+
'caret-up': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1503
|
+
'caret-up-strong': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1504
|
+
channel: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1505
|
+
chapters: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1506
|
+
checkmark: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1507
|
+
'checkmark-circle': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1508
|
+
'checkmark-circle-outline': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1509
|
+
'checkmark-three-quaters-circle': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1510
|
+
'circle-slashed': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1511
|
+
clapboard: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1512
|
+
clips: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1513
|
+
close: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1514
|
+
'close-octagon': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1515
|
+
'closed-captions': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1516
|
+
cmd: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1517
|
+
collapse: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1518
|
+
'collapse-diagonal': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1519
|
+
collection: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1520
|
+
comments: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1521
|
+
company: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1522
|
+
compare: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1523
|
+
'connection-okay': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1524
|
+
'connection-poor': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1525
|
+
'connection-strong': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1526
|
+
'content-library': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1527
|
+
controls: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1528
|
+
'credit-card': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1529
|
+
credits: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1530
|
+
'cursor-click': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1531
|
+
delete: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1532
|
+
desktop: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1533
|
+
'docs-dev': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1534
|
+
'dots-horizontal': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1535
|
+
download: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1536
|
+
'edit-transcript': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1537
|
+
'ellipses-vertical': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1538
|
+
embed: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1539
|
+
envelope: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1540
|
+
'envelope-open': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1541
|
+
error: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1542
|
+
expand: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1543
|
+
'expand-diagonal': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1544
|
+
'expand-diagonal-window': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1545
|
+
'expand-horizontal': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1546
|
+
'fast-forward': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1547
|
+
favorite: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1548
|
+
'favorite-outline': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1549
|
+
featured: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1550
|
+
'file-tree': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1551
|
+
fill: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1552
|
+
'film-strip': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1553
|
+
filter: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1554
|
+
fit: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1555
|
+
fonts: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1556
|
+
footer: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1557
|
+
'full-screen': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1558
|
+
gear: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1559
|
+
'getting-started': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1560
|
+
gradient: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1561
|
+
grid: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1562
|
+
'grip-dots-vertical': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1563
|
+
header: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1564
|
+
'help-center': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1565
|
+
hide: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1566
|
+
home: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1567
|
+
hourglass: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1568
|
+
import: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1569
|
+
info: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1570
|
+
integrations: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1571
|
+
keyboard: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1572
|
+
layout: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1573
|
+
leave: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1574
|
+
'light-bulb': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1575
|
+
link: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1576
|
+
list: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1577
|
+
live: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1578
|
+
localization: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1579
|
+
lock: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1580
|
+
logout: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1581
|
+
maximize: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1582
|
+
media: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1583
|
+
megaphone: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1584
|
+
menu: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1585
|
+
mic: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1586
|
+
'mic-off': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1587
|
+
minimize: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1588
|
+
minus: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1589
|
+
'minus-circle': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1590
|
+
mobile: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1591
|
+
'more-options': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1592
|
+
'move-left': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1593
|
+
'move-right': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1594
|
+
music: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1595
|
+
'my-library': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1596
|
+
'on-air': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1597
|
+
'open-new': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1598
|
+
overview: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1599
|
+
page: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1600
|
+
'panel-left': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1601
|
+
'panel-right': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1602
|
+
'panel-up': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1603
|
+
'paper-clip': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1604
|
+
password: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1605
|
+
pause: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1606
|
+
pencil: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1607
|
+
'pencil-sparkle': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1608
|
+
people: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1609
|
+
pin: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1610
|
+
'pin-slash': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1611
|
+
pip: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1612
|
+
play: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1613
|
+
player: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1614
|
+
playlist: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1615
|
+
plus: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1616
|
+
podcast: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1617
|
+
preview: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1618
|
+
'private-chat': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1619
|
+
'private-user-sessions': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1620
|
+
project: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1621
|
+
'project-open': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1622
|
+
properties: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1623
|
+
'question-chat': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1624
|
+
'question-mark': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1625
|
+
react: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1626
|
+
record: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1627
|
+
'record-group': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1628
|
+
redo: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1629
|
+
refresh: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1630
|
+
remix: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1631
|
+
replace: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1632
|
+
reply: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1633
|
+
'request-video': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1634
|
+
'revert-to-original': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1635
|
+
rewind: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1636
|
+
save: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1637
|
+
'save-as-copy': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1638
|
+
scissors: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1639
|
+
'screenshare-off': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1640
|
+
'screenshare-on': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1641
|
+
search: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1642
|
+
send: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1643
|
+
shapes: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1644
|
+
share: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1645
|
+
'sharing-permissions': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1646
|
+
simulcast: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1647
|
+
sort: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1648
|
+
sparkle: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1649
|
+
speed: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1650
|
+
spinner: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1651
|
+
stats: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1652
|
+
'switch-accounts': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1653
|
+
tag: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1654
|
+
teleprompter: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1655
|
+
'text-bold': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1656
|
+
'text-italics': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1657
|
+
'text-size': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1658
|
+
thumbnail: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1659
|
+
'thumbs-down': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1660
|
+
'thumbs-up': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1661
|
+
'timeline-vertical': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1662
|
+
token: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1663
|
+
transcript: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1664
|
+
transitions: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1665
|
+
transparency: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1666
|
+
trends: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1667
|
+
'trial-unlock-clock': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1668
|
+
trim: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1669
|
+
turnstile: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1670
|
+
undo: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1671
|
+
unlock: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1672
|
+
upload: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1673
|
+
'users-permissions': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1674
|
+
'view-stream': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1675
|
+
volume: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1676
|
+
'volume-off': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1677
|
+
'volume-up': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1678
|
+
'volume-x': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1679
|
+
wand: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1680
|
+
waveform: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1681
|
+
webhook: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1682
|
+
write: (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1683
|
+
'zoom-in': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1684
|
+
'zoom-out': (props: _$react.SVGProps<SVGSVGElement>) => _$react_jsx_runtime0.JSX.Element;
|
|
1565
1685
|
};
|
|
1566
1686
|
type IconNameType = keyof typeof iconMap;
|
|
1567
1687
|
//#endregion
|
|
@@ -1632,7 +1752,7 @@ declare const CollapsibleTriggerIcon: {
|
|
|
1632
1752
|
({
|
|
1633
1753
|
type,
|
|
1634
1754
|
...props
|
|
1635
|
-
}: CollapsibleTriggerIconProps): react_jsx_runtime0.JSX.Element;
|
|
1755
|
+
}: CollapsibleTriggerIconProps): _$react_jsx_runtime0.JSX.Element;
|
|
1636
1756
|
displayName: string;
|
|
1637
1757
|
};
|
|
1638
1758
|
//#endregion
|
|
@@ -1650,7 +1770,7 @@ type CollapsibleContentProps$1 = {
|
|
|
1650
1770
|
declare const CollapsibleContent: ({
|
|
1651
1771
|
clamp,
|
|
1652
1772
|
children
|
|
1653
|
-
}: CollapsibleContentProps$1) => react_jsx_runtime0.JSX.Element;
|
|
1773
|
+
}: CollapsibleContentProps$1) => _$react_jsx_runtime0.JSX.Element;
|
|
1654
1774
|
//#endregion
|
|
1655
1775
|
//#region src/components/ColorPicker/ColorGrid.d.ts
|
|
1656
1776
|
type ColorGridProps = PropsWithChildren & {
|
|
@@ -1814,9 +1934,9 @@ type ColorPickerTriggerProps = PropsWithChildren;
|
|
|
1814
1934
|
* it renders a swatch and hex label for the current color; pass custom children
|
|
1815
1935
|
* to replace that content.
|
|
1816
1936
|
*/
|
|
1817
|
-
declare const ColorPickerTrigger: react.ForwardRefExoticComponent<{
|
|
1818
|
-
children?: react.ReactNode | undefined;
|
|
1819
|
-
} & react.RefAttributes<HTMLButtonElement>>;
|
|
1937
|
+
declare const ColorPickerTrigger: _$react.ForwardRefExoticComponent<{
|
|
1938
|
+
children?: _$react.ReactNode | undefined;
|
|
1939
|
+
} & _$react.RefAttributes<HTMLButtonElement>>;
|
|
1820
1940
|
//#endregion
|
|
1821
1941
|
//#region src/components/ColorPicker/ContrastControls.d.ts
|
|
1822
1942
|
type ContrastControlsProps = object;
|
|
@@ -1971,7 +2091,7 @@ declare const Combobox: ({
|
|
|
1971
2091
|
children,
|
|
1972
2092
|
flipPopover,
|
|
1973
2093
|
fullWidth
|
|
1974
|
-
}: ComboboxProps) => react_jsx_runtime0.JSX.Element;
|
|
2094
|
+
}: ComboboxProps) => _$react_jsx_runtime0.JSX.Element;
|
|
1975
2095
|
//#endregion
|
|
1976
2096
|
//#region src/components/Combobox/ComboboxOption.d.ts
|
|
1977
2097
|
type ComboboxOptionProps = {
|
|
@@ -1981,7 +2101,7 @@ type ComboboxOptionProps = {
|
|
|
1981
2101
|
declare const ComboboxOption: ({
|
|
1982
2102
|
value,
|
|
1983
2103
|
children
|
|
1984
|
-
}: ComboboxOptionProps) => react_jsx_runtime0.JSX.Element;
|
|
2104
|
+
}: ComboboxOptionProps) => _$react_jsx_runtime0.JSX.Element;
|
|
1985
2105
|
//#endregion
|
|
1986
2106
|
//#region src/components/ContextMenu/ContextMenu.d.ts
|
|
1987
2107
|
type ContextMenuProps = {
|
|
@@ -2016,7 +2136,7 @@ declare const ContextMenu: ({
|
|
|
2016
2136
|
side,
|
|
2017
2137
|
onRequestClose,
|
|
2018
2138
|
compact
|
|
2019
|
-
}: ContextMenuProps) => react_jsx_runtime0.JSX.Element | null;
|
|
2139
|
+
}: ContextMenuProps) => _$react_jsx_runtime0.JSX.Element | null;
|
|
2020
2140
|
//#endregion
|
|
2021
2141
|
//#region src/components/CustomizableThemeWrapper/CustomizableThemeWrapper.d.ts
|
|
2022
2142
|
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 +2193,7 @@ type DataCardProps = ComponentPropsWithoutRef<'div'> & Partial<Pick<ButtonAsLink
|
|
|
2073
2193
|
subtitle?: ReactNode;
|
|
2074
2194
|
};
|
|
2075
2195
|
declare const DataCard: {
|
|
2076
|
-
(props: DataCardProps): react_jsx_runtime0.JSX.Element;
|
|
2196
|
+
(props: DataCardProps): _$react_jsx_runtime0.JSX.Element;
|
|
2077
2197
|
displayName: string;
|
|
2078
2198
|
};
|
|
2079
2199
|
//#endregion
|
|
@@ -2135,7 +2255,7 @@ declare const DataCardTrend: ({
|
|
|
2135
2255
|
//#region src/components/DataCards/DataCardHoverArrow.d.ts
|
|
2136
2256
|
type DataCardHoverArrowProps = object;
|
|
2137
2257
|
declare const DataCardHoverArrow: {
|
|
2138
|
-
(props: DataCardHoverArrowProps): react_jsx_runtime0.JSX.Element;
|
|
2258
|
+
(props: DataCardHoverArrowProps): _$react_jsx_runtime0.JSX.Element;
|
|
2139
2259
|
displayName: string;
|
|
2140
2260
|
};
|
|
2141
2261
|
//#endregion
|
|
@@ -2192,18 +2312,18 @@ declare const DataListItem: {
|
|
|
2192
2312
|
//#region src/components/Text/Text.d.ts
|
|
2193
2313
|
type AlignmentTypes$1 = 'center' | 'justify' | 'left' | 'right';
|
|
2194
2314
|
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>;
|
|
2315
|
+
body1: _$styled_components0.RuleSet<object>;
|
|
2316
|
+
body2: _$styled_components0.RuleSet<object>;
|
|
2317
|
+
body3: _$styled_components0.RuleSet<object>;
|
|
2318
|
+
body4: _$styled_components0.RuleSet<object>;
|
|
2319
|
+
body1Mono: _$styled_components0.RuleSet<object>;
|
|
2320
|
+
body2Mono: _$styled_components0.RuleSet<object>;
|
|
2321
|
+
body3Mono: _$styled_components0.RuleSet<object>;
|
|
2322
|
+
body4Mono: _$styled_components0.RuleSet<object>;
|
|
2323
|
+
label1: _$styled_components0.RuleSet<object>;
|
|
2324
|
+
label2: _$styled_components0.RuleSet<object>;
|
|
2325
|
+
label3: _$styled_components0.RuleSet<object>;
|
|
2326
|
+
label4: _$styled_components0.RuleSet<object>;
|
|
2207
2327
|
};
|
|
2208
2328
|
type TextProps = ComponentPropsWithoutRef<'div'> & {
|
|
2209
2329
|
/**
|
|
@@ -2260,7 +2380,7 @@ type TextProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
2260
2380
|
/**
|
|
2261
2381
|
* Used for rending paragraphs and inline text.
|
|
2262
2382
|
*/
|
|
2263
|
-
declare const Text: (<C extends ElementType = "p">(props: PolymorphicComponentProps<C, TextProps>) => react.ReactElement | null) & UnknownRecord;
|
|
2383
|
+
declare const Text: (<C extends ElementType = "p">(props: PolymorphicComponentProps<C, TextProps>) => _$react.ReactElement | null) & UnknownRecord;
|
|
2264
2384
|
//#endregion
|
|
2265
2385
|
//#region src/components/DataList/DataListItemLabel.d.ts
|
|
2266
2386
|
type DataListItemLabelProps = TextProps;
|
|
@@ -2308,13 +2428,13 @@ declare const Divider: {
|
|
|
2308
2428
|
//#region src/components/Heading/Heading.d.ts
|
|
2309
2429
|
type AlignmentTypes = 'center' | 'justify' | 'left' | 'right';
|
|
2310
2430
|
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>;
|
|
2431
|
+
hero: _$styled_components0.RuleSet<object>;
|
|
2432
|
+
heading1: _$styled_components0.RuleSet<object>;
|
|
2433
|
+
heading2: _$styled_components0.RuleSet<object>;
|
|
2434
|
+
heading3: _$styled_components0.RuleSet<object>;
|
|
2435
|
+
heading4: _$styled_components0.RuleSet<object>;
|
|
2436
|
+
heading5: _$styled_components0.RuleSet<object>;
|
|
2437
|
+
heading6: _$styled_components0.RuleSet<object>;
|
|
2318
2438
|
};
|
|
2319
2439
|
declare const DEFAULT_ELEMENT = "h1";
|
|
2320
2440
|
type HeadingProps = ComponentPropsWithoutRef<typeof DEFAULT_ELEMENT> & {
|
|
@@ -2369,7 +2489,7 @@ type HeadingProps = ComponentPropsWithoutRef<typeof DEFAULT_ELEMENT> & {
|
|
|
2369
2489
|
/**
|
|
2370
2490
|
* Displaying heading text, both visually and semantically
|
|
2371
2491
|
*/
|
|
2372
|
-
declare const Heading: (<C extends ElementType = "h1">(props: PolymorphicComponentProps<C, HeadingProps>) => react.ReactElement | null) & UnknownRecord;
|
|
2492
|
+
declare const Heading: (<C extends ElementType = "h1">(props: PolymorphicComponentProps<C, HeadingProps>) => _$react.ReactElement | null) & UnknownRecord;
|
|
2373
2493
|
//#endregion
|
|
2374
2494
|
//#region src/components/EditableHeading/EditableHeading.d.ts
|
|
2375
2495
|
type EditableHeadingProps = {
|
|
@@ -2430,25 +2550,25 @@ declare const EditableHeading: ({
|
|
|
2430
2550
|
//#endregion
|
|
2431
2551
|
//#region src/private/helpers/getTypographicStyles/getTypographicStyles.d.ts
|
|
2432
2552
|
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>;
|
|
2553
|
+
hero: _$styled_components0.RuleSet<object>;
|
|
2554
|
+
heading1: _$styled_components0.RuleSet<object>;
|
|
2555
|
+
heading2: _$styled_components0.RuleSet<object>;
|
|
2556
|
+
heading3: _$styled_components0.RuleSet<object>;
|
|
2557
|
+
heading4: _$styled_components0.RuleSet<object>;
|
|
2558
|
+
heading5: _$styled_components0.RuleSet<object>;
|
|
2559
|
+
heading6: _$styled_components0.RuleSet<object>;
|
|
2560
|
+
body1: _$styled_components0.RuleSet<object>;
|
|
2561
|
+
body2: _$styled_components0.RuleSet<object>;
|
|
2562
|
+
body3: _$styled_components0.RuleSet<object>;
|
|
2563
|
+
body4: _$styled_components0.RuleSet<object>;
|
|
2564
|
+
body1Mono: _$styled_components0.RuleSet<object>;
|
|
2565
|
+
body2Mono: _$styled_components0.RuleSet<object>;
|
|
2566
|
+
body3Mono: _$styled_components0.RuleSet<object>;
|
|
2567
|
+
body4Mono: _$styled_components0.RuleSet<object>;
|
|
2568
|
+
label1: _$styled_components0.RuleSet<object>;
|
|
2569
|
+
label2: _$styled_components0.RuleSet<object>;
|
|
2570
|
+
label3: _$styled_components0.RuleSet<object>;
|
|
2571
|
+
label4: _$styled_components0.RuleSet<object>;
|
|
2452
2572
|
};
|
|
2453
2573
|
type TypographicVariant = keyof typeof typographicVariantStyleMap;
|
|
2454
2574
|
//#endregion
|
|
@@ -2541,7 +2661,7 @@ type EditableTextContextValues = {
|
|
|
2541
2661
|
maxLines: number | undefined;
|
|
2542
2662
|
finalFocusEl: (() => HTMLElement | null) | undefined;
|
|
2543
2663
|
};
|
|
2544
|
-
declare const EditableTextContext: react.Context<EditableTextContextValues | null>;
|
|
2664
|
+
declare const EditableTextContext: _$react.Context<EditableTextContextValues | null>;
|
|
2545
2665
|
declare const EditableTextRoot: ({
|
|
2546
2666
|
children,
|
|
2547
2667
|
defaultValue,
|
|
@@ -2588,7 +2708,7 @@ type EditableTextDisplayProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
2588
2708
|
asTrigger?: boolean;
|
|
2589
2709
|
renderAs?: ElementType;
|
|
2590
2710
|
};
|
|
2591
|
-
declare const EditableTextDisplay: (<C extends ElementType = "h1">(props: PolymorphicComponentProps<C, EditableTextDisplayProps>) => react.ReactElement | null) & UnknownRecord;
|
|
2711
|
+
declare const EditableTextDisplay: (<C extends ElementType = "h1">(props: PolymorphicComponentProps<C, EditableTextDisplayProps>) => _$react.ReactElement | null) & UnknownRecord;
|
|
2592
2712
|
//#endregion
|
|
2593
2713
|
//#region src/components/Label/Label.d.ts
|
|
2594
2714
|
type LabelProps = ComponentPropsWithoutRef<'label'> & {
|
|
@@ -2633,7 +2753,7 @@ declare const Label: {
|
|
|
2633
2753
|
type EditableTextLabelProps = Omit<LabelProps, 'disabled' | 'htmlFor' | 'required'>;
|
|
2634
2754
|
declare const EditableTextLabel: ({
|
|
2635
2755
|
...props
|
|
2636
|
-
}: EditableTextLabelProps) => react_jsx_runtime0.JSX.Element;
|
|
2756
|
+
}: EditableTextLabelProps) => _$react_jsx_runtime0.JSX.Element;
|
|
2637
2757
|
//#endregion
|
|
2638
2758
|
//#region src/components/EditableText/EditableTextSubmitButton.d.ts
|
|
2639
2759
|
type EditableTextSubmitButtonProps = {
|
|
@@ -2709,7 +2829,7 @@ type InputProps = Omit<InputHTMLAttributes<HTMLInputElement | HTMLTextAreaElemen
|
|
|
2709
2829
|
/**
|
|
2710
2830
|
* Capture user input with a text field. Should be used within a [Form]() and [FormField]().
|
|
2711
2831
|
*/
|
|
2712
|
-
declare const Input: react.ForwardRefExoticComponent<Omit<InputHTMLAttributes<HTMLInputElement | HTMLTextAreaElement>, "type"> & {
|
|
2832
|
+
declare const Input: _$react.ForwardRefExoticComponent<Omit<InputHTMLAttributes<HTMLInputElement | HTMLTextAreaElement>, "type"> & {
|
|
2713
2833
|
/**
|
|
2714
2834
|
* When enabled, focusing the input will select the entire text within
|
|
2715
2835
|
*/
|
|
@@ -2747,7 +2867,7 @@ declare const Input: react.ForwardRefExoticComponent<Omit<InputHTMLAttributes<HT
|
|
|
2747
2867
|
* The type of the input
|
|
2748
2868
|
*/
|
|
2749
2869
|
type?: "email" | "multiline" | "number" | "password" | "phone" | "search" | "text" | "url";
|
|
2750
|
-
} & react.RefAttributes<HTMLInputElement | HTMLTextAreaElement>>;
|
|
2870
|
+
} & _$react.RefAttributes<HTMLInputElement | HTMLTextAreaElement>>;
|
|
2751
2871
|
//#endregion
|
|
2752
2872
|
//#region src/components/EditableText/EditableTextInput.d.ts
|
|
2753
2873
|
type EditableTextInputProps = Pick<InputProps, 'autoSelect'>;
|
|
@@ -2856,7 +2976,7 @@ declare const FeatureCardImage: ({
|
|
|
2856
2976
|
alt,
|
|
2857
2977
|
src,
|
|
2858
2978
|
...props
|
|
2859
|
-
}: FeatureCardImageProps) => react_jsx_runtime0.JSX.Element;
|
|
2979
|
+
}: FeatureCardImageProps) => _$react_jsx_runtime0.JSX.Element;
|
|
2860
2980
|
//#endregion
|
|
2861
2981
|
//#region src/components/Form/useFormState.d.ts
|
|
2862
2982
|
type ActionCallback<T> = (data: T, nextData: T) => Promise<T> | T;
|
|
@@ -2883,7 +3003,7 @@ type FormWithLabelProps = {
|
|
|
2883
3003
|
'aria-label': string;
|
|
2884
3004
|
'aria-labelledby'?: never;
|
|
2885
3005
|
};
|
|
2886
|
-
type FormErrors<T> = Partial<{ [
|
|
3006
|
+
type FormErrors<T> = Partial<{ [Key in keyof T]: string[] | string }>;
|
|
2887
3007
|
type FormProps<T> = Omit<ComponentPropsWithoutRef<'form'>, 'action' | 'aria-label' | 'aria-labelledby' | 'children'> & {
|
|
2888
3008
|
/**
|
|
2889
3009
|
* The action to be performed when the form is submitted. It can be asynchronous.
|
|
@@ -2929,7 +3049,7 @@ type FormErrorSummaryProps = {
|
|
|
2929
3049
|
};
|
|
2930
3050
|
declare const FormErrorSummary: ({
|
|
2931
3051
|
description
|
|
2932
|
-
}: FormErrorSummaryProps) => react_jsx_runtime0.JSX.Element | null;
|
|
3052
|
+
}: FormErrorSummaryProps) => _$react_jsx_runtime0.JSX.Element | null;
|
|
2933
3053
|
//#endregion
|
|
2934
3054
|
//#region src/components/Form/validateWithYup.d.ts
|
|
2935
3055
|
declare const validateWithYup: <T>(schema: Schema<T>) => (data: object) => {};
|
|
@@ -3087,7 +3207,7 @@ type GridProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
3087
3207
|
expandItems?: boolean;
|
|
3088
3208
|
renderAs?: ElementType;
|
|
3089
3209
|
};
|
|
3090
|
-
declare const Grid: (<C extends ElementType = "div">(props: PolymorphicComponentProps<C, GridProps>) => react.ReactElement | null) & UnknownRecord;
|
|
3210
|
+
declare const Grid: (<C extends ElementType = "div">(props: PolymorphicComponentProps<C, GridProps>) => _$react.ReactElement | null) & UnknownRecord;
|
|
3091
3211
|
//#endregion
|
|
3092
3212
|
//#region src/components/PreviewCard/PreviewCard.d.ts
|
|
3093
3213
|
type ContentProps$1 = Omit<HoverCardContentProps, 'alignOffset' | 'arrowPadding' | 'asChild' | 'collisionPadding' | 'hideWhenDetached' | 'sideOffset'>;
|
|
@@ -3167,7 +3287,7 @@ type IconButtonProps = {
|
|
|
3167
3287
|
* IconButton behaves like a [Button](?path=/docs/components-button--docs),
|
|
3168
3288
|
* but only accepts an [Icon](?path=/docs/components-icon--docs) as a child.
|
|
3169
3289
|
*/
|
|
3170
|
-
declare const IconButton: react.ForwardRefExoticComponent<(Omit<{
|
|
3290
|
+
declare const IconButton: _$react.ForwardRefExoticComponent<(Omit<{
|
|
3171
3291
|
/**
|
|
3172
3292
|
* Accessible text for screen readers.
|
|
3173
3293
|
*/
|
|
@@ -3185,7 +3305,7 @@ declare const IconButton: react.ForwardRefExoticComponent<(Omit<{
|
|
|
3185
3305
|
* The [Icon](?path=/docs/components-icon--docs) component to use, e.g. `<Icon type="favorite" />`
|
|
3186
3306
|
*/
|
|
3187
3307
|
children: JSX.Element;
|
|
3188
|
-
} & Omit<ButtonAsLinkProps, "fullWidth" | "leftIcon" | "rightIcon">, "ref">) & react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
3308
|
+
} & Omit<ButtonAsLinkProps, "fullWidth" | "leftIcon" | "rightIcon">, "ref">) & _$react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
3189
3309
|
//#endregion
|
|
3190
3310
|
//#region src/components/Image/Image.d.ts
|
|
3191
3311
|
type ImageProps = ComponentPropsWithoutRef<'img'> & {
|
|
@@ -3265,7 +3385,7 @@ type InputClickToCopyProps = Omit<InputProps, 'autoSelect' | 'disabled' | 'right
|
|
|
3265
3385
|
/**
|
|
3266
3386
|
* Provides a readonly input that copies the text to the clipboard when clicked.
|
|
3267
3387
|
*/
|
|
3268
|
-
declare const InputClickToCopy: react.ForwardRefExoticComponent<Omit<InputProps, "type" | "rightIcon" | "disabled" | "value" | "autoSelect"> & {
|
|
3388
|
+
declare const InputClickToCopy: _$react.ForwardRefExoticComponent<Omit<InputProps, "type" | "rightIcon" | "disabled" | "value" | "autoSelect"> & {
|
|
3269
3389
|
/**
|
|
3270
3390
|
* When disabled, the copy action will not be triggered
|
|
3271
3391
|
*/
|
|
@@ -3278,7 +3398,7 @@ declare const InputClickToCopy: react.ForwardRefExoticComponent<Omit<InputProps,
|
|
|
3278
3398
|
* the value of what is copied
|
|
3279
3399
|
*/
|
|
3280
3400
|
value: string;
|
|
3281
|
-
} & react.RefAttributes<HTMLInputElement>>;
|
|
3401
|
+
} & _$react.RefAttributes<HTMLInputElement>>;
|
|
3282
3402
|
//#endregion
|
|
3283
3403
|
//#region src/components/InputPassword/InputPassword.d.ts
|
|
3284
3404
|
type InputPasswordProps = Omit<InputProps, 'leftIcon' | 'monospace' | 'rightIcon' | 'type'> & {
|
|
@@ -3294,7 +3414,7 @@ type InputPasswordProps = Omit<InputProps, 'leftIcon' | 'monospace' | 'rightIcon
|
|
|
3294
3414
|
/**
|
|
3295
3415
|
* A password input component with a toggle button to show or hide the password text.
|
|
3296
3416
|
*/
|
|
3297
|
-
declare const InputPassword: react.ForwardRefExoticComponent<Omit<InputProps, "type" | "leftIcon" | "rightIcon" | "monospace"> & {
|
|
3417
|
+
declare const InputPassword: _$react.ForwardRefExoticComponent<Omit<InputProps, "type" | "leftIcon" | "rightIcon" | "monospace"> & {
|
|
3298
3418
|
/**
|
|
3299
3419
|
* Set the disabled state of the input
|
|
3300
3420
|
*/
|
|
@@ -3303,7 +3423,7 @@ declare const InputPassword: react.ForwardRefExoticComponent<Omit<InputProps, "t
|
|
|
3303
3423
|
* Callback function that is called when the visibility state changes
|
|
3304
3424
|
*/
|
|
3305
3425
|
onVisibilityToggle?: (isVisible: boolean) => void;
|
|
3306
|
-
} & react.RefAttributes<HTMLInputElement>>;
|
|
3426
|
+
} & _$react.RefAttributes<HTMLInputElement>>;
|
|
3307
3427
|
//#endregion
|
|
3308
3428
|
//#region src/components/KeyboardShortcut/KeyboardKeyTypes.d.ts
|
|
3309
3429
|
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 +3615,7 @@ type MenuProps = MenuControlProps & {
|
|
|
3495
3615
|
/**
|
|
3496
3616
|
* Displays a menu to the users with a set of actions.
|
|
3497
3617
|
*/
|
|
3498
|
-
declare const Menu: react.ForwardRefExoticComponent<MenuProps & react.RefAttributes<HTMLButtonElement>>;
|
|
3618
|
+
declare const Menu: _$react.ForwardRefExoticComponent<MenuProps & _$react.RefAttributes<HTMLButtonElement>>;
|
|
3499
3619
|
//#endregion
|
|
3500
3620
|
//#region src/components/Menu/MenuLabel.d.ts
|
|
3501
3621
|
type MenuLabelProps = {
|
|
@@ -3508,7 +3628,7 @@ declare const MenuLabel: {
|
|
|
3508
3628
|
({
|
|
3509
3629
|
children,
|
|
3510
3630
|
...props
|
|
3511
|
-
}: MenuLabelProps): react_jsx_runtime0.JSX.Element;
|
|
3631
|
+
}: MenuLabelProps): _$react_jsx_runtime0.JSX.Element;
|
|
3512
3632
|
displayName: string;
|
|
3513
3633
|
};
|
|
3514
3634
|
//#endregion
|
|
@@ -3542,7 +3662,7 @@ declare const SubMenu: {
|
|
|
3542
3662
|
children,
|
|
3543
3663
|
onOpenChange,
|
|
3544
3664
|
...props
|
|
3545
|
-
}: SubMenuProps): react_jsx_runtime0.JSX.Element;
|
|
3665
|
+
}: SubMenuProps): _$react_jsx_runtime0.JSX.Element;
|
|
3546
3666
|
displayName: string;
|
|
3547
3667
|
};
|
|
3548
3668
|
//#endregion
|
|
@@ -3600,15 +3720,15 @@ type MenuItemButtonProps = ButtonProps & {
|
|
|
3600
3720
|
};
|
|
3601
3721
|
//#endregion
|
|
3602
3722
|
//#region src/components/Menu/MenuItem.d.ts
|
|
3603
|
-
declare const MenuItem: react.ForwardRefExoticComponent<(Omit<DropdownMenuItemProps & BaseButtonProps & react.ClassAttributes<HTMLButtonElement> & react.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
3723
|
+
declare const MenuItem: _$react.ForwardRefExoticComponent<(Omit<DropdownMenuItemProps & BaseButtonProps & _$react.ClassAttributes<HTMLButtonElement> & _$react.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
3604
3724
|
href?: never;
|
|
3605
3725
|
type?: "button" | "reset" | "submit";
|
|
3606
|
-
children: react.ReactNode;
|
|
3726
|
+
children: _$react.ReactNode;
|
|
3607
3727
|
} & {
|
|
3608
3728
|
appearance?: "dangerous" | "default" | "gated";
|
|
3609
|
-
badge?: react.JSX.Element;
|
|
3610
|
-
children?: react.ReactNode;
|
|
3611
|
-
command?: react.ReactNode;
|
|
3729
|
+
badge?: _$react.JSX.Element;
|
|
3730
|
+
children?: _$react.ReactNode;
|
|
3731
|
+
command?: _$react.ReactNode;
|
|
3612
3732
|
icon?: ButtonProps["leftIcon"];
|
|
3613
3733
|
leftIcon?: ButtonProps["leftIcon"];
|
|
3614
3734
|
rightIcon?: ButtonProps["rightIcon"];
|
|
@@ -3622,29 +3742,29 @@ declare const MenuItem: react.ForwardRefExoticComponent<(Omit<DropdownMenuItemPr
|
|
|
3622
3742
|
* Treats the menu item as a link when provided
|
|
3623
3743
|
*/
|
|
3624
3744
|
href?: MenuItemButtonProps["href"];
|
|
3625
|
-
}, "ref"> | Omit<DropdownMenuItemProps & BaseButtonProps & react.ClassAttributes<HTMLAnchorElement> & react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
3745
|
+
}, "ref"> | Omit<DropdownMenuItemProps & BaseButtonProps & _$react.ClassAttributes<HTMLAnchorElement> & _$react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
3626
3746
|
beforeAction?: (() => Promise<void>) | (() => void);
|
|
3627
|
-
children: react.ReactNode;
|
|
3747
|
+
children: _$react.ReactNode;
|
|
3628
3748
|
colorScheme?: ColorSchemeTypes;
|
|
3629
3749
|
disabled?: boolean;
|
|
3630
3750
|
inheritColor?: boolean;
|
|
3631
|
-
leftIcon?: react.ReactNode | undefined;
|
|
3632
|
-
rightIcon?: react.ReactNode | undefined;
|
|
3751
|
+
leftIcon?: _$react.ReactNode | undefined;
|
|
3752
|
+
rightIcon?: _$react.ReactNode | undefined;
|
|
3633
3753
|
type?: LinkTypes | undefined;
|
|
3634
3754
|
underline?: "always" | "hover" | "none";
|
|
3635
|
-
} & react.ClassAttributes<HTMLButtonElement> & react.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
3755
|
+
} & _$react.ClassAttributes<HTMLButtonElement> & _$react.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
3636
3756
|
href?: never;
|
|
3637
3757
|
type?: "button" | "reset" | "submit";
|
|
3638
3758
|
} & {
|
|
3639
3759
|
href: string | undefined;
|
|
3640
|
-
children: react.ReactNode;
|
|
3760
|
+
children: _$react.ReactNode;
|
|
3641
3761
|
beforeAction?: (() => Promise<void>) | (() => void);
|
|
3642
3762
|
type?: LinkTypes;
|
|
3643
3763
|
} & {
|
|
3644
3764
|
appearance?: "dangerous" | "default" | "gated";
|
|
3645
|
-
badge?: react.JSX.Element;
|
|
3646
|
-
children?: react.ReactNode;
|
|
3647
|
-
command?: react.ReactNode;
|
|
3765
|
+
badge?: _$react.JSX.Element;
|
|
3766
|
+
children?: _$react.ReactNode;
|
|
3767
|
+
command?: _$react.ReactNode;
|
|
3648
3768
|
icon?: ButtonProps["leftIcon"];
|
|
3649
3769
|
leftIcon?: ButtonProps["leftIcon"];
|
|
3650
3770
|
rightIcon?: ButtonProps["rightIcon"];
|
|
@@ -3658,17 +3778,17 @@ declare const MenuItem: react.ForwardRefExoticComponent<(Omit<DropdownMenuItemPr
|
|
|
3658
3778
|
* Treats the menu item as a link when provided
|
|
3659
3779
|
*/
|
|
3660
3780
|
href?: MenuItemButtonProps["href"];
|
|
3661
|
-
}, "ref"> | Omit<DropdownMenuItemProps & BaseButtonProps & react.ClassAttributes<HTMLAnchorElement> & react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
3781
|
+
}, "ref"> | Omit<DropdownMenuItemProps & BaseButtonProps & _$react.ClassAttributes<HTMLAnchorElement> & _$react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
3662
3782
|
beforeAction?: (() => Promise<void>) | (() => void);
|
|
3663
|
-
children: react.ReactNode;
|
|
3783
|
+
children: _$react.ReactNode;
|
|
3664
3784
|
colorScheme?: ColorSchemeTypes;
|
|
3665
3785
|
disabled?: boolean;
|
|
3666
3786
|
inheritColor?: boolean;
|
|
3667
|
-
leftIcon?: react.ReactNode | undefined;
|
|
3668
|
-
rightIcon?: react.ReactNode | undefined;
|
|
3787
|
+
leftIcon?: _$react.ReactNode | undefined;
|
|
3788
|
+
rightIcon?: _$react.ReactNode | undefined;
|
|
3669
3789
|
type?: LinkTypes | undefined;
|
|
3670
3790
|
underline?: "always" | "hover" | "none";
|
|
3671
|
-
} & Omit<react.AnchorHTMLAttributes<HTMLAnchorElement>, "href"> & {
|
|
3791
|
+
} & Omit<_$react.AnchorHTMLAttributes<HTMLAnchorElement>, "href"> & {
|
|
3672
3792
|
reloadDocument?: boolean;
|
|
3673
3793
|
replace?: boolean;
|
|
3674
3794
|
state?: any;
|
|
@@ -3679,14 +3799,14 @@ declare const MenuItem: react.ForwardRefExoticComponent<(Omit<DropdownMenuItemPr
|
|
|
3679
3799
|
type?: LinkTypes;
|
|
3680
3800
|
} & {
|
|
3681
3801
|
href: string | undefined;
|
|
3682
|
-
children: react.ReactNode;
|
|
3802
|
+
children: _$react.ReactNode;
|
|
3683
3803
|
beforeAction?: (() => Promise<void>) | (() => void);
|
|
3684
3804
|
type?: LinkTypes;
|
|
3685
3805
|
} & {
|
|
3686
3806
|
appearance?: "dangerous" | "default" | "gated";
|
|
3687
|
-
badge?: react.JSX.Element;
|
|
3688
|
-
children?: react.ReactNode;
|
|
3689
|
-
command?: react.ReactNode;
|
|
3807
|
+
badge?: _$react.JSX.Element;
|
|
3808
|
+
children?: _$react.ReactNode;
|
|
3809
|
+
command?: _$react.ReactNode;
|
|
3690
3810
|
icon?: ButtonProps["leftIcon"];
|
|
3691
3811
|
leftIcon?: ButtonProps["leftIcon"];
|
|
3692
3812
|
rightIcon?: ButtonProps["rightIcon"];
|
|
@@ -3700,7 +3820,7 @@ declare const MenuItem: react.ForwardRefExoticComponent<(Omit<DropdownMenuItemPr
|
|
|
3700
3820
|
* Treats the menu item as a link when provided
|
|
3701
3821
|
*/
|
|
3702
3822
|
href?: MenuItemButtonProps["href"];
|
|
3703
|
-
}, "ref">) & react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
3823
|
+
}, "ref">) & _$react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
3704
3824
|
//#endregion
|
|
3705
3825
|
//#region src/components/Menu/MenuItemLabel.d.ts
|
|
3706
3826
|
type MenuItemLabelProps = {
|
|
@@ -3711,7 +3831,7 @@ type MenuItemLabelProps = {
|
|
|
3711
3831
|
};
|
|
3712
3832
|
declare const MenuItemLabel: ({
|
|
3713
3833
|
children
|
|
3714
|
-
}: MenuItemLabelProps) => react_jsx_runtime0.JSX.Element;
|
|
3834
|
+
}: MenuItemLabelProps) => _$react_jsx_runtime0.JSX.Element;
|
|
3715
3835
|
//#endregion
|
|
3716
3836
|
//#region src/components/Menu/MenuItemDescription.d.ts
|
|
3717
3837
|
type MenuItemDescriptionProps = {
|
|
@@ -3722,7 +3842,7 @@ type MenuItemDescriptionProps = {
|
|
|
3722
3842
|
};
|
|
3723
3843
|
declare const MenuItemDescription: ({
|
|
3724
3844
|
children
|
|
3725
|
-
}: MenuItemDescriptionProps) => react_jsx_runtime0.JSX.Element;
|
|
3845
|
+
}: MenuItemDescriptionProps) => _$react_jsx_runtime0.JSX.Element;
|
|
3726
3846
|
//#endregion
|
|
3727
3847
|
//#region src/components/Menu/MenuRadioGroup.d.ts
|
|
3728
3848
|
type MenuRadioGroupProps = DropdownMenuRadioGroupProps & {
|
|
@@ -3739,7 +3859,7 @@ declare const MenuRadioGroup: {
|
|
|
3739
3859
|
({
|
|
3740
3860
|
children,
|
|
3741
3861
|
...props
|
|
3742
|
-
}: MenuRadioGroupProps): react_jsx_runtime0.JSX.Element;
|
|
3862
|
+
}: MenuRadioGroupProps): _$react_jsx_runtime0.JSX.Element;
|
|
3743
3863
|
displayName: string;
|
|
3744
3864
|
};
|
|
3745
3865
|
//#endregion
|
|
@@ -3772,7 +3892,7 @@ declare const RadioMenuItem: {
|
|
|
3772
3892
|
value,
|
|
3773
3893
|
indicator,
|
|
3774
3894
|
...props
|
|
3775
|
-
}: RadioMenuItemProps): react_jsx_runtime0.JSX.Element;
|
|
3895
|
+
}: RadioMenuItemProps): _$react_jsx_runtime0.JSX.Element;
|
|
3776
3896
|
displayName: string;
|
|
3777
3897
|
};
|
|
3778
3898
|
//#endregion
|
|
@@ -3806,7 +3926,7 @@ declare const CheckboxMenuItem: {
|
|
|
3806
3926
|
checked,
|
|
3807
3927
|
onCheckedChange,
|
|
3808
3928
|
...props
|
|
3809
|
-
}: CheckboxMenuItemProps): react_jsx_runtime0.JSX.Element;
|
|
3929
|
+
}: CheckboxMenuItemProps): _$react_jsx_runtime0.JSX.Element;
|
|
3810
3930
|
displayName: string;
|
|
3811
3931
|
};
|
|
3812
3932
|
//#endregion
|
|
@@ -3835,10 +3955,10 @@ declare const FilterMenuItem: {
|
|
|
3835
3955
|
checked,
|
|
3836
3956
|
onCheckedChange,
|
|
3837
3957
|
...props
|
|
3838
|
-
}: CheckboxMenuItemProps): react_jsx_runtime0.JSX.Element;
|
|
3958
|
+
}: CheckboxMenuItemProps): _$react_jsx_runtime0.JSX.Element;
|
|
3839
3959
|
displayName: string;
|
|
3840
3960
|
};
|
|
3841
|
-
declare const FilterMenu: react.ForwardRefExoticComponent<FilterMenuProps & react.RefAttributes<HTMLButtonElement>>;
|
|
3961
|
+
declare const FilterMenu: _$react.ForwardRefExoticComponent<FilterMenuProps & _$react.RefAttributes<HTMLButtonElement>>;
|
|
3842
3962
|
//#endregion
|
|
3843
3963
|
//#region src/components/Meter/Meter.d.ts
|
|
3844
3964
|
type MeterSegment = {
|
|
@@ -3951,7 +4071,7 @@ type ModalProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
3951
4071
|
* A Modal is a focused UI element that appears atop the main interface, requiring
|
|
3952
4072
|
* user interaction or dismissal before returning to the underlying content.
|
|
3953
4073
|
*/
|
|
3954
|
-
declare const Modal: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
4074
|
+
declare const Modal: _$react.ForwardRefExoticComponent<Omit<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
3955
4075
|
/**
|
|
3956
4076
|
* The content of the modal.
|
|
3957
4077
|
*/
|
|
@@ -3994,7 +4114,7 @@ declare const Modal: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProp
|
|
|
3994
4114
|
* The width of the modal when space allows. On smaller screens, the modal automatically adjusts to fit the available space.
|
|
3995
4115
|
*/
|
|
3996
4116
|
width?: string;
|
|
3997
|
-
} & react.RefAttributes<HTMLDivElement>>;
|
|
4117
|
+
} & _$react.RefAttributes<HTMLDivElement>>;
|
|
3998
4118
|
//#endregion
|
|
3999
4119
|
//#region src/components/Modal/ModalCallouts.d.ts
|
|
4000
4120
|
type ModalCalloutsProps = {
|
|
@@ -4006,7 +4126,7 @@ type ModalCalloutsProps = {
|
|
|
4006
4126
|
declare const ModalCallouts: {
|
|
4007
4127
|
({
|
|
4008
4128
|
children
|
|
4009
|
-
}: ModalCalloutsProps): react_jsx_runtime0.JSX.Element;
|
|
4129
|
+
}: ModalCalloutsProps): _$react_jsx_runtime0.JSX.Element;
|
|
4010
4130
|
displayName: string;
|
|
4011
4131
|
};
|
|
4012
4132
|
type ModalCalloutProps = {
|
|
@@ -4022,7 +4142,7 @@ declare const ModalCallout: {
|
|
|
4022
4142
|
title,
|
|
4023
4143
|
image,
|
|
4024
4144
|
children
|
|
4025
|
-
}: ModalCalloutProps): react_jsx_runtime0.JSX.Element;
|
|
4145
|
+
}: ModalCalloutProps): _$react_jsx_runtime0.JSX.Element;
|
|
4026
4146
|
displayName: string;
|
|
4027
4147
|
};
|
|
4028
4148
|
//#endregion
|
|
@@ -4201,7 +4321,7 @@ type RadioProps = Omit<ComponentPropsWithoutRef<'input'>, 'hideLabel' | 'label'
|
|
|
4201
4321
|
*/
|
|
4202
4322
|
hideLabel?: boolean;
|
|
4203
4323
|
};
|
|
4204
|
-
declare const Radio: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "onChange" | "size" | "value" | "hideLabel"> & {
|
|
4324
|
+
declare const Radio: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "onChange" | "size" | "value" | "hideLabel"> & {
|
|
4205
4325
|
/**
|
|
4206
4326
|
* Indicates the state of the radio
|
|
4207
4327
|
*/
|
|
@@ -4251,7 +4371,7 @@ declare const Radio: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTM
|
|
|
4251
4371
|
* Whether to visually hide the label (it will still be available to screen readers)
|
|
4252
4372
|
*/
|
|
4253
4373
|
hideLabel?: boolean;
|
|
4254
|
-
} & react.RefAttributes<HTMLInputElement>>;
|
|
4374
|
+
} & _$react.RefAttributes<HTMLInputElement>>;
|
|
4255
4375
|
//#endregion
|
|
4256
4376
|
//#region src/components/RadioCard/RadioCardDefaultLayout.d.ts
|
|
4257
4377
|
type RadioCardDefaultLayoutProps = {
|
|
@@ -4323,7 +4443,7 @@ type RadioCardWithDefaultLayout = BaseRadioCardProps & RadioCardDefaultLayoutPro
|
|
|
4323
4443
|
children?: never;
|
|
4324
4444
|
};
|
|
4325
4445
|
type RadioCardProps = RadioCardWithChildren | RadioCardWithDefaultLayout;
|
|
4326
|
-
declare const RadioCard: react.ForwardRefExoticComponent<RadioCardProps & react.RefAttributes<HTMLInputElement>>;
|
|
4446
|
+
declare const RadioCard: _$react.ForwardRefExoticComponent<RadioCardProps & _$react.RefAttributes<HTMLInputElement>>;
|
|
4327
4447
|
//#endregion
|
|
4328
4448
|
//#region src/components/RadioCard/RadioCardImage.d.ts
|
|
4329
4449
|
type RadioCardImageProps = Omit<ComponentPropsWithoutRef<'input'>, 'onChange'> & {
|
|
@@ -4368,7 +4488,7 @@ type RadioCardImageProps = Omit<ComponentPropsWithoutRef<'input'>, 'onChange'> &
|
|
|
4368
4488
|
*/
|
|
4369
4489
|
padding?: Spacings;
|
|
4370
4490
|
};
|
|
4371
|
-
declare const RadioCardImage: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "onChange"> & {
|
|
4491
|
+
declare const RadioCardImage: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "onChange"> & {
|
|
4372
4492
|
/**
|
|
4373
4493
|
* Indicates the state of the radio
|
|
4374
4494
|
*/
|
|
@@ -4409,7 +4529,7 @@ declare const RadioCardImage: react.ForwardRefExoticComponent<Omit<Omit<react.De
|
|
|
4409
4529
|
* The padding of the card
|
|
4410
4530
|
*/
|
|
4411
4531
|
padding?: Spacings;
|
|
4412
|
-
} & react.RefAttributes<HTMLInputElement>>;
|
|
4532
|
+
} & _$react.RefAttributes<HTMLInputElement>>;
|
|
4413
4533
|
//#endregion
|
|
4414
4534
|
//#region src/components/ScreenReaderOnly/ScreenReaderOnly.d.ts
|
|
4415
4535
|
type ScreenReaderOnlyProps = ComponentPropsWithoutRef<'div'> & {
|
|
@@ -4436,7 +4556,7 @@ declare const ScreenReaderOnly: {
|
|
|
4436
4556
|
children,
|
|
4437
4557
|
focusable,
|
|
4438
4558
|
...props
|
|
4439
|
-
}: ScreenReaderOnlyProps): react_jsx_runtime0.JSX.Element;
|
|
4559
|
+
}: ScreenReaderOnlyProps): _$react_jsx_runtime0.JSX.Element;
|
|
4440
4560
|
displayName: string;
|
|
4441
4561
|
};
|
|
4442
4562
|
//#endregion
|
|
@@ -4453,14 +4573,14 @@ type ScrollAreaProps = HTMLAttributes<HTMLDivElement> & {
|
|
|
4453
4573
|
* ScrollArea is a simple scrollable container with shadow effects to indicate
|
|
4454
4574
|
* scrollability.
|
|
4455
4575
|
*/
|
|
4456
|
-
declare const ScrollArea: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
|
|
4576
|
+
declare const ScrollArea: _$react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
|
|
4457
4577
|
/**
|
|
4458
4578
|
* When true, disables scrolling. Useful to temporarily prevent scrolling,
|
|
4459
4579
|
* like when drag-and-dropping an item from inside to outside of the scroll
|
|
4460
4580
|
* area.
|
|
4461
4581
|
*/
|
|
4462
4582
|
locked?: boolean;
|
|
4463
|
-
} & react.RefAttributes<HTMLDivElement>>;
|
|
4583
|
+
} & _$react.RefAttributes<HTMLDivElement>>;
|
|
4464
4584
|
//#endregion
|
|
4465
4585
|
//#region src/components/SegmentedControl/SegmentedControl.d.ts
|
|
4466
4586
|
type SegmentedControlProps = Omit<ToggleGroupSingleProps, 'type'> & {
|
|
@@ -4536,7 +4656,7 @@ type NoIcon$1 = {
|
|
|
4536
4656
|
'aria-label'?: never;
|
|
4537
4657
|
};
|
|
4538
4658
|
type SegmentedControlItemProps = BaseProps$1 & (IconWithAriaLabel$1 | IconWithLabel$1 | NoIcon$1);
|
|
4539
|
-
declare const SegmentedControlItem: react.ForwardRefExoticComponent<SegmentedControlItemProps & react.RefAttributes<HTMLButtonElement>>;
|
|
4659
|
+
declare const SegmentedControlItem: _$react.ForwardRefExoticComponent<SegmentedControlItemProps & _$react.RefAttributes<HTMLButtonElement>>;
|
|
4540
4660
|
//#endregion
|
|
4541
4661
|
//#region src/components/Select/Select.d.ts
|
|
4542
4662
|
type SelectProps = {
|
|
@@ -4591,7 +4711,7 @@ type SelectProps = {
|
|
|
4591
4711
|
/**
|
|
4592
4712
|
* Display a list of options and choose one of them. Replacement for the native Select HTML element.
|
|
4593
4713
|
*/
|
|
4594
|
-
declare const Select: react.ForwardRefExoticComponent<SelectProps & react.RefAttributes<HTMLButtonElement>>;
|
|
4714
|
+
declare const Select: _$react.ForwardRefExoticComponent<SelectProps & _$react.RefAttributes<HTMLButtonElement>>;
|
|
4595
4715
|
//#endregion
|
|
4596
4716
|
//#region src/components/Select/SelectOption.d.ts
|
|
4597
4717
|
type SelectOptionProps = {
|
|
@@ -4624,7 +4744,7 @@ type SelectOptionProps = {
|
|
|
4624
4744
|
*/
|
|
4625
4745
|
checkmarkVerticalAlign?: 'center' | 'top';
|
|
4626
4746
|
};
|
|
4627
|
-
declare const SelectOption: react.ForwardRefExoticComponent<SelectOptionProps & react.RefAttributes<HTMLDivElement>>;
|
|
4747
|
+
declare const SelectOption: _$react.ForwardRefExoticComponent<SelectOptionProps & _$react.RefAttributes<HTMLDivElement>>;
|
|
4628
4748
|
//#endregion
|
|
4629
4749
|
//#region src/components/Select/SelectOptionGroup.d.ts
|
|
4630
4750
|
type SelectOptionGroupProps = {
|
|
@@ -4635,7 +4755,7 @@ declare const SelectOptionGroup: ({
|
|
|
4635
4755
|
children,
|
|
4636
4756
|
label,
|
|
4637
4757
|
...props
|
|
4638
|
-
}: SelectOptionGroupProps) => react_jsx_runtime0.JSX.Element;
|
|
4758
|
+
}: SelectOptionGroupProps) => _$react_jsx_runtime0.JSX.Element;
|
|
4639
4759
|
//#endregion
|
|
4640
4760
|
//#region src/components/Slider/Slider.d.ts
|
|
4641
4761
|
type SliderProps = Omit<ComponentPropsWithoutRef<'div'>, 'onChange'> & {
|
|
@@ -4800,7 +4920,7 @@ type StackProps = {
|
|
|
4800
4920
|
* Used to layout its children in a vertical or horizontal stack. The gap between each item in the stack can be customized.
|
|
4801
4921
|
* This allows for layouting children in a consistent way without needing to manually add margins or padding.
|
|
4802
4922
|
*/
|
|
4803
|
-
declare const Stack: (<C extends ElementType = "div">(props: PolymorphicComponentProps<C, StackProps>) => react.ReactElement | null) & UnknownRecord;
|
|
4923
|
+
declare const Stack: (<C extends ElementType = "div">(props: PolymorphicComponentProps<C, StackProps>) => _$react.ReactElement | null) & UnknownRecord;
|
|
4804
4924
|
//#endregion
|
|
4805
4925
|
//#region src/components/Switch/Switch.d.ts
|
|
4806
4926
|
type SwitchSizeType = 'lg' | 'md' | 'sm';
|
|
@@ -4854,7 +4974,7 @@ type SwitchProps = Omit<ComponentPropsWithoutRef<'input'>, 'hideLabel' | 'label'
|
|
|
4854
4974
|
*/
|
|
4855
4975
|
hideLabel?: boolean;
|
|
4856
4976
|
};
|
|
4857
|
-
declare const Switch: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "size" | "hideLabel"> & {
|
|
4977
|
+
declare const Switch: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "size" | "hideLabel"> & {
|
|
4858
4978
|
/**
|
|
4859
4979
|
* The alignment of the switch relative to the label
|
|
4860
4980
|
*/
|
|
@@ -4903,7 +5023,7 @@ declare const Switch: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHT
|
|
|
4903
5023
|
* Whether to visually hide the label (it will still be available to screen readers)
|
|
4904
5024
|
*/
|
|
4905
5025
|
hideLabel?: boolean;
|
|
4906
|
-
} & react.RefAttributes<HTMLInputElement>>;
|
|
5026
|
+
} & _$react.RefAttributes<HTMLInputElement>>;
|
|
4907
5027
|
//#endregion
|
|
4908
5028
|
//#region src/components/Table/TableBody.d.ts
|
|
4909
5029
|
type TableBodyProps = HTMLAttributes<HTMLTableSectionElement> & {
|
|
@@ -5052,7 +5172,7 @@ type NoIcon = {
|
|
|
5052
5172
|
'aria-label'?: never;
|
|
5053
5173
|
};
|
|
5054
5174
|
type TabsTriggerProps$1 = BaseProps & (IconWithAriaLabel | IconWithLabel | NoIcon);
|
|
5055
|
-
declare const TabsTrigger: react.ForwardRefExoticComponent<TabsTriggerProps$1 & react.RefAttributes<HTMLButtonElement>>;
|
|
5175
|
+
declare const TabsTrigger: _$react.ForwardRefExoticComponent<TabsTriggerProps$1 & _$react.RefAttributes<HTMLButtonElement>>;
|
|
5056
5176
|
//#endregion
|
|
5057
5177
|
//#region src/components/Tag/Tag.d.ts
|
|
5058
5178
|
type TagProps = ComponentPropsWithoutRef<'div'> & {
|
|
@@ -5084,7 +5204,7 @@ type TagProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
5084
5204
|
/**
|
|
5085
5205
|
* A `Tag` is an optionally linked label, with an optional action button, to categorize content.
|
|
5086
5206
|
*/
|
|
5087
|
-
declare const Tag: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
5207
|
+
declare const Tag: _$react.ForwardRefExoticComponent<Omit<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
5088
5208
|
/**
|
|
5089
5209
|
* Sets the [color scheme](../?path=/docs/docs-color-schemes--docs)
|
|
5090
5210
|
*/
|
|
@@ -5109,7 +5229,7 @@ declare const Tag: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<
|
|
|
5109
5229
|
* Accessible label for the `x` button (ie. "Remove tag")
|
|
5110
5230
|
*/
|
|
5111
5231
|
onClickRemoveLabel?: string | undefined;
|
|
5112
|
-
} & react.RefAttributes<HTMLDivElement>>;
|
|
5232
|
+
} & _$react.RefAttributes<HTMLDivElement>>;
|
|
5113
5233
|
//#endregion
|
|
5114
5234
|
//#region src/components/Thumbnail/ThumbnailBadge.d.ts
|
|
5115
5235
|
type ThumbnailBadgeProps = {
|
|
@@ -5133,22 +5253,22 @@ declare const ThumbnailBadge: {
|
|
|
5133
5253
|
//#endregion
|
|
5134
5254
|
//#region src/private/helpers/getBackgroundGradient/getBackgroundGradient.d.ts
|
|
5135
5255
|
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>;
|
|
5256
|
+
defaultDarkOne: _$styled_components0.RuleSet<object>;
|
|
5257
|
+
defaultDarkTwo: _$styled_components0.RuleSet<object>;
|
|
5258
|
+
defaultLightOne: _$styled_components0.RuleSet<object>;
|
|
5259
|
+
defaultLightTwo: _$styled_components0.RuleSet<object>;
|
|
5260
|
+
defaultMidOne: _$styled_components0.RuleSet<object>;
|
|
5261
|
+
defaultMidTwo: _$styled_components0.RuleSet<object>;
|
|
5262
|
+
green: _$styled_components0.RuleSet<object>;
|
|
5263
|
+
greenWithPop: _$styled_components0.RuleSet<object>;
|
|
5264
|
+
pink: _$styled_components0.RuleSet<object>;
|
|
5265
|
+
pinkWithPop: _$styled_components0.RuleSet<object>;
|
|
5266
|
+
playfulGradientOne: _$styled_components0.RuleSet<object>;
|
|
5267
|
+
playfulGradientTwo: _$styled_components0.RuleSet<object>;
|
|
5268
|
+
purple: _$styled_components0.RuleSet<object>;
|
|
5269
|
+
purpleWithPop: _$styled_components0.RuleSet<object>;
|
|
5270
|
+
yellow: _$styled_components0.RuleSet<object>;
|
|
5271
|
+
yellowWithPop: _$styled_components0.RuleSet<object>;
|
|
5152
5272
|
};
|
|
5153
5273
|
type GradientNameType = keyof typeof gradients;
|
|
5154
5274
|
//#endregion
|
|
@@ -5205,7 +5325,7 @@ type ThumbnailProps = Omit<ComponentPropsWithoutRef<'div'>, 'children'> & {
|
|
|
5205
5325
|
/**
|
|
5206
5326
|
* A `Thumbnail` is a small, reduced-size version of an image or video used as a preview or representative image.
|
|
5207
5327
|
*/
|
|
5208
|
-
declare const Thumbnail: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, "children"> & {
|
|
5328
|
+
declare const Thumbnail: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, "children"> & {
|
|
5209
5329
|
/**
|
|
5210
5330
|
* The desired display of the thumbnail, either wide or square
|
|
5211
5331
|
*/
|
|
@@ -5241,7 +5361,7 @@ declare const Thumbnail: react.ForwardRefExoticComponent<Omit<Omit<react.Detaile
|
|
|
5241
5361
|
* 'wide' maps to 16:9 ratio, 'square' maps to 1:1 ratio.
|
|
5242
5362
|
*/
|
|
5243
5363
|
aspectRatio?: AspectRatioType;
|
|
5244
|
-
} & react.RefAttributes<HTMLDivElement>>;
|
|
5364
|
+
} & _$react.RefAttributes<HTMLDivElement>>;
|
|
5245
5365
|
//#endregion
|
|
5246
5366
|
//#region src/components/ThumbnailCollage/ThumbnailCollage.d.ts
|
|
5247
5367
|
type ThumbnailCollageProps = {
|
|
@@ -5369,12 +5489,12 @@ declare const WistiaLogo: {
|
|
|
5369
5489
|
title,
|
|
5370
5490
|
variant,
|
|
5371
5491
|
...props
|
|
5372
|
-
}: WistiaLogoProps): react_jsx_runtime0.JSX.Element;
|
|
5492
|
+
}: WistiaLogoProps): _$react_jsx_runtime0.JSX.Element;
|
|
5373
5493
|
displayName: string;
|
|
5374
5494
|
};
|
|
5375
5495
|
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 };
|
|
5496
|
+
export { ActionButton, ActionButtonProps, Avatar, AvatarProps, AvatarStatus, Badge, BadgeProps, Banner, BannerProps, Box, BoxProps, Breadcrumb, BreadcrumbProps, Breadcrumbs, BreadcrumbsProps, Button, ButtonGroup, ButtonProps, Calendar, CalendarPreset, CalendarPresetProps, 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
5497
|
}
|
|
5378
5498
|
//#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 };
|
|
5499
|
+
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, CalendarPreset, type CalendarPresetProps, 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
5500
|
//# sourceMappingURL=index.d.ts.map
|