oiu-core 0.1.5 → 0.1.7
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.
|
@@ -6345,7 +6345,7 @@ const Mw = "_overlay_1ol4o_1", Fw = "_dummy_1ol4o_7", Uf = {
|
|
|
6345
6345
|
return s ? t ? /* @__PURE__ */ be(Dw, { spin: n, skeleton: o, className: r, children: e || !s ? i : void 0 }) : /* @__PURE__ */ be(Qm, { spin: n, skeleton: o, className: r, children: e || !s ? i : void 0 }) : i;
|
|
6346
6346
|
});
|
|
6347
6347
|
rr.displayName = "Wait";
|
|
6348
|
-
function Dw({ className: e, spin: t, skeleton: r, children: n }) {
|
|
6348
|
+
function Dw({ className: e = "wait-overlay", spin: t, skeleton: r, children: n }) {
|
|
6349
6349
|
const o = Gn();
|
|
6350
6350
|
if (t && t.spinning) {
|
|
6351
6351
|
if (t.tip && typeof t.tip != "string") throw new Error("Only string is allowed when using translation");
|
|
@@ -19318,7 +19318,7 @@ function UR({ className: e, children: t, getPermissionFor: r, defaultAbility: n
|
|
|
19318
19318
|
var zv = /* @__PURE__ */ ((e) => (e[e.Always = 1] = "Always", e[e.Never = 2] = "Never", e[e.RedirectIfFails = 3] = "RedirectIfFails", e))(zv || {});
|
|
19319
19319
|
const WR = () => import(
|
|
19320
19320
|
/* @vite-ignore */
|
|
19321
|
-
"./index-
|
|
19321
|
+
"./index-CYZOcuqx.js"
|
|
19322
19322
|
);
|
|
19323
19323
|
async function GR(e, t, r) {
|
|
19324
19324
|
return (await WR()).default(e, t, r);
|
|
@@ -19340,6 +19340,23 @@ const FN = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
19340
19340
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
19341
19341
|
var qv = /* @__PURE__ */ ((e) => (e[e.Info = 1] = "Info", e[e.Error = 2] = "Error", e[e.Warning = 3] = "Warning", e[e.Success = 4] = "Success", e))(qv || {});
|
|
19342
19342
|
Promise.delay = (e) => new Promise((t) => setTimeout(t, e));
|
|
19343
|
+
Promise.waitUntil = (e, t) => {
|
|
19344
|
+
const r = t?.timeoutMs ?? 1e4, n = t?.intervalMs ?? 25, o = t?.timeoutMessage ?? "Timed out waiting for condition";
|
|
19345
|
+
return new Promise((i, s) => {
|
|
19346
|
+
const a = Date.now(), c = () => {
|
|
19347
|
+
if (e()) {
|
|
19348
|
+
i();
|
|
19349
|
+
return;
|
|
19350
|
+
}
|
|
19351
|
+
if (Date.now() - a >= r) {
|
|
19352
|
+
s(new Error(o));
|
|
19353
|
+
return;
|
|
19354
|
+
}
|
|
19355
|
+
setTimeout(c, n);
|
|
19356
|
+
};
|
|
19357
|
+
c();
|
|
19358
|
+
});
|
|
19359
|
+
};
|
|
19343
19360
|
var Oa, Np;
|
|
19344
19361
|
function Zn() {
|
|
19345
19362
|
return Np || (Np = 1, Oa = TypeError), Oa;
|
package/dist/main.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"promise.d.ts","sourceRoot":"","sources":["../../lib/utils/promise.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"promise.d.ts","sourceRoot":"","sources":["../../lib/utils/promise.ts"],"names":[],"mappings":"AAqCA,eAAe,OAAO,CAAC"}
|