@debales/ai 1.1.6-canary.0 → 1.1.6

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.
@@ -0,0 +1,11 @@
1
+ import { default as React, InputHTMLAttributes } from 'react';
2
+ export interface FormError {
3
+ field: "name" | "email" | "phone";
4
+ message: string;
5
+ }
6
+ interface FormFieldProps extends InputHTMLAttributes<HTMLInputElement> {
7
+ label: string;
8
+ FieldError: FormError | null;
9
+ }
10
+ declare const FormField: React.FC<FormFieldProps>;
11
+ export default FormField;
@@ -1,4 +1,4 @@
1
- export declare const isProduction = false;
1
+ export declare const isProduction = true;
2
2
  declare const API_BASE_URL: string;
3
3
  export declare const WEBSOCKET_BASE_URL: string;
4
4
  declare const ENABLE_MIXPANEL = true;