indicator-ui 0.0.104 → 0.0.106

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.
@@ -86,5 +86,4 @@ export type FlexFieldPropsType = {
86
86
  * Событие нажатия на кнопку button.
87
87
  */
88
88
  onButtonClick?: () => void;
89
- className?: FlexFieldClassNameType;
90
89
  };
@@ -21,5 +21,4 @@ export type InputFieldPropsType = Omit<(({
21
21
  onChange?: (value: any) => void;
22
22
  type?: InputFieldTypes;
23
23
  offWrapper?: boolean;
24
- className?: InputFieldClassNameType;
25
24
  };
@@ -1,3 +1,3 @@
1
1
  import React from "react";
2
2
  import { InputFieldPropsType } from "../types";
3
- export default function InputField({ type, offWrapper, className, ...props }: InputFieldPropsType): React.JSX.Element;
3
+ export default function InputField({ type, offWrapper, ...props }: InputFieldPropsType): React.JSX.Element;
@@ -25,5 +25,4 @@ export type InputFieldWrapperPropsType = {
25
25
  helperLink?: InputFieldWrapperHelperLinkType;
26
26
  isError?: boolean;
27
27
  viewRequired?: boolean;
28
- className?: InputFieldWrapperClassNameType;
29
28
  };
@@ -1,3 +1,3 @@
1
1
  import React from "react";
2
2
  import { InputFieldWrapperPropsType } from '../types';
3
- export default function InputFieldWrapper({ children, labelText, hintText, isErrorHintText, helperLink, isError, viewRequired, className, }: InputFieldWrapperPropsType): React.JSX.Element;
3
+ export default function InputFieldWrapper({ children, labelText, hintText, isErrorHintText, helperLink, isError, viewRequired, }: InputFieldWrapperPropsType): React.JSX.Element;
@@ -15,5 +15,4 @@ export type RadioFieldItemPropsType = {
15
15
  onClick?: () => void;
16
16
  active?: boolean;
17
17
  disabled?: boolean;
18
- className?: RadioFieldItemClassNameType;
19
18
  };
@@ -17,5 +17,4 @@ export type RadioFieldPropsType = {
17
17
  required?: boolean;
18
18
  multiple?: boolean;
19
19
  disabled?: boolean;
20
- className?: RadioFieldClassNameType;
21
20
  };
@@ -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, className, }: RadioFieldPropsType): React.JSX.Element;
3
+ export default function RadioField({ value, onChange, options, required, multiple, disabled, }: RadioFieldPropsType): React.JSX.Element;
@@ -1,3 +1,3 @@
1
1
  import React from "react";
2
2
  import { RadioFieldItemPropsType } from "../types";
3
- export default function RadioFieldItem({ option, onClick, active, disabled, className, }: RadioFieldItemPropsType): React.JSX.Element;
3
+ export default function RadioFieldItem({ option, onClick, active, disabled, }: RadioFieldItemPropsType): React.JSX.Element;
@@ -54,5 +54,4 @@ export type SelectFieldPropsType = Omit<FlexFieldPropsType, 'value' | 'onChange'
54
54
  /** Элемент **(ReactNode)** в конце окна выбора **Select**. */
55
55
  selectModalWindowAfterElement?: React.ReactNode;
56
56
  onBottomScroll?: () => void;
57
- className?: SelectFieldClassNameType;
58
57
  };
@@ -7,7 +7,6 @@ export type SwitcherFieldPropsType = {
7
7
  value?: boolean;
8
8
  onChange?: (value: any) => void;
9
9
  disabled?: boolean;
10
- className?: SwitcherFieldClassNameType;
11
10
  switcherWrapper?: ReactElement<any>;
12
11
  children?: ReactNode;
13
12
  };
@@ -1,3 +1,3 @@
1
1
  import React from 'react';
2
2
  import { SwitcherFieldPropsType } from "../types";
3
- export default function SwitcherField({ value, onChange, children, disabled, switcherWrapper, className }: SwitcherFieldPropsType): React.JSX.Element;
3
+ export default function SwitcherField({ value, onChange, children, disabled, switcherWrapper, }: SwitcherFieldPropsType): React.JSX.Element;
@@ -16,5 +16,4 @@ export type TextareaFieldPropsType = {
16
16
  * */
17
17
  offFocus?: boolean;
18
18
  additionStyles?: string | string[];
19
- className?: TextareaFieldClassNameType;
20
19
  };
@@ -1,3 +1,3 @@
1
1
  import React from "react";
2
2
  import { TextareaFieldPropsType } from "../types";
3
- export default function TextareaField({ value, name, placeholder, onChange, required, disabled, isError, offFocus, additionStyles, className, }: TextareaFieldPropsType): React.JSX.Element;
3
+ export default function TextareaField({ value, name, placeholder, onChange, required, disabled, isError, offFocus, additionStyles, }: TextareaFieldPropsType): React.JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "indicator-ui",
3
- "version": "0.0.104",
3
+ "version": "0.0.106",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/types/src/index.d.ts",
6
6
  "style": "dist/index.css",