@cagatayfdn/flora-components 0.0.51 → 0.0.53
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.cjs.js +30 -30
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.es.js +3124 -3121
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +10 -10
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -185,7 +185,7 @@ export declare type BreadcrumbProps = {
|
|
|
185
185
|
state?: any;
|
|
186
186
|
};
|
|
187
187
|
|
|
188
|
-
export declare const Button: ({ children, size, isLoading, isDisabled, isBlock, noBorder, noBackground, round, isSolid, type, className, prefixIcon, appearance, onClick, }: ButtonProps) => JSX.Element;
|
|
188
|
+
export declare const Button: ({ children, size, isLoading, isDisabled, isBlock, noBorder, noBackground, round, isSolid, type, focus, className, prefixIcon, appearance, onClick, }: ButtonProps) => JSX.Element;
|
|
189
189
|
|
|
190
190
|
declare type ButtonProps = {
|
|
191
191
|
children: ReactNode;
|
|
@@ -199,6 +199,7 @@ declare type ButtonProps = {
|
|
|
199
199
|
noBackground?: boolean;
|
|
200
200
|
round?: boolean;
|
|
201
201
|
isDisabled?: boolean;
|
|
202
|
+
focus?: boolean;
|
|
202
203
|
noBorder?: boolean;
|
|
203
204
|
isSolid?: boolean;
|
|
204
205
|
prefixIcon?: Icons;
|