@veeqo/ui 8.1.0 → 8.2.1
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/components/Button/Button.d.ts +1 -0
- package/dist/components/Button/types.d.ts +3 -1
- package/dist/components/DimensionsInput/styled.d.ts +1 -0
- package/dist/components/Indicator/styled.d.ts +1 -1
- package/dist/components/Indicator/types.d.ts +1 -1
- package/dist/components/Pagination/styled.d.ts +1 -0
- package/dist/components/VideoModal/styled.d.ts +1 -0
- package/dist/components/ViewsContainer/styled.d.ts +3 -0
- package/dist/components/WeightInput/styled.d.ts +1 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -6,4 +6,5 @@ export declare const Button: React.ForwardRefExoticComponent<React.ButtonHTMLAtt
|
|
|
6
6
|
iconSlot?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
|
|
7
7
|
dropdown?: boolean | undefined;
|
|
8
8
|
loading?: boolean | undefined;
|
|
9
|
+
contentStyles?: React.CSSProperties | undefined;
|
|
9
10
|
} & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ReactNode, ButtonHTMLAttributes, ReactElement } from 'react';
|
|
1
|
+
import { ReactNode, ButtonHTMLAttributes, ReactElement, CSSProperties } from 'react';
|
|
2
2
|
export type ButtonVariant = 'default' | 'destructive' | 'primary' | 'primaryDestructive' | 'flat' | 'link' | 'unstyled';
|
|
3
3
|
/**
|
|
4
4
|
* Button properties.
|
|
@@ -15,4 +15,6 @@ export type ButtonProps = ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
|
15
15
|
dropdown?: boolean;
|
|
16
16
|
/** Renders a loading indicator inside the button */
|
|
17
17
|
loading?: boolean;
|
|
18
|
+
/** Additional styles for mainContent */
|
|
19
|
+
contentStyles?: CSSProperties;
|
|
18
20
|
};
|
|
@@ -310,6 +310,7 @@ declare const StyledButton: import("styled-components").StyledComponent<import("
|
|
|
310
310
|
iconSlot?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
|
311
311
|
dropdown?: boolean | undefined;
|
|
312
312
|
loading?: boolean | undefined;
|
|
313
|
+
contentStyles?: import("react").CSSProperties | undefined;
|
|
313
314
|
} & import("react").RefAttributes<HTMLButtonElement>>, any, {}, never>;
|
|
314
315
|
declare const Label: import("styled-components").StyledComponent<"span", any, {} & import("../Text/types").TextProps, never>;
|
|
315
316
|
declare const Error: import("styled-components").StyledComponent<"span", any, {}, never>;
|
|
@@ -7,6 +7,7 @@ export declare const PaginationButton: import("styled-components").StyledCompone
|
|
|
7
7
|
iconSlot?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
|
8
8
|
dropdown?: boolean | undefined;
|
|
9
9
|
loading?: boolean | undefined;
|
|
10
|
+
contentStyles?: import("react").CSSProperties | undefined;
|
|
10
11
|
} & import("react").RefAttributes<HTMLButtonElement>>, any, {}, never>;
|
|
11
12
|
export declare const PageInput: import("styled-components").StyledComponent<import("react").FC<{
|
|
12
13
|
form?: string | undefined;
|
|
@@ -8,4 +8,5 @@ export declare const ButtonSC: import("styled-components").StyledComponent<impor
|
|
|
8
8
|
iconSlot?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
|
9
9
|
dropdown?: boolean | undefined;
|
|
10
10
|
loading?: boolean | undefined;
|
|
11
|
+
contentStyles?: import("react").CSSProperties | undefined;
|
|
11
12
|
} & import("react").RefAttributes<HTMLButtonElement>>, any, {}, never>;
|
|
@@ -11,6 +11,7 @@ export declare const StyledMenuButton: import("styled-components").StyledCompone
|
|
|
11
11
|
iconSlot?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
|
12
12
|
dropdown?: boolean | undefined;
|
|
13
13
|
loading?: boolean | undefined;
|
|
14
|
+
contentStyles?: import("react").CSSProperties | undefined;
|
|
14
15
|
} & import("react").RefAttributes<HTMLButtonElement>>, any, {}, never>;
|
|
15
16
|
export declare const StyledLeftButton: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
16
17
|
children?: import("react").ReactNode;
|
|
@@ -19,6 +20,7 @@ export declare const StyledLeftButton: import("styled-components").StyledCompone
|
|
|
19
20
|
iconSlot?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
|
20
21
|
dropdown?: boolean | undefined;
|
|
21
22
|
loading?: boolean | undefined;
|
|
23
|
+
contentStyles?: import("react").CSSProperties | undefined;
|
|
22
24
|
} & import("react").RefAttributes<HTMLButtonElement>>, any, {}, never>;
|
|
23
25
|
export declare const StyledRightButton: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
24
26
|
children?: import("react").ReactNode;
|
|
@@ -27,5 +29,6 @@ export declare const StyledRightButton: import("styled-components").StyledCompon
|
|
|
27
29
|
iconSlot?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
|
28
30
|
dropdown?: boolean | undefined;
|
|
29
31
|
loading?: boolean | undefined;
|
|
32
|
+
contentStyles?: import("react").CSSProperties | undefined;
|
|
30
33
|
} & import("react").RefAttributes<HTMLButtonElement>>, any, {}, never>;
|
|
31
34
|
export declare const StyledInputGroup: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
@@ -310,6 +310,7 @@ declare const StyledButton: import("styled-components").StyledComponent<import("
|
|
|
310
310
|
iconSlot?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
|
311
311
|
dropdown?: boolean | undefined;
|
|
312
312
|
loading?: boolean | undefined;
|
|
313
|
+
contentStyles?: import("react").CSSProperties | undefined;
|
|
313
314
|
} & import("react").RefAttributes<HTMLButtonElement>>, any, {
|
|
314
315
|
hasError?: boolean | undefined;
|
|
315
316
|
}, never>;
|