@guillotinaweb/react-gmi 0.24.0 → 0.25.0

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,6 +1,7 @@
1
- export function RenderField({ value, Widget }: {
1
+ export function RenderField({ value, Widget, schema }: {
2
2
  value: any;
3
3
  Widget: any;
4
+ schema: any;
4
5
  }): any;
5
6
  export function RenderFieldComponent({ schema, field, val, modifyContent }: {
6
7
  schema: any;
@@ -8,3 +9,13 @@ export function RenderFieldComponent({ schema, field, val, modifyContent }: {
8
9
  val: any;
9
10
  modifyContent: any;
10
11
  }): JSX.Element;
12
+ export function SearchRenderField({ schema, value, modifyContent }: {
13
+ schema: any;
14
+ value: any;
15
+ modifyContent: any;
16
+ }): JSX.Element;
17
+ export function VocabularyRenderField({ schema, value, modifyContent }: {
18
+ schema: any;
19
+ value: any;
20
+ modifyContent: any;
21
+ }): JSX.Element;
@@ -14,6 +14,7 @@ export * from "./input/dropdown";
14
14
  export * from "./fields/editableField";
15
15
  export * from "./fields/renderField";
16
16
  export * from "./fields/downloadField";
17
+ export * from "./fields/editComponent";
17
18
  export * from "./behaviors/iattachment";
18
19
  export * from "./behaviors/imultiattachment";
19
20
  export * from "./behaviors/iimageattachment";
@@ -1,4 +1,4 @@
1
- export function SearchInput({ onChange, error, errorZoneClassName, traversal, path, qs, queryCondition, value, btnClass, dataTestWrapper, dataTestSearchInput, dataTestItem, renderTextItemOption, }: {
1
+ export function SearchInput({ onChange, error, errorZoneClassName, traversal, path, qs, queryCondition, value, btnClass, dataTestWrapper, dataTestSearchInput, dataTestItem, renderTextItemOption, typeNameQuery, labelProperty, }: {
2
2
  onChange: any;
3
3
  error: any;
4
4
  errorZoneClassName: any;
@@ -12,14 +12,25 @@ export function SearchInput({ onChange, error, errorZoneClassName, traversal, pa
12
12
  dataTestSearchInput?: string;
13
13
  dataTestItem?: string;
14
14
  renderTextItemOption?: any;
15
+ typeNameQuery?: any;
16
+ labelProperty?: string;
15
17
  }): JSX.Element;
16
18
  export namespace SearchInput {
17
19
  namespace propTypes {
18
20
  const onChange: any;
19
21
  const value: any;
20
- const client: any;
21
22
  const path: any;
22
- const PageSize: any;
23
23
  const btnClass: any;
24
+ const error: any;
25
+ const errorZoneClassName: any;
26
+ const traversal: any;
27
+ const qs: any;
28
+ const queryCondition: any;
29
+ const dataTestWrapper: any;
30
+ const dataTestSearchInput: any;
31
+ const dataTestItem: any;
32
+ const renderTextItemOption: any;
33
+ const typeNameQuery: any;
34
+ const labelProperty: any;
24
35
  }
25
36
  }
@@ -0,0 +1,35 @@
1
+ export function SearchInputList({ onChange, error, errorZoneClassName, traversal, path, qs, queryCondition, value, btnClass, dataTestWrapper, dataTestSearchInput, dataTestItem, renderTextItemOption, typeNameQuery, labelProperty, }: {
2
+ onChange: any;
3
+ error: any;
4
+ errorZoneClassName: any;
5
+ traversal?: any;
6
+ path?: any;
7
+ qs?: any[];
8
+ queryCondition?: string;
9
+ value: any;
10
+ btnClass?: string;
11
+ dataTestWrapper?: string;
12
+ dataTestSearchInput?: string;
13
+ dataTestItem?: string;
14
+ renderTextItemOption?: any;
15
+ typeNameQuery?: any;
16
+ labelProperty?: string;
17
+ }): JSX.Element;
18
+ export namespace SearchInputList {
19
+ namespace propTypes {
20
+ const onChange: any;
21
+ const path: any;
22
+ const btnClass: any;
23
+ const dataTestWrapper: any;
24
+ const dataTestSearchInput: any;
25
+ const dataTestItem: any;
26
+ const renderTextItemOption: any;
27
+ const typeNameQuery: any;
28
+ const labelProperty: any;
29
+ const error: any;
30
+ const errorZoneClassName: any;
31
+ const traversal: any;
32
+ const qs: any;
33
+ const queryCondition: any;
34
+ }
35
+ }