@wistia/ui 0.22.6-beta.e9187684.8c3304d → 0.22.7
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 +5 -5
- package/dist/index.js +1 -1
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -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, "variant" | "fullWidth" | "isLoading" | "leftIcon" | "rightIcon" | "size" | "unstyled">, "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, "variant" | "fullWidth" | "isLoading" | "leftIcon" | "rightIcon" | "size" | "unstyled">, "ref">) & _$react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
648
648
|
//#endregion
|
|
649
649
|
//#region src/components/Avatar/Avatar.d.ts
|
|
650
650
|
type AvatarInstanceType = 'image' | 'initials';
|
|
@@ -3269,7 +3269,7 @@ type InputClickToCopyProps = Omit<InputProps, 'autoSelect' | 'disabled' | 'right
|
|
|
3269
3269
|
/**
|
|
3270
3270
|
* Provides a readonly input that copies the text to the clipboard when clicked.
|
|
3271
3271
|
*/
|
|
3272
|
-
declare const InputClickToCopy: _$react.ForwardRefExoticComponent<Omit<InputProps, "
|
|
3272
|
+
declare const InputClickToCopy: _$react.ForwardRefExoticComponent<Omit<InputProps, "type" | "rightIcon" | "disabled" | "value" | "autoSelect"> & {
|
|
3273
3273
|
/**
|
|
3274
3274
|
* When disabled, the copy action will not be triggered
|
|
3275
3275
|
*/
|
|
@@ -3298,7 +3298,7 @@ type InputPasswordProps = Omit<InputProps, 'leftIcon' | 'monospace' | 'rightIcon
|
|
|
3298
3298
|
/**
|
|
3299
3299
|
* A password input component with a toggle button to show or hide the password text.
|
|
3300
3300
|
*/
|
|
3301
|
-
declare const InputPassword: _$react.ForwardRefExoticComponent<Omit<InputProps, "
|
|
3301
|
+
declare const InputPassword: _$react.ForwardRefExoticComponent<Omit<InputProps, "type" | "leftIcon" | "rightIcon" | "monospace"> & {
|
|
3302
3302
|
/**
|
|
3303
3303
|
* Set the disabled state of the input
|
|
3304
3304
|
*/
|
|
@@ -4205,7 +4205,7 @@ type RadioProps = Omit<ComponentPropsWithoutRef<'input'>, 'hideLabel' | 'label'
|
|
|
4205
4205
|
*/
|
|
4206
4206
|
hideLabel?: boolean;
|
|
4207
4207
|
};
|
|
4208
|
-
declare const Radio: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "onChange" | "
|
|
4208
|
+
declare const Radio: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "onChange" | "size" | "value" | "hideLabel"> & {
|
|
4209
4209
|
/**
|
|
4210
4210
|
* Indicates the state of the radio
|
|
4211
4211
|
*/
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wistia/ui",
|
|
3
|
-
"version": "0.22.
|
|
3
|
+
"version": "0.22.7",
|
|
4
4
|
"description": "Wistia UI React component library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -66,6 +66,7 @@
|
|
|
66
66
|
"culori": "^4.0.2",
|
|
67
67
|
"match-sorter": "^8.2.0",
|
|
68
68
|
"polished": "^4.3.1",
|
|
69
|
+
"react-day-picker": "^9.6.4",
|
|
69
70
|
"react-markdown": "^10.1.0",
|
|
70
71
|
"sonner": "^2.0.7",
|
|
71
72
|
"throttle-debounce": "^5.0.2",
|