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;
|
package/dist/icons/icons.css
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: "icons";
|
|
3
|
-
src: url("./icons.eot?
|
|
4
|
-
url("./icons.woff2?
|
|
5
|
-
url("./icons.woff?
|
|
3
|
+
src: url("./icons.eot?d4a27f257b68a20768744966c6b71eb0#iefix") format("embedded-opentype"),
|
|
4
|
+
url("./icons.woff2?d4a27f257b68a20768744966c6b71eb0") format("woff2"),
|
|
5
|
+
url("./icons.woff?d4a27f257b68a20768744966c6b71eb0") format("woff");
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
i[class^="icon-"]:before, i[class*=" icon-"]:before {
|
package/dist/icons/icons.eot
CHANGED
|
Binary file
|
package/dist/icons/icons.woff
CHANGED
|
Binary file
|
package/dist/icons/icons.woff2
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zebpay-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.51",
|
|
4
4
|
"description": "A lightweight component and utilities library Design System created using React",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -63,7 +63,9 @@
|
|
|
63
63
|
"typescript": "^4.5.5"
|
|
64
64
|
},
|
|
65
65
|
"peerDependencies": {
|
|
66
|
-
"@emotion/react": "^11.9.3"
|
|
66
|
+
"@emotion/react": "^11.9.3",
|
|
67
|
+
"react": "^17.0.2",
|
|
68
|
+
"react-dom": "^17.0.2"
|
|
67
69
|
},
|
|
68
70
|
"dependencies": {
|
|
69
71
|
"@emotion/react": "^11.9.3",
|