@effect-app/vue-components 4.0.0-beta.2 → 4.0.0-beta.3
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/vue-components.es16.js +10 -10
- package/dist/vue-components.es17.js +9 -9
- package/dist/vue-components.es19.js +1 -1
- package/dist/vue-components.es20.js +1 -1
- package/dist/vue-components.es21.js +2 -2
- package/dist/vue-components.es22.js +2 -2
- package/dist/vue-components.es23.js +1 -1
- package/dist/vue-components.es25.js +1 -1
- package/dist/vue-components.es26.js +2 -2
- package/dist/vue-components.es27.js +2 -2
- package/dist/vue-components.es28.js +1 -1
- package/dist/vue-components.es29.js +1 -1
- package/dist/vue-components.es36.js +37 -317
- package/dist/vue-components.es37.js +4 -561
- package/dist/vue-components.es38.js +77 -21
- package/dist/vue-components.es39.js +1 -1
- package/dist/vue-components.es40.js +551 -54
- package/dist/vue-components.es41.js +41 -4
- package/dist/vue-components.es42.js +27 -4
- package/dist/vue-components.es43.js +5 -24
- package/dist/vue-components.es44.js +36 -71
- package/dist/vue-components.es45.js +304 -30
- package/dist/vue-components.es46.js +25 -308
- package/dist/vue-components.es47.js +4 -99
- package/dist/vue-components.es48.js +22 -29
- package/dist/vue-components.es49.js +75 -2
- package/dist/vue-components.es50.js +99 -2
- package/dist/vue-components.es51.js +2 -2
- package/dist/vue-components.es52.js +317 -110
- package/dist/vue-components.es53.js +66 -0
- package/dist/vue-components.es54.js +2 -7
- package/dist/vue-components.es55.js +2 -32
- package/dist/vue-components.es56.js +113 -0
- package/dist/vue-components.es58.js +9 -0
- package/dist/vue-components.es59.js +30 -36
- package/dist/vue-components.es61.js +191 -40
- package/dist/vue-components.es63.js +1 -1
- package/dist/vue-components.es64.js +100 -22
- package/dist/vue-components.es65.js +82 -5
- package/dist/vue-components.es66.js +15 -21
- package/dist/vue-components.es67.js +31 -29
- package/dist/vue-components.es68.js +2 -22
- package/dist/vue-components.es69.js +21 -12
- package/dist/vue-components.es7.js +1 -1
- package/dist/vue-components.es70.js +12 -5
- package/dist/vue-components.es71.js +113 -19
- package/dist/vue-components.es72.js +3 -9
- package/dist/vue-components.es73.js +2 -31
- package/dist/vue-components.es74.js +2 -48
- package/dist/vue-components.es75.js +15 -26
- package/dist/vue-components.es76.js +70 -101
- package/dist/vue-components.es77.js +22 -81
- package/dist/vue-components.es78.js +5 -21
- package/dist/vue-components.es79.js +21 -12
- package/dist/vue-components.es80.js +29 -112
- package/dist/vue-components.es81.js +22 -3
- package/dist/vue-components.es82.js +12 -32
- package/dist/vue-components.es83.js +5 -2
- package/dist/vue-components.es84.js +19 -2
- package/dist/vue-components.es85.js +9 -16
- package/dist/vue-components.es86.js +31 -15
- package/dist/vue-components.es87.js +47 -69
- package/dist/vue-components.es88.js +26 -8
- package/dist/vue-components.es89.js +16 -2
- package/dist/vue-components.es90.js +7 -14
- package/dist/vue-components.es92.js +1 -1
- package/dist/vue-components.es94.js +1 -1
- package/dist/vue-components.es96.js +3 -3
- package/dist/vue-components.es97.js +1 -1
- package/package.json +3 -3
- package/dist/vue-components.es57.js +0 -194
- package/dist/vue-components.es60.js +0 -85
- package/dist/vue-components.es62.js +0 -7
|
@@ -1,14 +1,23 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
import { NoopTracer as o } from "./vue-components.es80.js";
|
|
2
|
+
var s = new o(), c = (
|
|
3
|
+
/** @class */
|
|
4
|
+
(function() {
|
|
5
|
+
function r(t, e, n, a) {
|
|
6
|
+
this._provider = t, this.name = e, this.version = n, this.options = a;
|
|
7
|
+
}
|
|
8
|
+
return r.prototype.startSpan = function(t, e, n) {
|
|
9
|
+
return this._getTracer().startSpan(t, e, n);
|
|
10
|
+
}, r.prototype.startActiveSpan = function(t, e, n, a) {
|
|
11
|
+
var i = this._getTracer();
|
|
12
|
+
return Reflect.apply(i.startActiveSpan, i, arguments);
|
|
13
|
+
}, r.prototype._getTracer = function() {
|
|
14
|
+
if (this._delegate)
|
|
15
|
+
return this._delegate;
|
|
16
|
+
var t = this._provider.getDelegateTracer(this.name, this.version, this.options);
|
|
17
|
+
return t ? (this._delegate = t, this._delegate) : s;
|
|
18
|
+
}, r;
|
|
19
|
+
})()
|
|
20
|
+
);
|
|
10
21
|
export {
|
|
11
|
-
|
|
12
|
-
n as CurrentStackFrame,
|
|
13
|
-
c as MinimumLogLevel
|
|
22
|
+
c as ProxyTracer
|
|
14
23
|
};
|
|
@@ -1,115 +1,32 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
const t = new Error();
|
|
10
|
-
Error.stackTraceLimit = e;
|
|
11
|
-
function n() {
|
|
12
|
-
}
|
|
13
|
-
const r = n;
|
|
14
|
-
return Object.setPrototypeOf(r, P), Object.defineProperty(r, "stack", {
|
|
15
|
-
get() {
|
|
16
|
-
return t.stack;
|
|
1
|
+
import { ContextAPI as l } from "./vue-components.es87.js";
|
|
2
|
+
import { getSpanContext as m, setSpan as d } from "./vue-components.es96.js";
|
|
3
|
+
import { NonRecordingSpan as p } from "./vue-components.es86.js";
|
|
4
|
+
import { isSpanContextValid as S } from "./vue-components.es84.js";
|
|
5
|
+
var f = l.getInstance(), I = (
|
|
6
|
+
/** @class */
|
|
7
|
+
(function() {
|
|
8
|
+
function t() {
|
|
17
9
|
}
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
of(e) {
|
|
39
|
-
return e;
|
|
40
|
-
},
|
|
41
|
-
serviceMap(e) {
|
|
42
|
-
return T(this, e);
|
|
43
|
-
},
|
|
44
|
-
use(e) {
|
|
45
|
-
return s((t) => e(a(t.services, this)));
|
|
46
|
-
},
|
|
47
|
-
useSync(e) {
|
|
48
|
-
return s((t) => u(e(a(t.services, this))));
|
|
49
|
-
}
|
|
50
|
-
}, o = "~effect/ServiceMap/Reference", l = "~effect/ServiceMap", i = (e) => {
|
|
51
|
-
const t = Object.create(w);
|
|
52
|
-
return t.mapUnsafe = e, t;
|
|
53
|
-
}, w = {
|
|
54
|
-
...p,
|
|
55
|
-
[l]: {
|
|
56
|
-
_Services: (e) => e
|
|
57
|
-
},
|
|
58
|
-
toJSON() {
|
|
59
|
-
return {
|
|
60
|
-
_id: "ServiceMap",
|
|
61
|
-
services: Array.from(this.mapUnsafe).map(([e, t]) => ({
|
|
62
|
-
key: e,
|
|
63
|
-
value: t
|
|
64
|
-
}))
|
|
65
|
-
};
|
|
66
|
-
},
|
|
67
|
-
[d](e) {
|
|
68
|
-
if (!V(e) || this.mapUnsafe.size !== e.mapUnsafe.size) return !1;
|
|
69
|
-
for (const t of this.mapUnsafe.keys())
|
|
70
|
-
if (!e.mapUnsafe.has(t) || !S(this.mapUnsafe.get(t), e.mapUnsafe.get(t)))
|
|
71
|
-
return !1;
|
|
72
|
-
return !0;
|
|
73
|
-
},
|
|
74
|
-
[g]() {
|
|
75
|
-
return U(this.mapUnsafe.size);
|
|
76
|
-
}
|
|
77
|
-
}, V = (e) => M(e, l), N = () => O, O = /* @__PURE__ */ i(/* @__PURE__ */ new Map()), T = (e, t) => i(/* @__PURE__ */ new Map([[e.key, t]])), x = /* @__PURE__ */ m(3, (e, t, n) => {
|
|
78
|
-
const r = new Map(e.mapUnsafe);
|
|
79
|
-
return r.set(t.key, n), i(r);
|
|
80
|
-
}), I = /* @__PURE__ */ m(2, (e, t) => {
|
|
81
|
-
if (!e.mapUnsafe.has(t.key)) {
|
|
82
|
-
if (o in t) return k(t);
|
|
83
|
-
throw _(t);
|
|
84
|
-
}
|
|
85
|
-
return e.mapUnsafe.get(t.key);
|
|
86
|
-
}), a = I, A = (e, t) => e.mapUnsafe.has(t.key) ? e.mapUnsafe.get(t.key) : k(t), c = "~effect/ServiceMap/defaultValue", k = (e) => c in e ? e[c] : e[c] = e.defaultValue(), _ = (e) => {
|
|
87
|
-
const t = new Error(`Service not found${e.key ? `: ${String(e.key)}` : ""}`);
|
|
88
|
-
if (e.stack) {
|
|
89
|
-
const n = e.stack.split(`
|
|
90
|
-
`);
|
|
91
|
-
if (n.length > 2) {
|
|
92
|
-
const r = n[2].match(/at (.*)/);
|
|
93
|
-
r && (t.message = t.message + ` (defined at ${r[1]})`);
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
if (t.stack) {
|
|
97
|
-
const n = t.stack.split(`
|
|
98
|
-
`);
|
|
99
|
-
n.splice(1, 3), t.stack = n.join(`
|
|
100
|
-
`);
|
|
101
|
-
}
|
|
102
|
-
return t;
|
|
103
|
-
}, C = E;
|
|
10
|
+
return t.prototype.startSpan = function(u, e, r) {
|
|
11
|
+
r === void 0 && (r = f.active());
|
|
12
|
+
var i = !!e?.root;
|
|
13
|
+
if (i)
|
|
14
|
+
return new p();
|
|
15
|
+
var n = r && m(r);
|
|
16
|
+
return g(n) && S(n) ? new p(n) : new p();
|
|
17
|
+
}, t.prototype.startActiveSpan = function(u, e, r, i) {
|
|
18
|
+
var n, o, a;
|
|
19
|
+
if (!(arguments.length < 2)) {
|
|
20
|
+
arguments.length === 2 ? a = e : arguments.length === 3 ? (n = e, a = r) : (n = e, o = r, a = i);
|
|
21
|
+
var v = o ?? f.active(), s = this.startSpan(u, n, v), c = d(v, s);
|
|
22
|
+
return f.with(c, a, void 0, s);
|
|
23
|
+
}
|
|
24
|
+
}, t;
|
|
25
|
+
})()
|
|
26
|
+
);
|
|
27
|
+
function g(t) {
|
|
28
|
+
return typeof t == "object" && typeof t.spanId == "string" && typeof t.traceId == "string" && typeof t.traceFlags == "number";
|
|
29
|
+
}
|
|
104
30
|
export {
|
|
105
|
-
|
|
106
|
-
E as Service,
|
|
107
|
-
x as add,
|
|
108
|
-
N as empty,
|
|
109
|
-
a as get,
|
|
110
|
-
A as getReferenceUnsafe,
|
|
111
|
-
I as getUnsafe,
|
|
112
|
-
V as isServiceMap,
|
|
113
|
-
T as make,
|
|
114
|
-
i as makeUnsafe
|
|
31
|
+
I as NoopTracer
|
|
115
32
|
};
|
|
@@ -1,5 +1,24 @@
|
|
|
1
|
-
|
|
1
|
+
import { ProxyTracer as i } from "./vue-components.es79.js";
|
|
2
|
+
import { NoopTracerProvider as n } from "./vue-components.es82.js";
|
|
3
|
+
var c = new n(), g = (
|
|
4
|
+
/** @class */
|
|
5
|
+
(function() {
|
|
6
|
+
function t() {
|
|
7
|
+
}
|
|
8
|
+
return t.prototype.getTracer = function(e, o, a) {
|
|
9
|
+
var r;
|
|
10
|
+
return (r = this.getDelegateTracer(e, o, a)) !== null && r !== void 0 ? r : new i(this, e, o, a);
|
|
11
|
+
}, t.prototype.getDelegate = function() {
|
|
12
|
+
var e;
|
|
13
|
+
return (e = this._delegate) !== null && e !== void 0 ? e : c;
|
|
14
|
+
}, t.prototype.setDelegate = function(e) {
|
|
15
|
+
this._delegate = e;
|
|
16
|
+
}, t.prototype.getDelegateTracer = function(e, o, a) {
|
|
17
|
+
var r;
|
|
18
|
+
return (r = this._delegate) === null || r === void 0 ? void 0 : r.getTracer(e, o, a);
|
|
19
|
+
}, t;
|
|
20
|
+
})()
|
|
21
|
+
);
|
|
2
22
|
export {
|
|
3
|
-
|
|
4
|
-
r as TracerKey
|
|
23
|
+
g as ProxyTracerProvider
|
|
5
24
|
};
|
|
@@ -1,34 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
value: r,
|
|
13
|
-
done: !0
|
|
14
|
-
} : (this.called = !0, {
|
|
15
|
-
value: this.self,
|
|
16
|
-
done: !1
|
|
17
|
-
});
|
|
18
|
-
}
|
|
19
|
-
/**
|
|
20
|
-
* @since 2.0.0
|
|
21
|
-
*/
|
|
22
|
-
[Symbol.iterator]() {
|
|
23
|
-
return new l(this.self);
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
const e = "~effect/Effect/internal", n = {
|
|
27
|
-
[e]: (t) => t()
|
|
28
|
-
}, s = {
|
|
29
|
-
[e]: (t) => t()
|
|
30
|
-
}, a = /* @__PURE__ */ n[e](() => new Error().stack)?.includes(e) === !0, c = a ? n[e] : s[e];
|
|
1
|
+
import { NoopTracer as o } from "./vue-components.es80.js";
|
|
2
|
+
var p = (
|
|
3
|
+
/** @class */
|
|
4
|
+
(function() {
|
|
5
|
+
function r() {
|
|
6
|
+
}
|
|
7
|
+
return r.prototype.getTracer = function(e, n, t) {
|
|
8
|
+
return new o();
|
|
9
|
+
}, r;
|
|
10
|
+
})()
|
|
11
|
+
);
|
|
31
12
|
export {
|
|
32
|
-
|
|
33
|
-
c as internalCall
|
|
13
|
+
p as NoopTracerProvider
|
|
34
14
|
};
|
|
@@ -1,4 +1,21 @@
|
|
|
1
|
-
|
|
1
|
+
import { INVALID_TRACEID as r, INVALID_SPANID as t } from "./vue-components.es85.js";
|
|
2
|
+
import { NonRecordingSpan as i } from "./vue-components.es86.js";
|
|
3
|
+
var a = /^([0-9a-f]{32})$/i, o = /^[0-9a-f]{16}$/i;
|
|
4
|
+
function I(n) {
|
|
5
|
+
return a.test(n) && n !== r;
|
|
6
|
+
}
|
|
7
|
+
function e(n) {
|
|
8
|
+
return o.test(n) && n !== t;
|
|
9
|
+
}
|
|
10
|
+
function A(n) {
|
|
11
|
+
return I(n.traceId) && e(n.spanId);
|
|
12
|
+
}
|
|
13
|
+
function D(n) {
|
|
14
|
+
return new i(n);
|
|
15
|
+
}
|
|
2
16
|
export {
|
|
3
|
-
|
|
17
|
+
A as isSpanContextValid,
|
|
18
|
+
e as isValidSpanId,
|
|
19
|
+
I as isValidTraceId,
|
|
20
|
+
D as wrapSpanContext
|
|
4
21
|
};
|
|
@@ -1,18 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
for (; o !== null && o !== Object.prototype; ) {
|
|
8
|
-
const r = Reflect.ownKeys(o);
|
|
9
|
-
for (let c = 0; c < r.length; c++)
|
|
10
|
-
e.add(r[c]);
|
|
11
|
-
o = Object.getPrototypeOf(o);
|
|
12
|
-
}
|
|
13
|
-
return e.has("constructor") && typeof t.constructor == "function" && n === t.constructor.prototype && e.delete("constructor"), e;
|
|
14
|
-
}, f = /* @__PURE__ */ new WeakSet();
|
|
1
|
+
import { TraceFlags as I } from "./vue-components.es83.js";
|
|
2
|
+
var a = "0000000000000000", r = "00000000000000000000000000000000", A = {
|
|
3
|
+
traceId: r,
|
|
4
|
+
spanId: a,
|
|
5
|
+
traceFlags: I.NONE
|
|
6
|
+
};
|
|
15
7
|
export {
|
|
16
|
-
|
|
17
|
-
|
|
8
|
+
a as INVALID_SPANID,
|
|
9
|
+
A as INVALID_SPAN_CONTEXT,
|
|
10
|
+
r as INVALID_TRACEID
|
|
18
11
|
};
|
|
@@ -1,17 +1,33 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
1
|
+
import { INVALID_SPAN_CONTEXT as o } from "./vue-components.es85.js";
|
|
2
|
+
var i = (
|
|
3
|
+
/** @class */
|
|
4
|
+
(function() {
|
|
5
|
+
function t(n) {
|
|
6
|
+
n === void 0 && (n = o), this._spanContext = n;
|
|
7
|
+
}
|
|
8
|
+
return t.prototype.spanContext = function() {
|
|
9
|
+
return this._spanContext;
|
|
10
|
+
}, t.prototype.setAttribute = function(n, e) {
|
|
11
|
+
return this;
|
|
12
|
+
}, t.prototype.setAttributes = function(n) {
|
|
13
|
+
return this;
|
|
14
|
+
}, t.prototype.addEvent = function(n, e) {
|
|
15
|
+
return this;
|
|
16
|
+
}, t.prototype.addLink = function(n) {
|
|
17
|
+
return this;
|
|
18
|
+
}, t.prototype.addLinks = function(n) {
|
|
19
|
+
return this;
|
|
20
|
+
}, t.prototype.setStatus = function(n) {
|
|
21
|
+
return this;
|
|
22
|
+
}, t.prototype.updateName = function(n) {
|
|
23
|
+
return this;
|
|
24
|
+
}, t.prototype.end = function(n) {
|
|
25
|
+
}, t.prototype.isRecording = function() {
|
|
26
|
+
return !1;
|
|
27
|
+
}, t.prototype.recordException = function(n, e) {
|
|
28
|
+
}, t;
|
|
29
|
+
})()
|
|
30
|
+
);
|
|
14
31
|
export {
|
|
15
|
-
|
|
16
|
-
s as toJson
|
|
32
|
+
i as NonRecordingSpan
|
|
17
33
|
};
|
|
@@ -1,72 +1,50 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
[r](s) {
|
|
19
|
-
return f(s) && d(s) && c(this.success, s.success);
|
|
20
|
-
},
|
|
21
|
-
[o]() {
|
|
22
|
-
return u(e(this._tag))(e(this.success));
|
|
23
|
-
},
|
|
24
|
-
toString() {
|
|
25
|
-
return `success(${i(this.success)})`;
|
|
26
|
-
},
|
|
27
|
-
toJSON() {
|
|
28
|
-
return {
|
|
29
|
-
_id: "Result",
|
|
30
|
-
_tag: this._tag,
|
|
31
|
-
value: a(this.success)
|
|
32
|
-
};
|
|
33
|
-
},
|
|
34
|
-
asEffect() {
|
|
35
|
-
return h(this.success);
|
|
1
|
+
import { NoopContextManager as f } from "./vue-components.es97.js";
|
|
2
|
+
import { registerGlobal as s, getGlobal as p, unregisterGlobal as g } from "./vue-components.es95.js";
|
|
3
|
+
import { DiagAPI as u } from "./vue-components.es92.js";
|
|
4
|
+
var y = function(t, e) {
|
|
5
|
+
var a = typeof Symbol == "function" && t[Symbol.iterator];
|
|
6
|
+
if (!a) return t;
|
|
7
|
+
var n = a.call(t), o, r = [], i;
|
|
8
|
+
try {
|
|
9
|
+
for (; (e === void 0 || e-- > 0) && !(o = n.next()).done; ) r.push(o.value);
|
|
10
|
+
} catch (c) {
|
|
11
|
+
i = { error: c };
|
|
12
|
+
} finally {
|
|
13
|
+
try {
|
|
14
|
+
o && !o.done && (a = n.return) && a.call(n);
|
|
15
|
+
} finally {
|
|
16
|
+
if (i) throw i.error;
|
|
17
|
+
}
|
|
36
18
|
}
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
return
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
19
|
+
return r;
|
|
20
|
+
}, d = function(t, e, a) {
|
|
21
|
+
if (a || arguments.length === 2) for (var n = 0, o = e.length, r; n < o; n++)
|
|
22
|
+
(r || !(n in e)) && (r || (r = Array.prototype.slice.call(e, 0, n)), r[n] = e[n]);
|
|
23
|
+
return t.concat(r || Array.prototype.slice.call(e));
|
|
24
|
+
}, l = "context", _ = new f(), A = (
|
|
25
|
+
/** @class */
|
|
26
|
+
(function() {
|
|
27
|
+
function t() {
|
|
28
|
+
}
|
|
29
|
+
return t.getInstance = function() {
|
|
30
|
+
return this._instance || (this._instance = new t()), this._instance;
|
|
31
|
+
}, t.prototype.setGlobalContextManager = function(e) {
|
|
32
|
+
return s(l, e, u.instance());
|
|
33
|
+
}, t.prototype.active = function() {
|
|
34
|
+
return this._getContextManager().active();
|
|
35
|
+
}, t.prototype.with = function(e, a, n) {
|
|
36
|
+
for (var o, r = [], i = 3; i < arguments.length; i++)
|
|
37
|
+
r[i - 3] = arguments[i];
|
|
38
|
+
return (o = this._getContextManager()).with.apply(o, d([e, a, n], y(r), !1));
|
|
39
|
+
}, t.prototype.bind = function(e, a) {
|
|
40
|
+
return this._getContextManager().bind(e, a);
|
|
41
|
+
}, t.prototype._getContextManager = function() {
|
|
42
|
+
return p(l) || _;
|
|
43
|
+
}, t.prototype.disable = function() {
|
|
44
|
+
this._getContextManager().disable(), g(l, u.instance());
|
|
45
|
+
}, t;
|
|
46
|
+
})()
|
|
47
|
+
);
|
|
66
48
|
export {
|
|
67
|
-
|
|
68
|
-
O as isFailure,
|
|
69
|
-
f as isResult,
|
|
70
|
-
d as isSuccess,
|
|
71
|
-
J as succeed
|
|
49
|
+
A as ContextAPI
|
|
72
50
|
};
|
|
@@ -1,10 +1,28 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
}
|
|
5
|
-
|
|
1
|
+
import { registerGlobal as a, getGlobal as p, unregisterGlobal as s } from "./vue-components.es95.js";
|
|
2
|
+
import { ProxyTracerProvider as i } from "./vue-components.es81.js";
|
|
3
|
+
import { wrapSpanContext as c, isSpanContextValid as h } from "./vue-components.es84.js";
|
|
4
|
+
import { deleteSpan as g, getSpan as S, getActiveSpan as x, getSpanContext as d, setSpan as f, setSpanContext as l } from "./vue-components.es96.js";
|
|
5
|
+
import { DiagAPI as o } from "./vue-components.es92.js";
|
|
6
|
+
var n = "trace", y = (
|
|
7
|
+
/** @class */
|
|
8
|
+
(function() {
|
|
9
|
+
function t() {
|
|
10
|
+
this._proxyTracerProvider = new i(), this.wrapSpanContext = c, this.isSpanContextValid = h, this.deleteSpan = g, this.getSpan = S, this.getActiveSpan = x, this.getSpanContext = d, this.setSpan = f, this.setSpanContext = l;
|
|
11
|
+
}
|
|
12
|
+
return t.getInstance = function() {
|
|
13
|
+
return this._instance || (this._instance = new t()), this._instance;
|
|
14
|
+
}, t.prototype.setGlobalTracerProvider = function(r) {
|
|
15
|
+
var e = a(n, this._proxyTracerProvider, o.instance());
|
|
16
|
+
return e && this._proxyTracerProvider.setDelegate(r), e;
|
|
17
|
+
}, t.prototype.getTracerProvider = function() {
|
|
18
|
+
return p(n) || this._proxyTracerProvider;
|
|
19
|
+
}, t.prototype.getTracer = function(r, e) {
|
|
20
|
+
return this.getTracerProvider().getTracer(r, e);
|
|
21
|
+
}, t.prototype.disable = function() {
|
|
22
|
+
s(n, o.instance()), this._proxyTracerProvider = new i();
|
|
23
|
+
}, t;
|
|
24
|
+
})()
|
|
25
|
+
);
|
|
6
26
|
export {
|
|
7
|
-
|
|
8
|
-
N as make,
|
|
9
|
-
m as mapInput
|
|
27
|
+
y as TraceAPI
|
|
10
28
|
};
|
|
@@ -1,4 +1,18 @@
|
|
|
1
|
-
const
|
|
1
|
+
const s = (t) => {
|
|
2
|
+
const e = new Set(Reflect.ownKeys(t));
|
|
3
|
+
if (t.constructor === Object) return e;
|
|
4
|
+
t instanceof Error && e.delete("stack");
|
|
5
|
+
const n = Object.getPrototypeOf(t);
|
|
6
|
+
let o = n;
|
|
7
|
+
for (; o !== null && o !== Object.prototype; ) {
|
|
8
|
+
const r = Reflect.ownKeys(o);
|
|
9
|
+
for (let c = 0; c < r.length; c++)
|
|
10
|
+
e.add(r[c]);
|
|
11
|
+
o = Object.getPrototypeOf(o);
|
|
12
|
+
}
|
|
13
|
+
return e.has("constructor") && typeof t.constructor == "function" && n === t.constructor.prototype && e.delete("constructor"), e;
|
|
14
|
+
}, f = /* @__PURE__ */ new WeakSet();
|
|
2
15
|
export {
|
|
3
|
-
|
|
16
|
+
f as byReferenceInstances,
|
|
17
|
+
s as getAllObjectKeys
|
|
4
18
|
};
|
|
@@ -1,17 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
function
|
|
3
|
-
return
|
|
1
|
+
import { dual as o } from "./vue-components.es39.js";
|
|
2
|
+
function N(i) {
|
|
3
|
+
return (r, u) => r === u ? 0 : i(r, u);
|
|
4
4
|
}
|
|
5
|
-
|
|
6
|
-
return (n) => r(n)?.[e];
|
|
7
|
-
}
|
|
8
|
-
const i = /* @__PURE__ */ o("identifier"), c = /* @__PURE__ */ t((e) => {
|
|
9
|
-
const n = i(e);
|
|
10
|
-
return typeof n == "string" ? n : e.getExpected(c);
|
|
11
|
-
});
|
|
5
|
+
const e = /* @__PURE__ */ N((i, r) => globalThis.Number.isNaN(i) && globalThis.Number.isNaN(r) ? 0 : globalThis.Number.isNaN(i) ? -1 : globalThis.Number.isNaN(r) ? 1 : i < r ? -1 : 1), m = /* @__PURE__ */ o(2, (i, r) => N((u, n) => i(r(u), r(n))));
|
|
12
6
|
export {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
i as resolveIdentifier
|
|
7
|
+
e as Number,
|
|
8
|
+
N as make,
|
|
9
|
+
m as mapInput
|
|
17
10
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DiagComponentLogger as m } from "./vue-components.es93.js";
|
|
2
2
|
import { createLogLevelDiagLogger as y } from "./vue-components.es94.js";
|
|
3
|
-
import { DiagLogLevel as d } from "./vue-components.
|
|
3
|
+
import { DiagLogLevel as d } from "./vue-components.es78.js";
|
|
4
4
|
import { unregisterGlobal as p, getGlobal as v, registerGlobal as w } from "./vue-components.es95.js";
|
|
5
5
|
var b = function(i, n) {
|
|
6
6
|
var r = typeof Symbol == "function" && i[Symbol.iterator];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { createContextKey as o } from "./vue-components.
|
|
2
|
-
import { NonRecordingSpan as a } from "./vue-components.
|
|
3
|
-
import { ContextAPI as u } from "./vue-components.
|
|
1
|
+
import { createContextKey as o } from "./vue-components.es77.js";
|
|
2
|
+
import { NonRecordingSpan as a } from "./vue-components.es86.js";
|
|
3
|
+
import { ContextAPI as u } from "./vue-components.es87.js";
|
|
4
4
|
var n = o("OpenTelemetry Context Key SPAN");
|
|
5
5
|
function r(e) {
|
|
6
6
|
return e.getValue(n) || void 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-app/vue-components",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.3",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@mdi/js": "^7.4.47",
|
|
6
6
|
"effect": "^4.0.0-beta.25",
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
"highlight.js": "^11.11.1",
|
|
54
54
|
"mitt": "^3.0.1",
|
|
55
55
|
"vue3-highlightjs": "^1.0.5",
|
|
56
|
-
"@effect-app/vue": "4.0.0-beta.
|
|
57
|
-
"effect-app": "4.0.0-beta.
|
|
56
|
+
"@effect-app/vue": "4.0.0-beta.3",
|
|
57
|
+
"effect-app": "4.0.0-beta.3"
|
|
58
58
|
},
|
|
59
59
|
"scripts": {
|
|
60
60
|
"check": "vue-tsc",
|