autoforma 1.0.62 → 1.0.64
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/README.md +136 -211
- package/dist/components/AutoForm/AutoForm.d.ts +5 -5
- package/dist/components/AutoForm/AutoForm.types.d.ts +8 -5
- package/dist/index.cjs.js +67 -32
- package/dist/index.es.js +7785 -6999
- package/dist/theme.d.ts +6 -6
- package/package.json +2 -1
package/dist/theme.d.ts
CHANGED
|
@@ -70,9 +70,9 @@ export declare const theme: {
|
|
|
70
70
|
} | undefined;
|
|
71
71
|
radius?: {
|
|
72
72
|
[x: string & {}]: string | undefined;
|
|
73
|
-
md?: string | undefined;
|
|
74
73
|
xs?: string | undefined;
|
|
75
74
|
sm?: string | undefined;
|
|
75
|
+
md?: string | undefined;
|
|
76
76
|
lg?: string | undefined;
|
|
77
77
|
xl?: string | undefined;
|
|
78
78
|
} | undefined;
|
|
@@ -80,41 +80,41 @@ export declare const theme: {
|
|
|
80
80
|
spacing?: {
|
|
81
81
|
[x: number]: string | undefined;
|
|
82
82
|
[x: string & {}]: string | undefined;
|
|
83
|
-
md?: string | undefined;
|
|
84
83
|
xs?: string | undefined;
|
|
85
84
|
sm?: string | undefined;
|
|
85
|
+
md?: string | undefined;
|
|
86
86
|
lg?: string | undefined;
|
|
87
87
|
xl?: string | undefined;
|
|
88
88
|
} | undefined;
|
|
89
89
|
fontSizes?: {
|
|
90
90
|
[x: string & {}]: string | undefined;
|
|
91
|
-
md?: string | undefined;
|
|
92
91
|
xs?: string | undefined;
|
|
93
92
|
sm?: string | undefined;
|
|
93
|
+
md?: string | undefined;
|
|
94
94
|
lg?: string | undefined;
|
|
95
95
|
xl?: string | undefined;
|
|
96
96
|
} | undefined;
|
|
97
97
|
lineHeights?: {
|
|
98
98
|
[x: string & {}]: string | undefined;
|
|
99
|
-
md?: string | undefined;
|
|
100
99
|
xs?: string | undefined;
|
|
101
100
|
sm?: string | undefined;
|
|
101
|
+
md?: string | undefined;
|
|
102
102
|
lg?: string | undefined;
|
|
103
103
|
xl?: string | undefined;
|
|
104
104
|
} | undefined;
|
|
105
105
|
breakpoints?: {
|
|
106
106
|
[x: string & {}]: string | undefined;
|
|
107
|
-
md?: string | undefined;
|
|
108
107
|
xs?: string | undefined;
|
|
109
108
|
sm?: string | undefined;
|
|
109
|
+
md?: string | undefined;
|
|
110
110
|
lg?: string | undefined;
|
|
111
111
|
xl?: string | undefined;
|
|
112
112
|
} | undefined;
|
|
113
113
|
shadows?: {
|
|
114
114
|
[x: string & {}]: string | undefined;
|
|
115
|
-
md?: string | undefined;
|
|
116
115
|
xs?: string | undefined;
|
|
117
116
|
sm?: string | undefined;
|
|
117
|
+
md?: string | undefined;
|
|
118
118
|
lg?: string | undefined;
|
|
119
119
|
xl?: string | undefined;
|
|
120
120
|
} | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "autoforma",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.64",
|
|
4
4
|
"description": "AutoForma is a dynamic form builder based on Mantine and React",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"module": "./dist/index.es.js",
|
|
@@ -72,6 +72,7 @@
|
|
|
72
72
|
"react-router-dom": "^7.4.0"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
|
+
"@types/node": "^24.10.1",
|
|
75
76
|
"@types/react": "^19.1.0",
|
|
76
77
|
"@types/react-dom": "^19.1.0",
|
|
77
78
|
"@vitejs/plugin-react": "^4.3.4",
|