indicator-ui 0.0.134 → 0.0.135

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,4 +1,4 @@
1
1
  import { FORM_BUILDER_SCHEMA } from "../schemes";
2
2
  import { AdditionPropsType } from "../types";
3
- declare const formBuilder: (schema: FORM_BUILDER_SCHEMA, additionProps: AdditionPropsType) => import("react").ReactNode[];
3
+ declare const formBuilder: (schema: FORM_BUILDER_SCHEMA, additionProps: AdditionPropsType) => (string | number | bigint | boolean | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<import("react").ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<import("react").ReactNode>>)[];
4
4
  export default formBuilder;
@@ -1,9 +1,4 @@
1
1
  import { SelectFieldOptionsItemType } from './SelectFieldTypes';
2
- export type SelectFieldOptionsItemClassNameType = {
3
- selectFieldOptionsItem?: string;
4
- label?: string;
5
- active?: string;
6
- };
7
2
  export type SelectFieldOptionsOwnerItemPropsType = {
8
3
  active?: boolean;
9
4
  onClick?: () => void;
@@ -12,5 +7,4 @@ export type SelectFieldOptionsItemPropsType = {
12
7
  option: SelectFieldOptionsItemType;
13
8
  active?: boolean;
14
9
  onClick?: () => void;
15
- className?: SelectFieldOptionsItemClassNameType;
16
10
  };
@@ -1,15 +1,10 @@
1
1
  import { SelectFieldOptionsType, SelectFieldValueType } from './SelectFieldTypes';
2
- import { SelectFieldOptionsItemClassNameType } from "./SelectFieldOptionsItemTypes";
3
2
  import React from "react";
4
- export type SelectModalWindowClassNameType = SelectFieldOptionsItemClassNameType & {
5
- selectModalWindow?: string;
6
- };
7
3
  export type SelectModalWindowPropsType = {
8
4
  value: SelectFieldValueType;
9
5
  onChange: (value: any[]) => void;
10
6
  options: SelectFieldOptionsType;
11
7
  onScrollToBottom?: () => void;
12
8
  afterElement?: React.ReactNode;
13
- className?: SelectModalWindowClassNameType;
14
9
  show?: boolean;
15
10
  };
@@ -1,3 +1,3 @@
1
1
  import React from "react";
2
2
  import { SelectFieldOptionsItemPropsType } from "../types";
3
- export default function SelectFieldOptionsItem({ option, active, onClick, className }: SelectFieldOptionsItemPropsType): React.JSX.Element;
3
+ export default function SelectFieldOptionsItem({ option, active, onClick }: SelectFieldOptionsItemPropsType): React.JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "indicator-ui",
3
- "version": "0.0.134",
3
+ "version": "0.0.135",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/types/src/index.d.ts",
6
6
  "style": "dist/index.css",