zebpay-ui 0.0.36 → 0.0.38
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/CircularLoader/style.d.ts +2 -1
- package/dist/cjs/components/CircularLoader/typings.d.ts +2 -0
- package/dist/cjs/components/RadioGroup/index.d.ts +5 -0
- package/dist/cjs/components/RadioGroup/styles.d.ts +5 -0
- package/dist/cjs/components/RadioGroup/typings.d.ts +18 -0
- package/dist/cjs/components/Switch/index.d.ts +10 -0
- package/dist/cjs/components/Switch/styles.d.ts +9 -0
- package/dist/cjs/components/index.d.ts +3 -1
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/components/CircularLoader/style.d.ts +2 -1
- package/dist/esm/components/CircularLoader/typings.d.ts +2 -0
- package/dist/esm/components/RadioGroup/index.d.ts +5 -0
- package/dist/esm/components/RadioGroup/styles.d.ts +5 -0
- package/dist/esm/components/RadioGroup/typings.d.ts +18 -0
- package/dist/esm/components/Switch/index.d.ts +10 -0
- package/dist/esm/components/Switch/styles.d.ts +9 -0
- package/dist/esm/components/index.d.ts +3 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
export declare const rotateAnimation: import("@emotion/react").Keyframes;
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const circle: import("@emotion/utils").SerializedStyles;
|
|
3
|
+
export declare const rotation: (interval: number) => import("@emotion/utils").SerializedStyles;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export declare const container: import("@emotion/utils").SerializedStyles;
|
|
2
|
+
export declare const input: import("@emotion/utils").SerializedStyles;
|
|
3
|
+
export declare const checkmark: import("@emotion/utils").SerializedStyles;
|
|
4
|
+
export declare const radioGroup: import("@emotion/utils").SerializedStyles;
|
|
5
|
+
export declare const marginRight: import("@emotion/utils").SerializedStyles;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { SerializedStyles } from "@emotion/react";
|
|
2
|
+
import { ReactText } from "react";
|
|
3
|
+
export interface OptionProps {
|
|
4
|
+
name: string;
|
|
5
|
+
value?: ReactText;
|
|
6
|
+
label?: string | JSX.Element;
|
|
7
|
+
id: string;
|
|
8
|
+
}
|
|
9
|
+
export interface RadioGroupProps {
|
|
10
|
+
defaultSelected?: string;
|
|
11
|
+
onChange: (args: {
|
|
12
|
+
selected: boolean;
|
|
13
|
+
value: ReactText;
|
|
14
|
+
selectedId: string;
|
|
15
|
+
}) => void;
|
|
16
|
+
style?: SerializedStyles;
|
|
17
|
+
options: Array<OptionProps>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare const switchContainer: import("@emotion/utils").SerializedStyles;
|
|
2
|
+
export declare const regularSlider: import("@emotion/utils").SerializedStyles;
|
|
3
|
+
export declare const regularCheckedSlider: import("@emotion/utils").SerializedStyles;
|
|
4
|
+
export declare const switchBar: import("@emotion/utils").SerializedStyles;
|
|
5
|
+
export declare const checkedSlider: import("@emotion/utils").SerializedStyles;
|
|
6
|
+
export declare const slider: import("@emotion/utils").SerializedStyles;
|
|
7
|
+
export declare const round: import("@emotion/utils").SerializedStyles;
|
|
8
|
+
export declare const switchLabel: import("@emotion/utils").SerializedStyles;
|
|
9
|
+
export declare const labelHidden: import("@emotion/utils").SerializedStyles;
|
|
@@ -11,6 +11,7 @@ import InputDropDown from "./InputDropDown";
|
|
|
11
11
|
import PinInput from "./PinInput";
|
|
12
12
|
import Popper from "./Popper";
|
|
13
13
|
import Radio from "./Radio";
|
|
14
|
+
import RadioGroup from "./RadioGroup";
|
|
14
15
|
import SearchInput from "./SearchInput";
|
|
15
16
|
import Select from "./Select";
|
|
16
17
|
import Shimmer from "./Shimmer";
|
|
@@ -19,4 +20,5 @@ import Tabs from "./Tabs";
|
|
|
19
20
|
import Tags from "./Tags";
|
|
20
21
|
import { Toast, generateToast } from "./Toast";
|
|
21
22
|
import Tooltip from "./Tooltip";
|
|
22
|
-
|
|
23
|
+
import Switch from "./Switch";
|
|
24
|
+
export { Accordion, Button, Card, Checkbox, CircularLoader, CalendarPicker, Icon, IconButton, Input, InputDropDown, PinInput, Popper, Radio, RadioGroup, Select, Shimmer, SearchInput, SidePanel, Tags, Tabs, Toast, Tooltip, Switch, generateToast, };
|