zebpay-ui 0.0.118 → 0.0.120
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/Input/typings.d.ts +1 -0
- package/dist/cjs/components/InputDropDown/typings.d.ts +2 -0
- package/dist/cjs/components/Select/styles.d.ts +8 -7
- package/dist/cjs/components/Select/typings.d.ts +2 -0
- package/dist/cjs/index.js +27 -27
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/components/Input/typings.d.ts +1 -0
- package/dist/esm/components/InputDropDown/typings.d.ts +2 -0
- package/dist/esm/components/Select/styles.d.ts +8 -7
- package/dist/esm/components/Select/typings.d.ts +2 -0
- package/dist/esm/index.js +27 -27
- package/dist/esm/index.js.map +1 -1
- package/dist/icons/icons.css +10 -7
- package/dist/icons/icons.eot +0 -0
- package/dist/icons/icons.html +9 -0
- package/dist/icons/icons.json +5 -4
- package/dist/icons/icons.ts +8 -4
- package/dist/icons/icons.woff +0 -0
- package/dist/icons/icons.woff2 +0 -0
- package/package.json +1 -1
|
@@ -1,11 +1,12 @@
|
|
|
1
|
+
import { Theme } from "../../globalTypings";
|
|
1
2
|
export declare const wrapper: import("@emotion/react").SerializedStyles;
|
|
2
|
-
export declare const button: import("@emotion/react").SerializedStyles;
|
|
3
|
-
export declare const active: import("@emotion/react").SerializedStyles;
|
|
3
|
+
export declare const button: (theme?: Theme) => import("@emotion/react").SerializedStyles;
|
|
4
|
+
export declare const active: (theme?: Theme) => import("@emotion/react").SerializedStyles;
|
|
4
5
|
export declare const selectOverlay: import("@emotion/react").SerializedStyles;
|
|
5
|
-
export declare const optionsWrapper: (shiftLeft?: boolean) => import("@emotion/react").SerializedStyles;
|
|
6
|
-
export declare const options: import("@emotion/react").SerializedStyles;
|
|
6
|
+
export declare const optionsWrapper: (shiftLeft?: boolean, theme?: Theme) => import("@emotion/react").SerializedStyles;
|
|
7
|
+
export declare const options: (theme?: Theme) => import("@emotion/react").SerializedStyles;
|
|
7
8
|
export declare const optionItem: import("@emotion/react").SerializedStyles;
|
|
8
|
-
export declare const optionItems: import("@emotion/react").SerializedStyles;
|
|
9
|
+
export declare const optionItems: (theme?: Theme) => import("@emotion/react").SerializedStyles;
|
|
9
10
|
export declare const empty: import("@emotion/react").SerializedStyles;
|
|
10
|
-
export declare const optionSecondName: import("@emotion/react").SerializedStyles;
|
|
11
|
-
export declare const selected: import("@emotion/react").SerializedStyles;
|
|
11
|
+
export declare const optionSecondName: (theme?: Theme) => import("@emotion/react").SerializedStyles;
|
|
12
|
+
export declare const selected: (theme?: Theme) => import("@emotion/react").SerializedStyles;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { SerializedStyles } from "@emotion/react";
|
|
2
2
|
import React from "react";
|
|
3
|
+
import { Theme } from "../../globalTypings";
|
|
3
4
|
export interface OptionsProps<T> {
|
|
4
5
|
label: React.JSX.Element | string;
|
|
5
6
|
displayLabel?: React.JSX.Element | string;
|
|
@@ -8,6 +9,7 @@ export interface OptionsProps<T> {
|
|
|
8
9
|
export interface SelectProps<T> {
|
|
9
10
|
placeholder: string;
|
|
10
11
|
style?: SerializedStyles;
|
|
12
|
+
mode?: Theme;
|
|
11
13
|
search?: {
|
|
12
14
|
placeholder: string;
|
|
13
15
|
value: string;
|