zebpay-ui 0.0.50 → 0.0.52
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/components/AvatarGroup/styles.d.ts +2 -1
- package/dist/cjs/components/AvatarGroup/typings.d.ts +5 -0
- package/dist/cjs/components/Input/styles.d.ts +1 -1
- package/dist/cjs/components/Tabs/styles.d.ts +1 -0
- package/dist/cjs/components/Tabs/typings.d.ts +6 -0
- package/dist/cjs/components/Tooltip/styles.d.ts +1 -1
- package/dist/cjs/components/Tooltip/typings.d.ts +1 -0
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/styles/colors.d.ts +7 -0
- package/dist/esm/components/AvatarGroup/styles.d.ts +2 -1
- package/dist/esm/components/AvatarGroup/typings.d.ts +5 -0
- package/dist/esm/components/Input/styles.d.ts +1 -1
- package/dist/esm/components/Tabs/styles.d.ts +1 -0
- package/dist/esm/components/Tabs/typings.d.ts +6 -0
- package/dist/esm/components/Tooltip/styles.d.ts +1 -1
- package/dist/esm/components/Tooltip/typings.d.ts +1 -0
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/styles/colors.d.ts +7 -0
- package/dist/icons/icons.css +183 -177
- package/dist/icons/icons.eot +0 -0
- package/dist/icons/icons.html +18 -0
- package/dist/icons/icons.json +176 -174
- package/dist/icons/icons.ts +182 -174
- package/dist/icons/icons.woff +0 -0
- package/dist/icons/icons.woff2 +0 -0
- package/package.json +3 -3
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import { AnimationType } from "./typings";
|
|
2
|
+
export declare const avatarGroup: (width: number, animate: boolean, animationType: AnimationType) => import("@emotion/utils").SerializedStyles;
|
|
@@ -6,6 +6,10 @@ export interface AvatarGroupContentProps {
|
|
|
6
6
|
alt: string;
|
|
7
7
|
id: number;
|
|
8
8
|
}
|
|
9
|
+
export declare enum AnimationType {
|
|
10
|
+
LEFT_TO_RIGHT = "LEFT_TO_RIGHT",
|
|
11
|
+
RIGHT_TO_LEFT = "RIGHT_TO_LEFT"
|
|
12
|
+
}
|
|
9
13
|
export interface AvatarGroupProps {
|
|
10
14
|
onClick?: () => void;
|
|
11
15
|
disabled?: boolean;
|
|
@@ -17,4 +21,5 @@ export interface AvatarGroupProps {
|
|
|
17
21
|
size?: AvatareSize;
|
|
18
22
|
content: Array<AvatarGroupContentProps>;
|
|
19
23
|
animate?: boolean;
|
|
24
|
+
animationType?: AnimationType;
|
|
20
25
|
}
|
|
@@ -2,7 +2,7 @@ export declare const invalidInputGroup: import("@emotion/utils").SerializedStyle
|
|
|
2
2
|
export declare const formLabel: (theme: "dark" | "light") => import("@emotion/utils").SerializedStyles;
|
|
3
3
|
export declare const activeFormLabel: (theme: "dark" | "light") => import("@emotion/utils").SerializedStyles;
|
|
4
4
|
export declare const inputGroup: import("@emotion/utils").SerializedStyles;
|
|
5
|
-
export declare const focusedInputGroup: import("@emotion/utils").SerializedStyles;
|
|
5
|
+
export declare const focusedInputGroup: (theme: "dark" | "light") => import("@emotion/utils").SerializedStyles;
|
|
6
6
|
export declare const formControl: (theme: "dark" | "light") => import("@emotion/utils").SerializedStyles;
|
|
7
7
|
export declare const fieldFullRounded: import("@emotion/utils").SerializedStyles;
|
|
8
8
|
export declare const fieldNoRounded: import("@emotion/utils").SerializedStyles;
|
|
@@ -10,3 +10,4 @@ export declare const secondaryActive: (theme: Theme) => import("@emotion/utils")
|
|
|
10
10
|
export declare const tertiary: import("@emotion/utils").SerializedStyles;
|
|
11
11
|
export declare const tertiaryActive: import("@emotion/utils").SerializedStyles;
|
|
12
12
|
export declare const backgroundButton: (color: string) => import("@emotion/utils").SerializedStyles;
|
|
13
|
+
export declare const borderRadius: import("@emotion/utils").SerializedStyles;
|
|
@@ -8,6 +8,10 @@ export interface TabItem {
|
|
|
8
8
|
style?: SerializedStyles;
|
|
9
9
|
isCustomActiveState?: boolean;
|
|
10
10
|
}
|
|
11
|
+
export interface LoadingParam {
|
|
12
|
+
width: number;
|
|
13
|
+
height: number;
|
|
14
|
+
}
|
|
11
15
|
export interface TabProps {
|
|
12
16
|
selectedTab: string;
|
|
13
17
|
tabsList: TabItem[];
|
|
@@ -18,4 +22,6 @@ export interface TabProps {
|
|
|
18
22
|
style?: SerializedStyles;
|
|
19
23
|
disabled?: boolean;
|
|
20
24
|
theme?: Theme;
|
|
25
|
+
loading?: boolean;
|
|
26
|
+
loadingParam?: LoadingParam;
|
|
21
27
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare const container: import("@emotion/utils").SerializedStyles;
|
|
2
|
-
export declare const content: import("@emotion/utils").SerializedStyles;
|
|
2
|
+
export declare const content: (isStroke?: boolean | undefined) => import("@emotion/utils").SerializedStyles;
|