@s_mart/minha-conta 12.0.0-beta.7 → 12.0.0-beta.8
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/index.d.mts +3 -3
- package/package.json +10 -10
package/dist/index.d.mts
CHANGED
|
@@ -343,11 +343,11 @@ interface ICampoAdicional {
|
|
|
343
343
|
md?: GridSize;
|
|
344
344
|
lg?: GridSize;
|
|
345
345
|
};
|
|
346
|
-
required?: TextFieldProps['required'];
|
|
347
|
-
rules?: TextFieldProps['rules'];
|
|
346
|
+
required?: TextFieldProps<Record<string, string>, string>['required'];
|
|
347
|
+
rules?: TextFieldProps<Record<string, string>, string>['rules'];
|
|
348
348
|
}
|
|
349
349
|
|
|
350
|
-
type TextFieldSlotProps = Partial<Omit<TextFieldProps, 'name'>>;
|
|
350
|
+
type TextFieldSlotProps = Partial<Omit<TextFieldProps<Record<string, string>, string>, 'name'>>;
|
|
351
351
|
type MinhaContaSlotProps = {
|
|
352
352
|
/**
|
|
353
353
|
* @prop label - `"Nome fantasia"`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@s_mart/minha-conta",
|
|
3
|
-
"version": "12.0.0-beta.
|
|
3
|
+
"version": "12.0.0-beta.8",
|
|
4
4
|
"main": "./dist/index.mjs",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"types": "./dist/index.d.mts",
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
"@s_mart/data": "10.2.5-beta.3",
|
|
37
37
|
"@s_mart/hooks": "8.0.12",
|
|
38
38
|
"@s_mart/masks": "5.2.0",
|
|
39
|
-
"@s_mart/
|
|
39
|
+
"@s_mart/form": "9.2.0-beta.8",
|
|
40
40
|
"@s_mart/rules": "5.1.2-beta.0",
|
|
41
|
-
"@s_mart/
|
|
42
|
-
"@s_mart/solid-icons": "6.0.6",
|
|
41
|
+
"@s_mart/regular-icons": "6.0.9",
|
|
43
42
|
"@s_mart/tokens": "5.1.1",
|
|
43
|
+
"@s_mart/solid-icons": "6.0.6",
|
|
44
44
|
"@s_mart/typed": "7.2.2",
|
|
45
45
|
"@s_mart/utils": "5.3.4"
|
|
46
46
|
},
|
|
@@ -67,17 +67,17 @@
|
|
|
67
67
|
"react-hook-form": "^7.51.0",
|
|
68
68
|
"typescript": ">=5.4.2",
|
|
69
69
|
"zustand": "^4.5.2",
|
|
70
|
-
"@s_mart/data": "10.2.5-beta.3",
|
|
71
70
|
"@s_mart/core": "9.1.5-beta.3",
|
|
71
|
+
"@s_mart/form": "9.2.0-beta.8",
|
|
72
|
+
"@s_mart/data": "10.2.5-beta.3",
|
|
73
|
+
"@s_mart/hooks": "8.0.12",
|
|
72
74
|
"@s_mart/masks": "5.2.0",
|
|
73
|
-
"@s_mart/form": "9.2.0-beta.7",
|
|
74
75
|
"@s_mart/regular-icons": "6.0.9",
|
|
75
|
-
"@s_mart/hooks": "8.0.12",
|
|
76
|
-
"@s_mart/solid-icons": "6.0.6",
|
|
77
76
|
"@s_mart/rules": "5.1.2-beta.0",
|
|
77
|
+
"@s_mart/solid-icons": "6.0.6",
|
|
78
|
+
"@s_mart/tokens": "5.1.1",
|
|
78
79
|
"@s_mart/typed": "7.2.2",
|
|
79
|
-
"@s_mart/utils": "5.3.4"
|
|
80
|
-
"@s_mart/tokens": "5.1.1"
|
|
80
|
+
"@s_mart/utils": "5.3.4"
|
|
81
81
|
},
|
|
82
82
|
"scripts": {
|
|
83
83
|
"build": "tsup src/index.tsx --minify --format esm --dts --external react",
|