@milaboratories/milaboratories.pool-explorer.model 1.0.64 → 1.0.66
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/.turbo/turbo-build.log +9 -9
- package/CHANGELOG.md +14 -0
- package/dist/bundle.js +271 -271
- package/dist/bundle.js.map +1 -1
- package/dist/model.json +1 -1
- package/package.json +3 -3
package/dist/bundle.js
CHANGED
|
@@ -3071,29 +3071,29 @@
|
|
|
3071
3071
|
const params = { errorMap: ctx.common.contextualErrorMap };
|
|
3072
3072
|
const fn2 = ctx.data;
|
|
3073
3073
|
if (this._def.returns instanceof ZodPromise) {
|
|
3074
|
-
const
|
|
3074
|
+
const me = this;
|
|
3075
3075
|
return OK(async function(...args) {
|
|
3076
3076
|
const error = new ZodError([]);
|
|
3077
|
-
const parsedArgs = await
|
|
3077
|
+
const parsedArgs = await me._def.args.parseAsync(args, params).catch((e) => {
|
|
3078
3078
|
error.addIssue(makeArgsIssue(args, e));
|
|
3079
3079
|
throw error;
|
|
3080
3080
|
});
|
|
3081
3081
|
const result = await Reflect.apply(fn2, this, parsedArgs);
|
|
3082
|
-
const parsedReturns = await
|
|
3082
|
+
const parsedReturns = await me._def.returns._def.type.parseAsync(result, params).catch((e) => {
|
|
3083
3083
|
error.addIssue(makeReturnsIssue(result, e));
|
|
3084
3084
|
throw error;
|
|
3085
3085
|
});
|
|
3086
3086
|
return parsedReturns;
|
|
3087
3087
|
});
|
|
3088
3088
|
} else {
|
|
3089
|
-
const
|
|
3089
|
+
const me = this;
|
|
3090
3090
|
return OK(function(...args) {
|
|
3091
|
-
const parsedArgs =
|
|
3091
|
+
const parsedArgs = me._def.args.safeParse(args, params);
|
|
3092
3092
|
if (!parsedArgs.success) {
|
|
3093
3093
|
throw new ZodError([makeArgsIssue(args, parsedArgs.error)]);
|
|
3094
3094
|
}
|
|
3095
3095
|
const result = Reflect.apply(fn2, this, parsedArgs.data);
|
|
3096
|
-
const parsedReturns =
|
|
3096
|
+
const parsedReturns = me._def.returns.safeParse(result, params);
|
|
3097
3097
|
if (!parsedReturns.success) {
|
|
3098
3098
|
throw new ZodError([makeReturnsIssue(result, parsedReturns.error)]);
|
|
3099
3099
|
}
|
|
@@ -3955,10 +3955,10 @@
|
|
|
3955
3955
|
return canonicalize;
|
|
3956
3956
|
}
|
|
3957
3957
|
var canonicalizeExports = requireCanonicalize();
|
|
3958
|
-
const
|
|
3959
|
-
var
|
|
3960
|
-
var L = (e, n2, t) => n2 in e ?
|
|
3961
|
-
var
|
|
3958
|
+
const Ne = /* @__PURE__ */ getDefaultExportFromCjs(canonicalizeExports);
|
|
3959
|
+
var R$1 = Object.defineProperty;
|
|
3960
|
+
var L = (e, n2, t) => n2 in e ? R$1(e, n2, { enumerable: true, configurable: true, writable: true, value: t }) : e[n2] = t;
|
|
3961
|
+
var d = (e, n2, t) => L(e, typeof n2 != "symbol" ? n2 + "" : n2, t);
|
|
3962
3962
|
z$1.object({
|
|
3963
3963
|
/** Included left border. */
|
|
3964
3964
|
from: z$1.number(),
|
|
@@ -3968,7 +3968,7 @@
|
|
|
3968
3968
|
function A(e) {
|
|
3969
3969
|
throw new Error("Unexpected object: " + e);
|
|
3970
3970
|
}
|
|
3971
|
-
function
|
|
3971
|
+
function Ce(e) {
|
|
3972
3972
|
if (!e || typeof e != "object")
|
|
3973
3973
|
return false;
|
|
3974
3974
|
const n2 = e;
|
|
@@ -3985,7 +3985,7 @@
|
|
|
3985
3985
|
return false;
|
|
3986
3986
|
}
|
|
3987
3987
|
}
|
|
3988
|
-
function
|
|
3988
|
+
function Fe$1(e, n2) {
|
|
3989
3989
|
if (e !== void 0)
|
|
3990
3990
|
switch (e.type) {
|
|
3991
3991
|
case "Json":
|
|
@@ -4030,10 +4030,10 @@
|
|
|
4030
4030
|
return false;
|
|
4031
4031
|
}
|
|
4032
4032
|
}
|
|
4033
|
-
function
|
|
4033
|
+
function Ve(e) {
|
|
4034
4034
|
return _(e) ? e.type === "JsonPartitioned" || e.type === "BinaryPartitioned" : false;
|
|
4035
4035
|
}
|
|
4036
|
-
function
|
|
4036
|
+
function je$1(e) {
|
|
4037
4037
|
switch (e.type) {
|
|
4038
4038
|
case "Json": {
|
|
4039
4039
|
const n2 = Object.entries(e.data).map(([t, r]) => ({ key: JSON.parse(t), value: r }));
|
|
@@ -4061,7 +4061,7 @@
|
|
|
4061
4061
|
}
|
|
4062
4062
|
}
|
|
4063
4063
|
}
|
|
4064
|
-
function
|
|
4064
|
+
function Ie$1(e) {
|
|
4065
4065
|
switch (e.type) {
|
|
4066
4066
|
case "Json": {
|
|
4067
4067
|
const n2 = {};
|
|
@@ -4102,20 +4102,20 @@
|
|
|
4102
4102
|
function C(e) {
|
|
4103
4103
|
return e.map(y);
|
|
4104
4104
|
}
|
|
4105
|
-
function
|
|
4106
|
-
return
|
|
4105
|
+
function Te$1(e) {
|
|
4106
|
+
return Ne(y(e));
|
|
4107
4107
|
}
|
|
4108
|
-
function ee
|
|
4108
|
+
function ee(e, n2) {
|
|
4109
4109
|
if (e === void 0) return n2 === void 0;
|
|
4110
4110
|
if (n2 === void 0) return true;
|
|
4111
4111
|
for (const t in n2)
|
|
4112
4112
|
if (e[t] !== n2[t]) return false;
|
|
4113
4113
|
return true;
|
|
4114
4114
|
}
|
|
4115
|
-
function ne
|
|
4116
|
-
return e.name === n2.name && ee
|
|
4115
|
+
function ne(e, n2) {
|
|
4116
|
+
return e.name === n2.name && ee(e.domain, n2.domain);
|
|
4117
4117
|
}
|
|
4118
|
-
function
|
|
4118
|
+
function ze(e, n2) {
|
|
4119
4119
|
return { ...e, src: g(e.src, n2) };
|
|
4120
4120
|
}
|
|
4121
4121
|
function g(e, n2) {
|
|
@@ -4150,38 +4150,38 @@
|
|
|
4150
4150
|
A(e);
|
|
4151
4151
|
}
|
|
4152
4152
|
}
|
|
4153
|
-
function te(e) {
|
|
4154
|
-
return
|
|
4153
|
+
function te$1(e) {
|
|
4154
|
+
return Ne(e);
|
|
4155
4155
|
}
|
|
4156
|
-
function
|
|
4157
|
-
return
|
|
4156
|
+
function E(e) {
|
|
4157
|
+
return Ne(y(e));
|
|
4158
4158
|
}
|
|
4159
|
-
function
|
|
4159
|
+
function x$1(e, n2) {
|
|
4160
4160
|
return JSON.stringify([e, n2]);
|
|
4161
4161
|
}
|
|
4162
|
-
class
|
|
4162
|
+
class Ge {
|
|
4163
4163
|
/**
|
|
4164
4164
|
* Creates a new anchor context from a set of anchor column specifications
|
|
4165
4165
|
* @param anchors Record of anchor column specifications indexed by anchor ID
|
|
4166
4166
|
*/
|
|
4167
4167
|
constructor(n2) {
|
|
4168
|
-
|
|
4169
|
-
|
|
4170
|
-
|
|
4171
|
-
|
|
4168
|
+
d(this, "domains", /* @__PURE__ */ new Map());
|
|
4169
|
+
d(this, "axes", /* @__PURE__ */ new Map());
|
|
4170
|
+
d(this, "domainPacks", []);
|
|
4171
|
+
d(this, "domainPackToAnchor", /* @__PURE__ */ new Map());
|
|
4172
4172
|
this.anchors = n2;
|
|
4173
4173
|
const t = Object.entries(n2);
|
|
4174
4174
|
t.sort((r, o) => r[0].localeCompare(o[0]));
|
|
4175
4175
|
for (const [r, o] of t) {
|
|
4176
4176
|
for (let i = 0; i < o.axesSpec.length; i++) {
|
|
4177
|
-
const a = o.axesSpec[i], s2 =
|
|
4177
|
+
const a = o.axesSpec[i], s2 = E(a);
|
|
4178
4178
|
this.axes.set(s2, { anchor: r, idx: i });
|
|
4179
4179
|
}
|
|
4180
4180
|
if (o.domain !== void 0) {
|
|
4181
4181
|
const i = Object.entries(o.domain);
|
|
4182
4182
|
i.sort((a, s2) => a[0].localeCompare(s2[0])), this.domainPackToAnchor.set(JSON.stringify(i), r), this.domainPacks.push(i.map(([a]) => a));
|
|
4183
4183
|
for (const [a, s2] of i) {
|
|
4184
|
-
const u2 =
|
|
4184
|
+
const u2 = x$1(a, s2);
|
|
4185
4185
|
this.domains.set(u2, r);
|
|
4186
4186
|
}
|
|
4187
4187
|
}
|
|
@@ -4216,11 +4216,11 @@
|
|
|
4216
4216
|
for (const [a, s2] of Object.entries(n2.domain ?? {})) {
|
|
4217
4217
|
if (o !== void 0 && o.has(a))
|
|
4218
4218
|
continue;
|
|
4219
|
-
const u2 =
|
|
4219
|
+
const u2 = x$1(a, s2), c2 = this.domains.get(u2);
|
|
4220
4220
|
r.domain ?? (r.domain = {}), r.domain[a] = c2 ? { anchor: c2 } : s2;
|
|
4221
4221
|
}
|
|
4222
4222
|
if (r.axes = n2.axesSpec.map((a) => {
|
|
4223
|
-
const s2 =
|
|
4223
|
+
const s2 = E(a), u2 = this.axes.get(s2);
|
|
4224
4224
|
return u2 === void 0 ? y(a) : u2;
|
|
4225
4225
|
}), !t || t.length === 0)
|
|
4226
4226
|
return r;
|
|
@@ -4250,10 +4250,10 @@
|
|
|
4250
4250
|
* @returns A canonicalized string representation of the anchored column identifier
|
|
4251
4251
|
*/
|
|
4252
4252
|
deriveS(n2, t) {
|
|
4253
|
-
return te(this.derive(n2, t));
|
|
4253
|
+
return te$1(this.derive(n2, t));
|
|
4254
4254
|
}
|
|
4255
4255
|
}
|
|
4256
|
-
function
|
|
4256
|
+
function Xe$1(e, n2, t) {
|
|
4257
4257
|
const r = { ...n2 }, o = (t == null ? void 0 : t.ignoreMissingDomains) ?? false;
|
|
4258
4258
|
if (r.domainAnchor !== void 0) {
|
|
4259
4259
|
const i = e[r.domainAnchor];
|
|
@@ -4300,7 +4300,7 @@
|
|
|
4300
4300
|
throw new Error(`Axis with name "${n2.name}" not found in anchor "${t}"`);
|
|
4301
4301
|
return o[0];
|
|
4302
4302
|
} else if ("id" in n2) {
|
|
4303
|
-
const o = r.axesSpec.filter((i) => ne
|
|
4303
|
+
const o = r.axesSpec.filter((i) => ne(n2.id, y(i)));
|
|
4304
4304
|
if (o.length > 1)
|
|
4305
4305
|
throw new Error(`Multiple matching axes found for matcher in anchor "${t}"`);
|
|
4306
4306
|
if (o.length === 0)
|
|
@@ -4312,23 +4312,23 @@
|
|
|
4312
4312
|
function oe$1(e) {
|
|
4313
4313
|
return typeof e == "object" && "anchor" in e;
|
|
4314
4314
|
}
|
|
4315
|
-
function
|
|
4315
|
+
function l$1(e) {
|
|
4316
4316
|
return e.kind === "PColumn";
|
|
4317
4317
|
}
|
|
4318
4318
|
function ie$1(e) {
|
|
4319
|
-
return
|
|
4319
|
+
return l$1(e.spec);
|
|
4320
4320
|
}
|
|
4321
|
-
function
|
|
4321
|
+
function en(e) {
|
|
4322
4322
|
if (!ie$1(e)) throw new Error(`not a PColumn (kind = ${e.spec.kind})`);
|
|
4323
4323
|
return e;
|
|
4324
4324
|
}
|
|
4325
|
-
function
|
|
4325
|
+
function nn(e, n2) {
|
|
4326
4326
|
return e === void 0 ? void 0 : {
|
|
4327
4327
|
...e,
|
|
4328
4328
|
data: n2(e.data)
|
|
4329
4329
|
};
|
|
4330
4330
|
}
|
|
4331
|
-
function
|
|
4331
|
+
function tn(e) {
|
|
4332
4332
|
const n2 = /* @__PURE__ */ new Map(), t = (r) => {
|
|
4333
4333
|
switch (r.type) {
|
|
4334
4334
|
case "column":
|
|
@@ -4417,15 +4417,15 @@
|
|
|
4417
4417
|
}
|
|
4418
4418
|
return true;
|
|
4419
4419
|
}
|
|
4420
|
-
function
|
|
4421
|
-
return Array.isArray(e) ? (n2) => e.some((t) =>
|
|
4420
|
+
function rn(e) {
|
|
4421
|
+
return Array.isArray(e) ? (n2) => e.some((t) => l$1(n2) && v$1(n2, t)) : (n2) => l$1(n2) && v$1(n2, e);
|
|
4422
4422
|
}
|
|
4423
|
-
function
|
|
4423
|
+
function on(e) {
|
|
4424
4424
|
const n2 = {
|
|
4425
4425
|
kind: e.kind,
|
|
4426
4426
|
name: e.name
|
|
4427
4427
|
};
|
|
4428
|
-
return e.domain !== void 0 && (n2.domain = e.domain),
|
|
4428
|
+
return e.domain !== void 0 && (n2.domain = e.domain), l$1(e) && (n2.axesSpec = C(e.axesSpec)), Ne(n2);
|
|
4429
4429
|
}
|
|
4430
4430
|
z$1.object({
|
|
4431
4431
|
__isRef: z$1.literal(true).describe("Crucial marker for the block dependency tree reconstruction"),
|
|
@@ -4435,10 +4435,10 @@
|
|
|
4435
4435
|
}).describe(
|
|
4436
4436
|
"Universal reference type, allowing to set block connections. It is crucial that {@link __isRef} is present and equal to true, internal logic relies on this marker to build block dependency trees."
|
|
4437
4437
|
).readonly();
|
|
4438
|
-
function
|
|
4438
|
+
function un(e) {
|
|
4439
4439
|
return typeof e == "object" && e !== null && "__isRef" in e && e.__isRef === true && "blockId" in e && "name" in e;
|
|
4440
4440
|
}
|
|
4441
|
-
function
|
|
4441
|
+
function fn(e, n2 = true) {
|
|
4442
4442
|
if (n2)
|
|
4443
4443
|
return {
|
|
4444
4444
|
...e,
|
|
@@ -4449,11 +4449,11 @@
|
|
|
4449
4449
|
return r;
|
|
4450
4450
|
}
|
|
4451
4451
|
}
|
|
4452
|
-
function
|
|
4452
|
+
function ln(e, n2) {
|
|
4453
4453
|
return e.ok ? { ok: true, value: n2(e.value) } : e;
|
|
4454
4454
|
}
|
|
4455
|
-
const de = 24;
|
|
4456
|
-
z$1.string().length(de).regex(/[ABCDEFGHIJKLMNOPQRSTUVWXYZ234567]/).brand("PlId");
|
|
4455
|
+
const de$1 = 24;
|
|
4456
|
+
z$1.string().length(de$1).regex(/[ABCDEFGHIJKLMNOPQRSTUVWXYZ234567]/).brand("PlId");
|
|
4457
4457
|
var stringify = { exports: {} };
|
|
4458
4458
|
var hasRequiredStringify;
|
|
4459
4459
|
function requireStringify() {
|
|
@@ -4513,22 +4513,22 @@
|
|
|
4513
4513
|
cause: z$1.lazy(() => n).optional(),
|
|
4514
4514
|
errors: z$1.lazy(() => n.array()).optional()
|
|
4515
4515
|
});
|
|
4516
|
-
var
|
|
4517
|
-
var
|
|
4518
|
-
var k = (t, e, n2) =>
|
|
4519
|
-
function
|
|
4516
|
+
var Xe = Object.defineProperty;
|
|
4517
|
+
var Qe = (t, e, n2) => e in t ? Xe(t, e, { enumerable: true, configurable: true, writable: true, value: n2 }) : t[e] = n2;
|
|
4518
|
+
var k = (t, e, n2) => Qe(t, typeof e != "symbol" ? e + "" : e, n2);
|
|
4519
|
+
function ie(t) {
|
|
4520
4520
|
return { type: "Immediate", value: t };
|
|
4521
4521
|
}
|
|
4522
|
-
function
|
|
4522
|
+
function yt() {
|
|
4523
4523
|
return typeof globalThis.getPlatforma < "u" || typeof globalThis.platforma < "u";
|
|
4524
4524
|
}
|
|
4525
|
-
function
|
|
4525
|
+
function Me(t) {
|
|
4526
4526
|
if (t && typeof globalThis.getPlatforma == "function")
|
|
4527
4527
|
return globalThis.getPlatforma(t);
|
|
4528
4528
|
if (typeof globalThis.platforma < "u") return globalThis.platforma;
|
|
4529
4529
|
throw new Error("Can't get platforma instance.");
|
|
4530
4530
|
}
|
|
4531
|
-
function
|
|
4531
|
+
function bt() {
|
|
4532
4532
|
if (typeof globalThis.cfgRenderCtx < "u") return globalThis.cfgRenderCtx;
|
|
4533
4533
|
}
|
|
4534
4534
|
function v() {
|
|
@@ -4536,23 +4536,23 @@
|
|
|
4536
4536
|
throw new Error("Not in config rendering context");
|
|
4537
4537
|
}
|
|
4538
4538
|
function G(t, e) {
|
|
4539
|
-
const n2 =
|
|
4539
|
+
const n2 = bt();
|
|
4540
4540
|
if (n2 === void 0) return false;
|
|
4541
4541
|
if (t in n2.callbackRegistry) throw new Error(`Callback with key ${t} already registered.`);
|
|
4542
4542
|
return n2.callbackRegistry[t] = e, true;
|
|
4543
4543
|
}
|
|
4544
|
-
const
|
|
4545
|
-
function
|
|
4544
|
+
const pe = /* @__PURE__ */ new Map();
|
|
4545
|
+
function vt(t, e) {
|
|
4546
4546
|
t in v().callbackRegistry || (v().callbackRegistry[t] = (n2) => {
|
|
4547
|
-
for (const r of
|
|
4547
|
+
for (const r of pe.get(t))
|
|
4548
4548
|
r(n2);
|
|
4549
|
-
},
|
|
4549
|
+
}, pe.set(t, [])), pe.get(t).push(e);
|
|
4550
4550
|
}
|
|
4551
4551
|
class F {
|
|
4552
4552
|
constructor(e, n2 = (r) => r) {
|
|
4553
4553
|
k(this, "isResolved", false);
|
|
4554
4554
|
k(this, "resolvedValue");
|
|
4555
|
-
this.handle = e, this.postProcess = n2,
|
|
4555
|
+
this.handle = e, this.postProcess = n2, vt(e, (r) => {
|
|
4556
4556
|
this.resolvedValue = n2(r), this.isResolved = true;
|
|
4557
4557
|
});
|
|
4558
4558
|
}
|
|
@@ -4569,10 +4569,10 @@
|
|
|
4569
4569
|
return this.isResolved ? this.resolvedValue : { __awaited_futures__: [this.handle] };
|
|
4570
4570
|
}
|
|
4571
4571
|
}
|
|
4572
|
-
function
|
|
4572
|
+
function ge(t, e) {
|
|
4573
4573
|
return t === void 0 ? void 0 : e(t);
|
|
4574
4574
|
}
|
|
4575
|
-
class
|
|
4575
|
+
class R {
|
|
4576
4576
|
constructor(e, n2) {
|
|
4577
4577
|
this.handle = e, this.resolvePath = n2;
|
|
4578
4578
|
}
|
|
@@ -4611,9 +4611,9 @@
|
|
|
4611
4611
|
...this.resolvePath,
|
|
4612
4612
|
...n2.map((i) => typeof i == "string" ? i : i.field)
|
|
4613
4613
|
];
|
|
4614
|
-
return
|
|
4614
|
+
return ge(
|
|
4615
4615
|
v().resolveWithCommon(this.handle, e, ...n2),
|
|
4616
|
-
(i) => new
|
|
4616
|
+
(i) => new R(i, r)
|
|
4617
4617
|
);
|
|
4618
4618
|
}
|
|
4619
4619
|
get resourceType() {
|
|
@@ -4633,9 +4633,9 @@
|
|
|
4633
4633
|
}
|
|
4634
4634
|
getError() {
|
|
4635
4635
|
const e = [...this.resolvePath, "error"];
|
|
4636
|
-
return
|
|
4636
|
+
return ge(
|
|
4637
4637
|
v().getError(this.handle),
|
|
4638
|
-
(n2) => new
|
|
4638
|
+
(n2) => new R(n2, e)
|
|
4639
4639
|
);
|
|
4640
4640
|
}
|
|
4641
4641
|
listInputFields() {
|
|
@@ -4693,7 +4693,7 @@
|
|
|
4693
4693
|
const i = {};
|
|
4694
4694
|
for (const [s2, o] of Object.entries(r)) {
|
|
4695
4695
|
const a = [...this.resolvePath, s2];
|
|
4696
|
-
i[s2] =
|
|
4696
|
+
i[s2] = nn(o, (l2) => new R(l2, a));
|
|
4697
4697
|
}
|
|
4698
4698
|
return i;
|
|
4699
4699
|
}
|
|
@@ -4792,103 +4792,103 @@
|
|
|
4792
4792
|
return s2 && (l2 = l2.filter((u2) => u2[1] !== void 0)), l2.map(([u2, h]) => o(u2, h));
|
|
4793
4793
|
}
|
|
4794
4794
|
}
|
|
4795
|
-
const
|
|
4796
|
-
const
|
|
4795
|
+
const je = "staging", Je = "main";
|
|
4796
|
+
const wt = "pl7.app/label", At = "pl7.app/trace", Pt = z$1.object({
|
|
4797
4797
|
type: z$1.string(),
|
|
4798
4798
|
importance: z$1.number().optional(),
|
|
4799
4799
|
id: z$1.string().optional(),
|
|
4800
4800
|
label: z$1.string()
|
|
4801
|
-
}),
|
|
4802
|
-
function
|
|
4803
|
-
const r = /* @__PURE__ */ new Map(), i = n2.forceTraceElements !== void 0 && n2.forceTraceElements.length > 0 ? new Set(n2.forceTraceElements) : void 0, s2 = /* @__PURE__ */ new Map(), o = t.map((
|
|
4804
|
-
var c2,
|
|
4805
|
-
const
|
|
4806
|
-
let
|
|
4807
|
-
"spec" in
|
|
4808
|
-
const E2 = (c2 =
|
|
4809
|
-
...
|
|
4801
|
+
}), xt = z$1.array(Pt), _t = 1e-3, It = "__LABEL__", Ie = "__LABEL__@1";
|
|
4802
|
+
function Be(t, e, n2 = {}) {
|
|
4803
|
+
const r = /* @__PURE__ */ new Map(), i = n2.forceTraceElements !== void 0 && n2.forceTraceElements.length > 0 ? new Set(n2.forceTraceElements) : void 0, s2 = /* @__PURE__ */ new Map(), o = t.map((d2) => {
|
|
4804
|
+
var c2, b;
|
|
4805
|
+
const y2 = e(d2);
|
|
4806
|
+
let p2, m2, C2;
|
|
4807
|
+
"spec" in y2 && typeof y2.spec == "object" ? (p2 = y2.spec, m2 = y2.prefixTrace, C2 = y2.suffixTrace) : p2 = y2;
|
|
4808
|
+
const E2 = (c2 = p2.annotations) == null ? void 0 : c2[wt], _2 = (b = p2.annotations) == null ? void 0 : b[At], w = (_2 ? xt.safeParse(JSON.parse(_2)).data : void 0) ?? [], A2 = [
|
|
4809
|
+
...m2 ?? [],
|
|
4810
4810
|
...w,
|
|
4811
|
-
...
|
|
4811
|
+
...C2 ?? []
|
|
4812
4812
|
];
|
|
4813
4813
|
if (E2 !== void 0) {
|
|
4814
|
-
const T = { label: E2, type:
|
|
4814
|
+
const T = { label: E2, type: It, importance: -2 };
|
|
4815
4815
|
n2.addLabelAsSuffix ? A2.push(T) : A2.splice(0, 0, T);
|
|
4816
4816
|
}
|
|
4817
|
-
const
|
|
4817
|
+
const S2 = [], I = /* @__PURE__ */ new Map();
|
|
4818
4818
|
for (let T = A2.length - 1; T >= 0; --T) {
|
|
4819
|
-
const { type: U } = A2[T], V = A2[T].importance ?? 0,
|
|
4820
|
-
I.set(U,
|
|
4821
|
-
const K = `${U}@${
|
|
4819
|
+
const { type: U } = A2[T], V = A2[T].importance ?? 0, j = (I.get(U) ?? 0) + 1;
|
|
4820
|
+
I.set(U, j);
|
|
4821
|
+
const K = `${U}@${j}`;
|
|
4822
4822
|
s2.set(K, (s2.get(K) ?? 0) + 1), r.set(
|
|
4823
4823
|
K,
|
|
4824
4824
|
Math.max(
|
|
4825
4825
|
r.get(K) ?? Number.NEGATIVE_INFINITY,
|
|
4826
|
-
V - (A2.length - T) *
|
|
4826
|
+
V - (A2.length - T) * _t
|
|
4827
4827
|
)
|
|
4828
|
-
),
|
|
4828
|
+
), S2.push({ ...A2[T], fullType: K, occurrenceIndex: j });
|
|
4829
4829
|
}
|
|
4830
|
-
return
|
|
4831
|
-
value:
|
|
4832
|
-
spec:
|
|
4830
|
+
return S2.reverse(), {
|
|
4831
|
+
value: d2,
|
|
4832
|
+
spec: p2,
|
|
4833
4833
|
label: E2,
|
|
4834
|
-
fullTrace:
|
|
4834
|
+
fullTrace: S2
|
|
4835
4835
|
};
|
|
4836
4836
|
}), a = [], l2 = [], u2 = [...r];
|
|
4837
|
-
u2.sort(([,
|
|
4838
|
-
for (const [
|
|
4839
|
-
|
|
4840
|
-
const h = (
|
|
4841
|
-
const
|
|
4842
|
-
for (let
|
|
4843
|
-
const
|
|
4837
|
+
u2.sort(([, d2], [, y2]) => y2 - d2);
|
|
4838
|
+
for (const [d2] of u2)
|
|
4839
|
+
d2.endsWith("@1") || s2.get(d2) === t.length ? a.push(d2) : l2.push(d2);
|
|
4840
|
+
const h = (d2, y2 = false) => {
|
|
4841
|
+
const p2 = [];
|
|
4842
|
+
for (let m2 = 0; m2 < o.length; m2++) {
|
|
4843
|
+
const C2 = o[m2], E2 = C2.fullTrace.filter((A2) => d2.has(A2.fullType) || i && i.has(A2.type));
|
|
4844
4844
|
if (E2.length === 0)
|
|
4845
|
-
if (
|
|
4846
|
-
|
|
4845
|
+
if (y2)
|
|
4846
|
+
p2.push({
|
|
4847
4847
|
label: "Unlabeled",
|
|
4848
|
-
value:
|
|
4848
|
+
value: C2.value
|
|
4849
4849
|
});
|
|
4850
4850
|
else return;
|
|
4851
4851
|
const _2 = E2.map((A2) => A2.label), w = n2.separator ?? " / ";
|
|
4852
|
-
|
|
4852
|
+
p2.push({
|
|
4853
4853
|
label: _2.join(w),
|
|
4854
|
-
value:
|
|
4854
|
+
value: C2.value
|
|
4855
4855
|
});
|
|
4856
4856
|
}
|
|
4857
|
-
return
|
|
4857
|
+
return p2;
|
|
4858
4858
|
};
|
|
4859
4859
|
if (a.length === 0) {
|
|
4860
4860
|
if (l2.length !== 0) throw new Error("Non-empty secondary types list while main types list is empty.");
|
|
4861
|
-
return h(new Set(
|
|
4861
|
+
return h(new Set(Ie), true);
|
|
4862
4862
|
}
|
|
4863
4863
|
let f = 0, g2 = -1;
|
|
4864
4864
|
for (; f < a.length; ) {
|
|
4865
|
-
const
|
|
4866
|
-
n2.includeNativeLabel &&
|
|
4867
|
-
for (let
|
|
4868
|
-
g2 >= 0 &&
|
|
4869
|
-
const
|
|
4870
|
-
if (
|
|
4865
|
+
const d2 = /* @__PURE__ */ new Set();
|
|
4866
|
+
n2.includeNativeLabel && d2.add(Ie);
|
|
4867
|
+
for (let p2 = 0; p2 < f; ++p2) d2.add(a[p2]);
|
|
4868
|
+
g2 >= 0 && d2.add(a[g2]);
|
|
4869
|
+
const y2 = h(d2);
|
|
4870
|
+
if (y2 !== void 0 && new Set(y2.map((p2) => p2.label)).size === t.length) return y2;
|
|
4871
4871
|
g2++, g2 >= a.length && (f++, g2 = f);
|
|
4872
4872
|
}
|
|
4873
4873
|
return h(/* @__PURE__ */ new Set([...a, ...l2]), true);
|
|
4874
4874
|
}
|
|
4875
|
-
const
|
|
4876
|
-
const
|
|
4875
|
+
const Z = "PColumnData/", oe = Z + "ResourceMap", ae = Z + "Partitioned/ResourceMap", H = Z + "JsonPartitioned", B = Z + "BinaryPartitioned", Ue = Z + "Partitioned/", le = Ue + "JsonPartitioned", q = Ue + "BinaryPartitioned";
|
|
4876
|
+
const ye = (t) => {
|
|
4877
4877
|
if (t.endsWith(".index"))
|
|
4878
4878
|
return { baseKey: t.substring(0, t.length - 6), type: "index" };
|
|
4879
4879
|
if (t.endsWith(".values"))
|
|
4880
4880
|
return { baseKey: t.substring(0, t.length - 7), type: "values" };
|
|
4881
4881
|
throw new Error(`key must ends on .index/.values for binary p-column, got: ${t}`);
|
|
4882
4882
|
};
|
|
4883
|
-
function
|
|
4883
|
+
function Tt(t) {
|
|
4884
4884
|
if (!t) return;
|
|
4885
4885
|
const e = t.resourceType.name, n2 = t.getDataAsJson(), r = [];
|
|
4886
4886
|
let i = 0;
|
|
4887
4887
|
switch (e) {
|
|
4888
|
-
case
|
|
4888
|
+
case oe:
|
|
4889
4889
|
i = n2.keyLength;
|
|
4890
4890
|
break;
|
|
4891
|
-
case
|
|
4891
|
+
case ae:
|
|
4892
4892
|
i = n2.partitionKeyLength + n2.keyLength;
|
|
4893
4893
|
break;
|
|
4894
4894
|
case H:
|
|
@@ -4896,28 +4896,28 @@
|
|
|
4896
4896
|
i = n2.partitionKeyLength;
|
|
4897
4897
|
break;
|
|
4898
4898
|
case q:
|
|
4899
|
-
case
|
|
4899
|
+
case le:
|
|
4900
4900
|
i = n2.superPartitionKeyLength + n2.partitionKeyLength;
|
|
4901
4901
|
break;
|
|
4902
4902
|
}
|
|
4903
4903
|
switch (e) {
|
|
4904
|
-
case
|
|
4904
|
+
case oe:
|
|
4905
4905
|
case H:
|
|
4906
4906
|
case B:
|
|
4907
4907
|
for (let s2 of t.listInputFields()) {
|
|
4908
|
-
e === B && (s2 =
|
|
4908
|
+
e === B && (s2 = ye(s2).baseKey);
|
|
4909
4909
|
const o = [...JSON.parse(s2)];
|
|
4910
4910
|
r.push(o);
|
|
4911
4911
|
}
|
|
4912
4912
|
break;
|
|
4913
|
-
case
|
|
4913
|
+
case ae:
|
|
4914
4914
|
case q:
|
|
4915
|
-
case
|
|
4915
|
+
case le:
|
|
4916
4916
|
for (const s2 of t.listInputFields()) {
|
|
4917
4917
|
const o = [...JSON.parse(s2)], a = t.resolve({ field: s2, assertFieldType: "Input" });
|
|
4918
4918
|
if (a !== void 0)
|
|
4919
4919
|
for (let l2 of a.listInputFields()) {
|
|
4920
|
-
e === q && (l2 =
|
|
4920
|
+
e === q && (l2 = ye(l2).baseKey);
|
|
4921
4921
|
const u2 = [...o, ...JSON.parse(l2)];
|
|
4922
4922
|
r.push(u2);
|
|
4923
4923
|
}
|
|
@@ -4926,7 +4926,7 @@
|
|
|
4926
4926
|
}
|
|
4927
4927
|
return { data: r, keyLength: i };
|
|
4928
4928
|
}
|
|
4929
|
-
function
|
|
4929
|
+
function Lt(t) {
|
|
4930
4930
|
if (t.type !== "JsonPartitioned" && t.type !== "BinaryPartitioned")
|
|
4931
4931
|
throw new Error(`Splitting requires Partitioned DataInfoEntries, got ${t.type}`);
|
|
4932
4932
|
const { parts: e, partitionKeyLength: n2 } = t, r = [];
|
|
@@ -4945,11 +4945,11 @@
|
|
|
4945
4945
|
}
|
|
4946
4946
|
return r.map((i) => Array.from(i.values()));
|
|
4947
4947
|
}
|
|
4948
|
-
function
|
|
4948
|
+
function Ft(t) {
|
|
4949
4949
|
if (t === void 0) return;
|
|
4950
4950
|
if (_(t))
|
|
4951
|
-
return
|
|
4952
|
-
const e =
|
|
4951
|
+
return Lt(t);
|
|
4952
|
+
const e = Tt(t);
|
|
4953
4953
|
if (!e) return;
|
|
4954
4954
|
const { data: n2, keyLength: r } = e, i = [];
|
|
4955
4955
|
for (let s2 = 0; s2 < r; ++s2)
|
|
@@ -4962,14 +4962,14 @@
|
|
|
4962
4962
|
}
|
|
4963
4963
|
return i.map((s2) => Array.from(s2.values()));
|
|
4964
4964
|
}
|
|
4965
|
-
function
|
|
4965
|
+
function be(t, e = []) {
|
|
4966
4966
|
if (t === void 0 || !t.getIsReadyOrError()) return;
|
|
4967
4967
|
const n2 = t.resourceType.name, r = t.getDataAsJson();
|
|
4968
|
-
if (e.length > 0 && (n2 ===
|
|
4968
|
+
if (e.length > 0 && (n2 === le || n2 === q))
|
|
4969
4969
|
throw new Error(`Unexpected nested super-partitioned resource: ${n2}`);
|
|
4970
4970
|
switch (n2) {
|
|
4971
|
-
case
|
|
4972
|
-
case
|
|
4971
|
+
case oe:
|
|
4972
|
+
case ae:
|
|
4973
4973
|
throw new Error(`Only data columns are supported, got: ${n2}`);
|
|
4974
4974
|
case H: {
|
|
4975
4975
|
if (typeof (r == null ? void 0 : r.partitionKeyLength) != "number")
|
|
@@ -4992,7 +4992,7 @@
|
|
|
4992
4992
|
throw new Error(`Missing partitionKeyLength in metadata for ${n2}`);
|
|
4993
4993
|
const i = [], s2 = /* @__PURE__ */ new Map();
|
|
4994
4994
|
for (const o of t.listInputFields()) {
|
|
4995
|
-
const a =
|
|
4995
|
+
const a = ye(o), l2 = t.resolve({ field: o, assertFieldType: "Input" });
|
|
4996
4996
|
if (l2 === void 0) return;
|
|
4997
4997
|
let u2 = s2.get(a.baseKey);
|
|
4998
4998
|
u2 || (u2 = {}, s2.set(a.baseKey, u2)), a.type === "index" ? u2.index = l2 : u2.values = l2;
|
|
@@ -5014,7 +5014,7 @@
|
|
|
5014
5014
|
parts: i
|
|
5015
5015
|
};
|
|
5016
5016
|
}
|
|
5017
|
-
case
|
|
5017
|
+
case le: {
|
|
5018
5018
|
if (typeof (r == null ? void 0 : r.superPartitionKeyLength) != "number" || typeof (r == null ? void 0 : r.partitionKeyLength) != "number")
|
|
5019
5019
|
throw new Error(`Missing superPartitionKeyLength or partitionKeyLength in metadata for ${n2}`);
|
|
5020
5020
|
const i = r.superPartitionKeyLength + r.partitionKeyLength, s2 = [];
|
|
@@ -5023,7 +5023,7 @@
|
|
|
5023
5023
|
if (a === void 0) return;
|
|
5024
5024
|
if (a.resourceType.name !== H)
|
|
5025
5025
|
throw new Error(`Expected ${H} inside ${n2}, but got ${a.resourceType.name}`);
|
|
5026
|
-
const l2 =
|
|
5026
|
+
const l2 = be(a, JSON.parse(o));
|
|
5027
5027
|
if (l2 === void 0) return;
|
|
5028
5028
|
if (l2.type !== "JsonPartitioned")
|
|
5029
5029
|
throw new Error(`Unexpected inner result type for ${n2}: ${l2.type}`);
|
|
@@ -5044,7 +5044,7 @@
|
|
|
5044
5044
|
if (a === void 0) return;
|
|
5045
5045
|
if (a.resourceType.name !== B)
|
|
5046
5046
|
throw new Error(`Expected ${B} inside ${n2}, but got ${a.resourceType.name}`);
|
|
5047
|
-
const l2 =
|
|
5047
|
+
const l2 = be(a, JSON.parse(o));
|
|
5048
5048
|
if (l2 === void 0) return;
|
|
5049
5049
|
if (l2.type !== "BinaryPartitioned")
|
|
5050
5050
|
throw new Error(`Unexpected inner result type for ${n2}: ${l2.type}`);
|
|
@@ -5060,15 +5060,15 @@
|
|
|
5060
5060
|
throw new Error(`Unknown resource type: ${n2}`);
|
|
5061
5061
|
}
|
|
5062
5062
|
}
|
|
5063
|
-
function
|
|
5063
|
+
function Et(t) {
|
|
5064
5064
|
if (t !== void 0) {
|
|
5065
5065
|
if (_(t)) return t;
|
|
5066
|
-
if (
|
|
5067
|
-
if (t instanceof
|
|
5066
|
+
if (Ce(t)) return je$1(t);
|
|
5067
|
+
if (t instanceof R) return be(t);
|
|
5068
5068
|
throw new Error(`Unexpected input type: ${typeof t}`);
|
|
5069
5069
|
}
|
|
5070
5070
|
}
|
|
5071
|
-
function
|
|
5071
|
+
function kt(t, e) {
|
|
5072
5072
|
const n2 = [...e].sort((s2, o) => o[0] - s2[0]);
|
|
5073
5073
|
if (t.type === "JsonPartitioned" || t.type === "BinaryPartitioned") {
|
|
5074
5074
|
const { partitionKeyLength: s2 } = t;
|
|
@@ -5128,45 +5128,45 @@
|
|
|
5128
5128
|
}
|
|
5129
5129
|
}
|
|
5130
5130
|
}
|
|
5131
|
-
function
|
|
5131
|
+
function Dt(t) {
|
|
5132
5132
|
if (!Array.isArray(t)) return false;
|
|
5133
5133
|
if (t.length === 0) return true;
|
|
5134
5134
|
const e = t[0];
|
|
5135
5135
|
return typeof e == "object" && e !== null && "key" in e && "val" in e;
|
|
5136
5136
|
}
|
|
5137
|
-
class
|
|
5137
|
+
class Rt {
|
|
5138
5138
|
constructor(e) {
|
|
5139
5139
|
this.columns = e;
|
|
5140
5140
|
}
|
|
5141
5141
|
selectColumns(e) {
|
|
5142
|
-
const n2 = typeof e == "function" ? e :
|
|
5142
|
+
const n2 = typeof e == "function" ? e : rn(e);
|
|
5143
5143
|
return this.columns.filter((r) => n2(r.spec));
|
|
5144
5144
|
}
|
|
5145
5145
|
}
|
|
5146
|
-
function
|
|
5146
|
+
function Ot(t) {
|
|
5147
5147
|
if (t)
|
|
5148
5148
|
return t.map((e) => ({
|
|
5149
|
-
type: `split:${
|
|
5149
|
+
type: `split:${Te$1(e.axisId)}`,
|
|
5150
5150
|
label: e.label,
|
|
5151
5151
|
importance: 1e6
|
|
5152
5152
|
// High importance for split filters in labels
|
|
5153
5153
|
}));
|
|
5154
5154
|
}
|
|
5155
|
-
function
|
|
5155
|
+
function Kt(t) {
|
|
5156
5156
|
if (t)
|
|
5157
5157
|
return t.map((e) => [e.axisIdx, e.value]);
|
|
5158
5158
|
}
|
|
5159
|
-
function
|
|
5159
|
+
function Nt(t, e) {
|
|
5160
5160
|
if (!e || e.length === 0) return t;
|
|
5161
5161
|
const n2 = [...e].sort((r, i) => r[0] - i[0]);
|
|
5162
|
-
return
|
|
5162
|
+
return Ne({ id: t, axisFilters: n2 });
|
|
5163
5163
|
}
|
|
5164
|
-
function
|
|
5164
|
+
function Te(t) {
|
|
5165
5165
|
if (!t || typeof t != "object") return false;
|
|
5166
5166
|
const e = t, n2 = e.domain && typeof e.domain == "object" && Object.values(e.domain).some((i) => typeof i == "object" && i !== null && "anchor" in i), r = e.axes && Array.isArray(e.axes) && e.axes.some((i) => typeof i == "object" && i !== null && "anchor" in i);
|
|
5167
5167
|
return !!e.domainAnchor || n2 || r;
|
|
5168
5168
|
}
|
|
5169
|
-
function
|
|
5169
|
+
function Vt(t) {
|
|
5170
5170
|
if (typeof t != "object" || !("axes" in t) || t.axes === void 0)
|
|
5171
5171
|
return [];
|
|
5172
5172
|
const e = t.axes.map((n2, r) => typeof n2 == "object" && "split" in n2 && n2.split === true ? r : -1).filter((n2) => n2 !== -1);
|
|
@@ -5174,10 +5174,10 @@
|
|
|
5174
5174
|
throw new Error("Axis splitting is not supported when `partialAxesMatch` is defined.");
|
|
5175
5175
|
return e.sort((n2, r) => n2 - r), e;
|
|
5176
5176
|
}
|
|
5177
|
-
class
|
|
5177
|
+
class X {
|
|
5178
5178
|
constructor() {
|
|
5179
5179
|
k(this, "defaultProviderStore", []);
|
|
5180
|
-
k(this, "providers", [new
|
|
5180
|
+
k(this, "providers", [new Rt(this.defaultProviderStore)]);
|
|
5181
5181
|
k(this, "axisLabelProviders", []);
|
|
5182
5182
|
}
|
|
5183
5183
|
addColumnProvider(e) {
|
|
@@ -5206,88 +5206,88 @@
|
|
|
5206
5206
|
};
|
|
5207
5207
|
let u2 = () => false;
|
|
5208
5208
|
if (a) {
|
|
5209
|
-
const
|
|
5210
|
-
if (
|
|
5209
|
+
const p2 = (Array.isArray(a) ? a : [a]).map((m2) => {
|
|
5210
|
+
if (Te(m2)) {
|
|
5211
5211
|
if (!r)
|
|
5212
5212
|
throw new Error("Anchored selectors in exclude require an AnchoredIdDeriver to be provided in options.");
|
|
5213
|
-
return
|
|
5213
|
+
return rn(Xe$1(r.anchors, m2, n2));
|
|
5214
5214
|
} else
|
|
5215
|
-
return
|
|
5215
|
+
return rn(m2);
|
|
5216
5216
|
});
|
|
5217
|
-
u2 = (
|
|
5217
|
+
u2 = (m2) => p2.some((C2) => C2(m2));
|
|
5218
5218
|
}
|
|
5219
5219
|
const h = typeof e == "function" ? [e] : Array.isArray(e) ? e : [e], f = [], g2 = /* @__PURE__ */ new Set();
|
|
5220
|
-
for (const
|
|
5221
|
-
const
|
|
5222
|
-
let
|
|
5223
|
-
if (
|
|
5220
|
+
for (const p2 of h) {
|
|
5221
|
+
const m2 = Te(p2);
|
|
5222
|
+
let C2;
|
|
5223
|
+
if (m2) {
|
|
5224
5224
|
if (!r)
|
|
5225
5225
|
throw new Error("Anchored selectors require an AnchoredIdDeriver to be provided in options.");
|
|
5226
|
-
|
|
5226
|
+
C2 = Xe$1(r.anchors, p2, n2);
|
|
5227
5227
|
} else
|
|
5228
|
-
|
|
5228
|
+
C2 = p2;
|
|
5229
5229
|
const E2 = /* @__PURE__ */ new Set(), _2 = [];
|
|
5230
|
-
for (const
|
|
5231
|
-
const I =
|
|
5230
|
+
for (const S2 of this.providers) {
|
|
5231
|
+
const I = S2.selectColumns(C2);
|
|
5232
5232
|
for (const c2 of I) {
|
|
5233
5233
|
if (u2(c2.spec)) continue;
|
|
5234
5234
|
if (E2.has(c2.id))
|
|
5235
|
-
throw new Error(`Duplicate column id ${c2.id} in provider ${
|
|
5236
|
-
const
|
|
5237
|
-
g2.has(
|
|
5235
|
+
throw new Error(`Duplicate column id ${c2.id} in provider ${S2.constructor.name}`);
|
|
5236
|
+
const b = on(c2.spec);
|
|
5237
|
+
g2.has(b) || (E2.add(c2.id), g2.add(b), _2.push(c2));
|
|
5238
5238
|
}
|
|
5239
5239
|
}
|
|
5240
5240
|
if (_2.length === 0) continue;
|
|
5241
|
-
const w =
|
|
5242
|
-
for (const
|
|
5243
|
-
if (!
|
|
5244
|
-
const I =
|
|
5241
|
+
const w = Vt(p2), A2 = w.length > 0;
|
|
5242
|
+
for (const S2 of _2) {
|
|
5243
|
+
if (!l$1(S2.spec)) continue;
|
|
5244
|
+
const I = S2.spec;
|
|
5245
5245
|
if (A2) {
|
|
5246
|
-
if (
|
|
5247
|
-
throw new Error(`Splitting is not supported for PColumns with PColumnValues data format. Column id: ${
|
|
5248
|
-
const c2 =
|
|
5246
|
+
if (Dt(S2.data))
|
|
5247
|
+
throw new Error(`Splitting is not supported for PColumns with PColumnValues data format. Column id: ${S2.id}`);
|
|
5248
|
+
const c2 = Et(S2.data);
|
|
5249
5249
|
if (!c2) {
|
|
5250
5250
|
if (s2) continue;
|
|
5251
5251
|
return;
|
|
5252
5252
|
}
|
|
5253
|
-
if (
|
|
5254
|
-
throw new Error(`Splitting requires Partitioned DataInfoEntries, but parsing resulted in ${c2.type} for column ${
|
|
5255
|
-
const
|
|
5253
|
+
if (!Ve(c2))
|
|
5254
|
+
throw new Error(`Splitting requires Partitioned DataInfoEntries, but parsing resulted in ${c2.type} for column ${S2.id}`);
|
|
5255
|
+
const b = Ft(c2), T = w[w.length - 1];
|
|
5256
5256
|
if (T >= c2.partitionKeyLength)
|
|
5257
5257
|
throw new Error(`Not enough partition keys (${c2.partitionKeyLength}) for requested split axes (max index ${T}) in column ${I.name}`);
|
|
5258
|
-
const U = w.map((L2) => this.findLabels(y(I.axesSpec[L2]))), V = [],
|
|
5258
|
+
const U = w.map((L2) => this.findLabels(y(I.axesSpec[L2]))), V = [], j = (L2, W) => {
|
|
5259
5259
|
if (W >= w.length) {
|
|
5260
5260
|
if (V.push([...L2]), V.length > 1e4)
|
|
5261
5261
|
throw new Error("Too many key combinations, aborting.");
|
|
5262
5262
|
return;
|
|
5263
5263
|
}
|
|
5264
|
-
const
|
|
5265
|
-
if (
|
|
5266
|
-
throw new Error(`Axis index ${
|
|
5267
|
-
const
|
|
5268
|
-
if (!
|
|
5264
|
+
const M = w[W];
|
|
5265
|
+
if (M >= b.length)
|
|
5266
|
+
throw new Error(`Axis index ${M} out of bounds for unique keys array (length ${b.length}) during split key generation for column ${S2.id}`);
|
|
5267
|
+
const J = b[M];
|
|
5268
|
+
if (!J || J.length === 0) {
|
|
5269
5269
|
V.length = 0;
|
|
5270
5270
|
return;
|
|
5271
5271
|
}
|
|
5272
|
-
for (const
|
|
5273
|
-
L2.push(
|
|
5272
|
+
for (const ee2 of J)
|
|
5273
|
+
L2.push(ee2), j(L2, W + 1), L2.pop();
|
|
5274
5274
|
};
|
|
5275
|
-
if (
|
|
5275
|
+
if (j([], 0), V.length === 0)
|
|
5276
5276
|
continue;
|
|
5277
|
-
const K = [...I.axesSpec],
|
|
5277
|
+
const K = [...I.axesSpec], He = w.map((L2) => L2);
|
|
5278
5278
|
for (let L2 = w.length - 1; L2 >= 0; L2--)
|
|
5279
5279
|
K.splice(w[L2], 1);
|
|
5280
|
-
const
|
|
5280
|
+
const qe = { ...I, axesSpec: K };
|
|
5281
5281
|
for (const L2 of V) {
|
|
5282
|
-
const W = L2.map((
|
|
5283
|
-
const
|
|
5284
|
-
return { axisIdx:
|
|
5282
|
+
const W = L2.map((M, J) => {
|
|
5283
|
+
const ee2 = He[J], ze2 = y(I.axesSpec[ee2]), ce = U[J], Ye = (ce == null ? void 0 : ce[M]) ?? String(M);
|
|
5284
|
+
return { axisIdx: ee2, axisId: ze2, value: M, label: Ye };
|
|
5285
5285
|
});
|
|
5286
5286
|
f.push({
|
|
5287
5287
|
type: "split",
|
|
5288
|
-
originalColumn:
|
|
5288
|
+
originalColumn: S2,
|
|
5289
5289
|
spec: I,
|
|
5290
|
-
adjustedSpec:
|
|
5290
|
+
adjustedSpec: qe,
|
|
5291
5291
|
dataEntries: c2,
|
|
5292
5292
|
axisFilters: W
|
|
5293
5293
|
});
|
|
@@ -5295,40 +5295,40 @@
|
|
|
5295
5295
|
} else
|
|
5296
5296
|
f.push({
|
|
5297
5297
|
type: "direct",
|
|
5298
|
-
originalColumn:
|
|
5298
|
+
originalColumn: S2,
|
|
5299
5299
|
spec: I,
|
|
5300
5300
|
adjustedSpec: I
|
|
5301
5301
|
});
|
|
5302
5302
|
}
|
|
5303
5303
|
}
|
|
5304
5304
|
if (f.length === 0) return [];
|
|
5305
|
-
const
|
|
5305
|
+
const d2 = Be(
|
|
5306
5306
|
f,
|
|
5307
|
-
(
|
|
5308
|
-
spec:
|
|
5309
|
-
suffixTrace:
|
|
5307
|
+
(p2) => ({
|
|
5308
|
+
spec: p2.spec,
|
|
5309
|
+
suffixTrace: p2.type === "split" ? Ot(p2.axisFilters) : void 0
|
|
5310
5310
|
}),
|
|
5311
5311
|
l2
|
|
5312
|
-
),
|
|
5313
|
-
for (const { value:
|
|
5314
|
-
const { originalColumn:
|
|
5312
|
+
), y$1 = [];
|
|
5313
|
+
for (const { value: p2, label: m2 } of d2) {
|
|
5314
|
+
const { originalColumn: C2, spec: E2 } = p2, _2 = p2.type === "split" ? p2.axisFilters : void 0, w = Kt(_2);
|
|
5315
5315
|
let A2;
|
|
5316
|
-
r ? A2 = r.deriveS(E2, w) : A2 =
|
|
5317
|
-
let
|
|
5318
|
-
o && (
|
|
5319
|
-
...
|
|
5316
|
+
r ? A2 = r.deriveS(E2, w) : A2 = Nt(C2.id, w);
|
|
5317
|
+
let S2 = { ...p2.adjustedSpec };
|
|
5318
|
+
o && (S2 = {
|
|
5319
|
+
...S2,
|
|
5320
5320
|
annotations: {
|
|
5321
|
-
...
|
|
5322
|
-
"pl7.app/label":
|
|
5321
|
+
...S2.annotations ?? {},
|
|
5322
|
+
"pl7.app/label": m2
|
|
5323
5323
|
}
|
|
5324
|
-
}),
|
|
5324
|
+
}), y$1.push({
|
|
5325
5325
|
id: A2,
|
|
5326
|
-
spec:
|
|
5327
|
-
data: () =>
|
|
5328
|
-
label:
|
|
5326
|
+
spec: S2,
|
|
5327
|
+
data: () => p2.type === "split" ? Ie$1(kt(p2.dataEntries, w)) : p2.originalColumn.data,
|
|
5328
|
+
label: m2
|
|
5329
5329
|
});
|
|
5330
5330
|
}
|
|
5331
|
-
return
|
|
5331
|
+
return y$1;
|
|
5332
5332
|
}
|
|
5333
5333
|
getColumns(e, n2) {
|
|
5334
5334
|
const r = this.getUniversalEntries(e, {
|
|
@@ -5353,7 +5353,7 @@
|
|
|
5353
5353
|
return i;
|
|
5354
5354
|
}
|
|
5355
5355
|
}
|
|
5356
|
-
function
|
|
5356
|
+
function ve(t) {
|
|
5357
5357
|
const e = (i) => i.operator !== "InSet" ? i : {
|
|
5358
5358
|
operator: "Or",
|
|
5359
5359
|
operands: i.references.map((s2) => ({
|
|
@@ -5386,17 +5386,17 @@
|
|
|
5386
5386
|
});
|
|
5387
5387
|
return t.map((i) => r(i, e));
|
|
5388
5388
|
}
|
|
5389
|
-
function
|
|
5389
|
+
function de(t, e) {
|
|
5390
5390
|
if (t === void 0) return e === void 0;
|
|
5391
5391
|
if (e === void 0) return true;
|
|
5392
5392
|
for (const n2 in e)
|
|
5393
5393
|
if (t[n2] !== e[n2]) return false;
|
|
5394
5394
|
return true;
|
|
5395
5395
|
}
|
|
5396
|
-
function
|
|
5397
|
-
return
|
|
5396
|
+
function Le(t) {
|
|
5397
|
+
return nn(t, (e) => e instanceof R ? e.handle : Ce(e) ? Fe$1(e, (n2) => n2.handle) : e);
|
|
5398
5398
|
}
|
|
5399
|
-
class
|
|
5399
|
+
class Mt {
|
|
5400
5400
|
constructor() {
|
|
5401
5401
|
k(this, "ctx", v());
|
|
5402
5402
|
}
|
|
@@ -5407,28 +5407,28 @@
|
|
|
5407
5407
|
return this.ctx.calculateOptions(e);
|
|
5408
5408
|
}
|
|
5409
5409
|
getOptions(e, n2) {
|
|
5410
|
-
const r = typeof e == "function" ? e :
|
|
5410
|
+
const r = typeof e == "function" ? e : rn(e), i = this.getSpecs().entries.filter((a) => r(a.obj));
|
|
5411
5411
|
let s2 = {}, o = false;
|
|
5412
|
-
return typeof n2 < "u" && (typeof n2 == "function" ? s2 = n2 : typeof n2 == "object" && ("includeNativeLabel" in n2 || "separator" in n2 || "addLabelAsSuffix" in n2 ? s2 = n2 : (n2 = n2, s2 = n2.label ?? {}, o = n2.refsWithEnrichments ?? false))), typeof s2 == "object" ?
|
|
5413
|
-
ref:
|
|
5412
|
+
return typeof n2 < "u" && (typeof n2 == "function" ? s2 = n2 : typeof n2 == "object" && ("includeNativeLabel" in n2 || "separator" in n2 || "addLabelAsSuffix" in n2 ? s2 = n2 : (n2 = n2, s2 = n2.label ?? {}, o = n2.refsWithEnrichments ?? false))), typeof s2 == "object" ? Be(i, (a) => a.obj, s2 ?? {}).map(({ value: { ref: a }, label: l2 }) => ({
|
|
5413
|
+
ref: fn(a, o),
|
|
5414
5414
|
label: l2
|
|
5415
5415
|
})) : i.map(({ ref: a, obj: l2 }) => ({
|
|
5416
|
-
ref:
|
|
5416
|
+
ref: fn(a, o),
|
|
5417
5417
|
label: s2(l2, a)
|
|
5418
5418
|
}));
|
|
5419
5419
|
}
|
|
5420
5420
|
resolveAnchorCtx(e) {
|
|
5421
|
-
if (e instanceof
|
|
5421
|
+
if (e instanceof Ge) return e;
|
|
5422
5422
|
const n2 = {};
|
|
5423
5423
|
for (const [r, i] of Object.entries(e))
|
|
5424
|
-
if (
|
|
5424
|
+
if (un(i)) {
|
|
5425
5425
|
const s2 = this.getPColumnSpecByRef(i);
|
|
5426
5426
|
if (!s2)
|
|
5427
5427
|
return;
|
|
5428
5428
|
n2[r] = s2;
|
|
5429
5429
|
} else
|
|
5430
5430
|
n2[r] = i;
|
|
5431
|
-
return new
|
|
5431
|
+
return new Ge(n2);
|
|
5432
5432
|
}
|
|
5433
5433
|
/**
|
|
5434
5434
|
* Returns columns that match the provided anchors and selectors. It applies axis filters and label derivation.
|
|
@@ -5441,7 +5441,7 @@
|
|
|
5441
5441
|
getAnchoredPColumns(e, n2, r) {
|
|
5442
5442
|
const i = this.resolveAnchorCtx(e);
|
|
5443
5443
|
if (i)
|
|
5444
|
-
return new
|
|
5444
|
+
return new X().addColumnProvider(this).addAxisLabelProvider(this).getColumns(n2, {
|
|
5445
5445
|
...r,
|
|
5446
5446
|
anchorCtx: i
|
|
5447
5447
|
});
|
|
@@ -5478,7 +5478,7 @@
|
|
|
5478
5478
|
getCanonicalOptions(e, n2, r) {
|
|
5479
5479
|
const i = this.resolveAnchorCtx(e);
|
|
5480
5480
|
if (!i) return;
|
|
5481
|
-
const s2 = new
|
|
5481
|
+
const s2 = new X().addColumnProvider(this).addAxisLabelProvider(this).getUniversalEntries(n2, {
|
|
5482
5482
|
...r,
|
|
5483
5483
|
anchorCtx: i
|
|
5484
5484
|
});
|
|
@@ -5502,7 +5502,7 @@
|
|
|
5502
5502
|
ref: n2.ref,
|
|
5503
5503
|
obj: {
|
|
5504
5504
|
...n2.obj,
|
|
5505
|
-
data: new
|
|
5505
|
+
data: new R(n2.obj.data, [n2.ref.blockId, n2.ref.name])
|
|
5506
5506
|
}
|
|
5507
5507
|
}))
|
|
5508
5508
|
};
|
|
@@ -5521,9 +5521,9 @@
|
|
|
5521
5521
|
ref: n2.ref,
|
|
5522
5522
|
obj: {
|
|
5523
5523
|
...n2.obj,
|
|
5524
|
-
data:
|
|
5524
|
+
data: ln(
|
|
5525
5525
|
n2.obj.data,
|
|
5526
|
-
(r) => new
|
|
5526
|
+
(r) => new R(r, [n2.ref.blockId, n2.ref.name])
|
|
5527
5527
|
)
|
|
5528
5528
|
}
|
|
5529
5529
|
}))
|
|
@@ -5550,9 +5550,9 @@
|
|
|
5550
5550
|
)) == null ? void 0 : r.obj;
|
|
5551
5551
|
const n2 = this.ctx.getDataFromResultPoolByRef(e.blockId, e.name);
|
|
5552
5552
|
if (n2)
|
|
5553
|
-
return
|
|
5553
|
+
return nn(
|
|
5554
5554
|
n2,
|
|
5555
|
-
(i) => new
|
|
5555
|
+
(i) => new R(i, [e.blockId, e.name])
|
|
5556
5556
|
);
|
|
5557
5557
|
}
|
|
5558
5558
|
/**
|
|
@@ -5563,7 +5563,7 @@
|
|
|
5563
5563
|
getPColumnByRef(e) {
|
|
5564
5564
|
const n2 = this.getDataByRef(e);
|
|
5565
5565
|
if (n2)
|
|
5566
|
-
return
|
|
5566
|
+
return en(n2);
|
|
5567
5567
|
}
|
|
5568
5568
|
/**
|
|
5569
5569
|
* Returns spec associated with the ref ensuring that it is a p-column spec.
|
|
@@ -5573,7 +5573,7 @@
|
|
|
5573
5573
|
getPColumnSpecByRef(e) {
|
|
5574
5574
|
const n2 = this.getSpecByRef(e);
|
|
5575
5575
|
if (n2) {
|
|
5576
|
-
if (!
|
|
5576
|
+
if (!l$1(n2)) throw new Error(`not a PColumn spec (kind = ${n2.kind})`);
|
|
5577
5577
|
return n2;
|
|
5578
5578
|
}
|
|
5579
5579
|
}
|
|
@@ -5592,13 +5592,13 @@
|
|
|
5592
5592
|
findDataWithCompatibleSpec(e) {
|
|
5593
5593
|
const n2 = [];
|
|
5594
5594
|
e: for (const r of this.getData().entries) {
|
|
5595
|
-
if (!
|
|
5595
|
+
if (!l$1(r.obj.spec))
|
|
5596
5596
|
continue;
|
|
5597
5597
|
const i = r.obj.spec;
|
|
5598
|
-
if (e.name === i.name && e.valueType === i.valueType && e.axesSpec.length === i.axesSpec.length &&
|
|
5598
|
+
if (e.name === i.name && e.valueType === i.valueType && e.axesSpec.length === i.axesSpec.length && de(e.domain, i.domain)) {
|
|
5599
5599
|
for (let s2 = 0; s2 < e.axesSpec.length; ++s2) {
|
|
5600
5600
|
const o = e.axesSpec[s2], a = i.axesSpec[s2];
|
|
5601
|
-
if (o.name !== a.name || o.type !== a.type || !
|
|
5601
|
+
if (o.name !== a.name || o.type !== a.type || !de(o.domain, a.domain))
|
|
5602
5602
|
continue e;
|
|
5603
5603
|
}
|
|
5604
5604
|
n2.push(r.obj);
|
|
@@ -5615,7 +5615,7 @@
|
|
|
5615
5615
|
for (const r of n2.entries) {
|
|
5616
5616
|
if (!ie$1(r.obj)) continue;
|
|
5617
5617
|
const i = r.obj.spec;
|
|
5618
|
-
if (i.name === "pl7.app/label" && i.axesSpec.length === 1 && i.axesSpec[0].name === e.name && i.axesSpec[0].type === e.type &&
|
|
5618
|
+
if (i.name === "pl7.app/label" && i.axesSpec.length === 1 && i.axesSpec[0].name === e.name && i.axesSpec[0].type === e.type && de(e.domain, i.axesSpec[0].domain)) {
|
|
5619
5619
|
if (r.obj.data.resourceType.name !== "PColumnData/Json")
|
|
5620
5620
|
throw Error(`Expected JSON column for labels, got: ${r.obj.data.resourceType.name}`);
|
|
5621
5621
|
return Object.fromEntries(
|
|
@@ -5634,13 +5634,13 @@
|
|
|
5634
5634
|
* @returns An array of PColumn objects matching the selectors. Data is loaded on first access.
|
|
5635
5635
|
*/
|
|
5636
5636
|
selectColumns(e) {
|
|
5637
|
-
const n2 = typeof e == "function" ? e :
|
|
5638
|
-
return this.getSpecs().entries.filter(({ obj: i }) =>
|
|
5637
|
+
const n2 = typeof e == "function" ? e : rn(e);
|
|
5638
|
+
return this.getSpecs().entries.filter(({ obj: i }) => l$1(i) ? n2(i) : false).map(({ ref: i, obj: s2 }) => {
|
|
5639
5639
|
const o = s2;
|
|
5640
5640
|
let a = null;
|
|
5641
5641
|
const l2 = this;
|
|
5642
5642
|
return {
|
|
5643
|
-
id:
|
|
5643
|
+
id: Ne(i),
|
|
5644
5644
|
spec: o,
|
|
5645
5645
|
get data() {
|
|
5646
5646
|
var u2;
|
|
@@ -5665,13 +5665,13 @@
|
|
|
5665
5665
|
return r;
|
|
5666
5666
|
}
|
|
5667
5667
|
}
|
|
5668
|
-
class
|
|
5668
|
+
class te {
|
|
5669
5669
|
constructor() {
|
|
5670
5670
|
k(this, "ctx");
|
|
5671
5671
|
k(this, "_argsCache");
|
|
5672
5672
|
k(this, "_uiStateCache");
|
|
5673
5673
|
k(this, "_activeArgsCache");
|
|
5674
|
-
k(this, "resultPool", new
|
|
5674
|
+
k(this, "resultPool", new Mt());
|
|
5675
5675
|
this.ctx = v();
|
|
5676
5676
|
}
|
|
5677
5677
|
get args() {
|
|
@@ -5706,16 +5706,16 @@
|
|
|
5706
5706
|
// return this.ctx.featureFlags;
|
|
5707
5707
|
// }
|
|
5708
5708
|
getNamedAccessor(e) {
|
|
5709
|
-
return
|
|
5709
|
+
return ge(
|
|
5710
5710
|
this.ctx.getAccessorHandleByName(e),
|
|
5711
|
-
(n2) => new
|
|
5711
|
+
(n2) => new R(n2, [e])
|
|
5712
5712
|
);
|
|
5713
5713
|
}
|
|
5714
5714
|
get prerun() {
|
|
5715
|
-
return this.getNamedAccessor(
|
|
5715
|
+
return this.getNamedAccessor(je);
|
|
5716
5716
|
}
|
|
5717
5717
|
get outputs() {
|
|
5718
|
-
return this.getNamedAccessor(
|
|
5718
|
+
return this.getNamedAccessor(Je);
|
|
5719
5719
|
}
|
|
5720
5720
|
/**
|
|
5721
5721
|
* Find labels data for a given axis id. It will search for a label column and return its data as a map.
|
|
@@ -5727,7 +5727,7 @@
|
|
|
5727
5727
|
}
|
|
5728
5728
|
verifyInlineAndExplicitColumnsSupport(e) {
|
|
5729
5729
|
var i;
|
|
5730
|
-
const n2 = e.some((s2) => !(s2.data instanceof
|
|
5730
|
+
const n2 = e.some((s2) => !(s2.data instanceof R) || Ce(s2.data)), r = ((i = this.ctx.featureFlags) == null ? void 0 : i.inlineColumnsSupport) === true;
|
|
5731
5731
|
if (n2 && !r) throw Error("Inline or explicit columns not supported");
|
|
5732
5732
|
}
|
|
5733
5733
|
patchPTableDef(e) {
|
|
@@ -5738,14 +5738,14 @@
|
|
|
5738
5738
|
filters: [...e.partitionFilters, ...e.filters]
|
|
5739
5739
|
}), (r = this.ctx.featureFlags) != null && r.pFrameInSetFilterSupport || (e = {
|
|
5740
5740
|
...e,
|
|
5741
|
-
partitionFilters:
|
|
5742
|
-
filters:
|
|
5741
|
+
partitionFilters: ve(e.partitionFilters),
|
|
5742
|
+
filters: ve(e.filters)
|
|
5743
5743
|
}), e;
|
|
5744
5744
|
}
|
|
5745
5745
|
// TODO remove all non-PColumn fields
|
|
5746
5746
|
createPFrame(e) {
|
|
5747
5747
|
return this.verifyInlineAndExplicitColumnsSupport(e), this.ctx.createPFrame(
|
|
5748
|
-
e.map((n2) =>
|
|
5748
|
+
e.map((n2) => Le(n2))
|
|
5749
5749
|
);
|
|
5750
5750
|
}
|
|
5751
5751
|
createPTable(e) {
|
|
@@ -5758,8 +5758,8 @@
|
|
|
5758
5758
|
partitionFilters: e.filters ?? [],
|
|
5759
5759
|
filters: [],
|
|
5760
5760
|
sorting: e.sorting ?? []
|
|
5761
|
-
}) : n2 = this.patchPTableDef(e), this.verifyInlineAndExplicitColumnsSupport(
|
|
5762
|
-
|
|
5761
|
+
}) : n2 = this.patchPTableDef(e), this.verifyInlineAndExplicitColumnsSupport(tn(n2.src)), this.ctx.createPTable(
|
|
5762
|
+
ze(n2, (r) => Le(r))
|
|
5763
5763
|
);
|
|
5764
5764
|
}
|
|
5765
5765
|
/** @deprecated scheduled for removal from SDK */
|
|
@@ -5779,13 +5779,13 @@
|
|
|
5779
5779
|
this.ctx.logError(e);
|
|
5780
5780
|
}
|
|
5781
5781
|
}
|
|
5782
|
-
const z = "1.39.
|
|
5783
|
-
function
|
|
5782
|
+
const z = "1.39.18";
|
|
5783
|
+
function jt(t) {
|
|
5784
5784
|
return t.__renderLambda === true;
|
|
5785
5785
|
}
|
|
5786
|
-
function
|
|
5786
|
+
function fe(t) {
|
|
5787
5787
|
if (t !== void 0)
|
|
5788
|
-
return
|
|
5788
|
+
return jt(t) ? t.handle : t;
|
|
5789
5789
|
}
|
|
5790
5790
|
const x = class x2 {
|
|
5791
5791
|
constructor(e, n2, r, i, s2, o, a, l2, u2) {
|
|
@@ -5797,8 +5797,8 @@
|
|
|
5797
5797
|
void 0,
|
|
5798
5798
|
{},
|
|
5799
5799
|
{},
|
|
5800
|
-
|
|
5801
|
-
|
|
5800
|
+
ie(true),
|
|
5801
|
+
ie([]),
|
|
5802
5802
|
void 0,
|
|
5803
5803
|
void 0,
|
|
5804
5804
|
{ ...x2.INITIAL_BLOCK_FEATURE_FLAGS }
|
|
@@ -5807,7 +5807,7 @@
|
|
|
5807
5807
|
output(e, n2, r = {}) {
|
|
5808
5808
|
if (typeof n2 == "function") {
|
|
5809
5809
|
const i = `output#${e}`;
|
|
5810
|
-
return G(i, () => n2(new
|
|
5810
|
+
return G(i, () => n2(new te())), new x2(
|
|
5811
5811
|
this._renderingMode,
|
|
5812
5812
|
this._initialArgs,
|
|
5813
5813
|
this._initialUiState,
|
|
@@ -5846,7 +5846,7 @@
|
|
|
5846
5846
|
return this.output(e, n2, { retentive: true });
|
|
5847
5847
|
}
|
|
5848
5848
|
argsValid(e) {
|
|
5849
|
-
return typeof e == "function" ? (G("inputsValid", () => e(new
|
|
5849
|
+
return typeof e == "function" ? (G("inputsValid", () => e(new te())), new x2(
|
|
5850
5850
|
this._renderingMode,
|
|
5851
5851
|
this._initialArgs,
|
|
5852
5852
|
this._initialUiState,
|
|
@@ -5872,7 +5872,7 @@
|
|
|
5872
5872
|
);
|
|
5873
5873
|
}
|
|
5874
5874
|
sections(e) {
|
|
5875
|
-
return Array.isArray(e) ? this.sections(
|
|
5875
|
+
return Array.isArray(e) ? this.sections(ie(e)) : typeof e == "function" ? (G("sections", () => e(new te())), new x2(
|
|
5876
5876
|
this._renderingMode,
|
|
5877
5877
|
this._initialArgs,
|
|
5878
5878
|
this._initialUiState,
|
|
@@ -5896,7 +5896,7 @@
|
|
|
5896
5896
|
}
|
|
5897
5897
|
/** Sets a rendering function to derive block title, shown for the block in the left blocks-overview panel. */
|
|
5898
5898
|
title(e) {
|
|
5899
|
-
return G("title", () => e(new
|
|
5899
|
+
return G("title", () => e(new te())), new x2(
|
|
5900
5900
|
this._renderingMode,
|
|
5901
5901
|
this._initialArgs,
|
|
5902
5902
|
this._initialUiState,
|
|
@@ -5992,13 +5992,13 @@
|
|
|
5992
5992
|
sdkVersion: z,
|
|
5993
5993
|
renderingMode: this._renderingMode,
|
|
5994
5994
|
initialArgs: this._initialArgs,
|
|
5995
|
-
inputsValid:
|
|
5996
|
-
sections:
|
|
5995
|
+
inputsValid: fe(this._inputsValid),
|
|
5996
|
+
sections: fe(this._sections),
|
|
5997
5997
|
outputs: Object.fromEntries(
|
|
5998
|
-
Object.entries(this._outputs).map(([n2, r]) => [n2,
|
|
5998
|
+
Object.entries(this._outputs).map(([n2, r]) => [n2, fe(r)])
|
|
5999
5999
|
)
|
|
6000
6000
|
};
|
|
6001
|
-
return
|
|
6001
|
+
return yt() ? Me({ sdkVersion: z }) : { config: e };
|
|
6002
6002
|
}
|
|
6003
6003
|
};
|
|
6004
6004
|
k(x, "INITIAL_BLOCK_FEATURE_FLAGS", {
|
|
@@ -6006,8 +6006,8 @@
|
|
|
6006
6006
|
requiresUIAPIVersion: 1,
|
|
6007
6007
|
requiresModelAPIVersion: 1
|
|
6008
6008
|
});
|
|
6009
|
-
let
|
|
6010
|
-
const platforma =
|
|
6009
|
+
let Fe = x;
|
|
6010
|
+
const platforma = Fe.create("Heavy").withArgs({ titleArg: "The title" }).output("allSpecs", (ctx) => ctx.resultPool.getSpecs()).sections((ctx) => {
|
|
6011
6011
|
return [{ type: "link", href: "/", label: "Main" }];
|
|
6012
6012
|
}).title((ctx) => "Pool explorer").done();
|
|
6013
6013
|
exports2.platforma = platforma;
|