@wistia/ui 0.22.2 → 0.22.3-beta.5879fee4.b74845d
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/css-custom-data.css +2 -1
- package/dist/index.d.ts +378 -379
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +62 -43
- package/dist/index.js.map +1 -1
- package/package.json +15 -16
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
|
|
2
|
-
import * as react from "react";
|
|
2
|
+
import * as _$react from "react";
|
|
3
3
|
import { AnchorHTMLAttributes, CSSProperties, ChangeEvent, ComponentProps, ComponentPropsWithRef, ComponentPropsWithoutRef, Dispatch, ElementType, ForwardRefExoticComponent, HTMLAttributes, InputHTMLAttributes, JSX, LegacyRef, MouseEvent, MutableRefObject, PropsWithChildren, ReactElement, ReactNode, Ref, RefAttributes, RefCallback, RefObject, SetStateAction, SyntheticEvent, TdHTMLAttributes, ThHTMLAttributes } from "react";
|
|
4
|
-
import * as styled_components0 from "styled-components";
|
|
4
|
+
import * as _$styled_components0 from "styled-components";
|
|
5
5
|
import { css } from "styled-components";
|
|
6
|
-
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
6
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
7
7
|
import { FileAmountLimitValidator, FileSizeValidator, FileTypeValidator, ImageDimensionsValidator, PersistentFileAmountLimitValidator } from "use-file-picker/validators";
|
|
8
8
|
import { CollapsibleContentProps } from "@radix-ui/react-collapsible";
|
|
9
9
|
import { Color } from "culori/fn";
|
|
@@ -26,7 +26,7 @@ type UIProviderProps = {
|
|
|
26
26
|
};
|
|
27
27
|
declare const UIProvider: ({
|
|
28
28
|
children
|
|
29
|
-
}: UIProviderProps) => react_jsx_runtime0.JSX.Element;
|
|
29
|
+
}: UIProviderProps) => _$react_jsx_runtime0.JSX.Element;
|
|
30
30
|
//#endregion
|
|
31
31
|
//#region src/helpers/coerceToBoolean/coerceToBoolean.d.ts
|
|
32
32
|
/**
|
|
@@ -351,11 +351,11 @@ type LinkProps = LinkAsButtonProps | LinkAsLinkProps;
|
|
|
351
351
|
* 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
352
|
* The one prop we ignore from react-router is `to`. We use `href` instead and map it under the hood.
|
|
353
353
|
*/
|
|
354
|
-
declare const Link: react.ForwardRefExoticComponent<(Omit<LinkAsButtonProps, "ref"> | Omit<LinkAsLinkProps, "ref">) & react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
354
|
+
declare const Link: _$react.ForwardRefExoticComponent<(Omit<LinkAsButtonProps, "ref"> | Omit<LinkAsLinkProps, "ref">) & _$react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
355
355
|
//#endregion
|
|
356
356
|
//#region src/private/hooks/useResponsiveProp/useResponsiveProp.d.ts
|
|
357
357
|
type Breakpoints = 'isLgAndDown' | 'isLgAndUp' | 'isMdAndDown' | 'isMdAndUp' | 'isSmAndDown' | 'isSmAndUp' | 'isXlAndDown' | 'isXlAndUp' | 'isXsAndDown' | 'isXsAndUp';
|
|
358
|
-
type AtLeastOneBreakpoint<T, U = { [
|
|
358
|
+
type AtLeastOneBreakpoint<T, U = { [Key in keyof T]: Pick<T, Key> }> = Partial<T> & U[keyof U];
|
|
359
359
|
type ResponsiveObject<T> = AtLeastOneBreakpoint<Record<Breakpoints, T>> & {
|
|
360
360
|
base: T;
|
|
361
361
|
};
|
|
@@ -450,7 +450,7 @@ type ButtonProps = ButtonAsButtonProps | ButtonAsLinkProps;
|
|
|
450
450
|
* action, or performing a delete operation. It replaces the HTML `<button>` element,
|
|
451
451
|
* unless an `href` attribute is passed, in which it will render an `<a>` element.
|
|
452
452
|
*/
|
|
453
|
-
declare const Button: react.ForwardRefExoticComponent<(Omit<ButtonAsButtonProps, "ref"> | Omit<BaseButtonProps & react.ClassAttributes<HTMLAnchorElement> & react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
453
|
+
declare const Button: _$react.ForwardRefExoticComponent<(Omit<ButtonAsButtonProps, "ref"> | Omit<BaseButtonProps & _$react.ClassAttributes<HTMLAnchorElement> & _$react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
454
454
|
beforeAction?: (() => Promise<void>) | (() => void);
|
|
455
455
|
children: ReactNode;
|
|
456
456
|
colorScheme?: ColorSchemeTypes;
|
|
@@ -460,7 +460,7 @@ declare const Button: react.ForwardRefExoticComponent<(Omit<ButtonAsButtonProps,
|
|
|
460
460
|
rightIcon?: ReactNode | undefined;
|
|
461
461
|
type?: LinkTypes | undefined;
|
|
462
462
|
underline?: "always" | "hover" | "none";
|
|
463
|
-
} & react.ClassAttributes<HTMLButtonElement> & react.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
463
|
+
} & _$react.ClassAttributes<HTMLButtonElement> & _$react.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
464
464
|
href?: never;
|
|
465
465
|
type?: "button" | "reset" | "submit";
|
|
466
466
|
} & {
|
|
@@ -476,7 +476,7 @@ declare const Button: react.ForwardRefExoticComponent<(Omit<ButtonAsButtonProps,
|
|
|
476
476
|
* @ignore
|
|
477
477
|
*/
|
|
478
478
|
type?: LinkTypes;
|
|
479
|
-
}, "ref"> | Omit<BaseButtonProps & react.ClassAttributes<HTMLAnchorElement> & react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
479
|
+
}, "ref"> | Omit<BaseButtonProps & _$react.ClassAttributes<HTMLAnchorElement> & _$react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
480
480
|
beforeAction?: (() => Promise<void>) | (() => void);
|
|
481
481
|
children: ReactNode;
|
|
482
482
|
colorScheme?: ColorSchemeTypes;
|
|
@@ -486,7 +486,7 @@ declare const Button: react.ForwardRefExoticComponent<(Omit<ButtonAsButtonProps,
|
|
|
486
486
|
rightIcon?: ReactNode | undefined;
|
|
487
487
|
type?: LinkTypes | undefined;
|
|
488
488
|
underline?: "always" | "hover" | "none";
|
|
489
|
-
} & Omit<react.AnchorHTMLAttributes<HTMLAnchorElement>, "href"> & {
|
|
489
|
+
} & Omit<_$react.AnchorHTMLAttributes<HTMLAnchorElement>, "href"> & {
|
|
490
490
|
reloadDocument?: boolean;
|
|
491
491
|
replace?: boolean;
|
|
492
492
|
state?: any;
|
|
@@ -508,7 +508,7 @@ declare const Button: react.ForwardRefExoticComponent<(Omit<ButtonAsButtonProps,
|
|
|
508
508
|
* @ignore
|
|
509
509
|
*/
|
|
510
510
|
type?: LinkTypes;
|
|
511
|
-
}, "ref">) & react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
511
|
+
}, "ref">) & _$react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
512
512
|
//#endregion
|
|
513
513
|
//#region src/private/components/Toast/Toast.d.ts
|
|
514
514
|
type ToastProps = ComponentPropsWithoutRef<'div'> & {
|
|
@@ -586,7 +586,7 @@ type ActionButtonProps = {
|
|
|
586
586
|
/**
|
|
587
587
|
* Action Button component is used as one of a group of main actions on the page. It composes [Button]().
|
|
588
588
|
*/
|
|
589
|
-
declare const ActionButton: react.ForwardRefExoticComponent<(Omit<{
|
|
589
|
+
declare const ActionButton: _$react.ForwardRefExoticComponent<(Omit<{
|
|
590
590
|
/**
|
|
591
591
|
* @override
|
|
592
592
|
* The text to display for the ActionButton
|
|
@@ -644,7 +644,7 @@ declare const ActionButton: react.ForwardRefExoticComponent<(Omit<{
|
|
|
644
644
|
* Changes the secondary icon for different use cases
|
|
645
645
|
*/
|
|
646
646
|
variant?: "default" | "gated" | "menu-down" | "menu-up";
|
|
647
|
-
} & Omit<ButtonAsLinkProps, "variant" | "fullWidth" | "isLoading" | "leftIcon" | "rightIcon" | "size" | "unstyled">, "ref">) & react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
647
|
+
} & Omit<ButtonAsLinkProps, "variant" | "fullWidth" | "isLoading" | "leftIcon" | "rightIcon" | "size" | "unstyled">, "ref">) & _$react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
648
648
|
//#endregion
|
|
649
649
|
//#region src/components/Avatar/Avatar.d.ts
|
|
650
650
|
type AvatarInstanceType = 'image' | 'initials';
|
|
@@ -716,7 +716,7 @@ type BadgeProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
716
716
|
/**
|
|
717
717
|
* A `Badge` is a compact label, with optional icon, to convey status or context.
|
|
718
718
|
*/
|
|
719
|
-
declare const Badge: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
719
|
+
declare const Badge: _$react.ForwardRefExoticComponent<Omit<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
720
720
|
/**
|
|
721
721
|
* Sets the [color scheme](/docs/color-schemes)
|
|
722
722
|
*/
|
|
@@ -733,7 +733,7 @@ declare const Badge: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProp
|
|
|
733
733
|
* The variant of the `Badge`
|
|
734
734
|
*/
|
|
735
735
|
variant?: BadgeVariants;
|
|
736
|
-
} & react.RefAttributes<HTMLDivElement>>;
|
|
736
|
+
} & _$react.RefAttributes<HTMLDivElement>>;
|
|
737
737
|
//#endregion
|
|
738
738
|
//#region src/components/Banner/Banner.d.ts
|
|
739
739
|
type BannerProps = ComponentPropsWithoutRef<'div'> & {
|
|
@@ -981,7 +981,7 @@ type BoxProps = ComponentPropsWithoutRef<typeof DEFAULT_ELEMENT$1> & {
|
|
|
981
981
|
/**
|
|
982
982
|
* Box is a layout container using [CSS Flexbox](https://developer.mozilla.org/en-US/docs/Learn/CSS/CSS_layout/Flexbox).
|
|
983
983
|
*/
|
|
984
|
-
declare const Box: (<C extends ElementType = "div">(props: PolymorphicComponentProps<C, BoxProps>) => react.ReactElement | null) & UnknownRecord;
|
|
984
|
+
declare const Box: (<C extends ElementType = "div">(props: PolymorphicComponentProps<C, BoxProps>) => _$react.ReactElement | null) & UnknownRecord;
|
|
985
985
|
//#endregion
|
|
986
986
|
//#region src/components/Breadcrumbs/Breadcrumbs.d.ts
|
|
987
987
|
type BreadcrumbsProps = ComponentPropsWithoutRef<'div'> & {
|
|
@@ -1022,7 +1022,7 @@ declare const Breadcrumb: ({
|
|
|
1022
1022
|
href,
|
|
1023
1023
|
children,
|
|
1024
1024
|
...props
|
|
1025
|
-
}: BreadcrumbProps) => react_jsx_runtime0.JSX.Element;
|
|
1025
|
+
}: BreadcrumbProps) => _$react_jsx_runtime0.JSX.Element;
|
|
1026
1026
|
//#endregion
|
|
1027
1027
|
//#region src/components/ButtonGroup/ButtonGroup.d.ts
|
|
1028
1028
|
type ButtonGroupButtonSize = ButtonSizes | 'natural';
|
|
@@ -1209,7 +1209,7 @@ type CenterProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
1209
1209
|
* Center component provides various ways to center content horizontally within a container.
|
|
1210
1210
|
* It supports max-width constraints, text alignment, gutters, and intrinsic content centering.
|
|
1211
1211
|
*/
|
|
1212
|
-
declare const Center: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
1212
|
+
declare const Center: _$react.ForwardRefExoticComponent<Omit<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
1213
1213
|
/**
|
|
1214
1214
|
* A CSS max-width value
|
|
1215
1215
|
*/
|
|
@@ -1226,11 +1226,11 @@ declare const Center: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLPro
|
|
|
1226
1226
|
* The content to be centered
|
|
1227
1227
|
*/
|
|
1228
1228
|
children: ReactNode;
|
|
1229
|
-
} & react.RefAttributes<HTMLDivElement>>;
|
|
1229
|
+
} & _$react.RefAttributes<HTMLDivElement>>;
|
|
1230
1230
|
//#endregion
|
|
1231
1231
|
//#region src/components/Checkbox/Checkbox.d.ts
|
|
1232
1232
|
type CheckboxSizeType = 'lg' | 'md' | 'sm';
|
|
1233
|
-
declare const Checkbox: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "onChange" | "size" | "hideLabel"> & {
|
|
1233
|
+
declare const Checkbox: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "onChange" | "size" | "hideLabel"> & {
|
|
1234
1234
|
/**
|
|
1235
1235
|
* Indicates the state of the checkbox
|
|
1236
1236
|
*/
|
|
@@ -1275,7 +1275,7 @@ declare const Checkbox: react.ForwardRefExoticComponent<Omit<Omit<react.Detailed
|
|
|
1275
1275
|
* Whether to visually hide the label (it will still be available to screen readers)
|
|
1276
1276
|
*/
|
|
1277
1277
|
hideLabel?: boolean;
|
|
1278
|
-
} & react.RefAttributes<HTMLInputElement>>;
|
|
1278
|
+
} & _$react.RefAttributes<HTMLInputElement>>;
|
|
1279
1279
|
//#endregion
|
|
1280
1280
|
//#region src/components/ClickRegion/ClickRegion.d.ts
|
|
1281
1281
|
type ClickRegionProps = {
|
|
@@ -1343,225 +1343,225 @@ type CollapsibleTriggerProps = {
|
|
|
1343
1343
|
};
|
|
1344
1344
|
declare const CollapsibleTrigger: ({
|
|
1345
1345
|
children
|
|
1346
|
-
}: CollapsibleTriggerProps) => react_jsx_runtime0.JSX.Element;
|
|
1346
|
+
}: CollapsibleTriggerProps) => _$react_jsx_runtime0.JSX.Element;
|
|
1347
1347
|
//#endregion
|
|
1348
1348
|
//#region src/components/Icon/iconMap.d.ts
|
|
1349
1349
|
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;
|
|
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;
|
|
1565
1565
|
};
|
|
1566
1566
|
type IconNameType = keyof typeof iconMap;
|
|
1567
1567
|
//#endregion
|
|
@@ -1632,7 +1632,7 @@ declare const CollapsibleTriggerIcon: {
|
|
|
1632
1632
|
({
|
|
1633
1633
|
type,
|
|
1634
1634
|
...props
|
|
1635
|
-
}: CollapsibleTriggerIconProps): react_jsx_runtime0.JSX.Element;
|
|
1635
|
+
}: CollapsibleTriggerIconProps): _$react_jsx_runtime0.JSX.Element;
|
|
1636
1636
|
displayName: string;
|
|
1637
1637
|
};
|
|
1638
1638
|
//#endregion
|
|
@@ -1650,7 +1650,7 @@ type CollapsibleContentProps$1 = {
|
|
|
1650
1650
|
declare const CollapsibleContent: ({
|
|
1651
1651
|
clamp,
|
|
1652
1652
|
children
|
|
1653
|
-
}: CollapsibleContentProps$1) => react_jsx_runtime0.JSX.Element;
|
|
1653
|
+
}: CollapsibleContentProps$1) => _$react_jsx_runtime0.JSX.Element;
|
|
1654
1654
|
//#endregion
|
|
1655
1655
|
//#region src/components/ColorPicker/ColorGrid.d.ts
|
|
1656
1656
|
type ColorGridProps = PropsWithChildren & {
|
|
@@ -1760,6 +1760,7 @@ type ColorPickerProps = PropsWithChildren<{
|
|
|
1760
1760
|
*/
|
|
1761
1761
|
value: string;
|
|
1762
1762
|
}>;
|
|
1763
|
+
type ColorPickerComponentProps = ComponentPropsWithoutRef<'div'> & ColorPickerProps;
|
|
1763
1764
|
/**
|
|
1764
1765
|
* A composable color picker built from low-level building blocks. Choose the
|
|
1765
1766
|
* parts you need, leave out the ones you don't, and include any custom UI
|
|
@@ -1777,7 +1778,7 @@ declare const ColorPicker: {
|
|
|
1777
1778
|
opacityForContrastCalculation,
|
|
1778
1779
|
onValueChange,
|
|
1779
1780
|
value
|
|
1780
|
-
}:
|
|
1781
|
+
}: ColorPickerComponentProps): JSX.Element;
|
|
1781
1782
|
displayName: string;
|
|
1782
1783
|
};
|
|
1783
1784
|
//#endregion
|
|
@@ -1808,15 +1809,13 @@ declare const ColorPickerSection: {
|
|
|
1808
1809
|
};
|
|
1809
1810
|
//#endregion
|
|
1810
1811
|
//#region src/components/ColorPicker/ColorPickerTrigger.d.ts
|
|
1811
|
-
type ColorPickerTriggerProps =
|
|
1812
|
+
type ColorPickerTriggerProps = ComponentPropsWithoutRef<'button'>;
|
|
1812
1813
|
/**
|
|
1813
1814
|
* The button that toggles the color picker popover open and closed. By default
|
|
1814
1815
|
* it renders a swatch and hex label for the current color; pass custom children
|
|
1815
1816
|
* to replace that content.
|
|
1816
1817
|
*/
|
|
1817
|
-
declare const ColorPickerTrigger: react.ForwardRefExoticComponent<
|
|
1818
|
-
children?: react.ReactNode | undefined;
|
|
1819
|
-
} & react.RefAttributes<HTMLButtonElement>>;
|
|
1818
|
+
declare const ColorPickerTrigger: _$react.ForwardRefExoticComponent<Omit<_$react.DetailedHTMLProps<_$react.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & _$react.RefAttributes<HTMLButtonElement>>;
|
|
1820
1819
|
//#endregion
|
|
1821
1820
|
//#region src/components/ColorPicker/ContrastControls.d.ts
|
|
1822
1821
|
type ContrastControlsProps = object;
|
|
@@ -1971,7 +1970,7 @@ declare const Combobox: ({
|
|
|
1971
1970
|
children,
|
|
1972
1971
|
flipPopover,
|
|
1973
1972
|
fullWidth
|
|
1974
|
-
}: ComboboxProps) => react_jsx_runtime0.JSX.Element;
|
|
1973
|
+
}: ComboboxProps) => _$react_jsx_runtime0.JSX.Element;
|
|
1975
1974
|
//#endregion
|
|
1976
1975
|
//#region src/components/Combobox/ComboboxOption.d.ts
|
|
1977
1976
|
type ComboboxOptionProps = {
|
|
@@ -1981,7 +1980,7 @@ type ComboboxOptionProps = {
|
|
|
1981
1980
|
declare const ComboboxOption: ({
|
|
1982
1981
|
value,
|
|
1983
1982
|
children
|
|
1984
|
-
}: ComboboxOptionProps) => react_jsx_runtime0.JSX.Element;
|
|
1983
|
+
}: ComboboxOptionProps) => _$react_jsx_runtime0.JSX.Element;
|
|
1985
1984
|
//#endregion
|
|
1986
1985
|
//#region src/components/ContextMenu/ContextMenu.d.ts
|
|
1987
1986
|
type ContextMenuProps = {
|
|
@@ -2016,7 +2015,7 @@ declare const ContextMenu: ({
|
|
|
2016
2015
|
side,
|
|
2017
2016
|
onRequestClose,
|
|
2018
2017
|
compact
|
|
2019
|
-
}: ContextMenuProps) => react_jsx_runtime0.JSX.Element | null;
|
|
2018
|
+
}: ContextMenuProps) => _$react_jsx_runtime0.JSX.Element | null;
|
|
2020
2019
|
//#endregion
|
|
2021
2020
|
//#region src/components/CustomizableThemeWrapper/CustomizableThemeWrapper.d.ts
|
|
2022
2021
|
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 +2072,7 @@ type DataCardProps = ComponentPropsWithoutRef<'div'> & Partial<Pick<ButtonAsLink
|
|
|
2073
2072
|
subtitle?: ReactNode;
|
|
2074
2073
|
};
|
|
2075
2074
|
declare const DataCard: {
|
|
2076
|
-
(props: DataCardProps): react_jsx_runtime0.JSX.Element;
|
|
2075
|
+
(props: DataCardProps): _$react_jsx_runtime0.JSX.Element;
|
|
2077
2076
|
displayName: string;
|
|
2078
2077
|
};
|
|
2079
2078
|
//#endregion
|
|
@@ -2135,7 +2134,7 @@ declare const DataCardTrend: ({
|
|
|
2135
2134
|
//#region src/components/DataCards/DataCardHoverArrow.d.ts
|
|
2136
2135
|
type DataCardHoverArrowProps = object;
|
|
2137
2136
|
declare const DataCardHoverArrow: {
|
|
2138
|
-
(props: DataCardHoverArrowProps): react_jsx_runtime0.JSX.Element;
|
|
2137
|
+
(props: DataCardHoverArrowProps): _$react_jsx_runtime0.JSX.Element;
|
|
2139
2138
|
displayName: string;
|
|
2140
2139
|
};
|
|
2141
2140
|
//#endregion
|
|
@@ -2192,18 +2191,18 @@ declare const DataListItem: {
|
|
|
2192
2191
|
//#region src/components/Text/Text.d.ts
|
|
2193
2192
|
type AlignmentTypes$1 = 'center' | 'justify' | 'left' | 'right';
|
|
2194
2193
|
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>;
|
|
2194
|
+
body1: _$styled_components0.RuleSet<object>;
|
|
2195
|
+
body2: _$styled_components0.RuleSet<object>;
|
|
2196
|
+
body3: _$styled_components0.RuleSet<object>;
|
|
2197
|
+
body4: _$styled_components0.RuleSet<object>;
|
|
2198
|
+
body1Mono: _$styled_components0.RuleSet<object>;
|
|
2199
|
+
body2Mono: _$styled_components0.RuleSet<object>;
|
|
2200
|
+
body3Mono: _$styled_components0.RuleSet<object>;
|
|
2201
|
+
body4Mono: _$styled_components0.RuleSet<object>;
|
|
2202
|
+
label1: _$styled_components0.RuleSet<object>;
|
|
2203
|
+
label2: _$styled_components0.RuleSet<object>;
|
|
2204
|
+
label3: _$styled_components0.RuleSet<object>;
|
|
2205
|
+
label4: _$styled_components0.RuleSet<object>;
|
|
2207
2206
|
};
|
|
2208
2207
|
type TextProps = ComponentPropsWithoutRef<'div'> & {
|
|
2209
2208
|
/**
|
|
@@ -2260,7 +2259,7 @@ type TextProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
2260
2259
|
/**
|
|
2261
2260
|
* Used for rending paragraphs and inline text.
|
|
2262
2261
|
*/
|
|
2263
|
-
declare const Text: (<C extends ElementType = "p">(props: PolymorphicComponentProps<C, TextProps>) => react.ReactElement | null) & UnknownRecord;
|
|
2262
|
+
declare const Text: (<C extends ElementType = "p">(props: PolymorphicComponentProps<C, TextProps>) => _$react.ReactElement | null) & UnknownRecord;
|
|
2264
2263
|
//#endregion
|
|
2265
2264
|
//#region src/components/DataList/DataListItemLabel.d.ts
|
|
2266
2265
|
type DataListItemLabelProps = TextProps;
|
|
@@ -2308,13 +2307,13 @@ declare const Divider: {
|
|
|
2308
2307
|
//#region src/components/Heading/Heading.d.ts
|
|
2309
2308
|
type AlignmentTypes = 'center' | 'justify' | 'left' | 'right';
|
|
2310
2309
|
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>;
|
|
2310
|
+
hero: _$styled_components0.RuleSet<object>;
|
|
2311
|
+
heading1: _$styled_components0.RuleSet<object>;
|
|
2312
|
+
heading2: _$styled_components0.RuleSet<object>;
|
|
2313
|
+
heading3: _$styled_components0.RuleSet<object>;
|
|
2314
|
+
heading4: _$styled_components0.RuleSet<object>;
|
|
2315
|
+
heading5: _$styled_components0.RuleSet<object>;
|
|
2316
|
+
heading6: _$styled_components0.RuleSet<object>;
|
|
2318
2317
|
};
|
|
2319
2318
|
declare const DEFAULT_ELEMENT = "h1";
|
|
2320
2319
|
type HeadingProps = ComponentPropsWithoutRef<typeof DEFAULT_ELEMENT> & {
|
|
@@ -2369,7 +2368,7 @@ type HeadingProps = ComponentPropsWithoutRef<typeof DEFAULT_ELEMENT> & {
|
|
|
2369
2368
|
/**
|
|
2370
2369
|
* Displaying heading text, both visually and semantically
|
|
2371
2370
|
*/
|
|
2372
|
-
declare const Heading: (<C extends ElementType = "h1">(props: PolymorphicComponentProps<C, HeadingProps>) => react.ReactElement | null) & UnknownRecord;
|
|
2371
|
+
declare const Heading: (<C extends ElementType = "h1">(props: PolymorphicComponentProps<C, HeadingProps>) => _$react.ReactElement | null) & UnknownRecord;
|
|
2373
2372
|
//#endregion
|
|
2374
2373
|
//#region src/components/EditableHeading/EditableHeading.d.ts
|
|
2375
2374
|
type EditableHeadingProps = {
|
|
@@ -2430,25 +2429,25 @@ declare const EditableHeading: ({
|
|
|
2430
2429
|
//#endregion
|
|
2431
2430
|
//#region src/private/helpers/getTypographicStyles/getTypographicStyles.d.ts
|
|
2432
2431
|
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>;
|
|
2432
|
+
hero: _$styled_components0.RuleSet<object>;
|
|
2433
|
+
heading1: _$styled_components0.RuleSet<object>;
|
|
2434
|
+
heading2: _$styled_components0.RuleSet<object>;
|
|
2435
|
+
heading3: _$styled_components0.RuleSet<object>;
|
|
2436
|
+
heading4: _$styled_components0.RuleSet<object>;
|
|
2437
|
+
heading5: _$styled_components0.RuleSet<object>;
|
|
2438
|
+
heading6: _$styled_components0.RuleSet<object>;
|
|
2439
|
+
body1: _$styled_components0.RuleSet<object>;
|
|
2440
|
+
body2: _$styled_components0.RuleSet<object>;
|
|
2441
|
+
body3: _$styled_components0.RuleSet<object>;
|
|
2442
|
+
body4: _$styled_components0.RuleSet<object>;
|
|
2443
|
+
body1Mono: _$styled_components0.RuleSet<object>;
|
|
2444
|
+
body2Mono: _$styled_components0.RuleSet<object>;
|
|
2445
|
+
body3Mono: _$styled_components0.RuleSet<object>;
|
|
2446
|
+
body4Mono: _$styled_components0.RuleSet<object>;
|
|
2447
|
+
label1: _$styled_components0.RuleSet<object>;
|
|
2448
|
+
label2: _$styled_components0.RuleSet<object>;
|
|
2449
|
+
label3: _$styled_components0.RuleSet<object>;
|
|
2450
|
+
label4: _$styled_components0.RuleSet<object>;
|
|
2452
2451
|
};
|
|
2453
2452
|
type TypographicVariant = keyof typeof typographicVariantStyleMap;
|
|
2454
2453
|
//#endregion
|
|
@@ -2541,7 +2540,7 @@ type EditableTextContextValues = {
|
|
|
2541
2540
|
maxLines: number | undefined;
|
|
2542
2541
|
finalFocusEl: (() => HTMLElement | null) | undefined;
|
|
2543
2542
|
};
|
|
2544
|
-
declare const EditableTextContext: react.Context<EditableTextContextValues | null>;
|
|
2543
|
+
declare const EditableTextContext: _$react.Context<EditableTextContextValues | null>;
|
|
2545
2544
|
declare const EditableTextRoot: ({
|
|
2546
2545
|
children,
|
|
2547
2546
|
defaultValue,
|
|
@@ -2588,7 +2587,7 @@ type EditableTextDisplayProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
2588
2587
|
asTrigger?: boolean;
|
|
2589
2588
|
renderAs?: ElementType;
|
|
2590
2589
|
};
|
|
2591
|
-
declare const EditableTextDisplay: (<C extends ElementType = "h1">(props: PolymorphicComponentProps<C, EditableTextDisplayProps>) => react.ReactElement | null) & UnknownRecord;
|
|
2590
|
+
declare const EditableTextDisplay: (<C extends ElementType = "h1">(props: PolymorphicComponentProps<C, EditableTextDisplayProps>) => _$react.ReactElement | null) & UnknownRecord;
|
|
2592
2591
|
//#endregion
|
|
2593
2592
|
//#region src/components/Label/Label.d.ts
|
|
2594
2593
|
type LabelProps = ComponentPropsWithoutRef<'label'> & {
|
|
@@ -2633,7 +2632,7 @@ declare const Label: {
|
|
|
2633
2632
|
type EditableTextLabelProps = Omit<LabelProps, 'disabled' | 'htmlFor' | 'required'>;
|
|
2634
2633
|
declare const EditableTextLabel: ({
|
|
2635
2634
|
...props
|
|
2636
|
-
}: EditableTextLabelProps) => react_jsx_runtime0.JSX.Element;
|
|
2635
|
+
}: EditableTextLabelProps) => _$react_jsx_runtime0.JSX.Element;
|
|
2637
2636
|
//#endregion
|
|
2638
2637
|
//#region src/components/EditableText/EditableTextSubmitButton.d.ts
|
|
2639
2638
|
type EditableTextSubmitButtonProps = {
|
|
@@ -2709,7 +2708,7 @@ type InputProps = Omit<InputHTMLAttributes<HTMLInputElement | HTMLTextAreaElemen
|
|
|
2709
2708
|
/**
|
|
2710
2709
|
* Capture user input with a text field. Should be used within a [Form]() and [FormField]().
|
|
2711
2710
|
*/
|
|
2712
|
-
declare const Input: react.ForwardRefExoticComponent<Omit<InputHTMLAttributes<HTMLInputElement | HTMLTextAreaElement>, "type"> & {
|
|
2711
|
+
declare const Input: _$react.ForwardRefExoticComponent<Omit<InputHTMLAttributes<HTMLInputElement | HTMLTextAreaElement>, "type"> & {
|
|
2713
2712
|
/**
|
|
2714
2713
|
* When enabled, focusing the input will select the entire text within
|
|
2715
2714
|
*/
|
|
@@ -2747,7 +2746,7 @@ declare const Input: react.ForwardRefExoticComponent<Omit<InputHTMLAttributes<HT
|
|
|
2747
2746
|
* The type of the input
|
|
2748
2747
|
*/
|
|
2749
2748
|
type?: "email" | "multiline" | "number" | "password" | "phone" | "search" | "text" | "url";
|
|
2750
|
-
} & react.RefAttributes<HTMLInputElement | HTMLTextAreaElement>>;
|
|
2749
|
+
} & _$react.RefAttributes<HTMLInputElement | HTMLTextAreaElement>>;
|
|
2751
2750
|
//#endregion
|
|
2752
2751
|
//#region src/components/EditableText/EditableTextInput.d.ts
|
|
2753
2752
|
type EditableTextInputProps = Pick<InputProps, 'autoSelect'>;
|
|
@@ -2856,7 +2855,7 @@ declare const FeatureCardImage: ({
|
|
|
2856
2855
|
alt,
|
|
2857
2856
|
src,
|
|
2858
2857
|
...props
|
|
2859
|
-
}: FeatureCardImageProps) => react_jsx_runtime0.JSX.Element;
|
|
2858
|
+
}: FeatureCardImageProps) => _$react_jsx_runtime0.JSX.Element;
|
|
2860
2859
|
//#endregion
|
|
2861
2860
|
//#region src/components/Form/useFormState.d.ts
|
|
2862
2861
|
type ActionCallback<T> = (data: T, nextData: T) => Promise<T> | T;
|
|
@@ -2883,7 +2882,7 @@ type FormWithLabelProps = {
|
|
|
2883
2882
|
'aria-label': string;
|
|
2884
2883
|
'aria-labelledby'?: never;
|
|
2885
2884
|
};
|
|
2886
|
-
type FormErrors<T> = Partial<{ [
|
|
2885
|
+
type FormErrors<T> = Partial<{ [Key in keyof T]: string[] | string }>;
|
|
2887
2886
|
type FormProps<T> = Omit<ComponentPropsWithoutRef<'form'>, 'action' | 'aria-label' | 'aria-labelledby' | 'children'> & {
|
|
2888
2887
|
/**
|
|
2889
2888
|
* The action to be performed when the form is submitted. It can be asynchronous.
|
|
@@ -2929,7 +2928,7 @@ type FormErrorSummaryProps = {
|
|
|
2929
2928
|
};
|
|
2930
2929
|
declare const FormErrorSummary: ({
|
|
2931
2930
|
description
|
|
2932
|
-
}: FormErrorSummaryProps) => react_jsx_runtime0.JSX.Element | null;
|
|
2931
|
+
}: FormErrorSummaryProps) => _$react_jsx_runtime0.JSX.Element | null;
|
|
2933
2932
|
//#endregion
|
|
2934
2933
|
//#region src/components/Form/validateWithYup.d.ts
|
|
2935
2934
|
declare const validateWithYup: <T>(schema: Schema<T>) => (data: object) => {};
|
|
@@ -3087,7 +3086,7 @@ type GridProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
3087
3086
|
expandItems?: boolean;
|
|
3088
3087
|
renderAs?: ElementType;
|
|
3089
3088
|
};
|
|
3090
|
-
declare const Grid: (<C extends ElementType = "div">(props: PolymorphicComponentProps<C, GridProps>) => react.ReactElement | null) & UnknownRecord;
|
|
3089
|
+
declare const Grid: (<C extends ElementType = "div">(props: PolymorphicComponentProps<C, GridProps>) => _$react.ReactElement | null) & UnknownRecord;
|
|
3091
3090
|
//#endregion
|
|
3092
3091
|
//#region src/components/PreviewCard/PreviewCard.d.ts
|
|
3093
3092
|
type ContentProps$1 = Omit<HoverCardContentProps, 'alignOffset' | 'arrowPadding' | 'asChild' | 'collisionPadding' | 'hideWhenDetached' | 'sideOffset'>;
|
|
@@ -3167,7 +3166,7 @@ type IconButtonProps = {
|
|
|
3167
3166
|
* IconButton behaves like a [Button](?path=/docs/components-button--docs),
|
|
3168
3167
|
* but only accepts an [Icon](?path=/docs/components-icon--docs) as a child.
|
|
3169
3168
|
*/
|
|
3170
|
-
declare const IconButton: react.ForwardRefExoticComponent<(Omit<{
|
|
3169
|
+
declare const IconButton: _$react.ForwardRefExoticComponent<(Omit<{
|
|
3171
3170
|
/**
|
|
3172
3171
|
* Accessible text for screen readers.
|
|
3173
3172
|
*/
|
|
@@ -3185,7 +3184,7 @@ declare const IconButton: react.ForwardRefExoticComponent<(Omit<{
|
|
|
3185
3184
|
* The [Icon](?path=/docs/components-icon--docs) component to use, e.g. `<Icon type="favorite" />`
|
|
3186
3185
|
*/
|
|
3187
3186
|
children: JSX.Element;
|
|
3188
|
-
} & Omit<ButtonAsLinkProps, "fullWidth" | "leftIcon" | "rightIcon">, "ref">) & react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
3187
|
+
} & Omit<ButtonAsLinkProps, "fullWidth" | "leftIcon" | "rightIcon">, "ref">) & _$react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
3189
3188
|
//#endregion
|
|
3190
3189
|
//#region src/components/Image/Image.d.ts
|
|
3191
3190
|
type ImageProps = ComponentPropsWithoutRef<'img'> & {
|
|
@@ -3265,7 +3264,7 @@ type InputClickToCopyProps = Omit<InputProps, 'autoSelect' | 'disabled' | 'right
|
|
|
3265
3264
|
/**
|
|
3266
3265
|
* Provides a readonly input that copies the text to the clipboard when clicked.
|
|
3267
3266
|
*/
|
|
3268
|
-
declare const InputClickToCopy: react.ForwardRefExoticComponent<Omit<InputProps, "type" | "rightIcon" | "disabled" | "value" | "autoSelect"> & {
|
|
3267
|
+
declare const InputClickToCopy: _$react.ForwardRefExoticComponent<Omit<InputProps, "type" | "rightIcon" | "disabled" | "value" | "autoSelect"> & {
|
|
3269
3268
|
/**
|
|
3270
3269
|
* When disabled, the copy action will not be triggered
|
|
3271
3270
|
*/
|
|
@@ -3278,7 +3277,7 @@ declare const InputClickToCopy: react.ForwardRefExoticComponent<Omit<InputProps,
|
|
|
3278
3277
|
* the value of what is copied
|
|
3279
3278
|
*/
|
|
3280
3279
|
value: string;
|
|
3281
|
-
} & react.RefAttributes<HTMLInputElement>>;
|
|
3280
|
+
} & _$react.RefAttributes<HTMLInputElement>>;
|
|
3282
3281
|
//#endregion
|
|
3283
3282
|
//#region src/components/InputPassword/InputPassword.d.ts
|
|
3284
3283
|
type InputPasswordProps = Omit<InputProps, 'leftIcon' | 'monospace' | 'rightIcon' | 'type'> & {
|
|
@@ -3294,7 +3293,7 @@ type InputPasswordProps = Omit<InputProps, 'leftIcon' | 'monospace' | 'rightIcon
|
|
|
3294
3293
|
/**
|
|
3295
3294
|
* A password input component with a toggle button to show or hide the password text.
|
|
3296
3295
|
*/
|
|
3297
|
-
declare const InputPassword: react.ForwardRefExoticComponent<Omit<InputProps, "type" | "leftIcon" | "rightIcon" | "monospace"> & {
|
|
3296
|
+
declare const InputPassword: _$react.ForwardRefExoticComponent<Omit<InputProps, "type" | "leftIcon" | "rightIcon" | "monospace"> & {
|
|
3298
3297
|
/**
|
|
3299
3298
|
* Set the disabled state of the input
|
|
3300
3299
|
*/
|
|
@@ -3303,7 +3302,7 @@ declare const InputPassword: react.ForwardRefExoticComponent<Omit<InputProps, "t
|
|
|
3303
3302
|
* Callback function that is called when the visibility state changes
|
|
3304
3303
|
*/
|
|
3305
3304
|
onVisibilityToggle?: (isVisible: boolean) => void;
|
|
3306
|
-
} & react.RefAttributes<HTMLInputElement>>;
|
|
3305
|
+
} & _$react.RefAttributes<HTMLInputElement>>;
|
|
3307
3306
|
//#endregion
|
|
3308
3307
|
//#region src/components/KeyboardShortcut/KeyboardKeyTypes.d.ts
|
|
3309
3308
|
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 +3494,7 @@ type MenuProps = MenuControlProps & {
|
|
|
3495
3494
|
/**
|
|
3496
3495
|
* Displays a menu to the users with a set of actions.
|
|
3497
3496
|
*/
|
|
3498
|
-
declare const Menu: react.ForwardRefExoticComponent<MenuProps & react.RefAttributes<HTMLButtonElement>>;
|
|
3497
|
+
declare const Menu: _$react.ForwardRefExoticComponent<MenuProps & _$react.RefAttributes<HTMLButtonElement>>;
|
|
3499
3498
|
//#endregion
|
|
3500
3499
|
//#region src/components/Menu/MenuLabel.d.ts
|
|
3501
3500
|
type MenuLabelProps = {
|
|
@@ -3508,7 +3507,7 @@ declare const MenuLabel: {
|
|
|
3508
3507
|
({
|
|
3509
3508
|
children,
|
|
3510
3509
|
...props
|
|
3511
|
-
}: MenuLabelProps): react_jsx_runtime0.JSX.Element;
|
|
3510
|
+
}: MenuLabelProps): _$react_jsx_runtime0.JSX.Element;
|
|
3512
3511
|
displayName: string;
|
|
3513
3512
|
};
|
|
3514
3513
|
//#endregion
|
|
@@ -3542,7 +3541,7 @@ declare const SubMenu: {
|
|
|
3542
3541
|
children,
|
|
3543
3542
|
onOpenChange,
|
|
3544
3543
|
...props
|
|
3545
|
-
}: SubMenuProps): react_jsx_runtime0.JSX.Element;
|
|
3544
|
+
}: SubMenuProps): _$react_jsx_runtime0.JSX.Element;
|
|
3546
3545
|
displayName: string;
|
|
3547
3546
|
};
|
|
3548
3547
|
//#endregion
|
|
@@ -3600,15 +3599,15 @@ type MenuItemButtonProps = ButtonProps & {
|
|
|
3600
3599
|
};
|
|
3601
3600
|
//#endregion
|
|
3602
3601
|
//#region src/components/Menu/MenuItem.d.ts
|
|
3603
|
-
declare const MenuItem: react.ForwardRefExoticComponent<(Omit<DropdownMenuItemProps & BaseButtonProps & react.ClassAttributes<HTMLButtonElement> & react.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
3602
|
+
declare const MenuItem: _$react.ForwardRefExoticComponent<(Omit<DropdownMenuItemProps & BaseButtonProps & _$react.ClassAttributes<HTMLButtonElement> & _$react.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
3604
3603
|
href?: never;
|
|
3605
3604
|
type?: "button" | "reset" | "submit";
|
|
3606
|
-
children: react.ReactNode;
|
|
3605
|
+
children: _$react.ReactNode;
|
|
3607
3606
|
} & {
|
|
3608
3607
|
appearance?: "dangerous" | "default" | "gated";
|
|
3609
|
-
badge?: react.JSX.Element;
|
|
3610
|
-
children?: react.ReactNode;
|
|
3611
|
-
command?: react.ReactNode;
|
|
3608
|
+
badge?: _$react.JSX.Element;
|
|
3609
|
+
children?: _$react.ReactNode;
|
|
3610
|
+
command?: _$react.ReactNode;
|
|
3612
3611
|
icon?: ButtonProps["leftIcon"];
|
|
3613
3612
|
leftIcon?: ButtonProps["leftIcon"];
|
|
3614
3613
|
rightIcon?: ButtonProps["rightIcon"];
|
|
@@ -3622,29 +3621,29 @@ declare const MenuItem: react.ForwardRefExoticComponent<(Omit<DropdownMenuItemPr
|
|
|
3622
3621
|
* Treats the menu item as a link when provided
|
|
3623
3622
|
*/
|
|
3624
3623
|
href?: MenuItemButtonProps["href"];
|
|
3625
|
-
}, "ref"> | Omit<DropdownMenuItemProps & BaseButtonProps & react.ClassAttributes<HTMLAnchorElement> & react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
3624
|
+
}, "ref"> | Omit<DropdownMenuItemProps & BaseButtonProps & _$react.ClassAttributes<HTMLAnchorElement> & _$react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
3626
3625
|
beforeAction?: (() => Promise<void>) | (() => void);
|
|
3627
|
-
children: react.ReactNode;
|
|
3626
|
+
children: _$react.ReactNode;
|
|
3628
3627
|
colorScheme?: ColorSchemeTypes;
|
|
3629
3628
|
disabled?: boolean;
|
|
3630
3629
|
inheritColor?: boolean;
|
|
3631
|
-
leftIcon?: react.ReactNode | undefined;
|
|
3632
|
-
rightIcon?: react.ReactNode | undefined;
|
|
3630
|
+
leftIcon?: _$react.ReactNode | undefined;
|
|
3631
|
+
rightIcon?: _$react.ReactNode | undefined;
|
|
3633
3632
|
type?: LinkTypes | undefined;
|
|
3634
3633
|
underline?: "always" | "hover" | "none";
|
|
3635
|
-
} & react.ClassAttributes<HTMLButtonElement> & react.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
3634
|
+
} & _$react.ClassAttributes<HTMLButtonElement> & _$react.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
3636
3635
|
href?: never;
|
|
3637
3636
|
type?: "button" | "reset" | "submit";
|
|
3638
3637
|
} & {
|
|
3639
3638
|
href: string | undefined;
|
|
3640
|
-
children: react.ReactNode;
|
|
3639
|
+
children: _$react.ReactNode;
|
|
3641
3640
|
beforeAction?: (() => Promise<void>) | (() => void);
|
|
3642
3641
|
type?: LinkTypes;
|
|
3643
3642
|
} & {
|
|
3644
3643
|
appearance?: "dangerous" | "default" | "gated";
|
|
3645
|
-
badge?: react.JSX.Element;
|
|
3646
|
-
children?: react.ReactNode;
|
|
3647
|
-
command?: react.ReactNode;
|
|
3644
|
+
badge?: _$react.JSX.Element;
|
|
3645
|
+
children?: _$react.ReactNode;
|
|
3646
|
+
command?: _$react.ReactNode;
|
|
3648
3647
|
icon?: ButtonProps["leftIcon"];
|
|
3649
3648
|
leftIcon?: ButtonProps["leftIcon"];
|
|
3650
3649
|
rightIcon?: ButtonProps["rightIcon"];
|
|
@@ -3658,17 +3657,17 @@ declare const MenuItem: react.ForwardRefExoticComponent<(Omit<DropdownMenuItemPr
|
|
|
3658
3657
|
* Treats the menu item as a link when provided
|
|
3659
3658
|
*/
|
|
3660
3659
|
href?: MenuItemButtonProps["href"];
|
|
3661
|
-
}, "ref"> | Omit<DropdownMenuItemProps & BaseButtonProps & react.ClassAttributes<HTMLAnchorElement> & react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
3660
|
+
}, "ref"> | Omit<DropdownMenuItemProps & BaseButtonProps & _$react.ClassAttributes<HTMLAnchorElement> & _$react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
3662
3661
|
beforeAction?: (() => Promise<void>) | (() => void);
|
|
3663
|
-
children: react.ReactNode;
|
|
3662
|
+
children: _$react.ReactNode;
|
|
3664
3663
|
colorScheme?: ColorSchemeTypes;
|
|
3665
3664
|
disabled?: boolean;
|
|
3666
3665
|
inheritColor?: boolean;
|
|
3667
|
-
leftIcon?: react.ReactNode | undefined;
|
|
3668
|
-
rightIcon?: react.ReactNode | undefined;
|
|
3666
|
+
leftIcon?: _$react.ReactNode | undefined;
|
|
3667
|
+
rightIcon?: _$react.ReactNode | undefined;
|
|
3669
3668
|
type?: LinkTypes | undefined;
|
|
3670
3669
|
underline?: "always" | "hover" | "none";
|
|
3671
|
-
} & Omit<react.AnchorHTMLAttributes<HTMLAnchorElement>, "href"> & {
|
|
3670
|
+
} & Omit<_$react.AnchorHTMLAttributes<HTMLAnchorElement>, "href"> & {
|
|
3672
3671
|
reloadDocument?: boolean;
|
|
3673
3672
|
replace?: boolean;
|
|
3674
3673
|
state?: any;
|
|
@@ -3679,14 +3678,14 @@ declare const MenuItem: react.ForwardRefExoticComponent<(Omit<DropdownMenuItemPr
|
|
|
3679
3678
|
type?: LinkTypes;
|
|
3680
3679
|
} & {
|
|
3681
3680
|
href: string | undefined;
|
|
3682
|
-
children: react.ReactNode;
|
|
3681
|
+
children: _$react.ReactNode;
|
|
3683
3682
|
beforeAction?: (() => Promise<void>) | (() => void);
|
|
3684
3683
|
type?: LinkTypes;
|
|
3685
3684
|
} & {
|
|
3686
3685
|
appearance?: "dangerous" | "default" | "gated";
|
|
3687
|
-
badge?: react.JSX.Element;
|
|
3688
|
-
children?: react.ReactNode;
|
|
3689
|
-
command?: react.ReactNode;
|
|
3686
|
+
badge?: _$react.JSX.Element;
|
|
3687
|
+
children?: _$react.ReactNode;
|
|
3688
|
+
command?: _$react.ReactNode;
|
|
3690
3689
|
icon?: ButtonProps["leftIcon"];
|
|
3691
3690
|
leftIcon?: ButtonProps["leftIcon"];
|
|
3692
3691
|
rightIcon?: ButtonProps["rightIcon"];
|
|
@@ -3700,7 +3699,7 @@ declare const MenuItem: react.ForwardRefExoticComponent<(Omit<DropdownMenuItemPr
|
|
|
3700
3699
|
* Treats the menu item as a link when provided
|
|
3701
3700
|
*/
|
|
3702
3701
|
href?: MenuItemButtonProps["href"];
|
|
3703
|
-
}, "ref">) & react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
3702
|
+
}, "ref">) & _$react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
3704
3703
|
//#endregion
|
|
3705
3704
|
//#region src/components/Menu/MenuItemLabel.d.ts
|
|
3706
3705
|
type MenuItemLabelProps = {
|
|
@@ -3711,7 +3710,7 @@ type MenuItemLabelProps = {
|
|
|
3711
3710
|
};
|
|
3712
3711
|
declare const MenuItemLabel: ({
|
|
3713
3712
|
children
|
|
3714
|
-
}: MenuItemLabelProps) => react_jsx_runtime0.JSX.Element;
|
|
3713
|
+
}: MenuItemLabelProps) => _$react_jsx_runtime0.JSX.Element;
|
|
3715
3714
|
//#endregion
|
|
3716
3715
|
//#region src/components/Menu/MenuItemDescription.d.ts
|
|
3717
3716
|
type MenuItemDescriptionProps = {
|
|
@@ -3722,7 +3721,7 @@ type MenuItemDescriptionProps = {
|
|
|
3722
3721
|
};
|
|
3723
3722
|
declare const MenuItemDescription: ({
|
|
3724
3723
|
children
|
|
3725
|
-
}: MenuItemDescriptionProps) => react_jsx_runtime0.JSX.Element;
|
|
3724
|
+
}: MenuItemDescriptionProps) => _$react_jsx_runtime0.JSX.Element;
|
|
3726
3725
|
//#endregion
|
|
3727
3726
|
//#region src/components/Menu/MenuRadioGroup.d.ts
|
|
3728
3727
|
type MenuRadioGroupProps = DropdownMenuRadioGroupProps & {
|
|
@@ -3739,7 +3738,7 @@ declare const MenuRadioGroup: {
|
|
|
3739
3738
|
({
|
|
3740
3739
|
children,
|
|
3741
3740
|
...props
|
|
3742
|
-
}: MenuRadioGroupProps): react_jsx_runtime0.JSX.Element;
|
|
3741
|
+
}: MenuRadioGroupProps): _$react_jsx_runtime0.JSX.Element;
|
|
3743
3742
|
displayName: string;
|
|
3744
3743
|
};
|
|
3745
3744
|
//#endregion
|
|
@@ -3772,7 +3771,7 @@ declare const RadioMenuItem: {
|
|
|
3772
3771
|
value,
|
|
3773
3772
|
indicator,
|
|
3774
3773
|
...props
|
|
3775
|
-
}: RadioMenuItemProps): react_jsx_runtime0.JSX.Element;
|
|
3774
|
+
}: RadioMenuItemProps): _$react_jsx_runtime0.JSX.Element;
|
|
3776
3775
|
displayName: string;
|
|
3777
3776
|
};
|
|
3778
3777
|
//#endregion
|
|
@@ -3806,7 +3805,7 @@ declare const CheckboxMenuItem: {
|
|
|
3806
3805
|
checked,
|
|
3807
3806
|
onCheckedChange,
|
|
3808
3807
|
...props
|
|
3809
|
-
}: CheckboxMenuItemProps): react_jsx_runtime0.JSX.Element;
|
|
3808
|
+
}: CheckboxMenuItemProps): _$react_jsx_runtime0.JSX.Element;
|
|
3810
3809
|
displayName: string;
|
|
3811
3810
|
};
|
|
3812
3811
|
//#endregion
|
|
@@ -3835,10 +3834,10 @@ declare const FilterMenuItem: {
|
|
|
3835
3834
|
checked,
|
|
3836
3835
|
onCheckedChange,
|
|
3837
3836
|
...props
|
|
3838
|
-
}: CheckboxMenuItemProps): react_jsx_runtime0.JSX.Element;
|
|
3837
|
+
}: CheckboxMenuItemProps): _$react_jsx_runtime0.JSX.Element;
|
|
3839
3838
|
displayName: string;
|
|
3840
3839
|
};
|
|
3841
|
-
declare const FilterMenu: react.ForwardRefExoticComponent<FilterMenuProps & react.RefAttributes<HTMLButtonElement>>;
|
|
3840
|
+
declare const FilterMenu: _$react.ForwardRefExoticComponent<FilterMenuProps & _$react.RefAttributes<HTMLButtonElement>>;
|
|
3842
3841
|
//#endregion
|
|
3843
3842
|
//#region src/components/Meter/Meter.d.ts
|
|
3844
3843
|
type MeterSegment = {
|
|
@@ -3951,7 +3950,7 @@ type ModalProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
3951
3950
|
* A Modal is a focused UI element that appears atop the main interface, requiring
|
|
3952
3951
|
* user interaction or dismissal before returning to the underlying content.
|
|
3953
3952
|
*/
|
|
3954
|
-
declare const Modal: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
3953
|
+
declare const Modal: _$react.ForwardRefExoticComponent<Omit<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
3955
3954
|
/**
|
|
3956
3955
|
* The content of the modal.
|
|
3957
3956
|
*/
|
|
@@ -3994,7 +3993,7 @@ declare const Modal: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProp
|
|
|
3994
3993
|
* The width of the modal when space allows. On smaller screens, the modal automatically adjusts to fit the available space.
|
|
3995
3994
|
*/
|
|
3996
3995
|
width?: string;
|
|
3997
|
-
} & react.RefAttributes<HTMLDivElement>>;
|
|
3996
|
+
} & _$react.RefAttributes<HTMLDivElement>>;
|
|
3998
3997
|
//#endregion
|
|
3999
3998
|
//#region src/components/Modal/ModalCallouts.d.ts
|
|
4000
3999
|
type ModalCalloutsProps = {
|
|
@@ -4006,7 +4005,7 @@ type ModalCalloutsProps = {
|
|
|
4006
4005
|
declare const ModalCallouts: {
|
|
4007
4006
|
({
|
|
4008
4007
|
children
|
|
4009
|
-
}: ModalCalloutsProps): react_jsx_runtime0.JSX.Element;
|
|
4008
|
+
}: ModalCalloutsProps): _$react_jsx_runtime0.JSX.Element;
|
|
4010
4009
|
displayName: string;
|
|
4011
4010
|
};
|
|
4012
4011
|
type ModalCalloutProps = {
|
|
@@ -4022,7 +4021,7 @@ declare const ModalCallout: {
|
|
|
4022
4021
|
title,
|
|
4023
4022
|
image,
|
|
4024
4023
|
children
|
|
4025
|
-
}: ModalCalloutProps): react_jsx_runtime0.JSX.Element;
|
|
4024
|
+
}: ModalCalloutProps): _$react_jsx_runtime0.JSX.Element;
|
|
4026
4025
|
displayName: string;
|
|
4027
4026
|
};
|
|
4028
4027
|
//#endregion
|
|
@@ -4201,7 +4200,7 @@ type RadioProps = Omit<ComponentPropsWithoutRef<'input'>, 'hideLabel' | 'label'
|
|
|
4201
4200
|
*/
|
|
4202
4201
|
hideLabel?: boolean;
|
|
4203
4202
|
};
|
|
4204
|
-
declare const Radio: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "onChange" | "size" | "value" | "hideLabel"> & {
|
|
4203
|
+
declare const Radio: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "onChange" | "size" | "value" | "hideLabel"> & {
|
|
4205
4204
|
/**
|
|
4206
4205
|
* Indicates the state of the radio
|
|
4207
4206
|
*/
|
|
@@ -4251,7 +4250,7 @@ declare const Radio: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTM
|
|
|
4251
4250
|
* Whether to visually hide the label (it will still be available to screen readers)
|
|
4252
4251
|
*/
|
|
4253
4252
|
hideLabel?: boolean;
|
|
4254
|
-
} & react.RefAttributes<HTMLInputElement>>;
|
|
4253
|
+
} & _$react.RefAttributes<HTMLInputElement>>;
|
|
4255
4254
|
//#endregion
|
|
4256
4255
|
//#region src/components/RadioCard/RadioCardDefaultLayout.d.ts
|
|
4257
4256
|
type RadioCardDefaultLayoutProps = {
|
|
@@ -4323,7 +4322,7 @@ type RadioCardWithDefaultLayout = BaseRadioCardProps & RadioCardDefaultLayoutPro
|
|
|
4323
4322
|
children?: never;
|
|
4324
4323
|
};
|
|
4325
4324
|
type RadioCardProps = RadioCardWithChildren | RadioCardWithDefaultLayout;
|
|
4326
|
-
declare const RadioCard: react.ForwardRefExoticComponent<RadioCardProps & react.RefAttributes<HTMLInputElement>>;
|
|
4325
|
+
declare const RadioCard: _$react.ForwardRefExoticComponent<RadioCardProps & _$react.RefAttributes<HTMLInputElement>>;
|
|
4327
4326
|
//#endregion
|
|
4328
4327
|
//#region src/components/RadioCard/RadioCardImage.d.ts
|
|
4329
4328
|
type RadioCardImageProps = Omit<ComponentPropsWithoutRef<'input'>, 'onChange'> & {
|
|
@@ -4368,7 +4367,7 @@ type RadioCardImageProps = Omit<ComponentPropsWithoutRef<'input'>, 'onChange'> &
|
|
|
4368
4367
|
*/
|
|
4369
4368
|
padding?: Spacings;
|
|
4370
4369
|
};
|
|
4371
|
-
declare const RadioCardImage: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "onChange"> & {
|
|
4370
|
+
declare const RadioCardImage: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "onChange"> & {
|
|
4372
4371
|
/**
|
|
4373
4372
|
* Indicates the state of the radio
|
|
4374
4373
|
*/
|
|
@@ -4409,7 +4408,7 @@ declare const RadioCardImage: react.ForwardRefExoticComponent<Omit<Omit<react.De
|
|
|
4409
4408
|
* The padding of the card
|
|
4410
4409
|
*/
|
|
4411
4410
|
padding?: Spacings;
|
|
4412
|
-
} & react.RefAttributes<HTMLInputElement>>;
|
|
4411
|
+
} & _$react.RefAttributes<HTMLInputElement>>;
|
|
4413
4412
|
//#endregion
|
|
4414
4413
|
//#region src/components/ScreenReaderOnly/ScreenReaderOnly.d.ts
|
|
4415
4414
|
type ScreenReaderOnlyProps = ComponentPropsWithoutRef<'div'> & {
|
|
@@ -4436,7 +4435,7 @@ declare const ScreenReaderOnly: {
|
|
|
4436
4435
|
children,
|
|
4437
4436
|
focusable,
|
|
4438
4437
|
...props
|
|
4439
|
-
}: ScreenReaderOnlyProps): react_jsx_runtime0.JSX.Element;
|
|
4438
|
+
}: ScreenReaderOnlyProps): _$react_jsx_runtime0.JSX.Element;
|
|
4440
4439
|
displayName: string;
|
|
4441
4440
|
};
|
|
4442
4441
|
//#endregion
|
|
@@ -4453,14 +4452,14 @@ type ScrollAreaProps = HTMLAttributes<HTMLDivElement> & {
|
|
|
4453
4452
|
* ScrollArea is a simple scrollable container with shadow effects to indicate
|
|
4454
4453
|
* scrollability.
|
|
4455
4454
|
*/
|
|
4456
|
-
declare const ScrollArea: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
|
|
4455
|
+
declare const ScrollArea: _$react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
|
|
4457
4456
|
/**
|
|
4458
4457
|
* When true, disables scrolling. Useful to temporarily prevent scrolling,
|
|
4459
4458
|
* like when drag-and-dropping an item from inside to outside of the scroll
|
|
4460
4459
|
* area.
|
|
4461
4460
|
*/
|
|
4462
4461
|
locked?: boolean;
|
|
4463
|
-
} & react.RefAttributes<HTMLDivElement>>;
|
|
4462
|
+
} & _$react.RefAttributes<HTMLDivElement>>;
|
|
4464
4463
|
//#endregion
|
|
4465
4464
|
//#region src/components/SegmentedControl/SegmentedControl.d.ts
|
|
4466
4465
|
type SegmentedControlProps = Omit<ToggleGroupSingleProps, 'type'> & {
|
|
@@ -4536,7 +4535,7 @@ type NoIcon$1 = {
|
|
|
4536
4535
|
'aria-label'?: never;
|
|
4537
4536
|
};
|
|
4538
4537
|
type SegmentedControlItemProps = BaseProps$1 & (IconWithAriaLabel$1 | IconWithLabel$1 | NoIcon$1);
|
|
4539
|
-
declare const SegmentedControlItem: react.ForwardRefExoticComponent<SegmentedControlItemProps & react.RefAttributes<HTMLButtonElement>>;
|
|
4538
|
+
declare const SegmentedControlItem: _$react.ForwardRefExoticComponent<SegmentedControlItemProps & _$react.RefAttributes<HTMLButtonElement>>;
|
|
4540
4539
|
//#endregion
|
|
4541
4540
|
//#region src/components/Select/Select.d.ts
|
|
4542
4541
|
type SelectProps = {
|
|
@@ -4591,7 +4590,7 @@ type SelectProps = {
|
|
|
4591
4590
|
/**
|
|
4592
4591
|
* Display a list of options and choose one of them. Replacement for the native Select HTML element.
|
|
4593
4592
|
*/
|
|
4594
|
-
declare const Select: react.ForwardRefExoticComponent<SelectProps & react.RefAttributes<HTMLButtonElement>>;
|
|
4593
|
+
declare const Select: _$react.ForwardRefExoticComponent<SelectProps & _$react.RefAttributes<HTMLButtonElement>>;
|
|
4595
4594
|
//#endregion
|
|
4596
4595
|
//#region src/components/Select/SelectOption.d.ts
|
|
4597
4596
|
type SelectOptionProps = {
|
|
@@ -4624,7 +4623,7 @@ type SelectOptionProps = {
|
|
|
4624
4623
|
*/
|
|
4625
4624
|
checkmarkVerticalAlign?: 'center' | 'top';
|
|
4626
4625
|
};
|
|
4627
|
-
declare const SelectOption: react.ForwardRefExoticComponent<SelectOptionProps & react.RefAttributes<HTMLDivElement>>;
|
|
4626
|
+
declare const SelectOption: _$react.ForwardRefExoticComponent<SelectOptionProps & _$react.RefAttributes<HTMLDivElement>>;
|
|
4628
4627
|
//#endregion
|
|
4629
4628
|
//#region src/components/Select/SelectOptionGroup.d.ts
|
|
4630
4629
|
type SelectOptionGroupProps = {
|
|
@@ -4635,7 +4634,7 @@ declare const SelectOptionGroup: ({
|
|
|
4635
4634
|
children,
|
|
4636
4635
|
label,
|
|
4637
4636
|
...props
|
|
4638
|
-
}: SelectOptionGroupProps) => react_jsx_runtime0.JSX.Element;
|
|
4637
|
+
}: SelectOptionGroupProps) => _$react_jsx_runtime0.JSX.Element;
|
|
4639
4638
|
//#endregion
|
|
4640
4639
|
//#region src/components/Slider/Slider.d.ts
|
|
4641
4640
|
type SliderProps = Omit<ComponentPropsWithoutRef<'div'>, 'onChange'> & {
|
|
@@ -4800,7 +4799,7 @@ type StackProps = {
|
|
|
4800
4799
|
* Used to layout its children in a vertical or horizontal stack. The gap between each item in the stack can be customized.
|
|
4801
4800
|
* This allows for layouting children in a consistent way without needing to manually add margins or padding.
|
|
4802
4801
|
*/
|
|
4803
|
-
declare const Stack: (<C extends ElementType = "div">(props: PolymorphicComponentProps<C, StackProps>) => react.ReactElement | null) & UnknownRecord;
|
|
4802
|
+
declare const Stack: (<C extends ElementType = "div">(props: PolymorphicComponentProps<C, StackProps>) => _$react.ReactElement | null) & UnknownRecord;
|
|
4804
4803
|
//#endregion
|
|
4805
4804
|
//#region src/components/Switch/Switch.d.ts
|
|
4806
4805
|
type SwitchSizeType = 'lg' | 'md' | 'sm';
|
|
@@ -4854,7 +4853,7 @@ type SwitchProps = Omit<ComponentPropsWithoutRef<'input'>, 'hideLabel' | 'label'
|
|
|
4854
4853
|
*/
|
|
4855
4854
|
hideLabel?: boolean;
|
|
4856
4855
|
};
|
|
4857
|
-
declare const Switch: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "size" | "hideLabel"> & {
|
|
4856
|
+
declare const Switch: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "size" | "hideLabel"> & {
|
|
4858
4857
|
/**
|
|
4859
4858
|
* The alignment of the switch relative to the label
|
|
4860
4859
|
*/
|
|
@@ -4903,7 +4902,7 @@ declare const Switch: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHT
|
|
|
4903
4902
|
* Whether to visually hide the label (it will still be available to screen readers)
|
|
4904
4903
|
*/
|
|
4905
4904
|
hideLabel?: boolean;
|
|
4906
|
-
} & react.RefAttributes<HTMLInputElement>>;
|
|
4905
|
+
} & _$react.RefAttributes<HTMLInputElement>>;
|
|
4907
4906
|
//#endregion
|
|
4908
4907
|
//#region src/components/Table/TableBody.d.ts
|
|
4909
4908
|
type TableBodyProps = HTMLAttributes<HTMLTableSectionElement> & {
|
|
@@ -5052,7 +5051,7 @@ type NoIcon = {
|
|
|
5052
5051
|
'aria-label'?: never;
|
|
5053
5052
|
};
|
|
5054
5053
|
type TabsTriggerProps$1 = BaseProps & (IconWithAriaLabel | IconWithLabel | NoIcon);
|
|
5055
|
-
declare const TabsTrigger: react.ForwardRefExoticComponent<TabsTriggerProps$1 & react.RefAttributes<HTMLButtonElement>>;
|
|
5054
|
+
declare const TabsTrigger: _$react.ForwardRefExoticComponent<TabsTriggerProps$1 & _$react.RefAttributes<HTMLButtonElement>>;
|
|
5056
5055
|
//#endregion
|
|
5057
5056
|
//#region src/components/Tag/Tag.d.ts
|
|
5058
5057
|
type TagProps = ComponentPropsWithoutRef<'div'> & {
|
|
@@ -5084,7 +5083,7 @@ type TagProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
5084
5083
|
/**
|
|
5085
5084
|
* A `Tag` is an optionally linked label, with an optional action button, to categorize content.
|
|
5086
5085
|
*/
|
|
5087
|
-
declare const Tag: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
5086
|
+
declare const Tag: _$react.ForwardRefExoticComponent<Omit<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
5088
5087
|
/**
|
|
5089
5088
|
* Sets the [color scheme](../?path=/docs/docs-color-schemes--docs)
|
|
5090
5089
|
*/
|
|
@@ -5109,7 +5108,7 @@ declare const Tag: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<
|
|
|
5109
5108
|
* Accessible label for the `x` button (ie. "Remove tag")
|
|
5110
5109
|
*/
|
|
5111
5110
|
onClickRemoveLabel?: string | undefined;
|
|
5112
|
-
} & react.RefAttributes<HTMLDivElement>>;
|
|
5111
|
+
} & _$react.RefAttributes<HTMLDivElement>>;
|
|
5113
5112
|
//#endregion
|
|
5114
5113
|
//#region src/components/Thumbnail/ThumbnailBadge.d.ts
|
|
5115
5114
|
type ThumbnailBadgeProps = {
|
|
@@ -5133,22 +5132,22 @@ declare const ThumbnailBadge: {
|
|
|
5133
5132
|
//#endregion
|
|
5134
5133
|
//#region src/private/helpers/getBackgroundGradient/getBackgroundGradient.d.ts
|
|
5135
5134
|
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>;
|
|
5135
|
+
defaultDarkOne: _$styled_components0.RuleSet<object>;
|
|
5136
|
+
defaultDarkTwo: _$styled_components0.RuleSet<object>;
|
|
5137
|
+
defaultLightOne: _$styled_components0.RuleSet<object>;
|
|
5138
|
+
defaultLightTwo: _$styled_components0.RuleSet<object>;
|
|
5139
|
+
defaultMidOne: _$styled_components0.RuleSet<object>;
|
|
5140
|
+
defaultMidTwo: _$styled_components0.RuleSet<object>;
|
|
5141
|
+
green: _$styled_components0.RuleSet<object>;
|
|
5142
|
+
greenWithPop: _$styled_components0.RuleSet<object>;
|
|
5143
|
+
pink: _$styled_components0.RuleSet<object>;
|
|
5144
|
+
pinkWithPop: _$styled_components0.RuleSet<object>;
|
|
5145
|
+
playfulGradientOne: _$styled_components0.RuleSet<object>;
|
|
5146
|
+
playfulGradientTwo: _$styled_components0.RuleSet<object>;
|
|
5147
|
+
purple: _$styled_components0.RuleSet<object>;
|
|
5148
|
+
purpleWithPop: _$styled_components0.RuleSet<object>;
|
|
5149
|
+
yellow: _$styled_components0.RuleSet<object>;
|
|
5150
|
+
yellowWithPop: _$styled_components0.RuleSet<object>;
|
|
5152
5151
|
};
|
|
5153
5152
|
type GradientNameType = keyof typeof gradients;
|
|
5154
5153
|
//#endregion
|
|
@@ -5205,7 +5204,7 @@ type ThumbnailProps = Omit<ComponentPropsWithoutRef<'div'>, 'children'> & {
|
|
|
5205
5204
|
/**
|
|
5206
5205
|
* A `Thumbnail` is a small, reduced-size version of an image or video used as a preview or representative image.
|
|
5207
5206
|
*/
|
|
5208
|
-
declare const Thumbnail: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, "children"> & {
|
|
5207
|
+
declare const Thumbnail: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, "children"> & {
|
|
5209
5208
|
/**
|
|
5210
5209
|
* The desired display of the thumbnail, either wide or square
|
|
5211
5210
|
*/
|
|
@@ -5241,7 +5240,7 @@ declare const Thumbnail: react.ForwardRefExoticComponent<Omit<Omit<react.Detaile
|
|
|
5241
5240
|
* 'wide' maps to 16:9 ratio, 'square' maps to 1:1 ratio.
|
|
5242
5241
|
*/
|
|
5243
5242
|
aspectRatio?: AspectRatioType;
|
|
5244
|
-
} & react.RefAttributes<HTMLDivElement>>;
|
|
5243
|
+
} & _$react.RefAttributes<HTMLDivElement>>;
|
|
5245
5244
|
//#endregion
|
|
5246
5245
|
//#region src/components/ThumbnailCollage/ThumbnailCollage.d.ts
|
|
5247
5246
|
type ThumbnailCollageProps = {
|
|
@@ -5369,7 +5368,7 @@ declare const WistiaLogo: {
|
|
|
5369
5368
|
title,
|
|
5370
5369
|
variant,
|
|
5371
5370
|
...props
|
|
5372
|
-
}: WistiaLogoProps): react_jsx_runtime0.JSX.Element;
|
|
5371
|
+
}: WistiaLogoProps): _$react_jsx_runtime0.JSX.Element;
|
|
5373
5372
|
displayName: string;
|
|
5374
5373
|
};
|
|
5375
5374
|
declare namespace index_d_exports {
|