yootd 0.0.14 → 0.0.16
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/button/index.d.ts +1 -1
- package/dist/teacher/index.js +0 -1
- package/package.json +1 -1
package/dist/button/index.d.ts
CHANGED
@@ -6,7 +6,7 @@ type AntButtonType = typeof AntButton;
|
|
6
6
|
type ButtonType = typeof ButtonComponent & Pick<AntButtonType, 'Group'>;
|
7
7
|
export type ButtonProps = Omit<AntButtonProps, 'type'> & {
|
8
8
|
type?: 'default' | 'primary' | 'petit' | 'dashed' | 'link' | 'text' | 'week';
|
9
|
-
variant?: 'filled' | 'outlined';
|
9
|
+
variant?: 'filled' | 'outlined' | 'text';
|
10
10
|
};
|
11
11
|
export declare const ButtonComponent: React.FC<ButtonProps>;
|
12
12
|
export declare const Button: ButtonType;
|
package/dist/teacher/index.js
CHANGED