@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: {
package/dist/index.d.ts CHANGED
@@ -84,6 +84,8 @@ type InputProps = InputHTMLAttributes<HTMLInputElement> & TextareaHTMLAttributes
84
84
  maskChar?: string | null;
85
85
  ref?: any;
86
86
  onFocus?: boolean;
87
+ min?: string;
88
+ max?: string;
87
89
  };
88
90
  declare const Input: (props: InputProps) => JSX.Element;
89
91
 
@@ -152,6 +154,7 @@ type OptionsProps = {
152
154
  description: string;
153
155
  value: string;
154
156
  setIndex?: (event: React.MouseEvent<HTMLDivElement>) => void;
157
+ disabled?: boolean;
155
158
  };
156
159
  type RadioGroupProps = HTMLAttributes<HTMLDivElement> & {
157
160
  display: "row" | "column";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prosperitainova/mirage-ui",
3
- "version": "1.1.15",
3
+ "version": "1.1.16",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "publishConfig": {