@rxdrag/website-lib-core 0.0.22 → 0.0.23
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rxdrag/website-lib-core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.23",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./index.ts"
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"@types/react-dom": "^18.2.7",
|
|
25
25
|
"eslint": "^7.32.0",
|
|
26
26
|
"typescript": "^5",
|
|
27
|
-
"@rxdrag/entify-hooks": "0.2.43",
|
|
28
27
|
"@rxdrag/eslint-config-custom": "0.2.12",
|
|
29
28
|
"@rxdrag/slate-preview": "1.2.57",
|
|
29
|
+
"@rxdrag/entify-hooks": "0.2.43",
|
|
30
30
|
"@rxdrag/tsconfig": "0.2.0"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
@@ -268,7 +268,6 @@ export const ContactForm = forwardRef<HTMLDivElement, ContactFormProps>(
|
|
|
268
268
|
labelClassName="block text-sm font-medium leading-6 text-gray-900"
|
|
269
269
|
name="email"
|
|
270
270
|
required={true}
|
|
271
|
-
autoFocus={true}
|
|
272
271
|
type="email"
|
|
273
272
|
value={formData.email}
|
|
274
273
|
onChange={handleChange}
|
|
@@ -281,7 +280,6 @@ export const ContactForm = forwardRef<HTMLDivElement, ContactFormProps>(
|
|
|
281
280
|
labelClassName="block text-sm font-medium leading-6 text-gray-900"
|
|
282
281
|
name="mobile"
|
|
283
282
|
required={true}
|
|
284
|
-
autoFocus={true}
|
|
285
283
|
value={formData.mobile}
|
|
286
284
|
onChange={handleChange}
|
|
287
285
|
/>
|