@ttoss/forms 0.14.30 → 0.14.32

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 (2) hide show
  1. package/dist/index.d.ts +4 -2
  2. package/package.json +3 -3
package/dist/index.d.ts CHANGED
@@ -7,7 +7,7 @@ export { yup };
7
7
  import * as React from 'react';
8
8
  import React__default from 'react';
9
9
  import * as _ttoss_ui from '@ttoss/ui';
10
- import { BoxProps, CheckboxProps, LabelProps, RadioProps, TextareaProps } from '@ttoss/ui';
10
+ import { BoxProps, CheckboxProps, LabelProps, RadioProps } from '@ttoss/ui';
11
11
  import * as theme_ui from 'theme-ui';
12
12
 
13
13
  declare const Form: <TFieldValues extends FieldValues = FieldValues>({ children, onSubmit, sx, ...formMethods }: {
@@ -62,7 +62,9 @@ declare const FormFieldSelect: <TFieldValues extends FieldValues = FieldValues>(
62
62
  declare const FormFieldTextarea: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ label, name, ...textareaProps }: {
63
63
  label?: string | undefined;
64
64
  name: TName;
65
- } & TextareaProps) => JSX.Element;
65
+ } & theme_ui.TextareaProps & {
66
+ trailingIcon?: _ttoss_ui.IconType | undefined;
67
+ }) => JSX.Element;
66
68
 
67
69
  declare const useFormGroup: () => {
68
70
  level: number | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttoss/forms",
3
- "version": "0.14.30",
3
+ "version": "0.14.32",
4
4
  "license": "UNLICENSED",
5
5
  "author": "ttoss",
6
6
  "contributors": [
@@ -31,7 +31,7 @@
31
31
  "devDependencies": {
32
32
  "@ttoss/config": "^1.29.3",
33
33
  "@ttoss/test-utils": "^1.21.2",
34
- "@ttoss/ui": "^1.31.16",
34
+ "@ttoss/ui": "^1.31.18",
35
35
  "@types/jest": "^29.5.0",
36
36
  "jest": "^29.5.0",
37
37
  "react": "^18.2.0",
@@ -41,5 +41,5 @@
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  },
44
- "gitHead": "aa31505953d2717d84fa5e69dbae5b488ef04986"
44
+ "gitHead": "3f398d2717a3ac8f7fecf4c79c028b35f0ef45fb"
45
45
  }