@prosperitainova/mirage-ui 1.1.15 → 1.1.16

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.
@@ -13,6 +13,8 @@ export type InputProps = InputHTMLAttributes<HTMLInputElement> & TextareaHTMLAtt
13
13
  maskChar?: string | null;
14
14
  ref?: any;
15
15
  onFocus?: boolean;
16
+ min?: string;
17
+ max?: string;
16
18
  };
17
19
  declare const Input: (props: InputProps) => JSX.Element;
18
20
  export default Input;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export type RadioProps = {
3
2
  label?: string;
4
3
  title?: string;
@@ -5,6 +5,7 @@ export type OptionsProps = {
5
5
  description: string;
6
6
  value: string;
7
7
  setIndex?: (event: React.MouseEvent<HTMLDivElement>) => void;
8
+ disabled?: boolean;
8
9
  };
9
10
  export type RadioGroupProps = HTMLAttributes<HTMLDivElement> & {
10
11
  display: "row" | "column";
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { Story } from "@storybook/react";
3
2
  import { RadioGroupProps } from "./RadioGroup";
4
3
  declare const RadioGroupStories: {