@rxdrag/website-lib-core 0.0.92 → 0.0.93
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.93",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./index.ts"
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"@types/react-dom": "^19.1.0",
|
|
25
25
|
"eslint": "^7.32.0",
|
|
26
26
|
"typescript": "^5",
|
|
27
|
-
"@rxdrag/slate-preview": "1.2.61",
|
|
28
27
|
"@rxdrag/eslint-config-custom": "0.2.12",
|
|
28
|
+
"@rxdrag/slate-preview": "1.2.61",
|
|
29
29
|
"@rxdrag/tsconfig": "0.2.0"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"lodash-es": "^4.17.21",
|
|
37
37
|
"react": "^19.1.0",
|
|
38
38
|
"react-dom": "^19.1.0",
|
|
39
|
-
"@rxdrag/
|
|
40
|
-
"@rxdrag/
|
|
39
|
+
"@rxdrag/entify-lib": "0.0.23",
|
|
40
|
+
"@rxdrag/rxcms-models": "0.3.94"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"astro": "^4.0.0 || ^5.0.0"
|
|
@@ -22,6 +22,7 @@ export const ContactForm = forwardRef<HTMLDivElement, ContactFormProps>(
|
|
|
22
22
|
fields = [],
|
|
23
23
|
className,
|
|
24
24
|
classNames,
|
|
25
|
+
...rest
|
|
25
26
|
} = props;
|
|
26
27
|
const [formData, setFormData] = useState<QuoteRequest>({
|
|
27
28
|
name: "",
|
|
@@ -182,6 +183,7 @@ export const ContactForm = forwardRef<HTMLDivElement, ContactFormProps>(
|
|
|
182
183
|
"py-4 grid max-w-2xl grid-cols-1 gap-x-6 sm:grid-cols-2 w-full",
|
|
183
184
|
className || "gap-y-6"
|
|
184
185
|
)}
|
|
186
|
+
{...rest}
|
|
185
187
|
>
|
|
186
188
|
{fields.map((field, index) => {
|
|
187
189
|
const {
|