@mindly/ui-components 3.69.2 → 3.70.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/cjs/index.js +7 -7
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/CustomButton/CustomButton.d.ts +2 -2
- package/dist/esm/index.js +7 -7
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/CustomButton/CustomButton.d.ts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
export declare type PossibleButtonTypes = 'primary' | 'secondary' | 'accent' | 'accent-dark-green' | 'accent-light-grey' | 'transparent';
|
|
2
|
+
export declare type PossibleButtonTypes = 'primary' | 'secondary' | 'accent' | 'accent-dark-green' | 'accent-light-grey' | 'transparent' | 'border';
|
|
3
3
|
declare type ButtonProps = {
|
|
4
|
-
buttonType
|
|
4
|
+
buttonType?: PossibleButtonTypes;
|
|
5
5
|
borderRadius?: number;
|
|
6
6
|
loading?: boolean;
|
|
7
7
|
} & React.ButtonHTMLAttributes<HTMLButtonElement>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1084,9 +1084,9 @@ declare const _default$8: React.MemoExoticComponent<React.ForwardRefExoticCompon
|
|
|
1084
1084
|
selectedBy?: "label" | "id" | undefined;
|
|
1085
1085
|
} & React.SelectHTMLAttributes<HTMLSelectElement> & React.RefAttributes<HTMLSelectElement>>>;
|
|
1086
1086
|
|
|
1087
|
-
declare type PossibleButtonTypes = 'primary' | 'secondary' | 'accent' | 'accent-dark-green' | 'accent-light-grey' | 'transparent';
|
|
1087
|
+
declare type PossibleButtonTypes = 'primary' | 'secondary' | 'accent' | 'accent-dark-green' | 'accent-light-grey' | 'transparent' | 'border';
|
|
1088
1088
|
declare type ButtonProps = {
|
|
1089
|
-
buttonType
|
|
1089
|
+
buttonType?: PossibleButtonTypes;
|
|
1090
1090
|
borderRadius?: number;
|
|
1091
1091
|
loading?: boolean;
|
|
1092
1092
|
} & React.ButtonHTMLAttributes<HTMLButtonElement>;
|