indicator-ui 0.0.149 → 0.0.150

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.
@@ -1,10 +1,4 @@
1
1
  import { RadioFieldOptionsItemType } from './RadioFieldTypes';
2
- export type RadioFieldItemClassNameType = {
3
- radioFieldItem?: string;
4
- checkbox?: string;
5
- label?: string;
6
- active?: string;
7
- };
8
2
  export type RadioFieldOwnerItemPropsType = {
9
3
  onClick?: () => void;
10
4
  active?: boolean;
@@ -15,4 +9,5 @@ export type RadioFieldItemPropsType = {
15
9
  onClick?: () => void;
16
10
  active?: boolean;
17
11
  disabled?: boolean;
12
+ width?: 'hug' | 'fill';
18
13
  };
@@ -1,3 +1,3 @@
1
1
  import React from "react";
2
2
  import { RadioFieldPropsType } from "../types";
3
- export default function RadioField({ value, onChange, options, required, multiple, disabled, width, isError, }: RadioFieldPropsType): React.JSX.Element;
3
+ export default function RadioField({ value, onChange, options, required, multiple, disabled, width, }: RadioFieldPropsType): React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ import { RadioFieldItemPropsType } from "../types";
3
+ export default function RadioFieldItem({ option, onClick, active, disabled, width, }: RadioFieldItemPropsType): React.JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "indicator-ui",
3
- "version": "0.0.149",
3
+ "version": "0.0.150",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/types/src/index.d.ts",
6
6
  "style": "dist/index.css",