@wistia/ui 0.22.0-beta.0bbf593e.a25c53a → 0.22.0
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 -2
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, "variant" | "
|
|
618
|
+
} & Omit<ButtonAsButtonProps, "variant" | "unstyled" | "size" | "fullWidth" | "isLoading" | "leftIcon" | "rightIcon">, "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, "variant" | "
|
|
647
|
+
} & Omit<ButtonAsLinkProps, "variant" | "unstyled" | "size" | "fullWidth" | "isLoading" | "leftIcon" | "rightIcon">, "ref">) & react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
648
648
|
//#endregion
|
|
649
649
|
//#region src/components/Avatar/Avatar.d.ts
|
|
650
650
|
type AvatarInstanceType = 'image' | 'initials';
|
|
@@ -3264,7 +3264,7 @@ type InputClickToCopyProps = Omit<InputProps, 'autoSelect' | 'disabled' | 'right
|
|
|
3264
3264
|
/**
|
|
3265
3265
|
* Provides a readonly input that copies the text to the clipboard when clicked.
|
|
3266
3266
|
*/
|
|
3267
|
-
declare const InputClickToCopy: react.ForwardRefExoticComponent<Omit<InputProps, "type" | "
|
|
3267
|
+
declare const InputClickToCopy: react.ForwardRefExoticComponent<Omit<InputProps, "type" | "value" | "disabled" | "rightIcon" | "autoSelect"> & {
|
|
3268
3268
|
/**
|
|
3269
3269
|
* When disabled, the copy action will not be triggered
|
|
3270
3270
|
*/
|
|
@@ -3293,7 +3293,7 @@ type InputPasswordProps = Omit<InputProps, 'leftIcon' | 'monospace' | 'rightIcon
|
|
|
3293
3293
|
/**
|
|
3294
3294
|
* A password input component with a toggle button to show or hide the password text.
|
|
3295
3295
|
*/
|
|
3296
|
-
declare const InputPassword: react.ForwardRefExoticComponent<Omit<InputProps, "type" | "
|
|
3296
|
+
declare const InputPassword: react.ForwardRefExoticComponent<Omit<InputProps, "type" | "monospace" | "leftIcon" | "rightIcon"> & {
|
|
3297
3297
|
/**
|
|
3298
3298
|
* Set the disabled state of the input
|
|
3299
3299
|
*/
|
|
@@ -4200,7 +4200,7 @@ type RadioProps = Omit<ComponentPropsWithoutRef<'input'>, 'hideLabel' | 'label'
|
|
|
4200
4200
|
*/
|
|
4201
4201
|
hideLabel?: boolean;
|
|
4202
4202
|
};
|
|
4203
|
-
declare const Radio: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "onChange" | "
|
|
4203
|
+
declare const Radio: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "onChange" | "value" | "size" | "hideLabel"> & {
|
|
4204
4204
|
/**
|
|
4205
4205
|
* Indicates the state of the radio
|
|
4206
4206
|
*/
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wistia/ui",
|
|
3
|
-
"version": "0.22.0
|
|
3
|
+
"version": "0.22.0",
|
|
4
4
|
"description": "Wistia UI React component library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
"storybook": "^10.2.19",
|
|
118
118
|
"styled-components": "6.2.0",
|
|
119
119
|
"tsdown": "^0.21.3",
|
|
120
|
-
"typescript": "^
|
|
120
|
+
"typescript": "^5.9.3",
|
|
121
121
|
"vite": "^8.0.0",
|
|
122
122
|
"vitest": "^4.1.0",
|
|
123
123
|
"vitest-axe": "^1.0.0-pre.5",
|