@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.
Files changed (50) hide show
  1. package/dist/components/File/File.d.ts +1 -3
  2. package/dist/components/Form/CountryPicker/CountryPicker/CountryPicker.state.d.ts +2 -2
  3. package/dist/components/Form/DatePicker/examples/index.d.ts +0 -1
  4. package/dist/components/Form/Form.d.ts +0 -8
  5. package/dist/components/Form/Password/Password/Password.state.d.ts +2 -2
  6. package/dist/components/Form/Select/Select/Select.props.d.ts +5 -5
  7. package/dist/components/Form/Select/Select/Select.state.d.ts +2 -2
  8. package/dist/components/Form/TextArea/TextArea/TextArea.props.d.ts +2 -2
  9. package/dist/components/Form/TextArea/TextArea/TextArea.state.d.ts +3 -3
  10. package/dist/components/Form/TextArea/examples/index.d.ts +0 -2
  11. package/dist/components/Form/TextField/TextField/TextField.props.d.ts +2 -2
  12. package/dist/components/Form/TextField/TextField/TextField.state.d.ts +3 -3
  13. package/dist/components/Form/TextField/examples/index.d.ts +0 -2
  14. package/dist/components/Formik/Formik.Checkbox.d.ts +6 -0
  15. package/dist/components/Formik/Formik.CountryPicker.d.ts +6 -0
  16. package/dist/components/Formik/Formik.DatePicker.d.ts +6 -0
  17. package/dist/components/Formik/Formik.Form.d.ts +25 -0
  18. package/dist/components/Formik/Formik.Hook.d.ts +1 -0
  19. package/dist/components/Formik/Formik.Password.d.ts +6 -0
  20. package/dist/components/Formik/Formik.Select.d.ts +6 -0
  21. package/dist/components/Formik/Formik.Switch.d.ts +3 -0
  22. package/dist/components/Formik/Formik.TextArea.d.ts +6 -0
  23. package/dist/components/Formik/Formik.TextField.d.ts +6 -0
  24. package/dist/components/Formik/examples/FormikCheckbox.d.ts +2 -0
  25. package/dist/components/Formik/examples/FormikPassword.d.ts +2 -0
  26. package/dist/components/Formik/examples/FormikTextArea.d.ts +2 -0
  27. package/dist/components/Formik/examples/FormikTextField.d.ts +2 -0
  28. package/dist/components/Formik/examples/index.d.ts +9 -0
  29. package/dist/components/Formik/index.d.ts +9 -0
  30. package/dist/components/Layout/View/View.d.ts +1 -1
  31. package/dist/pages/formik.page.d.ts +3 -0
  32. package/dist/web.cjs.development.js +95 -100
  33. package/dist/web.cjs.development.js.map +1 -1
  34. package/dist/web.cjs.production.min.js +1 -1
  35. package/dist/web.cjs.production.min.js.map +1 -1
  36. package/dist/web.esm.js +95 -100
  37. package/dist/web.esm.js.map +1 -1
  38. package/package.json +1 -1
  39. package/dist/components/Form/FormField.d.ts +0 -10
  40. package/dist/components/Form/Password/example/FormikErrorInput.d.ts +0 -2
  41. package/dist/components/Form/Password/example/FormikHelperText.d.ts +0 -2
  42. package/dist/components/Form/TextArea/examples/FormikErrorInput.d.ts +0 -2
  43. package/dist/components/Form/TextArea/examples/FormikHelperText.d.ts +0 -2
  44. package/dist/components/Form/TextField/examples/FormikErrorInput.d.ts +0 -2
  45. package/dist/components/Form/TextField/examples/FormikHelperText.d.ts +0 -2
  46. package/dist/utils/form.d.ts +0 -10
  47. /package/dist/components/{Form/CountryPicker/examples/Formik.d.ts → Formik/examples/FormikCountryPicker.d.ts} +0 -0
  48. /package/dist/components/{Form/DatePicker/examples/Formik.d.ts → Formik/examples/FormikDatePicker.d.ts} +0 -0
  49. /package/dist/components/{Form/Select/examples/Formik.d.ts → Formik/examples/FormikSelect.d.ts} +0 -0
  50. /package/dist/components/{Form/Switch/examples/Formik.d.ts → Formik/examples/FormikSwitch.d.ts} +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@app-studio/web",
3
- "version": "0.3.53",
3
+ "version": "0.3.55",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/components/index.d.ts",
6
6
  "files": [
@@ -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;
@@ -1,2 +0,0 @@
1
- import React from 'react';
2
- export declare const FormikErrorPassword: () => React.JSX.Element;
@@ -1,2 +0,0 @@
1
- import React from 'react';
2
- export declare const FormikHelperTextPassword: () => React.JSX.Element;
@@ -1,2 +0,0 @@
1
- import React from 'react';
2
- export declare const FormikErrorArea: () => React.JSX.Element;
@@ -1,2 +0,0 @@
1
- import React from 'react';
2
- export declare const FormikHelperTextArea: () => React.JSX.Element;
@@ -1,2 +0,0 @@
1
- import React from 'react';
2
- export declare const FormikErrorInput: () => React.JSX.Element;
@@ -1,2 +0,0 @@
1
- import React from 'react';
2
- export declare const FormikHelperTextInput: () => React.JSX.Element;
@@ -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
- }