@mexi/uikit 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SvgProps } from "../types";
3
+ declare const Icon: React.FC<SvgProps>;
4
+ export default Icon;
@@ -142,5 +142,6 @@ export { default as TrophyIcon } from "./Icons/Trophy";
142
142
  export { default as TrophyFillIcon } from "./Icons/TrophyFill";
143
143
  export { default as ExpandIcon } from "./Icons/Expand";
144
144
  export { default as ShrinkIcon } from "./Icons/Shrink";
145
+ export { default as RarityDetailIcon } from "./Icons/RarityDetail";
145
146
  export { default as Svg } from "./Svg";
146
147
  export type { SvgProps } from "./types";
@@ -0,0 +1,9 @@
1
+ import { HandleProps, InputProps, StyleToggleProps } from "./types";
2
+ export declare const Handle: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, HandleProps, never>;
3
+ export declare const Input: import("styled-components").StyledComponent<"input", import("styled-components").DefaultTheme, InputProps, never>;
4
+ export declare const ValueWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
5
+ export declare const ValueItem: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, import("../Text").TextProps & {
6
+ $color: string;
7
+ }, never>;
8
+ declare const StyledToggleMexiz: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, StyleToggleProps, never>;
9
+ export default StyledToggleMexiz;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ToggleProps } from "./types";
3
+ declare const ToggleMexiz: React.FC<ToggleProps>;
4
+ export default ToggleMexiz;
@@ -1,2 +1,3 @@
1
1
  export { default as Toggle } from "./Toggle";
2
+ export { default as ToggleMexiz } from "./ToggleMexiz";
2
3
  export type { ToggleProps, Scales as ToggleScales } from "./types";
@@ -13,9 +13,12 @@ export interface ToggleProps extends InputHTMLAttributes<HTMLInputElement> {
13
13
  defaultColor?: keyof Colors;
14
14
  startIcon?: (isActive?: boolean) => ReactNode;
15
15
  endIcon?: (isActive?: boolean) => ReactNode;
16
+ offValue?: string;
17
+ onValue?: string;
16
18
  }
17
19
  export interface HandleProps {
18
20
  scale: Scales;
21
+ $checked?: boolean;
19
22
  }
20
23
  export interface InputProps {
21
24
  scale: Scales;