zebpay-ui 0.0.49 → 0.0.51
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/index.d.ts +0 -1
- package/dist/cjs/components/AvatarGroup/styles.d.ts +1 -1
- package/dist/cjs/components/AvatarGroup/typings.d.ts +1 -0
- package/dist/cjs/components/SidePanel/index.d.ts +1 -0
- package/dist/cjs/components/Tags/index.d.ts +3 -0
- package/dist/cjs/components/Tags/style.d.ts +3 -1
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/styles/colors.d.ts +1 -1
- package/dist/esm/components/AvatarGroup/index.d.ts +0 -1
- package/dist/esm/components/AvatarGroup/styles.d.ts +1 -1
- package/dist/esm/components/AvatarGroup/typings.d.ts +1 -0
- package/dist/esm/components/SidePanel/index.d.ts +1 -0
- package/dist/esm/components/Tags/index.d.ts +3 -0
- package/dist/esm/components/Tags/style.d.ts +3 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/styles/colors.d.ts +1 -1
- package/dist/icons/icons.css +3 -3
- package/dist/icons/icons.eot +0 -0
- package/dist/icons/icons.woff +0 -0
- package/dist/icons/icons.woff2 +0 -0
- package/package.json +4 -2
|
@@ -28,7 +28,7 @@ declare const colors: {
|
|
|
28
28
|
Zeb_Transparent_Red: string;
|
|
29
29
|
Zeb_Transparent_Yellow_01: string;
|
|
30
30
|
Zeb_Transparent_Grey: string;
|
|
31
|
-
|
|
31
|
+
Zeb_Transparent_Blue: string;
|
|
32
32
|
Zeb_BG_Blue: string;
|
|
33
33
|
Zeb_BG_Light_Blue: string;
|
|
34
34
|
Zeb_BG_Green: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const avatarGroup: import("@emotion/utils").SerializedStyles;
|
|
1
|
+
export declare const avatarGroup: (width: number, animate: boolean) => import("@emotion/utils").SerializedStyles;
|
|
@@ -2,10 +2,13 @@
|
|
|
2
2
|
import { SerializedStyles } from "@emotion/react";
|
|
3
3
|
import React from "react";
|
|
4
4
|
export declare type TagType = "success" | "warning" | "info" | "error" | "default";
|
|
5
|
+
export declare type TagSize = "small" | "medium" | "large";
|
|
5
6
|
export interface TagProps {
|
|
6
7
|
type: TagType;
|
|
7
8
|
style?: SerializedStyles;
|
|
8
9
|
isStroke?: boolean;
|
|
10
|
+
size?: TagSize;
|
|
11
|
+
animate?: boolean;
|
|
9
12
|
}
|
|
10
13
|
declare const Tags: React.FC<TagProps>;
|
|
11
14
|
export default Tags;
|
|
@@ -1 +1,3 @@
|
|
|
1
|
-
|
|
1
|
+
import { TagSize } from ".";
|
|
2
|
+
export declare const tagWrapper: (animate: boolean) => import("@emotion/utils").SerializedStyles;
|
|
3
|
+
export declare const tagsSize: (size: TagSize) => import("@emotion/utils").SerializedStyles;
|