@alepha/ui 0.11.10 → 0.11.11

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/index.cjs CHANGED
@@ -11,7 +11,7 @@ let react = require("react");
11
11
  let react_jsx_runtime = require("react/jsx-runtime");
12
12
  let __mantine_spotlight = require("@mantine/spotlight");
13
13
  let __mantine_dates = require("@mantine/dates");
14
- let __alepha_postgres = require("@alepha/postgres");
14
+ let __alepha_orm = require("@alepha/orm");
15
15
  let __alepha_datetime = require("@alepha/datetime");
16
16
  let __mantine_hooks = require("@mantine/hooks");
17
17
 
@@ -1244,7 +1244,7 @@ const ControlQueryBuilder = ({ schema, value = "", onChange, placeholder = "Ente
1244
1244
  const [error, setError] = (0, react.useState)(null);
1245
1245
  const isValid = (value$1) => {
1246
1246
  try {
1247
- (0, __alepha_postgres.parseQueryString)(value$1.trim());
1247
+ (0, __alepha_orm.parseQueryString)(value$1.trim());
1248
1248
  } catch (e) {
1249
1249
  setError(e.message);
1250
1250
  return false;