@app-studio/web 0.3.53 → 0.3.55
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.
- package/dist/components/File/File.d.ts +1 -3
- package/dist/components/Form/CountryPicker/CountryPicker/CountryPicker.state.d.ts +2 -2
- package/dist/components/Form/DatePicker/examples/index.d.ts +0 -1
- package/dist/components/Form/Form.d.ts +0 -8
- package/dist/components/Form/Password/Password/Password.state.d.ts +2 -2
- package/dist/components/Form/Select/Select/Select.props.d.ts +5 -5
- package/dist/components/Form/Select/Select/Select.state.d.ts +2 -2
- package/dist/components/Form/TextArea/TextArea/TextArea.props.d.ts +2 -2
- package/dist/components/Form/TextArea/TextArea/TextArea.state.d.ts +3 -3
- package/dist/components/Form/TextArea/examples/index.d.ts +0 -2
- package/dist/components/Form/TextField/TextField/TextField.props.d.ts +2 -2
- package/dist/components/Form/TextField/TextField/TextField.state.d.ts +3 -3
- package/dist/components/Form/TextField/examples/index.d.ts +0 -2
- package/dist/components/Formik/Formik.Checkbox.d.ts +6 -0
- package/dist/components/Formik/Formik.CountryPicker.d.ts +6 -0
- package/dist/components/Formik/Formik.DatePicker.d.ts +6 -0
- package/dist/components/Formik/Formik.Form.d.ts +25 -0
- package/dist/components/Formik/Formik.Hook.d.ts +1 -0
- package/dist/components/Formik/Formik.Password.d.ts +6 -0
- package/dist/components/Formik/Formik.Select.d.ts +6 -0
- package/dist/components/Formik/Formik.Switch.d.ts +3 -0
- package/dist/components/Formik/Formik.TextArea.d.ts +6 -0
- package/dist/components/Formik/Formik.TextField.d.ts +6 -0
- package/dist/components/Formik/examples/FormikCheckbox.d.ts +2 -0
- package/dist/components/Formik/examples/FormikPassword.d.ts +2 -0
- package/dist/components/Formik/examples/FormikTextArea.d.ts +2 -0
- package/dist/components/Formik/examples/FormikTextField.d.ts +2 -0
- package/dist/components/Formik/examples/index.d.ts +9 -0
- package/dist/components/Formik/index.d.ts +9 -0
- package/dist/components/Layout/View/View.d.ts +1 -1
- package/dist/pages/formik.page.d.ts +3 -0
- package/dist/web.cjs.development.js +95 -100
- package/dist/web.cjs.development.js.map +1 -1
- package/dist/web.cjs.production.min.js +1 -1
- package/dist/web.cjs.production.min.js.map +1 -1
- package/dist/web.esm.js +95 -100
- package/dist/web.esm.js.map +1 -1
- package/package.json +1 -1
- package/dist/components/Form/FormField.d.ts +0 -10
- package/dist/components/Form/Password/example/FormikErrorInput.d.ts +0 -2
- package/dist/components/Form/Password/example/FormikHelperText.d.ts +0 -2
- package/dist/components/Form/TextArea/examples/FormikErrorInput.d.ts +0 -2
- package/dist/components/Form/TextArea/examples/FormikHelperText.d.ts +0 -2
- package/dist/components/Form/TextField/examples/FormikErrorInput.d.ts +0 -2
- package/dist/components/Form/TextField/examples/FormikHelperText.d.ts +0 -2
- package/dist/utils/form.d.ts +0 -10
- /package/dist/components/{Form/CountryPicker/examples/Formik.d.ts → Formik/examples/FormikCountryPicker.d.ts} +0 -0
- /package/dist/components/{Form/DatePicker/examples/Formik.d.ts → Formik/examples/FormikDatePicker.d.ts} +0 -0
- /package/dist/components/{Form/Select/examples/Formik.d.ts → Formik/examples/FormikSelect.d.ts} +0 -0
- /package/dist/components/{Form/Switch/examples/Formik.d.ts → Formik/examples/FormikSwitch.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
export declare type FormItemProps = {
|
|
3
|
-
children: React.ReactNode;
|
|
4
|
-
} & {
|
|
5
|
-
name: string;
|
|
6
|
-
label?: string;
|
|
7
|
-
type?: string;
|
|
8
|
-
labelProps: any;
|
|
9
|
-
};
|
|
10
|
-
export declare const FormField: ({ name, children, label, labelProps, ...restProps }: FormItemProps) => React.JSX.Element;
|
package/dist/utils/form.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import type { FormikProps, FormikValues } from 'formik';
|
|
2
|
-
export declare const getForm: () => FormikProps<FormikValues>;
|
|
3
|
-
export declare const setForm: (newForm: FormikProps<FormikValues>) => void;
|
|
4
|
-
export interface InputFormProps {
|
|
5
|
-
name: string;
|
|
6
|
-
label?: string;
|
|
7
|
-
rightIcon?: any;
|
|
8
|
-
leftIcon?: any;
|
|
9
|
-
labelProps?: any;
|
|
10
|
-
}
|
|
File without changes
|
|
File without changes
|
/package/dist/components/{Form/Select/examples/Formik.d.ts → Formik/examples/FormikSelect.d.ts}
RENAMED
|
File without changes
|
/package/dist/components/{Form/Switch/examples/Formik.d.ts → Formik/examples/FormikSwitch.d.ts}
RENAMED
|
File without changes
|