@app-studio/web 0.8.14 → 0.8.16

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.
@@ -7,3 +7,4 @@ export * from './Switch/Switch';
7
7
  export * from './TextArea/TextArea';
8
8
  export * from './TextField/TextField';
9
9
  export * from './Password/Password';
10
+ export * from './ComboBox/ComboBox';
@@ -16,7 +16,7 @@ export interface TextAreaProps extends Omit<InputProps, 'size'> {
16
16
  label?: string;
17
17
  maxRows?: number;
18
18
  maxCols?: number;
19
- name: string;
19
+ name?: string;
20
20
  placeholder?: string;
21
21
  onChange?: (value: any) => void;
22
22
  onChangeText?: (text: string) => void;
@@ -1,5 +1,6 @@
1
1
  import React from 'react';
2
2
  import { FormikConfig } from 'formik';
3
+ export declare const debounce: (...args: any) => void;
3
4
  interface CustomFormProps<T> extends FormikConfig<T> {
4
5
  autoFocus?: boolean;
5
6
  initFocus?: string;
@@ -4864,15 +4864,13 @@ var FormikForm = _ref => {
4864
4864
  children,
4865
4865
  autoFocus = false,
4866
4866
  initFocus,
4867
- onChange
4867
+ onChange = () => {}
4868
4868
  } = _ref,
4869
4869
  props = _objectWithoutPropertiesLoose(_ref, _excluded$z);
4870
4870
  var formik$1 = formik.useFormikContext();
4871
4871
  React.useEffect(() => {
4872
- if (onChange) {
4873
- onChange(formik$1.values);
4874
- }
4875
- }, [formik$1.values, onChange]);
4872
+ onChange(formik$1.values);
4873
+ }, [formik$1.values]);
4876
4874
  var inputRefs = React.useRef({});
4877
4875
  var inputNames = React.useRef([]);
4878
4876
  var setInputRef = (name, ref) => {