@rxdrag/website-lib-core 0.0.22 → 0.0.24

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.22",
3
+ "version": "0.0.24",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./index.ts"
@@ -24,10 +24,10 @@
24
24
  "@types/react-dom": "^18.2.7",
25
25
  "eslint": "^7.32.0",
26
26
  "typescript": "^5",
27
+ "@rxdrag/tsconfig": "0.2.0",
27
28
  "@rxdrag/entify-hooks": "0.2.43",
28
29
  "@rxdrag/eslint-config-custom": "0.2.12",
29
- "@rxdrag/slate-preview": "1.2.57",
30
- "@rxdrag/tsconfig": "0.2.0"
30
+ "@rxdrag/slate-preview": "1.2.57"
31
31
  },
32
32
  "dependencies": {
33
33
  "clsx": "^2.1.0",
@@ -38,7 +38,7 @@ export async function fulltextSearch(
38
38
  _eq: PublishableStatus.published,
39
39
  },
40
40
  content: {
41
- _match: keyword,
41
+ _match: keyword?.toLocaleLowerCase(),
42
42
  },
43
43
  }
44
44
  }
@@ -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
  />