zebpay-ui 0.0.23 → 0.0.25
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/InputDropDown/styles.d.ts +1 -0
- package/dist/cjs/components/Popper/typings.d.ts +1 -1
- package/dist/cjs/components/Select/styles.d.ts +1 -1
- package/dist/cjs/components/Tooltip/index.d.ts +2 -1
- package/dist/cjs/components/Tooltip/typings.d.ts +2 -1
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/styles/colors.d.ts +1 -0
- package/dist/esm/components/InputDropDown/styles.d.ts +1 -0
- package/dist/esm/components/Popper/typings.d.ts +1 -1
- package/dist/esm/components/Select/styles.d.ts +1 -1
- package/dist/esm/components/Tooltip/index.d.ts +2 -1
- package/dist/esm/components/Tooltip/typings.d.ts +2 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/styles/colors.d.ts +1 -0
- package/dist/icons/icons.css +230 -179
- package/dist/icons/icons.eot +0 -0
- package/dist/icons/icons.html +153 -0
- package/dist/icons/icons.json +193 -176
- package/dist/icons/icons.ts +244 -176
- package/dist/icons/icons.woff +0 -0
- package/dist/icons/icons.woff2 +0 -0
- package/package.json +2 -1
|
@@ -6,3 +6,4 @@ export declare const selectedElement: import("@emotion/utils").SerializedStyles;
|
|
|
6
6
|
export declare const options: import("@emotion/utils").SerializedStyles;
|
|
7
7
|
export declare const optionItem: import("@emotion/utils").SerializedStyles;
|
|
8
8
|
export declare const optionsWrapper: import("@emotion/utils").SerializedStyles;
|
|
9
|
+
export declare const displayComponent: import("@emotion/utils").SerializedStyles;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SerializedStyles } from "@emotion/react";
|
|
2
2
|
import { ReactElement } from "react";
|
|
3
|
-
export declare type Position = "top-
|
|
3
|
+
export declare type Position = "top-start" | "top" | "top-end" | "right-start" | "right" | "right-end" | "bottom-start" | "bottom" | "bottom-end" | "left-start" | "left" | "left-end";
|
|
4
4
|
export interface PopperProps {
|
|
5
5
|
content: ReactElement;
|
|
6
6
|
onClose?: () => void;
|
|
@@ -2,7 +2,7 @@ export declare const wrapper: import("@emotion/utils").SerializedStyles;
|
|
|
2
2
|
export declare const button: import("@emotion/utils").SerializedStyles;
|
|
3
3
|
export declare const active: import("@emotion/utils").SerializedStyles;
|
|
4
4
|
export declare const selectOverlay: import("@emotion/utils").SerializedStyles;
|
|
5
|
-
export declare const optionsWrapper: import("@emotion/utils").SerializedStyles;
|
|
5
|
+
export declare const optionsWrapper: (width?: string | undefined) => import("@emotion/utils").SerializedStyles;
|
|
6
6
|
export declare const options: import("@emotion/utils").SerializedStyles;
|
|
7
7
|
export declare const optionItem: import("@emotion/utils").SerializedStyles;
|
|
8
8
|
export declare const optionItems: import("@emotion/utils").SerializedStyles;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { SerializedStyles } from "@emotion/react";
|
|
3
|
-
export declare type Position = "top-
|
|
3
|
+
export declare type Position = "top-start" | "top" | "top-end" | "right-start" | "right" | "right-end" | "bottom-start" | "bottom" | "bottom-end" | "left-start" | "left" | "left-end";
|
|
4
4
|
export interface TooltipProps {
|
|
5
5
|
content: JSX.Element | string;
|
|
6
6
|
disabled?: boolean;
|
|
7
7
|
style?: SerializedStyles;
|
|
8
8
|
position?: Position;
|
|
9
|
+
contentStyle?: SerializedStyles;
|
|
9
10
|
}
|