@harbor-design/proform 1.1.35 → 1.1.36
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.js +12 -7
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -513,13 +513,18 @@ class me {
|
|
|
513
513
|
this.setup = e, this.processor = new de(this);
|
|
514
514
|
const t = this.setup(this);
|
|
515
515
|
if (this.ui = t.ui ?? f.presets.ui, this.runtimeAdapter = new he(this.ui), q(t.schemas)) {
|
|
516
|
-
const s = v(
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
516
|
+
const s = v(
|
|
517
|
+
// @ts-expect-error
|
|
518
|
+
() => t.schemas.value,
|
|
519
|
+
() => {
|
|
520
|
+
this.processor.parseSchemas(t.schemas.value), I(() => {
|
|
521
|
+
s();
|
|
522
|
+
});
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
deep: !0
|
|
526
|
+
}
|
|
527
|
+
);
|
|
523
528
|
} else if (N(t.schemas)) {
|
|
524
529
|
const s = v(() => t.schemas, () => {
|
|
525
530
|
this.processor.parseSchemas(t.schemas), I(() => {
|