@apexcura/ui-components 0.0.16-Beta659 → 0.0.16-Beta660

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,14 @@
1
1
  import React from 'react';
2
2
  import { ElementType } from '../Types/types';
3
3
  import '../styles/index.css';
4
- export declare const AutoCompleteInput: (props: ElementType) => React.JSX.Element;
4
+ interface autoCompleteProps {
5
+ value?: {
6
+ key?: string;
7
+ value?: string;
8
+ };
9
+ }
10
+ interface customProps extends ElementType {
11
+ value?: autoCompleteProps;
12
+ }
13
+ export declare const AutoCompleteInput: (props: customProps) => React.JSX.Element;
14
+ export {};
@@ -39,6 +39,12 @@ type radioValueProps = {
39
39
  value?: string | undefined;
40
40
  } | undefined;
41
41
  };
42
+ type autoCompleteProps = {
43
+ value?: {
44
+ key?: string;
45
+ value?: string;
46
+ };
47
+ };
42
48
  interface ChildRecordType {
43
49
  id?: string;
44
50
  name?: string;
@@ -76,7 +82,7 @@ export type ElementType = {
76
82
  size?: SizeType;
77
83
  errorText?: string;
78
84
  errorClassName?: string;
79
- value?: string | number | boolean | null | object | undefined | string[] | UploadFile[] | PaginationType | dropDownValueProps | radioValueProps | WeekSchedule;
85
+ value?: string | number | boolean | null | object | undefined | string[] | UploadFile[] | PaginationType | dropDownValueProps | radioValueProps | WeekSchedule | autoCompleteProps;
80
86
  status?: 'error' | 'warning';
81
87
  styles?: React.CSSProperties;
82
88
  variant?: 'outlined' | 'borderless' | 'filled';
@@ -168,6 +174,7 @@ export type ElementType = {
168
174
  isNewMenuItem?: boolean;
169
175
  progress?: number;
170
176
  className?: string;
177
+ contact?: string;
171
178
  }[];
172
179
  primaryText?: string;
173
180
  secondaryText?: string;