@functionalui/functionalui 0.1.0 → 0.1.1
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/main.cjs +2 -2
- package/dist/main.d.ts +25 -27
- package/dist/main.js +341 -334
- package/dist/types.d.ts +4 -6
- package/package.json +12 -19
package/dist/types.d.ts
CHANGED
|
@@ -1901,9 +1901,12 @@ declare interface TextAreaProp {
|
|
|
1901
1901
|
min?: number | undefined;
|
|
1902
1902
|
step?: number | undefined;
|
|
1903
1903
|
rows?: number | undefined;
|
|
1904
|
+
resize?: ElementResizes;
|
|
1905
|
+
outlineStyle?: OutlineStyles;
|
|
1906
|
+
textAreaStyle?: TextAreaStyles;
|
|
1904
1907
|
}
|
|
1905
1908
|
|
|
1906
|
-
export declare interface TextAreaProps extends AnimatedProps<HTMLAttributes<HTMLTextAreaElement>>, TextStyleProps,
|
|
1909
|
+
export declare interface TextAreaProps extends AnimatedProps<HTMLAttributes<HTMLTextAreaElement>>, TextStyleProps, TextAreaProp {
|
|
1907
1910
|
children?: ReactNode;
|
|
1908
1911
|
}
|
|
1909
1912
|
|
|
@@ -1922,11 +1925,6 @@ export declare enum TextAreaStyles {
|
|
|
1922
1925
|
Transparent = 5
|
|
1923
1926
|
}
|
|
1924
1927
|
|
|
1925
|
-
declare interface TextAreaStyles_2 {
|
|
1926
|
-
resize?: ElementResizes;
|
|
1927
|
-
outlineStyle?: OutlineStyles;
|
|
1928
|
-
}
|
|
1929
|
-
|
|
1930
1928
|
declare interface TextInputProp {
|
|
1931
1929
|
type?: string;
|
|
1932
1930
|
required?: boolean | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@functionalui/functionalui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -39,39 +39,32 @@
|
|
|
39
39
|
"color": "^4.2.3",
|
|
40
40
|
"dayjs": "^1.11.13",
|
|
41
41
|
"immutability-helper": "^3.1.1",
|
|
42
|
-
"
|
|
43
|
-
"react": "^18.3.1",
|
|
42
|
+
"react": "19.2.4",
|
|
44
43
|
"react-colorful": "^5.6.1",
|
|
45
44
|
"react-dnd": "^16.0.1",
|
|
46
|
-
"react-
|
|
47
|
-
"react-dnd-multi-backend": "^8.1.2",
|
|
48
|
-
"react-dnd-touch-backend": "^16.0.1",
|
|
49
|
-
"react-dom": "^18.3.1",
|
|
45
|
+
"react-dom": "19.2.4",
|
|
50
46
|
"react-intersection-observer": "^9.14.1",
|
|
51
47
|
"react-use-measure": "^2.1.1"
|
|
52
48
|
},
|
|
53
49
|
"devDependencies": {
|
|
54
|
-
"@chromatic-com/storybook": "^
|
|
50
|
+
"@chromatic-com/storybook": "^5.0.0",
|
|
55
51
|
"@eslint/js": "^9.17.0",
|
|
56
|
-
"@storybook/addon-
|
|
57
|
-
"@storybook/addon-
|
|
58
|
-
"@storybook/
|
|
59
|
-
"@storybook/
|
|
60
|
-
"@storybook/react": "^8.4.7",
|
|
61
|
-
"@storybook/react-vite": "^8.4.7",
|
|
62
|
-
"@storybook/test": "^8.4.7",
|
|
52
|
+
"@storybook/addon-docs": "^10.2.7",
|
|
53
|
+
"@storybook/addon-onboarding": "^10.2.7",
|
|
54
|
+
"@storybook/react": "^10.2.7",
|
|
55
|
+
"@storybook/react-vite": "^10.2.7",
|
|
63
56
|
"@types/color": "^4.2.0",
|
|
64
57
|
"@types/node": "^22.10.5",
|
|
65
|
-
"@types/react": "
|
|
66
|
-
"@types/react-dom": "
|
|
58
|
+
"@types/react": "19.2.13",
|
|
59
|
+
"@types/react-dom": "19.2.3",
|
|
67
60
|
"@vitejs/plugin-react": "^4.3.4",
|
|
68
61
|
"eslint": "^9.17.0",
|
|
69
62
|
"eslint-plugin-react-hooks": "^5.0.0",
|
|
70
63
|
"eslint-plugin-react-refresh": "^0.4.16",
|
|
71
|
-
"eslint-plugin-storybook": "^
|
|
64
|
+
"eslint-plugin-storybook": "^10.2.7",
|
|
72
65
|
"globals": "^15.14.0",
|
|
73
66
|
"rollup-preserve-directives": "^1.1.3",
|
|
74
|
-
"storybook": "^
|
|
67
|
+
"storybook": "^10.2.7",
|
|
75
68
|
"typescript": "~5.6.2",
|
|
76
69
|
"typescript-eslint": "^8.18.2",
|
|
77
70
|
"vite": "^6.0.5",
|