@wistia/ui 0.26.5 → 0.26.6-beta.07d5e63e.7bb2fc5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +430 -45
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +259 -292
- package/dist/index.js.map +1 -1
- package/package.json +16 -16
package/dist/index.d.ts
CHANGED
|
@@ -349,9 +349,6 @@ declare const dateTime: {
|
|
|
349
349
|
timeOnlyString: typeof timeOnlyString;
|
|
350
350
|
};
|
|
351
351
|
//#endregion
|
|
352
|
-
//#region src/helpers/mergeRefs/mergeRefs.d.ts
|
|
353
|
-
declare const mergeRefs: <T = unknown>(refs: (LegacyRef<T> | MutableRefObject<T> | null | undefined)[]) => RefCallback<T>;
|
|
354
|
-
//#endregion
|
|
355
352
|
//#region src/helpers/isUrl/isUrl.d.ts
|
|
356
353
|
/**
|
|
357
354
|
* Loosely validates a URL string
|
|
@@ -361,6 +358,31 @@ declare const mergeRefs: <T = unknown>(refs: (LegacyRef<T> | MutableRefObject<T>
|
|
|
361
358
|
*/
|
|
362
359
|
declare const isUrl: (str: unknown) => boolean;
|
|
363
360
|
//#endregion
|
|
361
|
+
//#region src/helpers/getBackgroundGradient/getBackgroundGradient.d.ts
|
|
362
|
+
type GradientName = "defaultDarkOne" | "defaultDarkTwo" | "defaultLightOne" | "defaultLightTwo" | "defaultMidOne" | "defaultMidTwo" | "green" | "greenWithPop" | "pink" | "pinkWithPop" | "playfulGradientOne" | "playfulGradientTwo" | "purple" | "purpleWithPop" | "yellow" | "yellowWithPop";
|
|
363
|
+
declare const gradients: Record<GradientName, RuleSet<object>>;
|
|
364
|
+
type GradientNameType = keyof typeof gradients;
|
|
365
|
+
type GetBackgroundGradientType = GradientNameType | undefined;
|
|
366
|
+
/**
|
|
367
|
+
* Retrieves the CSS background gradient corresponding to the given gradient name.
|
|
368
|
+
* If the specified gradient name is not found, the default gradient ('defaultDarkOne') is returned.
|
|
369
|
+
* @param {GradientName} gradientName - The name of the gradient to retrieve.
|
|
370
|
+
* @returns {CssStyleType} The CSS string representing the specified gradient.
|
|
371
|
+
*/
|
|
372
|
+
declare const getBackgroundGradient: (gradientName?: GetBackgroundGradientType) => ReturnType<typeof css>;
|
|
373
|
+
//#endregion
|
|
374
|
+
//#region src/helpers/getBackgroundGradient/getSemiRandomBackgroundGradient.d.ts
|
|
375
|
+
/**
|
|
376
|
+
* Retrieves a semi-random background gradient based on the given id.
|
|
377
|
+
*
|
|
378
|
+
* @param {string} id - The id to use to generate the semi-random background gradient.
|
|
379
|
+
* @returns {GradientName} gradientName
|
|
380
|
+
*/
|
|
381
|
+
declare const getSemiRandomBackgroundGradient: (id: string) => GradientNameType | undefined;
|
|
382
|
+
//#endregion
|
|
383
|
+
//#region src/helpers/mergeRefs/mergeRefs.d.ts
|
|
384
|
+
declare const mergeRefs: <T = unknown>(refs: (LegacyRef<T> | MutableRefObject<T> | null | undefined)[]) => RefCallback<T>;
|
|
385
|
+
//#endregion
|
|
364
386
|
//#region src/helpers/mq/mq.d.ts
|
|
365
387
|
type MqFn = () => string;
|
|
366
388
|
declare const mq: {
|
|
@@ -610,7 +632,23 @@ type LinkProps = LinkAsButtonProps | LinkAsLinkProps;
|
|
|
610
632
|
* 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).
|
|
611
633
|
* The one prop we ignore from react-router is `to`. We use `href` instead and map it under the hood.
|
|
612
634
|
*/
|
|
613
|
-
declare const Link:
|
|
635
|
+
declare const Link: ({
|
|
636
|
+
beforeAction,
|
|
637
|
+
children,
|
|
638
|
+
type,
|
|
639
|
+
disabled,
|
|
640
|
+
colorScheme,
|
|
641
|
+
underline,
|
|
642
|
+
inheritColor,
|
|
643
|
+
leftIcon,
|
|
644
|
+
rightIcon,
|
|
645
|
+
"aria-disabled": ariaDisabled,
|
|
646
|
+
role,
|
|
647
|
+
ref,
|
|
648
|
+
...props
|
|
649
|
+
}: LinkProps & {
|
|
650
|
+
ref?: Ref<HTMLAnchorElement | HTMLButtonElement> | undefined;
|
|
651
|
+
}) => JSX.Element | null;
|
|
614
652
|
//#endregion
|
|
615
653
|
//#region src/private/hooks/useResponsiveProp/useResponsiveProp.d.ts
|
|
616
654
|
type Breakpoints = "isLgAndDown" | "isLgAndUp" | "isMdAndDown" | "isMdAndUp" | "isSmAndDown" | "isSmAndUp" | "isXlAndDown" | "isXlAndUp" | "isXsAndDown" | "isXsAndUp";
|
|
@@ -709,7 +747,25 @@ type ButtonProps = ButtonAsButtonProps | ButtonAsLinkProps;
|
|
|
709
747
|
* action, or performing a delete operation. It replaces the HTML `<button>` element,
|
|
710
748
|
* unless an `href` attribute is passed, in which it will render an `<a>` element.
|
|
711
749
|
*/
|
|
712
|
-
declare const Button:
|
|
750
|
+
declare const Button: ({
|
|
751
|
+
children,
|
|
752
|
+
forceState,
|
|
753
|
+
className,
|
|
754
|
+
leftIcon,
|
|
755
|
+
rightIcon,
|
|
756
|
+
colorScheme,
|
|
757
|
+
disabled,
|
|
758
|
+
isLoading,
|
|
759
|
+
unstyled,
|
|
760
|
+
onClick,
|
|
761
|
+
fullWidth,
|
|
762
|
+
size,
|
|
763
|
+
variant,
|
|
764
|
+
ref,
|
|
765
|
+
...props
|
|
766
|
+
}: ButtonProps & {
|
|
767
|
+
ref?: Ref<HTMLAnchorElement | HTMLButtonElement> | undefined;
|
|
768
|
+
}) => JSX.Element;
|
|
713
769
|
//#endregion
|
|
714
770
|
//#region src/private/components/Toast/Toast.d.ts
|
|
715
771
|
type ToastProps = ComponentPropsWithoutRef<"div"> & {
|
|
@@ -787,7 +843,19 @@ type ActionButtonProps = {
|
|
|
787
843
|
/**
|
|
788
844
|
* Action Button component is used as one of a group of main actions on the page. It composes [Button](/components/Button).
|
|
789
845
|
*/
|
|
790
|
-
declare const ActionButton:
|
|
846
|
+
declare const ActionButton: ({
|
|
847
|
+
icon,
|
|
848
|
+
colorScheme,
|
|
849
|
+
disabled,
|
|
850
|
+
forceState,
|
|
851
|
+
hoverColorScheme,
|
|
852
|
+
variant,
|
|
853
|
+
children,
|
|
854
|
+
ref,
|
|
855
|
+
...props
|
|
856
|
+
}: ActionButtonProps & {
|
|
857
|
+
ref?: Ref<HTMLAnchorElement | HTMLButtonElement> | undefined;
|
|
858
|
+
}) => JSX.Element;
|
|
791
859
|
//#endregion
|
|
792
860
|
//#region src/components/Avatar/Avatar.d.ts
|
|
793
861
|
type AvatarInstanceType = "image" | "initials";
|
|
@@ -849,7 +917,16 @@ type BadgeProps = ComponentPropsWithoutRef<"div"> & {
|
|
|
849
917
|
/**
|
|
850
918
|
* A `Badge` is a compact label, with optional icon, to convey status or context.
|
|
851
919
|
*/
|
|
852
|
-
declare const Badge:
|
|
920
|
+
declare const Badge: ({
|
|
921
|
+
colorScheme,
|
|
922
|
+
label,
|
|
923
|
+
icon,
|
|
924
|
+
variant,
|
|
925
|
+
ref,
|
|
926
|
+
...props
|
|
927
|
+
}: BadgeProps & {
|
|
928
|
+
ref?: Ref<HTMLDivElement> | undefined;
|
|
929
|
+
}) => JSX.Element;
|
|
853
930
|
//#endregion
|
|
854
931
|
//#region src/components/Banner/Banner.d.ts
|
|
855
932
|
type BannerProps = ComponentPropsWithoutRef<"div"> & {
|
|
@@ -1284,7 +1361,16 @@ type CenterProps = ComponentPropsWithoutRef<"div"> & {
|
|
|
1284
1361
|
* Center component provides various ways to center content horizontally within a container.
|
|
1285
1362
|
* It supports max-width constraints, text alignment, gutters, and intrinsic content centering.
|
|
1286
1363
|
*/
|
|
1287
|
-
declare const Center:
|
|
1364
|
+
declare const Center: ({
|
|
1365
|
+
maxWidth,
|
|
1366
|
+
gutterWidth,
|
|
1367
|
+
intrinsic,
|
|
1368
|
+
children,
|
|
1369
|
+
ref,
|
|
1370
|
+
...props
|
|
1371
|
+
}: CenterProps & {
|
|
1372
|
+
ref?: Ref<HTMLDivElement> | undefined;
|
|
1373
|
+
}) => JSX.Element;
|
|
1288
1374
|
//#endregion
|
|
1289
1375
|
//#region src/components/Checkbox/Checkbox.d.ts
|
|
1290
1376
|
type CheckboxSizeType = "lg" | "md" | "sm";
|
|
@@ -1334,7 +1420,23 @@ type CheckboxProps = Omit<ComponentPropsWithoutRef<"input">, "hideLabel" | "labe
|
|
|
1334
1420
|
*/
|
|
1335
1421
|
hideLabel?: boolean;
|
|
1336
1422
|
};
|
|
1337
|
-
declare const Checkbox:
|
|
1423
|
+
declare const Checkbox: ({
|
|
1424
|
+
checked,
|
|
1425
|
+
disabled,
|
|
1426
|
+
id,
|
|
1427
|
+
label,
|
|
1428
|
+
description,
|
|
1429
|
+
name,
|
|
1430
|
+
onChange,
|
|
1431
|
+
size,
|
|
1432
|
+
value,
|
|
1433
|
+
required,
|
|
1434
|
+
hideLabel,
|
|
1435
|
+
ref,
|
|
1436
|
+
...props
|
|
1437
|
+
}: CheckboxProps & {
|
|
1438
|
+
ref?: Ref<HTMLInputElement> | undefined;
|
|
1439
|
+
}) => JSX.Element;
|
|
1338
1440
|
//#endregion
|
|
1339
1441
|
//#region src/components/ClickRegion/ClickRegion.d.ts
|
|
1340
1442
|
type ClickRegionProps = {
|
|
@@ -1572,7 +1674,13 @@ type ColorPickerTriggerProps = ComponentPropsWithoutRef<"button">;
|
|
|
1572
1674
|
* it renders a swatch and hex label for the current color; pass custom children
|
|
1573
1675
|
* to replace that content.
|
|
1574
1676
|
*/
|
|
1575
|
-
declare const ColorPickerTrigger:
|
|
1677
|
+
declare const ColorPickerTrigger: ({
|
|
1678
|
+
children,
|
|
1679
|
+
ref,
|
|
1680
|
+
...props
|
|
1681
|
+
}: ColorPickerTriggerProps & {
|
|
1682
|
+
ref?: Ref<HTMLButtonElement> | undefined;
|
|
1683
|
+
}) => JSX.Element;
|
|
1576
1684
|
//#endregion
|
|
1577
1685
|
//#region src/components/ColorPicker/ContrastControls.d.ts
|
|
1578
1686
|
type ContrastControlsProps = object;
|
|
@@ -2344,7 +2452,19 @@ type InputProps = Omit<InputHTMLAttributes<HTMLInputElement | HTMLTextAreaElemen
|
|
|
2344
2452
|
/**
|
|
2345
2453
|
* Capture user input with a text field. Should be used within a [Form](/components/Form) and [FormField](/components/FormField).
|
|
2346
2454
|
*/
|
|
2347
|
-
declare const Input:
|
|
2455
|
+
declare const Input: ({
|
|
2456
|
+
fullWidth,
|
|
2457
|
+
fullHeight,
|
|
2458
|
+
monospace,
|
|
2459
|
+
type,
|
|
2460
|
+
autoSelect,
|
|
2461
|
+
leftIcon,
|
|
2462
|
+
rightIcon,
|
|
2463
|
+
ref: externalRef,
|
|
2464
|
+
...props
|
|
2465
|
+
}: InputProps & {
|
|
2466
|
+
ref?: Ref<HTMLInputElement | HTMLTextAreaElement> | undefined;
|
|
2467
|
+
}) => JSX.Element;
|
|
2348
2468
|
//#endregion
|
|
2349
2469
|
//#region src/components/EditableText/EditableTextInput.d.ts
|
|
2350
2470
|
type EditableTextInputProps = Pick<InputProps, "autoSelect">;
|
|
@@ -2494,8 +2614,17 @@ type FormProps<T> = Omit<ComponentPropsWithoutRef<"form">, "action" | "aria-labe
|
|
|
2494
2614
|
* For creating forms. It provides a context for the form fields to access the form state and validation.
|
|
2495
2615
|
* It also provides a way to handle form submission and validation. It is built around [React 19's form APIs](https://react.dev/reference/react-dom/components/form).
|
|
2496
2616
|
*/
|
|
2497
|
-
declare const Form: <T
|
|
2498
|
-
|
|
2617
|
+
declare const Form: <T = Record<string, unknown>>({
|
|
2618
|
+
children,
|
|
2619
|
+
action,
|
|
2620
|
+
values,
|
|
2621
|
+
labelPosition,
|
|
2622
|
+
validate,
|
|
2623
|
+
fullWidth,
|
|
2624
|
+
ref: forwardedRef,
|
|
2625
|
+
...props
|
|
2626
|
+
}: FormProps<T> & {
|
|
2627
|
+
ref?: Ref<HTMLFormElement> | undefined;
|
|
2499
2628
|
}) => JSX.Element;
|
|
2500
2629
|
//#endregion
|
|
2501
2630
|
//#region src/components/Form/FormErrorSummary.d.ts
|
|
@@ -2695,7 +2824,15 @@ type IconButtonProps = {
|
|
|
2695
2824
|
* IconButton behaves like a [Button](/components/Button),
|
|
2696
2825
|
* but only accepts an [Icon](/components/Icon) as a child.
|
|
2697
2826
|
*/
|
|
2698
|
-
declare const IconButton:
|
|
2827
|
+
declare const IconButton: ({
|
|
2828
|
+
children,
|
|
2829
|
+
label,
|
|
2830
|
+
size,
|
|
2831
|
+
ref,
|
|
2832
|
+
...props
|
|
2833
|
+
}: IconButtonProps & {
|
|
2834
|
+
ref?: Ref<HTMLAnchorElement | HTMLButtonElement> | undefined;
|
|
2835
|
+
}) => JSX.Element;
|
|
2699
2836
|
//#endregion
|
|
2700
2837
|
//#region src/components/Image/Image.d.ts
|
|
2701
2838
|
type ImageProps = ComponentPropsWithoutRef<"img"> & {
|
|
@@ -2761,7 +2898,15 @@ type InputClickToCopyProps = Omit<InputProps, "autoSelect" | "disabled" | "right
|
|
|
2761
2898
|
/**
|
|
2762
2899
|
* Provides a readonly input that copies the text to the clipboard when clicked.
|
|
2763
2900
|
*/
|
|
2764
|
-
declare const InputClickToCopy:
|
|
2901
|
+
declare const InputClickToCopy: ({
|
|
2902
|
+
value,
|
|
2903
|
+
onCopy,
|
|
2904
|
+
disabled,
|
|
2905
|
+
ref,
|
|
2906
|
+
...props
|
|
2907
|
+
}: InputClickToCopyProps & {
|
|
2908
|
+
ref?: Ref<HTMLInputElement> | undefined;
|
|
2909
|
+
}) => JSX.Element;
|
|
2765
2910
|
//#endregion
|
|
2766
2911
|
//#region src/components/InputDuration/types.d.ts
|
|
2767
2912
|
type DecimalUnitLength = 0 | 2;
|
|
@@ -2793,7 +2938,21 @@ type InputDurationProps = InputDurationBaseProps & {
|
|
|
2793
2938
|
/**
|
|
2794
2939
|
* InputDuration lets users edit a duration value using a keyboard-friendly time input.
|
|
2795
2940
|
*/
|
|
2796
|
-
declare const InputDuration:
|
|
2941
|
+
declare const InputDuration: ({
|
|
2942
|
+
decimalUnitLength,
|
|
2943
|
+
disabled,
|
|
2944
|
+
fullWidth,
|
|
2945
|
+
maxSeconds,
|
|
2946
|
+
minSeconds,
|
|
2947
|
+
onChangeValueInSeconds,
|
|
2948
|
+
valueInSeconds,
|
|
2949
|
+
onFocus,
|
|
2950
|
+
style,
|
|
2951
|
+
ref: externalRef,
|
|
2952
|
+
...props
|
|
2953
|
+
}: InputDurationProps & {
|
|
2954
|
+
ref?: Ref<HTMLInputElement> | undefined;
|
|
2955
|
+
}) => JSX.Element;
|
|
2797
2956
|
//#endregion
|
|
2798
2957
|
//#region src/components/InputPassword/InputPassword.d.ts
|
|
2799
2958
|
type InputPasswordProps = Omit<InputProps, "leftIcon" | "monospace" | "rightIcon" | "type"> & {
|
|
@@ -2809,7 +2968,14 @@ type InputPasswordProps = Omit<InputProps, "leftIcon" | "monospace" | "rightIcon
|
|
|
2809
2968
|
/**
|
|
2810
2969
|
* A password input component with a toggle button to show or hide the password text.
|
|
2811
2970
|
*/
|
|
2812
|
-
declare const InputPassword:
|
|
2971
|
+
declare const InputPassword: ({
|
|
2972
|
+
onVisibilityToggle,
|
|
2973
|
+
disabled,
|
|
2974
|
+
ref,
|
|
2975
|
+
...props
|
|
2976
|
+
}: InputPasswordProps & {
|
|
2977
|
+
ref?: Ref<HTMLInputElement> | undefined;
|
|
2978
|
+
}) => JSX.Element;
|
|
2813
2979
|
//#endregion
|
|
2814
2980
|
//#region src/components/KeyboardShortcut/KeyboardKeyTypes.d.ts
|
|
2815
2981
|
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";
|
|
@@ -2962,7 +3128,22 @@ type MenuProps = MenuControlProps & {
|
|
|
2962
3128
|
/**
|
|
2963
3129
|
* Displays a menu to the users with a set of actions.
|
|
2964
3130
|
*/
|
|
2965
|
-
declare const Menu:
|
|
3131
|
+
declare const Menu: ({
|
|
3132
|
+
align,
|
|
3133
|
+
children,
|
|
3134
|
+
disabled,
|
|
3135
|
+
compact,
|
|
3136
|
+
trigger,
|
|
3137
|
+
label,
|
|
3138
|
+
isOpen,
|
|
3139
|
+
side,
|
|
3140
|
+
triggerProps,
|
|
3141
|
+
onOpenChange,
|
|
3142
|
+
ref,
|
|
3143
|
+
...props
|
|
3144
|
+
}: MenuProps & {
|
|
3145
|
+
ref?: Ref<HTMLButtonElement> | undefined;
|
|
3146
|
+
}) => JSX.Element;
|
|
2966
3147
|
//#endregion
|
|
2967
3148
|
//#region src/components/Menu/MenuLabel.d.ts
|
|
2968
3149
|
type MenuLabelProps = {
|
|
@@ -3067,7 +3248,14 @@ type MenuItemProps = MenuItemButtonProps & {
|
|
|
3067
3248
|
*/
|
|
3068
3249
|
onSelect?: (event: SyntheticEvent) => void;
|
|
3069
3250
|
};
|
|
3070
|
-
declare const MenuItem:
|
|
3251
|
+
declare const MenuItem: ({
|
|
3252
|
+
onSelect,
|
|
3253
|
+
closeOnClick,
|
|
3254
|
+
ref,
|
|
3255
|
+
...props
|
|
3256
|
+
}: MenuItemProps & {
|
|
3257
|
+
ref?: Ref<HTMLAnchorElement | HTMLButtonElement> | undefined;
|
|
3258
|
+
}) => JSX.Element;
|
|
3071
3259
|
//#endregion
|
|
3072
3260
|
//#region src/components/Menu/MenuItemLabel.d.ts
|
|
3073
3261
|
type MenuItemLabelProps = {
|
|
@@ -3187,7 +3375,17 @@ type FilterMenuProps = MenuProps & {
|
|
|
3187
3375
|
onSearchValueChange: (value: string) => void;
|
|
3188
3376
|
};
|
|
3189
3377
|
declare const FilterMenuItem: typeof CheckboxMenuItem;
|
|
3190
|
-
declare const FilterMenu:
|
|
3378
|
+
declare const FilterMenu: ({
|
|
3379
|
+
value,
|
|
3380
|
+
onChange,
|
|
3381
|
+
searchValue,
|
|
3382
|
+
onSearchValueChange,
|
|
3383
|
+
children,
|
|
3384
|
+
ref,
|
|
3385
|
+
...props
|
|
3386
|
+
}: FilterMenuProps & {
|
|
3387
|
+
ref?: Ref<HTMLButtonElement> | undefined;
|
|
3388
|
+
}) => JSX.Element;
|
|
3191
3389
|
//#endregion
|
|
3192
3390
|
//#region src/components/Meter/Meter.d.ts
|
|
3193
3391
|
type MeterSegment = {
|
|
@@ -3288,7 +3486,22 @@ type ModalProps = ComponentPropsWithoutRef<"div"> & {
|
|
|
3288
3486
|
* A Modal is a focused UI element that appears atop the main interface, requiring
|
|
3289
3487
|
* user interaction or dismissal before returning to the underlying content.
|
|
3290
3488
|
*/
|
|
3291
|
-
declare const Modal:
|
|
3489
|
+
declare const Modal: ({
|
|
3490
|
+
children,
|
|
3491
|
+
footer,
|
|
3492
|
+
hideCloseButton,
|
|
3493
|
+
hideTitle,
|
|
3494
|
+
initialFocusRef,
|
|
3495
|
+
isOpen,
|
|
3496
|
+
onRequestClose,
|
|
3497
|
+
positionVariant,
|
|
3498
|
+
title,
|
|
3499
|
+
width,
|
|
3500
|
+
ref,
|
|
3501
|
+
...props
|
|
3502
|
+
}: ModalProps & {
|
|
3503
|
+
ref?: Ref<HTMLDivElement> | undefined;
|
|
3504
|
+
}) => JSX.Element;
|
|
3292
3505
|
//#endregion
|
|
3293
3506
|
//#region src/components/Modal/ModalCallouts.d.ts
|
|
3294
3507
|
type ModalCalloutsProps = {
|
|
@@ -3424,7 +3637,12 @@ type PopoverCloseProps = Omit<ComponentPropsWithoutRef<"button">, "render"> & {
|
|
|
3424
3637
|
* pass `render` to merge the close behavior onto a single child element. For
|
|
3425
3638
|
* a pre-styled icon close button, use `PopoverCloseButton`.
|
|
3426
3639
|
*/
|
|
3427
|
-
declare const PopoverClose:
|
|
3640
|
+
declare const PopoverClose: ({
|
|
3641
|
+
ref,
|
|
3642
|
+
...props
|
|
3643
|
+
}: PopoverCloseProps & {
|
|
3644
|
+
ref?: Ref<HTMLButtonElement> | undefined;
|
|
3645
|
+
}) => JSX.Element;
|
|
3428
3646
|
//#endregion
|
|
3429
3647
|
//#region src/components/Popover/PopoverCloseButton.d.ts
|
|
3430
3648
|
type PopoverCloseButtonProps = {
|
|
@@ -3453,7 +3671,22 @@ type PopoverContentProps = {
|
|
|
3453
3671
|
* The styled popover surface. Place inside a `PopoverRoot` (typically wrapped
|
|
3454
3672
|
* in a `PopoverPortal`). Wraps a `Positioner` and `Popup` internally.
|
|
3455
3673
|
*/
|
|
3456
|
-
declare const PopoverContent:
|
|
3674
|
+
declare const PopoverContent: ({
|
|
3675
|
+
colorScheme,
|
|
3676
|
+
unstyled,
|
|
3677
|
+
maxWidth,
|
|
3678
|
+
maxHeight,
|
|
3679
|
+
sideOffset,
|
|
3680
|
+
side,
|
|
3681
|
+
align,
|
|
3682
|
+
style,
|
|
3683
|
+
role,
|
|
3684
|
+
children,
|
|
3685
|
+
ref,
|
|
3686
|
+
...props
|
|
3687
|
+
}: PopoverContentProps & {
|
|
3688
|
+
ref?: Ref<HTMLDivElement> | undefined;
|
|
3689
|
+
}) => JSX.Element;
|
|
3457
3690
|
//#endregion
|
|
3458
3691
|
//#region src/components/Popover/PopoverPortal.d.ts
|
|
3459
3692
|
type PopoverPortalProps = {
|
|
@@ -3502,7 +3735,13 @@ type PopoverTriggerProps = Omit<ComponentPropsWithoutRef<"button">, "render"> &
|
|
|
3502
3735
|
* `<button>` wrapping its children; pass `render` to merge the trigger
|
|
3503
3736
|
* behavior onto a single child element (e.g. a `Button` or `IconButton`).
|
|
3504
3737
|
*/
|
|
3505
|
-
declare const PopoverTrigger:
|
|
3738
|
+
declare const PopoverTrigger: ({
|
|
3739
|
+
nativeButton,
|
|
3740
|
+
ref,
|
|
3741
|
+
...props
|
|
3742
|
+
}: PopoverTriggerProps & {
|
|
3743
|
+
ref?: Ref<HTMLButtonElement> | undefined;
|
|
3744
|
+
}) => JSX.Element;
|
|
3506
3745
|
//#endregion
|
|
3507
3746
|
//#region src/components/ProgressBar/ProgressBar.d.ts
|
|
3508
3747
|
type ProgressBarProps = ComponentPropsWithoutRef<"div"> & {
|
|
@@ -3585,7 +3824,23 @@ type RadioProps = Omit<ComponentPropsWithoutRef<"input">, "hideLabel" | "label"
|
|
|
3585
3824
|
*/
|
|
3586
3825
|
hideLabel?: boolean;
|
|
3587
3826
|
};
|
|
3588
|
-
declare const Radio:
|
|
3827
|
+
declare const Radio: ({
|
|
3828
|
+
checked,
|
|
3829
|
+
disabled,
|
|
3830
|
+
id,
|
|
3831
|
+
label,
|
|
3832
|
+
description,
|
|
3833
|
+
name,
|
|
3834
|
+
onChange,
|
|
3835
|
+
size,
|
|
3836
|
+
value,
|
|
3837
|
+
required,
|
|
3838
|
+
hideLabel,
|
|
3839
|
+
ref,
|
|
3840
|
+
...props
|
|
3841
|
+
}: RadioProps & {
|
|
3842
|
+
ref?: Ref<HTMLInputElement> | undefined;
|
|
3843
|
+
}) => JSX.Element;
|
|
3589
3844
|
//#endregion
|
|
3590
3845
|
//#region src/components/RadioCard/RadioCardDefaultLayout.d.ts
|
|
3591
3846
|
type RadioCardDefaultLayoutProps = {
|
|
@@ -3657,7 +3912,18 @@ type RadioCardWithDefaultLayout = BaseRadioCardProps & RadioCardDefaultLayoutPro
|
|
|
3657
3912
|
children?: never;
|
|
3658
3913
|
};
|
|
3659
3914
|
type RadioCardProps = RadioCardWithChildren | RadioCardWithDefaultLayout;
|
|
3660
|
-
declare const RadioCard:
|
|
3915
|
+
declare const RadioCard: ({
|
|
3916
|
+
icon,
|
|
3917
|
+
label,
|
|
3918
|
+
description,
|
|
3919
|
+
showIndicator,
|
|
3920
|
+
isGated,
|
|
3921
|
+
children,
|
|
3922
|
+
ref,
|
|
3923
|
+
...rootProps
|
|
3924
|
+
}: RadioCardProps & {
|
|
3925
|
+
ref?: Ref<HTMLInputElement> | undefined;
|
|
3926
|
+
}) => JSX.Element;
|
|
3661
3927
|
//#endregion
|
|
3662
3928
|
//#region src/components/RadioCard/RadioCardImage.d.ts
|
|
3663
3929
|
type RadioCardImageProps = Omit<ComponentPropsWithoutRef<"input">, "onChange"> & {
|
|
@@ -3702,7 +3968,16 @@ type RadioCardImageProps = Omit<ComponentPropsWithoutRef<"input">, "onChange"> &
|
|
|
3702
3968
|
*/
|
|
3703
3969
|
padding?: Spacings;
|
|
3704
3970
|
};
|
|
3705
|
-
declare const RadioCardImage:
|
|
3971
|
+
declare const RadioCardImage: ({
|
|
3972
|
+
label,
|
|
3973
|
+
imageSrc,
|
|
3974
|
+
aspectRatio,
|
|
3975
|
+
padding,
|
|
3976
|
+
ref,
|
|
3977
|
+
...rootProps
|
|
3978
|
+
}: RadioCardImageProps & {
|
|
3979
|
+
ref?: Ref<HTMLInputElement> | undefined;
|
|
3980
|
+
}) => JSX.Element;
|
|
3706
3981
|
//#endregion
|
|
3707
3982
|
//#region src/components/ScreenReaderOnly/ScreenReaderOnly.d.ts
|
|
3708
3983
|
type ScreenReaderOnlyProps = ComponentPropsWithoutRef<"div"> & {
|
|
@@ -3738,7 +4013,16 @@ type ScrollAreaProps = HTMLAttributes<HTMLDivElement> & {
|
|
|
3738
4013
|
* ScrollArea is a simple scrollable container with shadow effects to indicate
|
|
3739
4014
|
* scrollability.
|
|
3740
4015
|
*/
|
|
3741
|
-
declare const ScrollArea:
|
|
4016
|
+
declare const ScrollArea: ({
|
|
4017
|
+
children,
|
|
4018
|
+
onScroll,
|
|
4019
|
+
style,
|
|
4020
|
+
locked,
|
|
4021
|
+
ref: forwardedRef,
|
|
4022
|
+
...props
|
|
4023
|
+
}: ScrollAreaProps & {
|
|
4024
|
+
ref?: Ref<HTMLDivElement> | undefined;
|
|
4025
|
+
}) => JSX.Element;
|
|
3742
4026
|
//#endregion
|
|
3743
4027
|
//#region src/components/SegmentedControl/SegmentedControl.d.ts
|
|
3744
4028
|
type SegmentedControlProps = {
|
|
@@ -3814,7 +4098,17 @@ type NoIcon$1 = {
|
|
|
3814
4098
|
"aria-label"?: never;
|
|
3815
4099
|
};
|
|
3816
4100
|
type SegmentedControlItemProps = BaseProps$1 & (IconWithAriaLabel$1 | IconWithLabel$1 | NoIcon$1);
|
|
3817
|
-
declare const SegmentedControlItem:
|
|
4101
|
+
declare const SegmentedControlItem: ({
|
|
4102
|
+
disabled,
|
|
4103
|
+
icon,
|
|
4104
|
+
label,
|
|
4105
|
+
"aria-label": ariaLabel,
|
|
4106
|
+
value,
|
|
4107
|
+
ref: forwardedRef,
|
|
4108
|
+
...otherProps
|
|
4109
|
+
}: SegmentedControlItemProps & {
|
|
4110
|
+
ref?: Ref<HTMLButtonElement> | undefined;
|
|
4111
|
+
}) => JSX.Element;
|
|
3818
4112
|
//#endregion
|
|
3819
4113
|
//#region src/components/Select/Select.d.ts
|
|
3820
4114
|
type SelectProps = {
|
|
@@ -3880,7 +4174,24 @@ type SelectProps = {
|
|
|
3880
4174
|
/**
|
|
3881
4175
|
* Display a list of options and choose one of them. Replacement for the native Select HTML element.
|
|
3882
4176
|
*/
|
|
3883
|
-
declare const Select:
|
|
4177
|
+
declare const Select: ({
|
|
4178
|
+
colorScheme,
|
|
4179
|
+
children,
|
|
4180
|
+
onOpenChange,
|
|
4181
|
+
onChange,
|
|
4182
|
+
placeholder,
|
|
4183
|
+
fullWidth,
|
|
4184
|
+
forceOpen,
|
|
4185
|
+
showScrollArrows,
|
|
4186
|
+
disabled,
|
|
4187
|
+
name,
|
|
4188
|
+
value,
|
|
4189
|
+
"aria-invalid": ariaInvalid,
|
|
4190
|
+
ref: forwardedRef,
|
|
4191
|
+
...props
|
|
4192
|
+
}: SelectProps & {
|
|
4193
|
+
ref?: Ref<HTMLButtonElement> | undefined;
|
|
4194
|
+
}) => JSX.Element;
|
|
3884
4195
|
//#endregion
|
|
3885
4196
|
//#region src/components/Select/SelectOption.d.ts
|
|
3886
4197
|
type SelectOptionProps = {
|
|
@@ -3913,7 +4224,16 @@ type SelectOptionProps = {
|
|
|
3913
4224
|
*/
|
|
3914
4225
|
checkmarkVerticalAlign?: "center" | "top";
|
|
3915
4226
|
};
|
|
3916
|
-
declare const SelectOption:
|
|
4227
|
+
declare const SelectOption: ({
|
|
4228
|
+
children,
|
|
4229
|
+
selectedDisplayValue,
|
|
4230
|
+
checkmarkVerticalAlign,
|
|
4231
|
+
textValue,
|
|
4232
|
+
ref: forwardedRef,
|
|
4233
|
+
...props
|
|
4234
|
+
}: SelectOptionProps & {
|
|
4235
|
+
ref?: Ref<HTMLDivElement> | undefined;
|
|
4236
|
+
}) => JSX.Element;
|
|
3917
4237
|
//#endregion
|
|
3918
4238
|
//#region src/components/Select/SelectOptionGroup.d.ts
|
|
3919
4239
|
type SelectOptionGroupProps = {
|
|
@@ -3934,7 +4254,13 @@ type SidebarProps = HTMLAttributes<HTMLElement> & {
|
|
|
3934
4254
|
*/
|
|
3935
4255
|
children: ReactNode;
|
|
3936
4256
|
};
|
|
3937
|
-
declare const Sidebar:
|
|
4257
|
+
declare const Sidebar: ({
|
|
4258
|
+
children,
|
|
4259
|
+
ref,
|
|
4260
|
+
...props
|
|
4261
|
+
}: SidebarProps & {
|
|
4262
|
+
ref?: Ref<HTMLElement> | undefined;
|
|
4263
|
+
}) => JSX.Element;
|
|
3938
4264
|
//#endregion
|
|
3939
4265
|
//#region src/components/Sidebar/SidebarHeader.d.ts
|
|
3940
4266
|
type SidebarHeaderProps = {
|
|
@@ -4012,7 +4338,13 @@ type SidebarButtonProps = (Omit<ButtonAsButtonProps, "fullWidth" | "size" | "uns
|
|
|
4012
4338
|
*/
|
|
4013
4339
|
selected?: boolean;
|
|
4014
4340
|
};
|
|
4015
|
-
declare const SidebarButton:
|
|
4341
|
+
declare const SidebarButton: ({
|
|
4342
|
+
selected,
|
|
4343
|
+
ref,
|
|
4344
|
+
...props
|
|
4345
|
+
}: SidebarButtonProps & {
|
|
4346
|
+
ref?: Ref<HTMLAnchorElement | HTMLButtonElement> | undefined;
|
|
4347
|
+
}) => JSX.Element;
|
|
4016
4348
|
//#endregion
|
|
4017
4349
|
//#region src/components/Sidebar/SidebarSearchInput.d.ts
|
|
4018
4350
|
type SidebarSearchInputProps = Omit<InputProps, "type"> & {
|
|
@@ -4023,7 +4355,14 @@ type SidebarSearchInputProps = Omit<InputProps, "type"> & {
|
|
|
4023
4355
|
*/
|
|
4024
4356
|
label?: string;
|
|
4025
4357
|
};
|
|
4026
|
-
declare const SidebarSearchInput:
|
|
4358
|
+
declare const SidebarSearchInput: ({
|
|
4359
|
+
id,
|
|
4360
|
+
label,
|
|
4361
|
+
ref,
|
|
4362
|
+
...props
|
|
4363
|
+
}: SidebarSearchInputProps & {
|
|
4364
|
+
ref?: Ref<HTMLInputElement | HTMLTextAreaElement> | undefined;
|
|
4365
|
+
}) => JSX.Element;
|
|
4027
4366
|
//#endregion
|
|
4028
4367
|
//#region src/components/Slider/Slider.d.ts
|
|
4029
4368
|
type SliderProps = Omit<ComponentPropsWithoutRef<"div">, "onChange"> & {
|
|
@@ -4211,7 +4550,24 @@ type SwitchProps = Omit<ComponentPropsWithoutRef<"input">, "hideLabel" | "label"
|
|
|
4211
4550
|
*/
|
|
4212
4551
|
hideLabel?: boolean;
|
|
4213
4552
|
};
|
|
4214
|
-
declare const Switch:
|
|
4553
|
+
declare const Switch: ({
|
|
4554
|
+
align,
|
|
4555
|
+
checked,
|
|
4556
|
+
disabled,
|
|
4557
|
+
id,
|
|
4558
|
+
label,
|
|
4559
|
+
description,
|
|
4560
|
+
name,
|
|
4561
|
+
onChange,
|
|
4562
|
+
size,
|
|
4563
|
+
value,
|
|
4564
|
+
required,
|
|
4565
|
+
hideLabel,
|
|
4566
|
+
ref,
|
|
4567
|
+
...props
|
|
4568
|
+
}: SwitchProps & {
|
|
4569
|
+
ref?: Ref<HTMLInputElement> | undefined;
|
|
4570
|
+
}) => JSX.Element;
|
|
4215
4571
|
//#endregion
|
|
4216
4572
|
//#region src/components/Table/TableBody.d.ts
|
|
4217
4573
|
type TableBodyProps = HTMLAttributes<HTMLTableSectionElement> & {
|
|
@@ -4351,7 +4707,17 @@ type NoIcon = {
|
|
|
4351
4707
|
"aria-label"?: never;
|
|
4352
4708
|
};
|
|
4353
4709
|
type TabsTriggerProps = BaseProps & (IconWithAriaLabel | IconWithLabel | NoIcon);
|
|
4354
|
-
declare const TabsTrigger:
|
|
4710
|
+
declare const TabsTrigger: ({
|
|
4711
|
+
disabled,
|
|
4712
|
+
icon,
|
|
4713
|
+
label,
|
|
4714
|
+
"aria-label": ariaLabel,
|
|
4715
|
+
value,
|
|
4716
|
+
ref,
|
|
4717
|
+
...otherProps
|
|
4718
|
+
}: TabsTriggerProps & {
|
|
4719
|
+
ref?: Ref<HTMLButtonElement> | undefined;
|
|
4720
|
+
}) => JSX.Element;
|
|
4355
4721
|
//#endregion
|
|
4356
4722
|
//#region src/components/Tag/Tag.d.ts
|
|
4357
4723
|
type TagProps = ComponentPropsWithoutRef<"div"> & {
|
|
@@ -4383,7 +4749,18 @@ type TagProps = ComponentPropsWithoutRef<"div"> & {
|
|
|
4383
4749
|
/**
|
|
4384
4750
|
* A `Tag` is an optionally linked label, with an optional action button, to categorize content.
|
|
4385
4751
|
*/
|
|
4386
|
-
declare const Tag:
|
|
4752
|
+
declare const Tag: ({
|
|
4753
|
+
onClickRemove,
|
|
4754
|
+
colorScheme,
|
|
4755
|
+
href,
|
|
4756
|
+
icon,
|
|
4757
|
+
label,
|
|
4758
|
+
onClickRemoveLabel,
|
|
4759
|
+
ref,
|
|
4760
|
+
...props
|
|
4761
|
+
}: TagProps & {
|
|
4762
|
+
ref?: Ref<HTMLDivElement> | undefined;
|
|
4763
|
+
}) => JSX.Element;
|
|
4387
4764
|
//#endregion
|
|
4388
4765
|
//#region src/components/Thumbnail/ThumbnailBadge.d.ts
|
|
4389
4766
|
type ThumbnailBadgeProps = {
|
|
@@ -4398,11 +4775,6 @@ type ThumbnailBadgeProps = {
|
|
|
4398
4775
|
};
|
|
4399
4776
|
declare const ThumbnailBadge: FC<ThumbnailBadgeProps>;
|
|
4400
4777
|
//#endregion
|
|
4401
|
-
//#region src/private/helpers/getBackgroundGradient/getBackgroundGradient.d.ts
|
|
4402
|
-
type GradientName = "defaultDarkOne" | "defaultDarkTwo" | "defaultLightOne" | "defaultLightTwo" | "defaultMidOne" | "defaultMidTwo" | "green" | "greenWithPop" | "pink" | "pinkWithPop" | "playfulGradientOne" | "playfulGradientTwo" | "purple" | "purpleWithPop" | "yellow" | "yellowWithPop";
|
|
4403
|
-
declare const gradients: Record<GradientName, RuleSet<object>>;
|
|
4404
|
-
type GradientNameType = keyof typeof gradients;
|
|
4405
|
-
//#endregion
|
|
4406
4778
|
//#region src/components/Thumbnail/Thumbnail.d.ts
|
|
4407
4779
|
type AspectRatioType = "square" | "wide";
|
|
4408
4780
|
type Storyboard = {
|
|
@@ -4456,7 +4828,20 @@ type ThumbnailProps = Omit<ComponentPropsWithoutRef<"div">, "children"> & {
|
|
|
4456
4828
|
/**
|
|
4457
4829
|
* A `Thumbnail` is a small, reduced-size version of an image or video used as a preview or representative image.
|
|
4458
4830
|
*/
|
|
4459
|
-
declare const Thumbnail:
|
|
4831
|
+
declare const Thumbnail: ({
|
|
4832
|
+
gradientBackground,
|
|
4833
|
+
thumbnailImageType,
|
|
4834
|
+
thumbnailUrl,
|
|
4835
|
+
width,
|
|
4836
|
+
children,
|
|
4837
|
+
storyboard,
|
|
4838
|
+
height,
|
|
4839
|
+
aspectRatio,
|
|
4840
|
+
ref,
|
|
4841
|
+
...props
|
|
4842
|
+
}: ThumbnailProps & {
|
|
4843
|
+
ref?: Ref<HTMLDivElement> | undefined;
|
|
4844
|
+
}) => JSX.Element;
|
|
4460
4845
|
//#endregion
|
|
4461
4846
|
//#region src/components/ThumbnailCollage/ThumbnailCollage.d.ts
|
|
4462
4847
|
type ThumbnailCollageProps = {
|
|
@@ -4564,8 +4949,8 @@ type WistiaLogoProps = Omit<ComponentPropsWithoutRef<"svg">, "height" | "href">
|
|
|
4564
4949
|
*/
|
|
4565
4950
|
declare const WistiaLogo: FC<WistiaLogoProps>;
|
|
4566
4951
|
declare namespace index_d_exports {
|
|
4567
|
-
export { ActionButton, ActionButtonProps, Avatar, AvatarProps, AvatarStatus, Badge, BadgeProps, Banner, BannerProps, Box, BoxProps, Breadcrumb, BreadcrumbProps, Breadcrumbs, BreadcrumbsProps, Button, ButtonGroup, ButtonProps, Card, CardProps, Center, CenterProps, Checkbox, CheckboxGroup, CheckboxMenuItem, ClickRegion, ClickRegionProps, Collapsible, CollapsibleContent, CollapsibleProps, CollapsibleTrigger, CollapsibleTriggerIcon, ColorGrid, ColorGridOption, ColorGridOptionProps, ColorGridProps, ColorList, ColorListGroup, ColorListGroupProps, ColorListOption, ColorListOptionProps, ColorListProps, ColorPicker, ColorPickerPopoverContent, ColorPickerPopoverContentProps, ColorPickerProps, ColorPickerSection, ColorPickerSectionProps, ColorPickerTrigger, ColorPickerTriggerProps, ColorSchemeTypes, ColorSchemeWrapper, ColorSchemeWrapperProps, Combobox, ComboboxOption, ComboboxOptionProps, ComboboxProps, ContextMenu, ContextMenuProps, ContrastControls, CustomizableThemeWrapper, CustomizableThemeWrapperProps, DataCard, DataCardHoverArrow, DataCardProps, DataCardTrend, DataCardTrendProps, DataCards, DataCardsProps, DataList, DataListItem, DataListItemLabel, DataListItemValue, DataListProps, Divider, EditableHeading, EditableHeadingProps, EditableText, EditableTextCancelButton, EditableTextContext, EditableTextDisplay, EditableTextInput, EditableTextLabel, EditableTextProps, EditableTextRoot, EditableTextRootProps, EditableTextSubmitButton, EditableTextTrigger, Ellipsis, EllipsisProps, FeatureCard, FeatureCardImage, FeatureCardProps, FileAmountLimitValidator, FileSizeValidator, FileTypeValidator, FilterMenu, FilterMenuItem, Form, FormErrorSummary, FormField, FormFieldProps, FormGroup, FormGroupProps, FormProps, Grid, GridProps, Heading, HeadingProps, HexColorInput, HexColorInputProps, HueSlider, Icon, IconButton, IconButtonProps, IconNameType, Image, ImageDimensionsValidator, ImageProps, Input, InputClickToCopy, InputClickToCopyProps, InputDuration, InputDurationProps, InputPassword, InputPasswordProps, InputProps, KeyboardKeys, KeyboardShortcut, Label, LabelProps, Link, LinkProps, List, ListItem, ListItemProps, ListProps, Mark, MarkProps, Markdown, MarkdownProps, Menu, MenuItem, MenuItemDescription, MenuItemLabel, MenuLabel, MenuRadioGroup, Meter, MeterProps, MeterSegment, Modal, ModalCallout, ModalCallouts, ModalProps, PersistentFileAmountLimitValidator, Popover, PopoverAnchor, PopoverAnchorProps, PopoverArrow, PopoverArrowProps, PopoverClose, PopoverCloseButton, PopoverCloseButtonProps, PopoverCloseProps, PopoverContent, PopoverContentProps, PopoverPortal, PopoverPortalProps, PopoverProps, PopoverRoot, PopoverRootProps, PopoverTrigger, PopoverTriggerProps, PreviewCard, PreviewCardProps, ProgressBar, ProgressBarProps, Radio, RadioCard, RadioCardImage, RadioCardImageProps, RadioCardProps, RadioGroup, RadioMenuItem, RadioProps, SaturationAndValuePicker, ScreenReaderOnly, ScrollArea, ScrollAreaProps, SegmentedControl, SegmentedControlItem, SegmentedControlItemProps, SegmentedControlProps, Select, SelectOption, SelectOptionGroup, SelectOptionGroupProps, SelectOptionProps, SelectProps, Sidebar, SidebarButton, SidebarButtonProps, SidebarContent, SidebarContentProps, SidebarFooter, SidebarFooterProps, SidebarGroup, SidebarGroupLabel, SidebarGroupLabelProps, SidebarGroupProps, SidebarHeader, SidebarHeaderProps, SidebarProps, SidebarSearchInput, SidebarSearchInputProps, SidebarTitle, SidebarTitleProps, Slider, SliderProps, SplitButton, SplitButtonProps, Stack, SubMenu, Switch, SwitchProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableFoot, TableFootProps, TableHead, TableHeadProps, TableProps, TableRow, TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, Tag, TagProps, Text, TextProps, Thumbnail, ThumbnailBadge, ThumbnailBadgeProps, ThumbnailCollage, ThumbnailCollageProps, ThumbnailProps, Tooltip, TooltipProps, UIProvider, UseActiveMqReturnType, UseIsHoveredReturnType, UseMqReturnType, UseToastProps, ValueNameOrHexCode, ValueSwatch, WistiaLogo, buildTimeDuration, calculateContrast, coerceToBoolean, colorSchemeOptions, copyToClipboard, dateOnlyISOString, dateOnlyString, dateOnlyStringForSentence, dateOnlyStringNumeric, dateTime, dateTimeRounded, dateTimeString, dateTimeStringForSentence, dateTimeToDate, dateTimeToISO, dateToDateTime, dateUTCOffset, dayOfWeekString, iconSizeMap, isKeyboardKey, isUrl, mediaDurationString, mergeRefs, millisecondsToDurationISOString, monthDayStringNumeric, mq, parseDateString, sessionDurationString, stripExtension, timeAgoString, timeOnlyString, useActiveMq, useAriaLive, useBoolean, useClipboard, useElementObserver, useFilePicker, useFocusTrap, useForceUpdate, useFormState, useImperativeFilePicker, useIsHovered, useKey, useKeyPress, useLocalStorage, useLockBodyScroll, useMq, useOnClickOutside, usePreviousValue, useToast, useWindowSize, validateWithYup };
|
|
4952
|
+
export { ActionButton, ActionButtonProps, Avatar, AvatarProps, AvatarStatus, Badge, BadgeProps, Banner, BannerProps, Box, BoxProps, Breadcrumb, BreadcrumbProps, Breadcrumbs, BreadcrumbsProps, Button, ButtonGroup, ButtonProps, Card, CardProps, Center, CenterProps, Checkbox, CheckboxGroup, CheckboxMenuItem, ClickRegion, ClickRegionProps, Collapsible, CollapsibleContent, CollapsibleProps, CollapsibleTrigger, CollapsibleTriggerIcon, ColorGrid, ColorGridOption, ColorGridOptionProps, ColorGridProps, ColorList, ColorListGroup, ColorListGroupProps, ColorListOption, ColorListOptionProps, ColorListProps, ColorPicker, ColorPickerPopoverContent, ColorPickerPopoverContentProps, ColorPickerProps, ColorPickerSection, ColorPickerSectionProps, ColorPickerTrigger, ColorPickerTriggerProps, ColorSchemeTypes, ColorSchemeWrapper, ColorSchemeWrapperProps, Combobox, ComboboxOption, ComboboxOptionProps, ComboboxProps, ContextMenu, ContextMenuProps, ContrastControls, CustomizableThemeWrapper, CustomizableThemeWrapperProps, DataCard, DataCardHoverArrow, DataCardProps, DataCardTrend, DataCardTrendProps, DataCards, DataCardsProps, DataList, DataListItem, DataListItemLabel, DataListItemValue, DataListProps, Divider, EditableHeading, EditableHeadingProps, EditableText, EditableTextCancelButton, EditableTextContext, EditableTextDisplay, EditableTextInput, EditableTextLabel, EditableTextProps, EditableTextRoot, EditableTextRootProps, EditableTextSubmitButton, EditableTextTrigger, Ellipsis, EllipsisProps, FeatureCard, FeatureCardImage, FeatureCardProps, FileAmountLimitValidator, FileSizeValidator, FileTypeValidator, FilterMenu, FilterMenuItem, Form, FormErrorSummary, FormField, FormFieldProps, FormGroup, FormGroupProps, FormProps, GradientNameType, Grid, GridProps, Heading, HeadingProps, HexColorInput, HexColorInputProps, HueSlider, Icon, IconButton, IconButtonProps, IconNameType, Image, ImageDimensionsValidator, ImageProps, Input, InputClickToCopy, InputClickToCopyProps, InputDuration, InputDurationProps, InputPassword, InputPasswordProps, InputProps, KeyboardKeys, KeyboardShortcut, Label, LabelProps, Link, LinkProps, List, ListItem, ListItemProps, ListProps, Mark, MarkProps, Markdown, MarkdownProps, Menu, MenuItem, MenuItemDescription, MenuItemLabel, MenuLabel, MenuRadioGroup, Meter, MeterProps, MeterSegment, Modal, ModalCallout, ModalCallouts, ModalProps, PersistentFileAmountLimitValidator, Popover, PopoverAnchor, PopoverAnchorProps, PopoverArrow, PopoverArrowProps, PopoverClose, PopoverCloseButton, PopoverCloseButtonProps, PopoverCloseProps, PopoverContent, PopoverContentProps, PopoverPortal, PopoverPortalProps, PopoverProps, PopoverRoot, PopoverRootProps, PopoverTrigger, PopoverTriggerProps, PreviewCard, PreviewCardProps, ProgressBar, ProgressBarProps, Radio, RadioCard, RadioCardImage, RadioCardImageProps, RadioCardProps, RadioGroup, RadioMenuItem, RadioProps, SaturationAndValuePicker, ScreenReaderOnly, ScrollArea, ScrollAreaProps, SegmentedControl, SegmentedControlItem, SegmentedControlItemProps, SegmentedControlProps, Select, SelectOption, SelectOptionGroup, SelectOptionGroupProps, SelectOptionProps, SelectProps, Sidebar, SidebarButton, SidebarButtonProps, SidebarContent, SidebarContentProps, SidebarFooter, SidebarFooterProps, SidebarGroup, SidebarGroupLabel, SidebarGroupLabelProps, SidebarGroupProps, SidebarHeader, SidebarHeaderProps, SidebarProps, SidebarSearchInput, SidebarSearchInputProps, SidebarTitle, SidebarTitleProps, Slider, SliderProps, SplitButton, SplitButtonProps, Stack, SubMenu, Switch, SwitchProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableFoot, TableFootProps, TableHead, TableHeadProps, TableProps, TableRow, TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, Tag, TagProps, Text, TextProps, Thumbnail, ThumbnailBadge, ThumbnailBadgeProps, ThumbnailCollage, ThumbnailCollageProps, ThumbnailProps, Tooltip, TooltipProps, UIProvider, UseActiveMqReturnType, UseIsHoveredReturnType, UseMqReturnType, UseToastProps, ValueNameOrHexCode, ValueSwatch, WistiaLogo, buildTimeDuration, calculateContrast, coerceToBoolean, colorSchemeOptions, copyToClipboard, dateOnlyISOString, dateOnlyString, dateOnlyStringForSentence, dateOnlyStringNumeric, dateTime, dateTimeRounded, dateTimeString, dateTimeStringForSentence, dateTimeToDate, dateTimeToISO, dateToDateTime, dateUTCOffset, dayOfWeekString, getBackgroundGradient, getSemiRandomBackgroundGradient, iconSizeMap, isKeyboardKey, isUrl, mediaDurationString, mergeRefs, millisecondsToDurationISOString, monthDayStringNumeric, mq, parseDateString, sessionDurationString, stripExtension, timeAgoString, timeOnlyString, useActiveMq, useAriaLive, useBoolean, useClipboard, useElementObserver, useFilePicker, useFocusTrap, useForceUpdate, useFormState, useImperativeFilePicker, useIsHovered, useKey, useKeyPress, useLocalStorage, useLockBodyScroll, useMq, useOnClickOutside, usePreviousValue, useToast, useWindowSize, validateWithYup };
|
|
4568
4953
|
}
|
|
4569
4954
|
//#endregion
|
|
4570
|
-
export { ActionButton, type ActionButtonProps, Avatar, type AvatarProps, type AvatarStatus, Badge, type BadgeProps, Banner, type BannerProps, Box, type BoxProps, Breadcrumb, type BreadcrumbProps, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonProps, Card, type CardProps, Center, type CenterProps, Checkbox, CheckboxGroup, CheckboxMenuItem, ClickRegion, type ClickRegionProps, Collapsible, CollapsibleContent, type CollapsibleProps, CollapsibleTrigger, CollapsibleTriggerIcon, ColorGrid, ColorGridOption, type ColorGridOptionProps, type ColorGridProps, ColorList, ColorListGroup, type ColorListGroupProps, ColorListOption, type ColorListOptionProps, type ColorListProps, ColorPicker, ColorPickerPopoverContent, type ColorPickerPopoverContentProps, type ColorPickerProps, ColorPickerSection, type ColorPickerSectionProps, ColorPickerTrigger, type ColorPickerTriggerProps, type ColorSchemeTypes, ColorSchemeWrapper, type ColorSchemeWrapperProps, Combobox, ComboboxOption, type ComboboxOptionProps, type ComboboxProps, ContextMenu, type ContextMenuProps, ContrastControls, CustomizableThemeWrapper, type CustomizableThemeWrapperProps, DataCard, DataCardHoverArrow, type DataCardProps, DataCardTrend, type DataCardTrendProps, DataCards, type DataCardsProps, DataList, DataListItem, DataListItemLabel, DataListItemValue, type DataListProps, Divider, EditableHeading, type EditableHeadingProps, EditableText, EditableTextCancelButton, EditableTextContext, EditableTextDisplay, EditableTextInput, EditableTextLabel, type EditableTextProps, EditableTextRoot, type EditableTextRootProps, EditableTextSubmitButton, EditableTextTrigger, Ellipsis, type EllipsisProps, FeatureCard, FeatureCardImage, type FeatureCardProps, FileAmountLimitValidator, FileSizeValidator, FileTypeValidator, FilterMenu, FilterMenuItem, Form, FormErrorSummary, FormField, type FormFieldProps, FormGroup, type FormGroupProps, type FormProps, Grid, type GridProps, Heading, type HeadingProps, HexColorInput, type HexColorInputProps, HueSlider, Icon, IconButton, type IconButtonProps, type IconNameType, Image, ImageDimensionsValidator, type ImageProps, Input, InputClickToCopy, type InputClickToCopyProps, InputDuration, type InputDurationProps, InputPassword, type InputPasswordProps, type InputProps, type KeyboardKeys, KeyboardShortcut, Label, type LabelProps, Link, type LinkProps, List, ListItem, type ListItemProps, type ListProps, Mark, type MarkProps, Markdown, type MarkdownProps, Menu, MenuItem, MenuItemDescription, MenuItemLabel, MenuLabel, MenuRadioGroup, Meter, type MeterProps, type MeterSegment, Modal, ModalCallout, ModalCallouts, type ModalProps, PersistentFileAmountLimitValidator, Popover, PopoverAnchor, type PopoverAnchorProps, PopoverArrow, type PopoverArrowProps, PopoverClose, PopoverCloseButton, type PopoverCloseButtonProps, type PopoverCloseProps, PopoverContent, type PopoverContentProps, PopoverPortal, type PopoverPortalProps, type PopoverProps, PopoverRoot, type PopoverRootProps, PopoverTrigger, type PopoverTriggerProps, PreviewCard, type PreviewCardProps, ProgressBar, type ProgressBarProps, Radio, RadioCard, RadioCardImage, type RadioCardImageProps, type RadioCardProps, RadioGroup, RadioMenuItem, type RadioProps, SaturationAndValuePicker, ScreenReaderOnly, ScrollArea, ScrollAreaProps, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, SelectOption, SelectOptionGroup, type SelectOptionGroupProps, type SelectOptionProps, type SelectProps, Sidebar, SidebarButton, type SidebarButtonProps, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, SidebarGroupLabel, type SidebarGroupLabelProps, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, type SidebarProps, SidebarSearchInput, type SidebarSearchInputProps, SidebarTitle, type SidebarTitleProps, Slider, type SliderProps, SplitButton, type SplitButtonProps, Stack, SubMenu, Switch, type SwitchProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, Tag, type TagProps, Text, type TextProps, Thumbnail, ThumbnailBadge, type ThumbnailBadgeProps, ThumbnailCollage, type ThumbnailCollageProps, type ThumbnailProps, Tooltip, type TooltipProps, UIProvider, UseActiveMqReturnType, UseIsHoveredReturnType, UseMqReturnType, type UseToastProps, ValueNameOrHexCode, ValueSwatch, WistiaLogo, buildTimeDuration, calculateContrast, coerceToBoolean, colorSchemeOptions, copyToClipboard, dateOnlyISOString, dateOnlyString, dateOnlyStringForSentence, dateOnlyStringNumeric, dateTime, dateTimeRounded, dateTimeString, dateTimeStringForSentence, dateTimeToDate, dateTimeToISO, dateToDateTime, dateUTCOffset, dayOfWeekString, iconSizeMap, isKeyboardKey, isUrl, mediaDurationString, mergeRefs, millisecondsToDurationISOString, monthDayStringNumeric, mq, parseDateString, sessionDurationString, stripExtension, timeAgoString, timeOnlyString, useActiveMq, useAriaLive, useBoolean, useClipboard, useElementObserver, useFilePicker, useFocusTrap, useForceUpdate, useFormState, useImperativeFilePicker, useIsHovered, useKey, useKeyPress, useLocalStorage, useLockBodyScroll, useMq, useOnClickOutside, usePreviousValue, useToast, useWindowSize, validateWithYup };
|
|
4955
|
+
export { ActionButton, type ActionButtonProps, Avatar, type AvatarProps, type AvatarStatus, Badge, type BadgeProps, Banner, type BannerProps, Box, type BoxProps, Breadcrumb, type BreadcrumbProps, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonProps, Card, type CardProps, Center, type CenterProps, Checkbox, CheckboxGroup, CheckboxMenuItem, ClickRegion, type ClickRegionProps, Collapsible, CollapsibleContent, type CollapsibleProps, CollapsibleTrigger, CollapsibleTriggerIcon, ColorGrid, ColorGridOption, type ColorGridOptionProps, type ColorGridProps, ColorList, ColorListGroup, type ColorListGroupProps, ColorListOption, type ColorListOptionProps, type ColorListProps, ColorPicker, ColorPickerPopoverContent, type ColorPickerPopoverContentProps, type ColorPickerProps, ColorPickerSection, type ColorPickerSectionProps, ColorPickerTrigger, type ColorPickerTriggerProps, type ColorSchemeTypes, ColorSchemeWrapper, type ColorSchemeWrapperProps, Combobox, ComboboxOption, type ComboboxOptionProps, type ComboboxProps, ContextMenu, type ContextMenuProps, ContrastControls, CustomizableThemeWrapper, type CustomizableThemeWrapperProps, DataCard, DataCardHoverArrow, type DataCardProps, DataCardTrend, type DataCardTrendProps, DataCards, type DataCardsProps, DataList, DataListItem, DataListItemLabel, DataListItemValue, type DataListProps, Divider, EditableHeading, type EditableHeadingProps, EditableText, EditableTextCancelButton, EditableTextContext, EditableTextDisplay, EditableTextInput, EditableTextLabel, type EditableTextProps, EditableTextRoot, type EditableTextRootProps, EditableTextSubmitButton, EditableTextTrigger, Ellipsis, type EllipsisProps, FeatureCard, FeatureCardImage, type FeatureCardProps, FileAmountLimitValidator, FileSizeValidator, FileTypeValidator, FilterMenu, FilterMenuItem, Form, FormErrorSummary, FormField, type FormFieldProps, FormGroup, type FormGroupProps, type FormProps, type GradientNameType, Grid, type GridProps, Heading, type HeadingProps, HexColorInput, type HexColorInputProps, HueSlider, Icon, IconButton, type IconButtonProps, type IconNameType, Image, ImageDimensionsValidator, type ImageProps, Input, InputClickToCopy, type InputClickToCopyProps, InputDuration, type InputDurationProps, InputPassword, type InputPasswordProps, type InputProps, type KeyboardKeys, KeyboardShortcut, Label, type LabelProps, Link, type LinkProps, List, ListItem, type ListItemProps, type ListProps, Mark, type MarkProps, Markdown, type MarkdownProps, Menu, MenuItem, MenuItemDescription, MenuItemLabel, MenuLabel, MenuRadioGroup, Meter, type MeterProps, type MeterSegment, Modal, ModalCallout, ModalCallouts, type ModalProps, PersistentFileAmountLimitValidator, Popover, PopoverAnchor, type PopoverAnchorProps, PopoverArrow, type PopoverArrowProps, PopoverClose, PopoverCloseButton, type PopoverCloseButtonProps, type PopoverCloseProps, PopoverContent, type PopoverContentProps, PopoverPortal, type PopoverPortalProps, type PopoverProps, PopoverRoot, type PopoverRootProps, PopoverTrigger, type PopoverTriggerProps, PreviewCard, type PreviewCardProps, ProgressBar, type ProgressBarProps, Radio, RadioCard, RadioCardImage, type RadioCardImageProps, type RadioCardProps, RadioGroup, RadioMenuItem, type RadioProps, SaturationAndValuePicker, ScreenReaderOnly, ScrollArea, ScrollAreaProps, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, SelectOption, SelectOptionGroup, type SelectOptionGroupProps, type SelectOptionProps, type SelectProps, Sidebar, SidebarButton, type SidebarButtonProps, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, SidebarGroupLabel, type SidebarGroupLabelProps, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, type SidebarProps, SidebarSearchInput, type SidebarSearchInputProps, SidebarTitle, type SidebarTitleProps, Slider, type SliderProps, SplitButton, type SplitButtonProps, Stack, SubMenu, Switch, type SwitchProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, Tag, type TagProps, Text, type TextProps, Thumbnail, ThumbnailBadge, type ThumbnailBadgeProps, ThumbnailCollage, type ThumbnailCollageProps, type ThumbnailProps, Tooltip, type TooltipProps, UIProvider, UseActiveMqReturnType, UseIsHoveredReturnType, UseMqReturnType, type UseToastProps, ValueNameOrHexCode, ValueSwatch, WistiaLogo, buildTimeDuration, calculateContrast, coerceToBoolean, colorSchemeOptions, copyToClipboard, dateOnlyISOString, dateOnlyString, dateOnlyStringForSentence, dateOnlyStringNumeric, dateTime, dateTimeRounded, dateTimeString, dateTimeStringForSentence, dateTimeToDate, dateTimeToISO, dateToDateTime, dateUTCOffset, dayOfWeekString, getBackgroundGradient, getSemiRandomBackgroundGradient, iconSizeMap, isKeyboardKey, isUrl, mediaDurationString, mergeRefs, millisecondsToDurationISOString, monthDayStringNumeric, mq, parseDateString, sessionDurationString, stripExtension, timeAgoString, timeOnlyString, useActiveMq, useAriaLive, useBoolean, useClipboard, useElementObserver, useFilePicker, useFocusTrap, useForceUpdate, useFormState, useImperativeFilePicker, useIsHovered, useKey, useKeyPress, useLocalStorage, useLockBodyScroll, useMq, useOnClickOutside, usePreviousValue, useToast, useWindowSize, validateWithYup };
|
|
4571
4956
|
//# sourceMappingURL=index.d.ts.map
|