@wistia/ui 0.22.2 → 0.22.3-beta.ebfc4cbf.0fa2a8c
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 +396 -396
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +43 -41
- 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<
|
|
453
|
+
declare const Button: _$react.ForwardRefExoticComponent<(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"> | Omit<ButtonAsButtonProps, "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
|
|
@@ -615,7 +615,7 @@ declare const ActionButton: react.ForwardRefExoticComponent<(Omit<{
|
|
|
615
615
|
* Changes the secondary icon for different use cases
|
|
616
616
|
*/
|
|
617
617
|
variant?: "default" | "gated" | "menu-down" | "menu-up";
|
|
618
|
-
} & Omit<ButtonAsButtonProps, "
|
|
618
|
+
} & Omit<ButtonAsButtonProps, "leftIcon" | "isLoading" | "fullWidth" | "unstyled" | "rightIcon" | "size" | "variant">, "ref"> | Omit<{
|
|
619
619
|
/**
|
|
620
620
|
* @override
|
|
621
621
|
* 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, "
|
|
647
|
+
} & Omit<ButtonAsLinkProps, "leftIcon" | "isLoading" | "fullWidth" | "unstyled" | "rightIcon" | "size" | "variant">, "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 & {
|
|
@@ -1814,9 +1814,9 @@ type ColorPickerTriggerProps = PropsWithChildren;
|
|
|
1814
1814
|
* it renders a swatch and hex label for the current color; pass custom children
|
|
1815
1815
|
* to replace that content.
|
|
1816
1816
|
*/
|
|
1817
|
-
declare const ColorPickerTrigger: react.ForwardRefExoticComponent<{
|
|
1818
|
-
children?: react.ReactNode | undefined;
|
|
1819
|
-
} & react.RefAttributes<HTMLButtonElement>>;
|
|
1817
|
+
declare const ColorPickerTrigger: _$react.ForwardRefExoticComponent<{
|
|
1818
|
+
children?: _$react.ReactNode | undefined;
|
|
1819
|
+
} & _$react.RefAttributes<HTMLButtonElement>>;
|
|
1820
1820
|
//#endregion
|
|
1821
1821
|
//#region src/components/ColorPicker/ContrastControls.d.ts
|
|
1822
1822
|
type ContrastControlsProps = object;
|
|
@@ -1971,7 +1971,7 @@ declare const Combobox: ({
|
|
|
1971
1971
|
children,
|
|
1972
1972
|
flipPopover,
|
|
1973
1973
|
fullWidth
|
|
1974
|
-
}: ComboboxProps) => react_jsx_runtime0.JSX.Element;
|
|
1974
|
+
}: ComboboxProps) => _$react_jsx_runtime0.JSX.Element;
|
|
1975
1975
|
//#endregion
|
|
1976
1976
|
//#region src/components/Combobox/ComboboxOption.d.ts
|
|
1977
1977
|
type ComboboxOptionProps = {
|
|
@@ -1981,7 +1981,7 @@ type ComboboxOptionProps = {
|
|
|
1981
1981
|
declare const ComboboxOption: ({
|
|
1982
1982
|
value,
|
|
1983
1983
|
children
|
|
1984
|
-
}: ComboboxOptionProps) => react_jsx_runtime0.JSX.Element;
|
|
1984
|
+
}: ComboboxOptionProps) => _$react_jsx_runtime0.JSX.Element;
|
|
1985
1985
|
//#endregion
|
|
1986
1986
|
//#region src/components/ContextMenu/ContextMenu.d.ts
|
|
1987
1987
|
type ContextMenuProps = {
|
|
@@ -2016,7 +2016,7 @@ declare const ContextMenu: ({
|
|
|
2016
2016
|
side,
|
|
2017
2017
|
onRequestClose,
|
|
2018
2018
|
compact
|
|
2019
|
-
}: ContextMenuProps) => react_jsx_runtime0.JSX.Element | null;
|
|
2019
|
+
}: ContextMenuProps) => _$react_jsx_runtime0.JSX.Element | null;
|
|
2020
2020
|
//#endregion
|
|
2021
2021
|
//#region src/components/CustomizableThemeWrapper/CustomizableThemeWrapper.d.ts
|
|
2022
2022
|
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 +2073,7 @@ type DataCardProps = ComponentPropsWithoutRef<'div'> & Partial<Pick<ButtonAsLink
|
|
|
2073
2073
|
subtitle?: ReactNode;
|
|
2074
2074
|
};
|
|
2075
2075
|
declare const DataCard: {
|
|
2076
|
-
(props: DataCardProps): react_jsx_runtime0.JSX.Element;
|
|
2076
|
+
(props: DataCardProps): _$react_jsx_runtime0.JSX.Element;
|
|
2077
2077
|
displayName: string;
|
|
2078
2078
|
};
|
|
2079
2079
|
//#endregion
|
|
@@ -2135,7 +2135,7 @@ declare const DataCardTrend: ({
|
|
|
2135
2135
|
//#region src/components/DataCards/DataCardHoverArrow.d.ts
|
|
2136
2136
|
type DataCardHoverArrowProps = object;
|
|
2137
2137
|
declare const DataCardHoverArrow: {
|
|
2138
|
-
(props: DataCardHoverArrowProps): react_jsx_runtime0.JSX.Element;
|
|
2138
|
+
(props: DataCardHoverArrowProps): _$react_jsx_runtime0.JSX.Element;
|
|
2139
2139
|
displayName: string;
|
|
2140
2140
|
};
|
|
2141
2141
|
//#endregion
|
|
@@ -2192,18 +2192,18 @@ declare const DataListItem: {
|
|
|
2192
2192
|
//#region src/components/Text/Text.d.ts
|
|
2193
2193
|
type AlignmentTypes$1 = 'center' | 'justify' | 'left' | 'right';
|
|
2194
2194
|
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>;
|
|
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>;
|
|
2207
2207
|
};
|
|
2208
2208
|
type TextProps = ComponentPropsWithoutRef<'div'> & {
|
|
2209
2209
|
/**
|
|
@@ -2260,7 +2260,7 @@ type TextProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
2260
2260
|
/**
|
|
2261
2261
|
* Used for rending paragraphs and inline text.
|
|
2262
2262
|
*/
|
|
2263
|
-
declare const Text: (<C extends ElementType = "p">(props: PolymorphicComponentProps<C, TextProps>) => react.ReactElement | null) & UnknownRecord;
|
|
2263
|
+
declare const Text: (<C extends ElementType = "p">(props: PolymorphicComponentProps<C, TextProps>) => _$react.ReactElement | null) & UnknownRecord;
|
|
2264
2264
|
//#endregion
|
|
2265
2265
|
//#region src/components/DataList/DataListItemLabel.d.ts
|
|
2266
2266
|
type DataListItemLabelProps = TextProps;
|
|
@@ -2308,13 +2308,13 @@ declare const Divider: {
|
|
|
2308
2308
|
//#region src/components/Heading/Heading.d.ts
|
|
2309
2309
|
type AlignmentTypes = 'center' | 'justify' | 'left' | 'right';
|
|
2310
2310
|
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>;
|
|
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>;
|
|
2318
2318
|
};
|
|
2319
2319
|
declare const DEFAULT_ELEMENT = "h1";
|
|
2320
2320
|
type HeadingProps = ComponentPropsWithoutRef<typeof DEFAULT_ELEMENT> & {
|
|
@@ -2369,7 +2369,7 @@ type HeadingProps = ComponentPropsWithoutRef<typeof DEFAULT_ELEMENT> & {
|
|
|
2369
2369
|
/**
|
|
2370
2370
|
* Displaying heading text, both visually and semantically
|
|
2371
2371
|
*/
|
|
2372
|
-
declare const Heading: (<C extends ElementType = "h1">(props: PolymorphicComponentProps<C, HeadingProps>) => react.ReactElement | null) & UnknownRecord;
|
|
2372
|
+
declare const Heading: (<C extends ElementType = "h1">(props: PolymorphicComponentProps<C, HeadingProps>) => _$react.ReactElement | null) & UnknownRecord;
|
|
2373
2373
|
//#endregion
|
|
2374
2374
|
//#region src/components/EditableHeading/EditableHeading.d.ts
|
|
2375
2375
|
type EditableHeadingProps = {
|
|
@@ -2430,25 +2430,25 @@ declare const EditableHeading: ({
|
|
|
2430
2430
|
//#endregion
|
|
2431
2431
|
//#region src/private/helpers/getTypographicStyles/getTypographicStyles.d.ts
|
|
2432
2432
|
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>;
|
|
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>;
|
|
2452
2452
|
};
|
|
2453
2453
|
type TypographicVariant = keyof typeof typographicVariantStyleMap;
|
|
2454
2454
|
//#endregion
|
|
@@ -2541,7 +2541,7 @@ type EditableTextContextValues = {
|
|
|
2541
2541
|
maxLines: number | undefined;
|
|
2542
2542
|
finalFocusEl: (() => HTMLElement | null) | undefined;
|
|
2543
2543
|
};
|
|
2544
|
-
declare const EditableTextContext: react.Context<EditableTextContextValues | null>;
|
|
2544
|
+
declare const EditableTextContext: _$react.Context<EditableTextContextValues | null>;
|
|
2545
2545
|
declare const EditableTextRoot: ({
|
|
2546
2546
|
children,
|
|
2547
2547
|
defaultValue,
|
|
@@ -2588,7 +2588,7 @@ type EditableTextDisplayProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
2588
2588
|
asTrigger?: boolean;
|
|
2589
2589
|
renderAs?: ElementType;
|
|
2590
2590
|
};
|
|
2591
|
-
declare const EditableTextDisplay: (<C extends ElementType = "h1">(props: PolymorphicComponentProps<C, EditableTextDisplayProps>) => react.ReactElement | null) & UnknownRecord;
|
|
2591
|
+
declare const EditableTextDisplay: (<C extends ElementType = "h1">(props: PolymorphicComponentProps<C, EditableTextDisplayProps>) => _$react.ReactElement | null) & UnknownRecord;
|
|
2592
2592
|
//#endregion
|
|
2593
2593
|
//#region src/components/Label/Label.d.ts
|
|
2594
2594
|
type LabelProps = ComponentPropsWithoutRef<'label'> & {
|
|
@@ -2633,7 +2633,7 @@ declare const Label: {
|
|
|
2633
2633
|
type EditableTextLabelProps = Omit<LabelProps, 'disabled' | 'htmlFor' | 'required'>;
|
|
2634
2634
|
declare const EditableTextLabel: ({
|
|
2635
2635
|
...props
|
|
2636
|
-
}: EditableTextLabelProps) => react_jsx_runtime0.JSX.Element;
|
|
2636
|
+
}: EditableTextLabelProps) => _$react_jsx_runtime0.JSX.Element;
|
|
2637
2637
|
//#endregion
|
|
2638
2638
|
//#region src/components/EditableText/EditableTextSubmitButton.d.ts
|
|
2639
2639
|
type EditableTextSubmitButtonProps = {
|
|
@@ -2709,7 +2709,7 @@ type InputProps = Omit<InputHTMLAttributes<HTMLInputElement | HTMLTextAreaElemen
|
|
|
2709
2709
|
/**
|
|
2710
2710
|
* Capture user input with a text field. Should be used within a [Form]() and [FormField]().
|
|
2711
2711
|
*/
|
|
2712
|
-
declare const Input: react.ForwardRefExoticComponent<Omit<InputHTMLAttributes<HTMLInputElement | HTMLTextAreaElement>, "type"> & {
|
|
2712
|
+
declare const Input: _$react.ForwardRefExoticComponent<Omit<InputHTMLAttributes<HTMLInputElement | HTMLTextAreaElement>, "type"> & {
|
|
2713
2713
|
/**
|
|
2714
2714
|
* When enabled, focusing the input will select the entire text within
|
|
2715
2715
|
*/
|
|
@@ -2747,7 +2747,7 @@ declare const Input: react.ForwardRefExoticComponent<Omit<InputHTMLAttributes<HT
|
|
|
2747
2747
|
* The type of the input
|
|
2748
2748
|
*/
|
|
2749
2749
|
type?: "email" | "multiline" | "number" | "password" | "phone" | "search" | "text" | "url";
|
|
2750
|
-
} & react.RefAttributes<HTMLInputElement | HTMLTextAreaElement>>;
|
|
2750
|
+
} & _$react.RefAttributes<HTMLInputElement | HTMLTextAreaElement>>;
|
|
2751
2751
|
//#endregion
|
|
2752
2752
|
//#region src/components/EditableText/EditableTextInput.d.ts
|
|
2753
2753
|
type EditableTextInputProps = Pick<InputProps, 'autoSelect'>;
|
|
@@ -2856,7 +2856,7 @@ declare const FeatureCardImage: ({
|
|
|
2856
2856
|
alt,
|
|
2857
2857
|
src,
|
|
2858
2858
|
...props
|
|
2859
|
-
}: FeatureCardImageProps) => react_jsx_runtime0.JSX.Element;
|
|
2859
|
+
}: FeatureCardImageProps) => _$react_jsx_runtime0.JSX.Element;
|
|
2860
2860
|
//#endregion
|
|
2861
2861
|
//#region src/components/Form/useFormState.d.ts
|
|
2862
2862
|
type ActionCallback<T> = (data: T, nextData: T) => Promise<T> | T;
|
|
@@ -2883,7 +2883,7 @@ type FormWithLabelProps = {
|
|
|
2883
2883
|
'aria-label': string;
|
|
2884
2884
|
'aria-labelledby'?: never;
|
|
2885
2885
|
};
|
|
2886
|
-
type FormErrors<T> = Partial<{ [
|
|
2886
|
+
type FormErrors<T> = Partial<{ [Key in keyof T]: string[] | string }>;
|
|
2887
2887
|
type FormProps<T> = Omit<ComponentPropsWithoutRef<'form'>, 'action' | 'aria-label' | 'aria-labelledby' | 'children'> & {
|
|
2888
2888
|
/**
|
|
2889
2889
|
* The action to be performed when the form is submitted. It can be asynchronous.
|
|
@@ -2929,7 +2929,7 @@ type FormErrorSummaryProps = {
|
|
|
2929
2929
|
};
|
|
2930
2930
|
declare const FormErrorSummary: ({
|
|
2931
2931
|
description
|
|
2932
|
-
}: FormErrorSummaryProps) => react_jsx_runtime0.JSX.Element | null;
|
|
2932
|
+
}: FormErrorSummaryProps) => _$react_jsx_runtime0.JSX.Element | null;
|
|
2933
2933
|
//#endregion
|
|
2934
2934
|
//#region src/components/Form/validateWithYup.d.ts
|
|
2935
2935
|
declare const validateWithYup: <T>(schema: Schema<T>) => (data: object) => {};
|
|
@@ -3087,7 +3087,7 @@ type GridProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
3087
3087
|
expandItems?: boolean;
|
|
3088
3088
|
renderAs?: ElementType;
|
|
3089
3089
|
};
|
|
3090
|
-
declare const Grid: (<C extends ElementType = "div">(props: PolymorphicComponentProps<C, GridProps>) => react.ReactElement | null) & UnknownRecord;
|
|
3090
|
+
declare const Grid: (<C extends ElementType = "div">(props: PolymorphicComponentProps<C, GridProps>) => _$react.ReactElement | null) & UnknownRecord;
|
|
3091
3091
|
//#endregion
|
|
3092
3092
|
//#region src/components/PreviewCard/PreviewCard.d.ts
|
|
3093
3093
|
type ContentProps$1 = Omit<HoverCardContentProps, 'alignOffset' | 'arrowPadding' | 'asChild' | 'collisionPadding' | 'hideWhenDetached' | 'sideOffset'>;
|
|
@@ -3167,7 +3167,7 @@ type IconButtonProps = {
|
|
|
3167
3167
|
* IconButton behaves like a [Button](?path=/docs/components-button--docs),
|
|
3168
3168
|
* but only accepts an [Icon](?path=/docs/components-icon--docs) as a child.
|
|
3169
3169
|
*/
|
|
3170
|
-
declare const IconButton: react.ForwardRefExoticComponent<(Omit<{
|
|
3170
|
+
declare const IconButton: _$react.ForwardRefExoticComponent<(Omit<{
|
|
3171
3171
|
/**
|
|
3172
3172
|
* Accessible text for screen readers.
|
|
3173
3173
|
*/
|
|
@@ -3176,7 +3176,7 @@ declare const IconButton: react.ForwardRefExoticComponent<(Omit<{
|
|
|
3176
3176
|
* The [Icon](?path=/docs/components-icon--docs) component to use, e.g. `<Icon type="favorite" />`
|
|
3177
3177
|
*/
|
|
3178
3178
|
children: JSX.Element;
|
|
3179
|
-
} & Omit<ButtonAsButtonProps, "
|
|
3179
|
+
} & Omit<ButtonAsButtonProps, "leftIcon" | "fullWidth" | "rightIcon">, "ref"> | Omit<{
|
|
3180
3180
|
/**
|
|
3181
3181
|
* Accessible text for screen readers.
|
|
3182
3182
|
*/
|
|
@@ -3185,7 +3185,7 @@ declare const IconButton: react.ForwardRefExoticComponent<(Omit<{
|
|
|
3185
3185
|
* The [Icon](?path=/docs/components-icon--docs) component to use, e.g. `<Icon type="favorite" />`
|
|
3186
3186
|
*/
|
|
3187
3187
|
children: JSX.Element;
|
|
3188
|
-
} & Omit<ButtonAsLinkProps, "
|
|
3188
|
+
} & Omit<ButtonAsLinkProps, "leftIcon" | "fullWidth" | "rightIcon">, "ref">) & _$react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
3189
3189
|
//#endregion
|
|
3190
3190
|
//#region src/components/Image/Image.d.ts
|
|
3191
3191
|
type ImageProps = ComponentPropsWithoutRef<'img'> & {
|
|
@@ -3265,7 +3265,7 @@ type InputClickToCopyProps = Omit<InputProps, 'autoSelect' | 'disabled' | 'right
|
|
|
3265
3265
|
/**
|
|
3266
3266
|
* Provides a readonly input that copies the text to the clipboard when clicked.
|
|
3267
3267
|
*/
|
|
3268
|
-
declare const InputClickToCopy: react.ForwardRefExoticComponent<Omit<InputProps, "type" | "
|
|
3268
|
+
declare const InputClickToCopy: _$react.ForwardRefExoticComponent<Omit<InputProps, "type" | "disabled" | "rightIcon" | "value" | "autoSelect"> & {
|
|
3269
3269
|
/**
|
|
3270
3270
|
* When disabled, the copy action will not be triggered
|
|
3271
3271
|
*/
|
|
@@ -3278,7 +3278,7 @@ declare const InputClickToCopy: react.ForwardRefExoticComponent<Omit<InputProps,
|
|
|
3278
3278
|
* the value of what is copied
|
|
3279
3279
|
*/
|
|
3280
3280
|
value: string;
|
|
3281
|
-
} & react.RefAttributes<HTMLInputElement>>;
|
|
3281
|
+
} & _$react.RefAttributes<HTMLInputElement>>;
|
|
3282
3282
|
//#endregion
|
|
3283
3283
|
//#region src/components/InputPassword/InputPassword.d.ts
|
|
3284
3284
|
type InputPasswordProps = Omit<InputProps, 'leftIcon' | 'monospace' | 'rightIcon' | 'type'> & {
|
|
@@ -3294,7 +3294,7 @@ type InputPasswordProps = Omit<InputProps, 'leftIcon' | 'monospace' | 'rightIcon
|
|
|
3294
3294
|
/**
|
|
3295
3295
|
* A password input component with a toggle button to show or hide the password text.
|
|
3296
3296
|
*/
|
|
3297
|
-
declare const InputPassword: react.ForwardRefExoticComponent<Omit<InputProps, "type" | "leftIcon" | "rightIcon" | "monospace"> & {
|
|
3297
|
+
declare const InputPassword: _$react.ForwardRefExoticComponent<Omit<InputProps, "type" | "leftIcon" | "rightIcon" | "monospace"> & {
|
|
3298
3298
|
/**
|
|
3299
3299
|
* Set the disabled state of the input
|
|
3300
3300
|
*/
|
|
@@ -3303,7 +3303,7 @@ declare const InputPassword: react.ForwardRefExoticComponent<Omit<InputProps, "t
|
|
|
3303
3303
|
* Callback function that is called when the visibility state changes
|
|
3304
3304
|
*/
|
|
3305
3305
|
onVisibilityToggle?: (isVisible: boolean) => void;
|
|
3306
|
-
} & react.RefAttributes<HTMLInputElement>>;
|
|
3306
|
+
} & _$react.RefAttributes<HTMLInputElement>>;
|
|
3307
3307
|
//#endregion
|
|
3308
3308
|
//#region src/components/KeyboardShortcut/KeyboardKeyTypes.d.ts
|
|
3309
3309
|
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 +3495,7 @@ type MenuProps = MenuControlProps & {
|
|
|
3495
3495
|
/**
|
|
3496
3496
|
* Displays a menu to the users with a set of actions.
|
|
3497
3497
|
*/
|
|
3498
|
-
declare const Menu: react.ForwardRefExoticComponent<MenuProps & react.RefAttributes<HTMLButtonElement>>;
|
|
3498
|
+
declare const Menu: _$react.ForwardRefExoticComponent<MenuProps & _$react.RefAttributes<HTMLButtonElement>>;
|
|
3499
3499
|
//#endregion
|
|
3500
3500
|
//#region src/components/Menu/MenuLabel.d.ts
|
|
3501
3501
|
type MenuLabelProps = {
|
|
@@ -3508,7 +3508,7 @@ declare const MenuLabel: {
|
|
|
3508
3508
|
({
|
|
3509
3509
|
children,
|
|
3510
3510
|
...props
|
|
3511
|
-
}: MenuLabelProps): react_jsx_runtime0.JSX.Element;
|
|
3511
|
+
}: MenuLabelProps): _$react_jsx_runtime0.JSX.Element;
|
|
3512
3512
|
displayName: string;
|
|
3513
3513
|
};
|
|
3514
3514
|
//#endregion
|
|
@@ -3542,7 +3542,7 @@ declare const SubMenu: {
|
|
|
3542
3542
|
children,
|
|
3543
3543
|
onOpenChange,
|
|
3544
3544
|
...props
|
|
3545
|
-
}: SubMenuProps): react_jsx_runtime0.JSX.Element;
|
|
3545
|
+
}: SubMenuProps): _$react_jsx_runtime0.JSX.Element;
|
|
3546
3546
|
displayName: string;
|
|
3547
3547
|
};
|
|
3548
3548
|
//#endregion
|
|
@@ -3600,51 +3600,29 @@ type MenuItemButtonProps = ButtonProps & {
|
|
|
3600
3600
|
};
|
|
3601
3601
|
//#endregion
|
|
3602
3602
|
//#region src/components/Menu/MenuItem.d.ts
|
|
3603
|
-
declare const MenuItem: react.ForwardRefExoticComponent<(Omit<DropdownMenuItemProps & BaseButtonProps & react.ClassAttributes<
|
|
3604
|
-
href?: never;
|
|
3605
|
-
type?: "button" | "reset" | "submit";
|
|
3606
|
-
children: react.ReactNode;
|
|
3607
|
-
} & {
|
|
3608
|
-
appearance?: "dangerous" | "default" | "gated";
|
|
3609
|
-
badge?: react.JSX.Element;
|
|
3610
|
-
children?: react.ReactNode;
|
|
3611
|
-
command?: react.ReactNode;
|
|
3612
|
-
icon?: ButtonProps["leftIcon"];
|
|
3613
|
-
leftIcon?: ButtonProps["leftIcon"];
|
|
3614
|
-
rightIcon?: ButtonProps["rightIcon"];
|
|
3615
|
-
fullWidth?: never;
|
|
3616
|
-
asChild?: never;
|
|
3617
|
-
variant?: never;
|
|
3618
|
-
size?: never;
|
|
3619
|
-
unstyled?: never;
|
|
3620
|
-
} & {
|
|
3621
|
-
/**
|
|
3622
|
-
* Treats the menu item as a link when provided
|
|
3623
|
-
*/
|
|
3624
|
-
href?: MenuItemButtonProps["href"];
|
|
3625
|
-
}, "ref"> | Omit<DropdownMenuItemProps & BaseButtonProps & react.ClassAttributes<HTMLAnchorElement> & react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
3603
|
+
declare const MenuItem: _$react.ForwardRefExoticComponent<(Omit<DropdownMenuItemProps & BaseButtonProps & _$react.ClassAttributes<HTMLAnchorElement> & _$react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
3626
3604
|
beforeAction?: (() => Promise<void>) | (() => void);
|
|
3627
|
-
children: react.ReactNode;
|
|
3605
|
+
children: _$react.ReactNode;
|
|
3628
3606
|
colorScheme?: ColorSchemeTypes;
|
|
3629
3607
|
disabled?: boolean;
|
|
3630
3608
|
inheritColor?: boolean;
|
|
3631
|
-
leftIcon?: react.ReactNode | undefined;
|
|
3632
|
-
rightIcon?: react.ReactNode | undefined;
|
|
3609
|
+
leftIcon?: _$react.ReactNode | undefined;
|
|
3610
|
+
rightIcon?: _$react.ReactNode | undefined;
|
|
3633
3611
|
type?: LinkTypes | undefined;
|
|
3634
3612
|
underline?: "always" | "hover" | "none";
|
|
3635
|
-
} & react.ClassAttributes<HTMLButtonElement> & react.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
3613
|
+
} & _$react.ClassAttributes<HTMLButtonElement> & _$react.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
3636
3614
|
href?: never;
|
|
3637
3615
|
type?: "button" | "reset" | "submit";
|
|
3638
3616
|
} & {
|
|
3639
3617
|
href: string | undefined;
|
|
3640
|
-
children: react.ReactNode;
|
|
3618
|
+
children: _$react.ReactNode;
|
|
3641
3619
|
beforeAction?: (() => Promise<void>) | (() => void);
|
|
3642
3620
|
type?: LinkTypes;
|
|
3643
3621
|
} & {
|
|
3644
3622
|
appearance?: "dangerous" | "default" | "gated";
|
|
3645
|
-
badge?: react.JSX.Element;
|
|
3646
|
-
children?: react.ReactNode;
|
|
3647
|
-
command?: react.ReactNode;
|
|
3623
|
+
badge?: _$react.JSX.Element;
|
|
3624
|
+
children?: _$react.ReactNode;
|
|
3625
|
+
command?: _$react.ReactNode;
|
|
3648
3626
|
icon?: ButtonProps["leftIcon"];
|
|
3649
3627
|
leftIcon?: ButtonProps["leftIcon"];
|
|
3650
3628
|
rightIcon?: ButtonProps["rightIcon"];
|
|
@@ -3658,17 +3636,17 @@ declare const MenuItem: react.ForwardRefExoticComponent<(Omit<DropdownMenuItemPr
|
|
|
3658
3636
|
* Treats the menu item as a link when provided
|
|
3659
3637
|
*/
|
|
3660
3638
|
href?: MenuItemButtonProps["href"];
|
|
3661
|
-
}, "ref"> | Omit<DropdownMenuItemProps & BaseButtonProps & react.ClassAttributes<HTMLAnchorElement> & react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
3639
|
+
}, "ref"> | Omit<DropdownMenuItemProps & BaseButtonProps & _$react.ClassAttributes<HTMLAnchorElement> & _$react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
3662
3640
|
beforeAction?: (() => Promise<void>) | (() => void);
|
|
3663
|
-
children: react.ReactNode;
|
|
3641
|
+
children: _$react.ReactNode;
|
|
3664
3642
|
colorScheme?: ColorSchemeTypes;
|
|
3665
3643
|
disabled?: boolean;
|
|
3666
3644
|
inheritColor?: boolean;
|
|
3667
|
-
leftIcon?: react.ReactNode | undefined;
|
|
3668
|
-
rightIcon?: react.ReactNode | undefined;
|
|
3645
|
+
leftIcon?: _$react.ReactNode | undefined;
|
|
3646
|
+
rightIcon?: _$react.ReactNode | undefined;
|
|
3669
3647
|
type?: LinkTypes | undefined;
|
|
3670
3648
|
underline?: "always" | "hover" | "none";
|
|
3671
|
-
} & Omit<react.AnchorHTMLAttributes<HTMLAnchorElement>, "href"> & {
|
|
3649
|
+
} & Omit<_$react.AnchorHTMLAttributes<HTMLAnchorElement>, "href"> & {
|
|
3672
3650
|
reloadDocument?: boolean;
|
|
3673
3651
|
replace?: boolean;
|
|
3674
3652
|
state?: any;
|
|
@@ -3679,14 +3657,36 @@ declare const MenuItem: react.ForwardRefExoticComponent<(Omit<DropdownMenuItemPr
|
|
|
3679
3657
|
type?: LinkTypes;
|
|
3680
3658
|
} & {
|
|
3681
3659
|
href: string | undefined;
|
|
3682
|
-
children: react.ReactNode;
|
|
3660
|
+
children: _$react.ReactNode;
|
|
3683
3661
|
beforeAction?: (() => Promise<void>) | (() => void);
|
|
3684
3662
|
type?: LinkTypes;
|
|
3685
3663
|
} & {
|
|
3686
3664
|
appearance?: "dangerous" | "default" | "gated";
|
|
3687
|
-
badge?: react.JSX.Element;
|
|
3688
|
-
children?: react.ReactNode;
|
|
3689
|
-
command?: react.ReactNode;
|
|
3665
|
+
badge?: _$react.JSX.Element;
|
|
3666
|
+
children?: _$react.ReactNode;
|
|
3667
|
+
command?: _$react.ReactNode;
|
|
3668
|
+
icon?: ButtonProps["leftIcon"];
|
|
3669
|
+
leftIcon?: ButtonProps["leftIcon"];
|
|
3670
|
+
rightIcon?: ButtonProps["rightIcon"];
|
|
3671
|
+
fullWidth?: never;
|
|
3672
|
+
asChild?: never;
|
|
3673
|
+
variant?: never;
|
|
3674
|
+
size?: never;
|
|
3675
|
+
unstyled?: never;
|
|
3676
|
+
} & {
|
|
3677
|
+
/**
|
|
3678
|
+
* Treats the menu item as a link when provided
|
|
3679
|
+
*/
|
|
3680
|
+
href?: MenuItemButtonProps["href"];
|
|
3681
|
+
}, "ref"> | Omit<DropdownMenuItemProps & BaseButtonProps & _$react.ClassAttributes<HTMLButtonElement> & _$react.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
3682
|
+
href?: never;
|
|
3683
|
+
type?: "button" | "reset" | "submit";
|
|
3684
|
+
children: _$react.ReactNode;
|
|
3685
|
+
} & {
|
|
3686
|
+
appearance?: "dangerous" | "default" | "gated";
|
|
3687
|
+
badge?: _$react.JSX.Element;
|
|
3688
|
+
children?: _$react.ReactNode;
|
|
3689
|
+
command?: _$react.ReactNode;
|
|
3690
3690
|
icon?: ButtonProps["leftIcon"];
|
|
3691
3691
|
leftIcon?: ButtonProps["leftIcon"];
|
|
3692
3692
|
rightIcon?: ButtonProps["rightIcon"];
|
|
@@ -3700,7 +3700,7 @@ declare const MenuItem: react.ForwardRefExoticComponent<(Omit<DropdownMenuItemPr
|
|
|
3700
3700
|
* Treats the menu item as a link when provided
|
|
3701
3701
|
*/
|
|
3702
3702
|
href?: MenuItemButtonProps["href"];
|
|
3703
|
-
}, "ref">) & react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
3703
|
+
}, "ref">) & _$react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
3704
3704
|
//#endregion
|
|
3705
3705
|
//#region src/components/Menu/MenuItemLabel.d.ts
|
|
3706
3706
|
type MenuItemLabelProps = {
|
|
@@ -3711,7 +3711,7 @@ type MenuItemLabelProps = {
|
|
|
3711
3711
|
};
|
|
3712
3712
|
declare const MenuItemLabel: ({
|
|
3713
3713
|
children
|
|
3714
|
-
}: MenuItemLabelProps) => react_jsx_runtime0.JSX.Element;
|
|
3714
|
+
}: MenuItemLabelProps) => _$react_jsx_runtime0.JSX.Element;
|
|
3715
3715
|
//#endregion
|
|
3716
3716
|
//#region src/components/Menu/MenuItemDescription.d.ts
|
|
3717
3717
|
type MenuItemDescriptionProps = {
|
|
@@ -3722,7 +3722,7 @@ type MenuItemDescriptionProps = {
|
|
|
3722
3722
|
};
|
|
3723
3723
|
declare const MenuItemDescription: ({
|
|
3724
3724
|
children
|
|
3725
|
-
}: MenuItemDescriptionProps) => react_jsx_runtime0.JSX.Element;
|
|
3725
|
+
}: MenuItemDescriptionProps) => _$react_jsx_runtime0.JSX.Element;
|
|
3726
3726
|
//#endregion
|
|
3727
3727
|
//#region src/components/Menu/MenuRadioGroup.d.ts
|
|
3728
3728
|
type MenuRadioGroupProps = DropdownMenuRadioGroupProps & {
|
|
@@ -3739,7 +3739,7 @@ declare const MenuRadioGroup: {
|
|
|
3739
3739
|
({
|
|
3740
3740
|
children,
|
|
3741
3741
|
...props
|
|
3742
|
-
}: MenuRadioGroupProps): react_jsx_runtime0.JSX.Element;
|
|
3742
|
+
}: MenuRadioGroupProps): _$react_jsx_runtime0.JSX.Element;
|
|
3743
3743
|
displayName: string;
|
|
3744
3744
|
};
|
|
3745
3745
|
//#endregion
|
|
@@ -3772,7 +3772,7 @@ declare const RadioMenuItem: {
|
|
|
3772
3772
|
value,
|
|
3773
3773
|
indicator,
|
|
3774
3774
|
...props
|
|
3775
|
-
}: RadioMenuItemProps): react_jsx_runtime0.JSX.Element;
|
|
3775
|
+
}: RadioMenuItemProps): _$react_jsx_runtime0.JSX.Element;
|
|
3776
3776
|
displayName: string;
|
|
3777
3777
|
};
|
|
3778
3778
|
//#endregion
|
|
@@ -3806,7 +3806,7 @@ declare const CheckboxMenuItem: {
|
|
|
3806
3806
|
checked,
|
|
3807
3807
|
onCheckedChange,
|
|
3808
3808
|
...props
|
|
3809
|
-
}: CheckboxMenuItemProps): react_jsx_runtime0.JSX.Element;
|
|
3809
|
+
}: CheckboxMenuItemProps): _$react_jsx_runtime0.JSX.Element;
|
|
3810
3810
|
displayName: string;
|
|
3811
3811
|
};
|
|
3812
3812
|
//#endregion
|
|
@@ -3835,10 +3835,10 @@ declare const FilterMenuItem: {
|
|
|
3835
3835
|
checked,
|
|
3836
3836
|
onCheckedChange,
|
|
3837
3837
|
...props
|
|
3838
|
-
}: CheckboxMenuItemProps): react_jsx_runtime0.JSX.Element;
|
|
3838
|
+
}: CheckboxMenuItemProps): _$react_jsx_runtime0.JSX.Element;
|
|
3839
3839
|
displayName: string;
|
|
3840
3840
|
};
|
|
3841
|
-
declare const FilterMenu: react.ForwardRefExoticComponent<FilterMenuProps & react.RefAttributes<HTMLButtonElement>>;
|
|
3841
|
+
declare const FilterMenu: _$react.ForwardRefExoticComponent<FilterMenuProps & _$react.RefAttributes<HTMLButtonElement>>;
|
|
3842
3842
|
//#endregion
|
|
3843
3843
|
//#region src/components/Meter/Meter.d.ts
|
|
3844
3844
|
type MeterSegment = {
|
|
@@ -3951,7 +3951,7 @@ type ModalProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
3951
3951
|
* A Modal is a focused UI element that appears atop the main interface, requiring
|
|
3952
3952
|
* user interaction or dismissal before returning to the underlying content.
|
|
3953
3953
|
*/
|
|
3954
|
-
declare const Modal: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
3954
|
+
declare const Modal: _$react.ForwardRefExoticComponent<Omit<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
3955
3955
|
/**
|
|
3956
3956
|
* The content of the modal.
|
|
3957
3957
|
*/
|
|
@@ -3994,7 +3994,7 @@ declare const Modal: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProp
|
|
|
3994
3994
|
* The width of the modal when space allows. On smaller screens, the modal automatically adjusts to fit the available space.
|
|
3995
3995
|
*/
|
|
3996
3996
|
width?: string;
|
|
3997
|
-
} & react.RefAttributes<HTMLDivElement>>;
|
|
3997
|
+
} & _$react.RefAttributes<HTMLDivElement>>;
|
|
3998
3998
|
//#endregion
|
|
3999
3999
|
//#region src/components/Modal/ModalCallouts.d.ts
|
|
4000
4000
|
type ModalCalloutsProps = {
|
|
@@ -4006,7 +4006,7 @@ type ModalCalloutsProps = {
|
|
|
4006
4006
|
declare const ModalCallouts: {
|
|
4007
4007
|
({
|
|
4008
4008
|
children
|
|
4009
|
-
}: ModalCalloutsProps): react_jsx_runtime0.JSX.Element;
|
|
4009
|
+
}: ModalCalloutsProps): _$react_jsx_runtime0.JSX.Element;
|
|
4010
4010
|
displayName: string;
|
|
4011
4011
|
};
|
|
4012
4012
|
type ModalCalloutProps = {
|
|
@@ -4022,7 +4022,7 @@ declare const ModalCallout: {
|
|
|
4022
4022
|
title,
|
|
4023
4023
|
image,
|
|
4024
4024
|
children
|
|
4025
|
-
}: ModalCalloutProps): react_jsx_runtime0.JSX.Element;
|
|
4025
|
+
}: ModalCalloutProps): _$react_jsx_runtime0.JSX.Element;
|
|
4026
4026
|
displayName: string;
|
|
4027
4027
|
};
|
|
4028
4028
|
//#endregion
|
|
@@ -4201,7 +4201,7 @@ type RadioProps = Omit<ComponentPropsWithoutRef<'input'>, 'hideLabel' | 'label'
|
|
|
4201
4201
|
*/
|
|
4202
4202
|
hideLabel?: boolean;
|
|
4203
4203
|
};
|
|
4204
|
-
declare const Radio: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "onChange" | "size" | "value" | "hideLabel"> & {
|
|
4204
|
+
declare const Radio: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "onChange" | "size" | "value" | "hideLabel"> & {
|
|
4205
4205
|
/**
|
|
4206
4206
|
* Indicates the state of the radio
|
|
4207
4207
|
*/
|
|
@@ -4251,7 +4251,7 @@ declare const Radio: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTM
|
|
|
4251
4251
|
* Whether to visually hide the label (it will still be available to screen readers)
|
|
4252
4252
|
*/
|
|
4253
4253
|
hideLabel?: boolean;
|
|
4254
|
-
} & react.RefAttributes<HTMLInputElement>>;
|
|
4254
|
+
} & _$react.RefAttributes<HTMLInputElement>>;
|
|
4255
4255
|
//#endregion
|
|
4256
4256
|
//#region src/components/RadioCard/RadioCardDefaultLayout.d.ts
|
|
4257
4257
|
type RadioCardDefaultLayoutProps = {
|
|
@@ -4323,7 +4323,7 @@ type RadioCardWithDefaultLayout = BaseRadioCardProps & RadioCardDefaultLayoutPro
|
|
|
4323
4323
|
children?: never;
|
|
4324
4324
|
};
|
|
4325
4325
|
type RadioCardProps = RadioCardWithChildren | RadioCardWithDefaultLayout;
|
|
4326
|
-
declare const RadioCard: react.ForwardRefExoticComponent<RadioCardProps & react.RefAttributes<HTMLInputElement>>;
|
|
4326
|
+
declare const RadioCard: _$react.ForwardRefExoticComponent<RadioCardProps & _$react.RefAttributes<HTMLInputElement>>;
|
|
4327
4327
|
//#endregion
|
|
4328
4328
|
//#region src/components/RadioCard/RadioCardImage.d.ts
|
|
4329
4329
|
type RadioCardImageProps = Omit<ComponentPropsWithoutRef<'input'>, 'onChange'> & {
|
|
@@ -4368,7 +4368,7 @@ type RadioCardImageProps = Omit<ComponentPropsWithoutRef<'input'>, 'onChange'> &
|
|
|
4368
4368
|
*/
|
|
4369
4369
|
padding?: Spacings;
|
|
4370
4370
|
};
|
|
4371
|
-
declare const RadioCardImage: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "onChange"> & {
|
|
4371
|
+
declare const RadioCardImage: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "onChange"> & {
|
|
4372
4372
|
/**
|
|
4373
4373
|
* Indicates the state of the radio
|
|
4374
4374
|
*/
|
|
@@ -4409,7 +4409,7 @@ declare const RadioCardImage: react.ForwardRefExoticComponent<Omit<Omit<react.De
|
|
|
4409
4409
|
* The padding of the card
|
|
4410
4410
|
*/
|
|
4411
4411
|
padding?: Spacings;
|
|
4412
|
-
} & react.RefAttributes<HTMLInputElement>>;
|
|
4412
|
+
} & _$react.RefAttributes<HTMLInputElement>>;
|
|
4413
4413
|
//#endregion
|
|
4414
4414
|
//#region src/components/ScreenReaderOnly/ScreenReaderOnly.d.ts
|
|
4415
4415
|
type ScreenReaderOnlyProps = ComponentPropsWithoutRef<'div'> & {
|
|
@@ -4436,7 +4436,7 @@ declare const ScreenReaderOnly: {
|
|
|
4436
4436
|
children,
|
|
4437
4437
|
focusable,
|
|
4438
4438
|
...props
|
|
4439
|
-
}: ScreenReaderOnlyProps): react_jsx_runtime0.JSX.Element;
|
|
4439
|
+
}: ScreenReaderOnlyProps): _$react_jsx_runtime0.JSX.Element;
|
|
4440
4440
|
displayName: string;
|
|
4441
4441
|
};
|
|
4442
4442
|
//#endregion
|
|
@@ -4453,14 +4453,14 @@ type ScrollAreaProps = HTMLAttributes<HTMLDivElement> & {
|
|
|
4453
4453
|
* ScrollArea is a simple scrollable container with shadow effects to indicate
|
|
4454
4454
|
* scrollability.
|
|
4455
4455
|
*/
|
|
4456
|
-
declare const ScrollArea: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
|
|
4456
|
+
declare const ScrollArea: _$react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
|
|
4457
4457
|
/**
|
|
4458
4458
|
* When true, disables scrolling. Useful to temporarily prevent scrolling,
|
|
4459
4459
|
* like when drag-and-dropping an item from inside to outside of the scroll
|
|
4460
4460
|
* area.
|
|
4461
4461
|
*/
|
|
4462
4462
|
locked?: boolean;
|
|
4463
|
-
} & react.RefAttributes<HTMLDivElement>>;
|
|
4463
|
+
} & _$react.RefAttributes<HTMLDivElement>>;
|
|
4464
4464
|
//#endregion
|
|
4465
4465
|
//#region src/components/SegmentedControl/SegmentedControl.d.ts
|
|
4466
4466
|
type SegmentedControlProps = Omit<ToggleGroupSingleProps, 'type'> & {
|
|
@@ -4536,7 +4536,7 @@ type NoIcon$1 = {
|
|
|
4536
4536
|
'aria-label'?: never;
|
|
4537
4537
|
};
|
|
4538
4538
|
type SegmentedControlItemProps = BaseProps$1 & (IconWithAriaLabel$1 | IconWithLabel$1 | NoIcon$1);
|
|
4539
|
-
declare const SegmentedControlItem: react.ForwardRefExoticComponent<SegmentedControlItemProps & react.RefAttributes<HTMLButtonElement>>;
|
|
4539
|
+
declare const SegmentedControlItem: _$react.ForwardRefExoticComponent<SegmentedControlItemProps & _$react.RefAttributes<HTMLButtonElement>>;
|
|
4540
4540
|
//#endregion
|
|
4541
4541
|
//#region src/components/Select/Select.d.ts
|
|
4542
4542
|
type SelectProps = {
|
|
@@ -4591,7 +4591,7 @@ type SelectProps = {
|
|
|
4591
4591
|
/**
|
|
4592
4592
|
* Display a list of options and choose one of them. Replacement for the native Select HTML element.
|
|
4593
4593
|
*/
|
|
4594
|
-
declare const Select: react.ForwardRefExoticComponent<SelectProps & react.RefAttributes<HTMLButtonElement>>;
|
|
4594
|
+
declare const Select: _$react.ForwardRefExoticComponent<SelectProps & _$react.RefAttributes<HTMLButtonElement>>;
|
|
4595
4595
|
//#endregion
|
|
4596
4596
|
//#region src/components/Select/SelectOption.d.ts
|
|
4597
4597
|
type SelectOptionProps = {
|
|
@@ -4624,7 +4624,7 @@ type SelectOptionProps = {
|
|
|
4624
4624
|
*/
|
|
4625
4625
|
checkmarkVerticalAlign?: 'center' | 'top';
|
|
4626
4626
|
};
|
|
4627
|
-
declare const SelectOption: react.ForwardRefExoticComponent<SelectOptionProps & react.RefAttributes<HTMLDivElement>>;
|
|
4627
|
+
declare const SelectOption: _$react.ForwardRefExoticComponent<SelectOptionProps & _$react.RefAttributes<HTMLDivElement>>;
|
|
4628
4628
|
//#endregion
|
|
4629
4629
|
//#region src/components/Select/SelectOptionGroup.d.ts
|
|
4630
4630
|
type SelectOptionGroupProps = {
|
|
@@ -4635,7 +4635,7 @@ declare const SelectOptionGroup: ({
|
|
|
4635
4635
|
children,
|
|
4636
4636
|
label,
|
|
4637
4637
|
...props
|
|
4638
|
-
}: SelectOptionGroupProps) => react_jsx_runtime0.JSX.Element;
|
|
4638
|
+
}: SelectOptionGroupProps) => _$react_jsx_runtime0.JSX.Element;
|
|
4639
4639
|
//#endregion
|
|
4640
4640
|
//#region src/components/Slider/Slider.d.ts
|
|
4641
4641
|
type SliderProps = Omit<ComponentPropsWithoutRef<'div'>, 'onChange'> & {
|
|
@@ -4800,7 +4800,7 @@ type StackProps = {
|
|
|
4800
4800
|
* Used to layout its children in a vertical or horizontal stack. The gap between each item in the stack can be customized.
|
|
4801
4801
|
* This allows for layouting children in a consistent way without needing to manually add margins or padding.
|
|
4802
4802
|
*/
|
|
4803
|
-
declare const Stack: (<C extends ElementType = "div">(props: PolymorphicComponentProps<C, StackProps>) => react.ReactElement | null) & UnknownRecord;
|
|
4803
|
+
declare const Stack: (<C extends ElementType = "div">(props: PolymorphicComponentProps<C, StackProps>) => _$react.ReactElement | null) & UnknownRecord;
|
|
4804
4804
|
//#endregion
|
|
4805
4805
|
//#region src/components/Switch/Switch.d.ts
|
|
4806
4806
|
type SwitchSizeType = 'lg' | 'md' | 'sm';
|
|
@@ -4854,7 +4854,7 @@ type SwitchProps = Omit<ComponentPropsWithoutRef<'input'>, 'hideLabel' | 'label'
|
|
|
4854
4854
|
*/
|
|
4855
4855
|
hideLabel?: boolean;
|
|
4856
4856
|
};
|
|
4857
|
-
declare const Switch: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "size" | "hideLabel"> & {
|
|
4857
|
+
declare const Switch: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "size" | "hideLabel"> & {
|
|
4858
4858
|
/**
|
|
4859
4859
|
* The alignment of the switch relative to the label
|
|
4860
4860
|
*/
|
|
@@ -4903,7 +4903,7 @@ declare const Switch: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHT
|
|
|
4903
4903
|
* Whether to visually hide the label (it will still be available to screen readers)
|
|
4904
4904
|
*/
|
|
4905
4905
|
hideLabel?: boolean;
|
|
4906
|
-
} & react.RefAttributes<HTMLInputElement>>;
|
|
4906
|
+
} & _$react.RefAttributes<HTMLInputElement>>;
|
|
4907
4907
|
//#endregion
|
|
4908
4908
|
//#region src/components/Table/TableBody.d.ts
|
|
4909
4909
|
type TableBodyProps = HTMLAttributes<HTMLTableSectionElement> & {
|
|
@@ -5052,7 +5052,7 @@ type NoIcon = {
|
|
|
5052
5052
|
'aria-label'?: never;
|
|
5053
5053
|
};
|
|
5054
5054
|
type TabsTriggerProps$1 = BaseProps & (IconWithAriaLabel | IconWithLabel | NoIcon);
|
|
5055
|
-
declare const TabsTrigger: react.ForwardRefExoticComponent<TabsTriggerProps$1 & react.RefAttributes<HTMLButtonElement>>;
|
|
5055
|
+
declare const TabsTrigger: _$react.ForwardRefExoticComponent<TabsTriggerProps$1 & _$react.RefAttributes<HTMLButtonElement>>;
|
|
5056
5056
|
//#endregion
|
|
5057
5057
|
//#region src/components/Tag/Tag.d.ts
|
|
5058
5058
|
type TagProps = ComponentPropsWithoutRef<'div'> & {
|
|
@@ -5084,7 +5084,7 @@ type TagProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
5084
5084
|
/**
|
|
5085
5085
|
* A `Tag` is an optionally linked label, with an optional action button, to categorize content.
|
|
5086
5086
|
*/
|
|
5087
|
-
declare const Tag: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
5087
|
+
declare const Tag: _$react.ForwardRefExoticComponent<Omit<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
5088
5088
|
/**
|
|
5089
5089
|
* Sets the [color scheme](../?path=/docs/docs-color-schemes--docs)
|
|
5090
5090
|
*/
|
|
@@ -5109,7 +5109,7 @@ declare const Tag: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<
|
|
|
5109
5109
|
* Accessible label for the `x` button (ie. "Remove tag")
|
|
5110
5110
|
*/
|
|
5111
5111
|
onClickRemoveLabel?: string | undefined;
|
|
5112
|
-
} & react.RefAttributes<HTMLDivElement>>;
|
|
5112
|
+
} & _$react.RefAttributes<HTMLDivElement>>;
|
|
5113
5113
|
//#endregion
|
|
5114
5114
|
//#region src/components/Thumbnail/ThumbnailBadge.d.ts
|
|
5115
5115
|
type ThumbnailBadgeProps = {
|
|
@@ -5133,22 +5133,22 @@ declare const ThumbnailBadge: {
|
|
|
5133
5133
|
//#endregion
|
|
5134
5134
|
//#region src/private/helpers/getBackgroundGradient/getBackgroundGradient.d.ts
|
|
5135
5135
|
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>;
|
|
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>;
|
|
5152
5152
|
};
|
|
5153
5153
|
type GradientNameType = keyof typeof gradients;
|
|
5154
5154
|
//#endregion
|
|
@@ -5205,7 +5205,7 @@ type ThumbnailProps = Omit<ComponentPropsWithoutRef<'div'>, 'children'> & {
|
|
|
5205
5205
|
/**
|
|
5206
5206
|
* A `Thumbnail` is a small, reduced-size version of an image or video used as a preview or representative image.
|
|
5207
5207
|
*/
|
|
5208
|
-
declare const Thumbnail: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, "children"> & {
|
|
5208
|
+
declare const Thumbnail: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, "children"> & {
|
|
5209
5209
|
/**
|
|
5210
5210
|
* The desired display of the thumbnail, either wide or square
|
|
5211
5211
|
*/
|
|
@@ -5241,7 +5241,7 @@ declare const Thumbnail: react.ForwardRefExoticComponent<Omit<Omit<react.Detaile
|
|
|
5241
5241
|
* 'wide' maps to 16:9 ratio, 'square' maps to 1:1 ratio.
|
|
5242
5242
|
*/
|
|
5243
5243
|
aspectRatio?: AspectRatioType;
|
|
5244
|
-
} & react.RefAttributes<HTMLDivElement>>;
|
|
5244
|
+
} & _$react.RefAttributes<HTMLDivElement>>;
|
|
5245
5245
|
//#endregion
|
|
5246
5246
|
//#region src/components/ThumbnailCollage/ThumbnailCollage.d.ts
|
|
5247
5247
|
type ThumbnailCollageProps = {
|
|
@@ -5369,7 +5369,7 @@ declare const WistiaLogo: {
|
|
|
5369
5369
|
title,
|
|
5370
5370
|
variant,
|
|
5371
5371
|
...props
|
|
5372
|
-
}: WistiaLogoProps): react_jsx_runtime0.JSX.Element;
|
|
5372
|
+
}: WistiaLogoProps): _$react_jsx_runtime0.JSX.Element;
|
|
5373
5373
|
displayName: string;
|
|
5374
5374
|
};
|
|
5375
5375
|
declare namespace index_d_exports {
|