indicator-ui 1.1.50 → 1.1.52

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.
@@ -10,7 +10,7 @@ type OptionsManagementProps<D, M extends boolean> = Parameters<typeof useOptions
10
10
  type SearchingProps<D, M extends boolean> = Parameters<typeof useSearching<D, M>>[number];
11
11
  type PaginationProps<D, M extends boolean> = Parameters<typeof usePagination<D, M>>[number];
12
12
  type ComponentProps<D, M extends boolean> = Parameters<typeof useComponentProps<D, M>>[number];
13
- type PropsType<D, M extends boolean> = Pick<React.ComponentProps<typeof FormField>, 'button' | 'help' | 'textSupport' | 'icon' | 'userPic'> & FieldPropsType<ValueType<D, M>> & Pick<OptionsManagementProps<D, M>, 'options'> & Pick<SearchingProps<D, M>, 'search'> & Pick<PaginationProps<D, M>, 'paginate'> & Pick<ComponentProps<D, M>, 'maxCount'> & {
13
+ type PropsType<D, M extends boolean> = Pick<React.ComponentProps<typeof FormField>, 'button' | 'help' | 'textSupport' | 'icon' | 'userPic' | 'placeholder'> & FieldPropsType<ValueType<D, M>> & Pick<OptionsManagementProps<D, M>, 'options'> & Pick<SearchingProps<D, M>, 'search'> & Pick<PaginationProps<D, M>, 'paginate'> & Pick<ComponentProps<D, M>, 'maxCount'> & {
14
14
  multiple?: M;
15
15
  disabled?: boolean;
16
16
  };
@@ -31,6 +31,7 @@ export declare function useSelectField<D, M extends boolean = false>(props: Prop
31
31
  formFieldProps: {
32
32
  button?: React.ReactNode;
33
33
  icon?: React.ReactNode;
34
+ placeholder?: string | undefined | undefined;
34
35
  textSupport?: React.ReactNode;
35
36
  userPic?: React.ReactNode;
36
37
  help?: React.ReactNode;
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "react-components",
12
12
  "ui-kit"
13
13
  ],
14
- "version": "1.1.50",
14
+ "version": "1.1.52",
15
15
  "exports": {
16
16
  ".": {
17
17
  "types": "./dist/types/index.d.ts",