@plasmicpkgs/airtable 0.0.174 → 0.0.176

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.
@@ -17,13 +17,13 @@ export interface AirtableRecordProps {
17
17
  table: string;
18
18
  record: string;
19
19
  }
20
- export declare function AirtableRecord({ table, record, children, }: React.PropsWithChildren<AirtableRecordProps>): JSX.Element;
20
+ export declare function AirtableRecord({ table, record, children, }: React.PropsWithChildren<AirtableRecordProps>): React.JSX.Element;
21
21
  export interface AirtableRecordFieldProps extends CanvasComponentProps<RecordData | undefined> {
22
22
  className?: string;
23
23
  style?: React.CSSProperties;
24
24
  field?: string;
25
25
  }
26
- export declare function AirtableRecordField({ className, field, style, setControlContextData, }: AirtableRecordFieldProps): JSX.Element;
26
+ export declare function AirtableRecordField({ className, field, style, setControlContextData, }: AirtableRecordFieldProps): React.JSX.Element;
27
27
  export interface AirtableCollectionProps {
28
28
  table: string;
29
29
  fields?: string[];
@@ -36,12 +36,12 @@ export interface AirtableCollectionProps {
36
36
  }[];
37
37
  view?: string;
38
38
  }
39
- export declare function AirtableCollection({ table, children, ...props }: React.PropsWithChildren<AirtableCollectionProps>): JSX.Element;
39
+ export declare function AirtableCollection({ table, children, ...props }: React.PropsWithChildren<AirtableCollectionProps>): React.JSX.Element;
40
40
  interface AirtableCredentialsProviderProps {
41
41
  dataSource: DataSourceInfo;
42
42
  host?: string;
43
43
  }
44
- export declare function AirtableCredentialsProvider({ dataSource, host: maybeHost, children, }: React.PropsWithChildren<AirtableCredentialsProviderProps>): JSX.Element;
44
+ export declare function AirtableCredentialsProvider({ dataSource, host: maybeHost, children, }: React.PropsWithChildren<AirtableCredentialsProviderProps>): React.JSX.Element;
45
45
  export declare const airtableRecordMeta: ComponentMeta<AirtableRecordProps>;
46
46
  export declare function registerAirtableRecord(loader?: {
47
47
  registerComponent: typeof registerComponent;