@effect-app/vue-components 4.0.0-beta.282 → 4.0.0-beta.284
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/types/components/OmegaForm/OmegaInputVuetify.vue.d.ts +6 -0
- package/dist/types/components/OmegaForm/OmegaInternalInput.vue.d.ts +5 -9
- package/dist/types/components/OmegaForm/createUseFormWithCustomInput.d.ts +4 -2
- package/dist/types/components/OmegaForm/index.d.ts +1 -0
- package/dist/types/components/OmegaForm/types.d.ts +26 -3
- package/dist/types/components/OmegaForm/useOmegaForm.d.ts +4 -2
- package/dist/vue-components.es.js +9 -9
- package/dist/vue-components22.es.js +1 -0
- package/dist/vue-components30.es.js +23 -265
- package/dist/vue-components31.es.js +300 -0
- package/dist/vue-components33.es.js +7 -72
- package/dist/vue-components34.es.js +71 -3
- package/dist/vue-components35.es.js +4 -54
- package/dist/vue-components36.es.js +60 -4
- package/dist/vue-components37.es.js +4 -23
- package/dist/vue-components38.es.js +23 -4
- package/dist/vue-components39.es.js +3 -57
- package/dist/vue-components40.es.js +57 -3
- package/dist/vue-components41.es.js +4 -11
- package/dist/vue-components42.es.js +11 -21
- package/dist/vue-components43.es.js +22 -0
- package/dist/vue-components45.es.js +8 -3
- package/dist/vue-components46.es.js +3 -37
- package/dist/vue-components47.es.js +34 -23
- package/dist/vue-components48.es.js +23 -24
- package/dist/vue-components49.es.js +27 -6
- package/dist/vue-components50.es.js +6 -17
- package/dist/vue-components51.es.js +16 -34
- package/dist/vue-components52.es.js +34 -16
- package/dist/vue-components53.es.js +16 -19
- package/dist/vue-components54.es.js +10 -19
- package/dist/vue-components55.es.js +29 -6
- package/dist/vue-components56.es.js +6 -8
- package/dist/vue-components57.es.js +7 -36
- package/dist/vue-components58.es.js +37 -24
- package/dist/vue-components59.es.js +19 -122
- package/dist/vue-components60.es.js +126 -22
- package/dist/vue-components61.es.js +20 -17
- package/dist/vue-components62.es.js +18 -6
- package/dist/vue-components63.es.js +5 -15
- package/dist/vue-components64.es.js +18 -4
- package/dist/vue-components65.es.js +4 -28
- package/dist/vue-components66.es.js +28 -4
- package/dist/vue-components67.es.js +4 -42
- package/dist/vue-components68.es.js +38 -95
- package/dist/vue-components69.es.js +95 -27
- package/dist/vue-components70.es.js +35 -18
- package/dist/vue-components71.es.js +18 -47
- package/dist/vue-components72.es.js +48 -0
- package/package.json +3 -3
- package/src/components/OmegaForm/OmegaInput.vue +4 -1
- package/src/components/OmegaForm/OmegaInputVuetify.vue +49 -2
- package/src/components/OmegaForm/OmegaInternalInput.vue +16 -9
- package/src/components/OmegaForm/createUseFormWithCustomInput.ts +15 -14
- package/src/components/OmegaForm/index.ts +1 -0
- package/src/components/OmegaForm/types.ts +63 -21
- package/src/components/OmegaForm/useOmegaForm.ts +7 -6
- package/dist/vue-components32.es.js +0 -8
- package/dist/vue-components44.es.js +0 -9
|
@@ -1,7 +1,30 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import { getGlobal as e, registerGlobal as t, unregisterGlobal as n } from "./vue-components48.es.js";
|
|
2
|
+
import { DiagAPI as r } from "./vue-components52.es.js";
|
|
3
|
+
import { NoopContextManager as i } from "./vue-components54.es.js";
|
|
4
|
+
//#region ../../node_modules/.pnpm/@opentelemetry+api@1.9.1/node_modules/@opentelemetry/api/build/esm/api/context.js
|
|
5
|
+
var a = "context", o = new i(), s = class i {
|
|
6
|
+
constructor() {}
|
|
7
|
+
static getInstance() {
|
|
8
|
+
return this._instance ||= new i(), this._instance;
|
|
9
|
+
}
|
|
10
|
+
setGlobalContextManager(e) {
|
|
11
|
+
return t(a, e, r.instance());
|
|
12
|
+
}
|
|
13
|
+
active() {
|
|
14
|
+
return this._getContextManager().active();
|
|
15
|
+
}
|
|
16
|
+
with(e, t, n, ...r) {
|
|
17
|
+
return this._getContextManager().with(e, t, n, ...r);
|
|
18
|
+
}
|
|
19
|
+
bind(e, t) {
|
|
20
|
+
return this._getContextManager().bind(e, t);
|
|
21
|
+
}
|
|
22
|
+
_getContextManager() {
|
|
23
|
+
return e(a) || o;
|
|
24
|
+
}
|
|
25
|
+
disable() {
|
|
26
|
+
this._getContextManager().disable(), n(a, r.instance());
|
|
27
|
+
}
|
|
28
|
+
};
|
|
6
29
|
//#endregion
|
|
7
|
-
export {
|
|
30
|
+
export { s as ContextAPI };
|
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
traceFlags: e.NONE
|
|
7
|
-
};
|
|
1
|
+
//#region ../../node_modules/.pnpm/@opentelemetry+api@1.9.1/node_modules/@opentelemetry/api/build/esm/trace/trace_flags.js
|
|
2
|
+
var e;
|
|
3
|
+
(function(e) {
|
|
4
|
+
e[e.NONE = 0] = "NONE", e[e.SAMPLED = 1] = "SAMPLED";
|
|
5
|
+
})(e ||= {});
|
|
8
6
|
//#endregion
|
|
9
|
-
export {
|
|
7
|
+
export { e as TraceFlags };
|
|
@@ -1,38 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
//#region ../../node_modules/.pnpm/@opentelemetry+api@1.9.1/node_modules/@opentelemetry/api/build/esm/trace/
|
|
3
|
-
var t =
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
spanContext() {
|
|
8
|
-
return this._spanContext;
|
|
9
|
-
}
|
|
10
|
-
setAttribute(e, t) {
|
|
11
|
-
return this;
|
|
12
|
-
}
|
|
13
|
-
setAttributes(e) {
|
|
14
|
-
return this;
|
|
15
|
-
}
|
|
16
|
-
addEvent(e, t) {
|
|
17
|
-
return this;
|
|
18
|
-
}
|
|
19
|
-
addLink(e) {
|
|
20
|
-
return this;
|
|
21
|
-
}
|
|
22
|
-
addLinks(e) {
|
|
23
|
-
return this;
|
|
24
|
-
}
|
|
25
|
-
setStatus(e) {
|
|
26
|
-
return this;
|
|
27
|
-
}
|
|
28
|
-
updateName(e) {
|
|
29
|
-
return this;
|
|
30
|
-
}
|
|
31
|
-
end(e) {}
|
|
32
|
-
isRecording() {
|
|
33
|
-
return !1;
|
|
34
|
-
}
|
|
35
|
-
recordException(e, t) {}
|
|
1
|
+
import { TraceFlags as e } from "./vue-components56.es.js";
|
|
2
|
+
//#region ../../node_modules/.pnpm/@opentelemetry+api@1.9.1/node_modules/@opentelemetry/api/build/esm/trace/invalid-span-constants.js
|
|
3
|
+
var t = "0000000000000000", n = "00000000000000000000000000000000", r = {
|
|
4
|
+
traceId: n,
|
|
5
|
+
spanId: t,
|
|
6
|
+
traceFlags: e.NONE
|
|
36
7
|
};
|
|
37
8
|
//#endregion
|
|
38
|
-
export { t as
|
|
9
|
+
export { t as INVALID_SPANID, r as INVALID_SPAN_CONTEXT, n as INVALID_TRACEID };
|
|
@@ -1,25 +1,38 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
1
|
+
import { INVALID_SPAN_CONTEXT as e } from "./vue-components57.es.js";
|
|
2
|
+
//#region ../../node_modules/.pnpm/@opentelemetry+api@1.9.1/node_modules/@opentelemetry/api/build/esm/trace/NonRecordingSpan.js
|
|
3
|
+
var t = class {
|
|
4
|
+
constructor(t = e) {
|
|
5
|
+
this._spanContext = t;
|
|
6
|
+
}
|
|
7
|
+
spanContext() {
|
|
8
|
+
return this._spanContext;
|
|
9
|
+
}
|
|
10
|
+
setAttribute(e, t) {
|
|
11
|
+
return this;
|
|
12
|
+
}
|
|
13
|
+
setAttributes(e) {
|
|
14
|
+
return this;
|
|
15
|
+
}
|
|
16
|
+
addEvent(e, t) {
|
|
17
|
+
return this;
|
|
18
|
+
}
|
|
19
|
+
addLink(e) {
|
|
20
|
+
return this;
|
|
21
|
+
}
|
|
22
|
+
addLinks(e) {
|
|
23
|
+
return this;
|
|
24
|
+
}
|
|
25
|
+
setStatus(e) {
|
|
26
|
+
return this;
|
|
27
|
+
}
|
|
28
|
+
updateName(e) {
|
|
29
|
+
return this;
|
|
30
|
+
}
|
|
31
|
+
end(e) {}
|
|
32
|
+
isRecording() {
|
|
33
|
+
return !1;
|
|
34
|
+
}
|
|
35
|
+
recordException(e, t) {}
|
|
36
|
+
};
|
|
24
37
|
//#endregion
|
|
25
|
-
export {
|
|
38
|
+
export { t as NonRecordingSpan };
|
|
@@ -1,128 +1,25 @@
|
|
|
1
|
-
import "./vue-
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
0
|
|
8
|
-
0,
|
|
9
|
-
0,
|
|
10
|
-
0,
|
|
11
|
-
0,
|
|
12
|
-
0,
|
|
13
|
-
0,
|
|
14
|
-
0,
|
|
15
|
-
0,
|
|
16
|
-
0,
|
|
17
|
-
0,
|
|
18
|
-
0,
|
|
19
|
-
0,
|
|
20
|
-
0,
|
|
21
|
-
0,
|
|
22
|
-
0,
|
|
23
|
-
0,
|
|
24
|
-
0,
|
|
25
|
-
0,
|
|
26
|
-
0,
|
|
27
|
-
0,
|
|
28
|
-
0,
|
|
29
|
-
0,
|
|
30
|
-
0,
|
|
31
|
-
0,
|
|
32
|
-
0,
|
|
33
|
-
0,
|
|
34
|
-
0,
|
|
35
|
-
0,
|
|
36
|
-
0,
|
|
37
|
-
0,
|
|
38
|
-
0,
|
|
39
|
-
0,
|
|
40
|
-
0,
|
|
41
|
-
0,
|
|
42
|
-
0,
|
|
43
|
-
0,
|
|
44
|
-
0,
|
|
45
|
-
0,
|
|
46
|
-
0,
|
|
47
|
-
0,
|
|
48
|
-
0,
|
|
49
|
-
0,
|
|
50
|
-
0,
|
|
51
|
-
0,
|
|
52
|
-
0,
|
|
53
|
-
1,
|
|
54
|
-
1,
|
|
55
|
-
1,
|
|
56
|
-
1,
|
|
57
|
-
1,
|
|
58
|
-
1,
|
|
59
|
-
1,
|
|
60
|
-
1,
|
|
61
|
-
1,
|
|
62
|
-
1,
|
|
63
|
-
0,
|
|
64
|
-
0,
|
|
65
|
-
0,
|
|
66
|
-
0,
|
|
67
|
-
0,
|
|
68
|
-
0,
|
|
69
|
-
0,
|
|
70
|
-
1,
|
|
71
|
-
1,
|
|
72
|
-
1,
|
|
73
|
-
1,
|
|
74
|
-
1,
|
|
75
|
-
1,
|
|
76
|
-
0,
|
|
77
|
-
0,
|
|
78
|
-
0,
|
|
79
|
-
0,
|
|
80
|
-
0,
|
|
81
|
-
0,
|
|
82
|
-
0,
|
|
83
|
-
0,
|
|
84
|
-
0,
|
|
85
|
-
0,
|
|
86
|
-
0,
|
|
87
|
-
0,
|
|
88
|
-
0,
|
|
89
|
-
0,
|
|
90
|
-
0,
|
|
91
|
-
0,
|
|
92
|
-
0,
|
|
93
|
-
0,
|
|
94
|
-
0,
|
|
95
|
-
0,
|
|
96
|
-
0,
|
|
97
|
-
0,
|
|
98
|
-
0,
|
|
99
|
-
0,
|
|
100
|
-
0,
|
|
101
|
-
0,
|
|
102
|
-
1,
|
|
103
|
-
1,
|
|
104
|
-
1,
|
|
105
|
-
1,
|
|
106
|
-
1,
|
|
107
|
-
1
|
|
108
|
-
]);
|
|
109
|
-
function n(e, n) {
|
|
110
|
-
if (typeof e != "string" || e.length !== n) return !1;
|
|
111
|
-
let r = 0;
|
|
112
|
-
for (let n = 0; n < e.length; n += 4) r += (t[e.charCodeAt(n)] | 0) + (t[e.charCodeAt(n + 1)] | 0) + (t[e.charCodeAt(n + 2)] | 0) + (t[e.charCodeAt(n + 3)] | 0);
|
|
113
|
-
return r === n;
|
|
1
|
+
import { createContextKey as e } from "./vue-components53.es.js";
|
|
2
|
+
import { ContextAPI as t } from "./vue-components55.es.js";
|
|
3
|
+
import { NonRecordingSpan as n } from "./vue-components58.es.js";
|
|
4
|
+
//#region ../../node_modules/.pnpm/@opentelemetry+api@1.9.1/node_modules/@opentelemetry/api/build/esm/trace/context-utils.js
|
|
5
|
+
var r = e("OpenTelemetry Context Key SPAN");
|
|
6
|
+
function i(e) {
|
|
7
|
+
return e.getValue(r) || void 0;
|
|
114
8
|
}
|
|
115
|
-
function
|
|
116
|
-
return
|
|
9
|
+
function a() {
|
|
10
|
+
return i(t.getInstance().active());
|
|
117
11
|
}
|
|
118
|
-
function
|
|
119
|
-
return
|
|
12
|
+
function o(e, t) {
|
|
13
|
+
return e.setValue(r, t);
|
|
14
|
+
}
|
|
15
|
+
function s(e) {
|
|
16
|
+
return e.deleteValue(r);
|
|
120
17
|
}
|
|
121
|
-
function
|
|
122
|
-
return
|
|
18
|
+
function c(e, t) {
|
|
19
|
+
return o(e, new n(t));
|
|
123
20
|
}
|
|
124
|
-
function
|
|
125
|
-
return
|
|
21
|
+
function l(e) {
|
|
22
|
+
return i(e)?.spanContext();
|
|
126
23
|
}
|
|
127
24
|
//#endregion
|
|
128
|
-
export { a as
|
|
25
|
+
export { s as deleteSpan, a as getActiveSpan, i as getSpan, l as getSpanContext, o as setSpan, c as setSpanContext };
|
|
@@ -1,24 +1,128 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { NonRecordingSpan as
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
1
|
+
import "./vue-components57.es.js";
|
|
2
|
+
import { NonRecordingSpan as e } from "./vue-components58.es.js";
|
|
3
|
+
//#region ../../node_modules/.pnpm/@opentelemetry+api@1.9.1/node_modules/@opentelemetry/api/build/esm/trace/spancontext-utils.js
|
|
4
|
+
var t = new Uint8Array([
|
|
5
|
+
0,
|
|
6
|
+
0,
|
|
7
|
+
0,
|
|
8
|
+
0,
|
|
9
|
+
0,
|
|
10
|
+
0,
|
|
11
|
+
0,
|
|
12
|
+
0,
|
|
13
|
+
0,
|
|
14
|
+
0,
|
|
15
|
+
0,
|
|
16
|
+
0,
|
|
17
|
+
0,
|
|
18
|
+
0,
|
|
19
|
+
0,
|
|
20
|
+
0,
|
|
21
|
+
0,
|
|
22
|
+
0,
|
|
23
|
+
0,
|
|
24
|
+
0,
|
|
25
|
+
0,
|
|
26
|
+
0,
|
|
27
|
+
0,
|
|
28
|
+
0,
|
|
29
|
+
0,
|
|
30
|
+
0,
|
|
31
|
+
0,
|
|
32
|
+
0,
|
|
33
|
+
0,
|
|
34
|
+
0,
|
|
35
|
+
0,
|
|
36
|
+
0,
|
|
37
|
+
0,
|
|
38
|
+
0,
|
|
39
|
+
0,
|
|
40
|
+
0,
|
|
41
|
+
0,
|
|
42
|
+
0,
|
|
43
|
+
0,
|
|
44
|
+
0,
|
|
45
|
+
0,
|
|
46
|
+
0,
|
|
47
|
+
0,
|
|
48
|
+
0,
|
|
49
|
+
0,
|
|
50
|
+
0,
|
|
51
|
+
0,
|
|
52
|
+
0,
|
|
53
|
+
1,
|
|
54
|
+
1,
|
|
55
|
+
1,
|
|
56
|
+
1,
|
|
57
|
+
1,
|
|
58
|
+
1,
|
|
59
|
+
1,
|
|
60
|
+
1,
|
|
61
|
+
1,
|
|
62
|
+
1,
|
|
63
|
+
0,
|
|
64
|
+
0,
|
|
65
|
+
0,
|
|
66
|
+
0,
|
|
67
|
+
0,
|
|
68
|
+
0,
|
|
69
|
+
0,
|
|
70
|
+
1,
|
|
71
|
+
1,
|
|
72
|
+
1,
|
|
73
|
+
1,
|
|
74
|
+
1,
|
|
75
|
+
1,
|
|
76
|
+
0,
|
|
77
|
+
0,
|
|
78
|
+
0,
|
|
79
|
+
0,
|
|
80
|
+
0,
|
|
81
|
+
0,
|
|
82
|
+
0,
|
|
83
|
+
0,
|
|
84
|
+
0,
|
|
85
|
+
0,
|
|
86
|
+
0,
|
|
87
|
+
0,
|
|
88
|
+
0,
|
|
89
|
+
0,
|
|
90
|
+
0,
|
|
91
|
+
0,
|
|
92
|
+
0,
|
|
93
|
+
0,
|
|
94
|
+
0,
|
|
95
|
+
0,
|
|
96
|
+
0,
|
|
97
|
+
0,
|
|
98
|
+
0,
|
|
99
|
+
0,
|
|
100
|
+
0,
|
|
101
|
+
0,
|
|
102
|
+
1,
|
|
103
|
+
1,
|
|
104
|
+
1,
|
|
105
|
+
1,
|
|
106
|
+
1,
|
|
107
|
+
1
|
|
108
|
+
]);
|
|
109
|
+
function n(e, n) {
|
|
110
|
+
if (typeof e != "string" || e.length !== n) return !1;
|
|
111
|
+
let r = 0;
|
|
112
|
+
for (let n = 0; n < e.length; n += 4) r += (t[e.charCodeAt(n)] | 0) + (t[e.charCodeAt(n + 1)] | 0) + (t[e.charCodeAt(n + 2)] | 0) + (t[e.charCodeAt(n + 3)] | 0);
|
|
113
|
+
return r === n;
|
|
114
|
+
}
|
|
115
|
+
function r(e) {
|
|
116
|
+
return n(e, 32) && e !== "00000000000000000000000000000000";
|
|
117
|
+
}
|
|
118
|
+
function i(e) {
|
|
119
|
+
return n(e, 16) && e !== "0000000000000000";
|
|
120
|
+
}
|
|
121
|
+
function a(e) {
|
|
122
|
+
return r(e.traceId) && i(e.spanId);
|
|
123
|
+
}
|
|
124
|
+
function o(t) {
|
|
125
|
+
return new e(t);
|
|
22
126
|
}
|
|
23
127
|
//#endregion
|
|
24
|
-
export { o as
|
|
128
|
+
export { a as isSpanContextValid, o as wrapSpanContext };
|
|
@@ -1,21 +1,24 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import { ContextAPI as e } from "./vue-components55.es.js";
|
|
2
|
+
import { NonRecordingSpan as t } from "./vue-components58.es.js";
|
|
3
|
+
import { getSpanContext as n, setSpan as r } from "./vue-components59.es.js";
|
|
4
|
+
import { isSpanContextValid as i } from "./vue-components60.es.js";
|
|
5
|
+
//#region ../../node_modules/.pnpm/@opentelemetry+api@1.9.1/node_modules/@opentelemetry/api/build/esm/trace/NoopTracer.js
|
|
6
|
+
var a = e.getInstance(), o = class {
|
|
7
|
+
startSpan(e, r, o = a.active()) {
|
|
8
|
+
if (r?.root) return new t();
|
|
9
|
+
let c = o && n(o);
|
|
10
|
+
return s(c) && i(c) ? new t(c) : new t();
|
|
6
11
|
}
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
let
|
|
12
|
-
return
|
|
13
|
-
}
|
|
14
|
-
_getTracer() {
|
|
15
|
-
if (this._delegate) return this._delegate;
|
|
16
|
-
let e = this._provider.getDelegateTracer(this.name, this.version, this.options);
|
|
17
|
-
return e ? (this._delegate = e, this._delegate) : t;
|
|
12
|
+
startActiveSpan(e, t, n, i) {
|
|
13
|
+
let o, s, c;
|
|
14
|
+
if (arguments.length < 2) return;
|
|
15
|
+
arguments.length === 2 ? c = t : arguments.length === 3 ? (o = t, c = n) : (o = t, s = n, c = i);
|
|
16
|
+
let l = s ?? a.active(), u = this.startSpan(e, o, l), d = r(l, u);
|
|
17
|
+
return a.with(d, c, void 0, u);
|
|
18
18
|
}
|
|
19
19
|
};
|
|
20
|
+
function s(e) {
|
|
21
|
+
return typeof e == "object" && !!e && "spanId" in e && typeof e.spanId == "string" && "traceId" in e && typeof e.traceId == "string" && "traceFlags" in e && typeof e.traceFlags == "number";
|
|
22
|
+
}
|
|
20
23
|
//#endregion
|
|
21
|
-
export {
|
|
24
|
+
export { o as NoopTracer };
|
|
@@ -1,9 +1,21 @@
|
|
|
1
|
-
import { NoopTracer as e } from "./vue-
|
|
2
|
-
//#region ../../node_modules/.pnpm/@opentelemetry+api@1.9.1/node_modules/@opentelemetry/api/build/esm/trace/
|
|
3
|
-
var t = class {
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import { NoopTracer as e } from "./vue-components61.es.js";
|
|
2
|
+
//#region ../../node_modules/.pnpm/@opentelemetry+api@1.9.1/node_modules/@opentelemetry/api/build/esm/trace/ProxyTracer.js
|
|
3
|
+
var t = new e(), n = class {
|
|
4
|
+
constructor(e, t, n, r) {
|
|
5
|
+
this._provider = e, this.name = t, this.version = n, this.options = r;
|
|
6
|
+
}
|
|
7
|
+
startSpan(e, t, n) {
|
|
8
|
+
return this._getTracer().startSpan(e, t, n);
|
|
9
|
+
}
|
|
10
|
+
startActiveSpan(e, t, n, r) {
|
|
11
|
+
let i = this._getTracer();
|
|
12
|
+
return Reflect.apply(i.startActiveSpan, i, arguments);
|
|
13
|
+
}
|
|
14
|
+
_getTracer() {
|
|
15
|
+
if (this._delegate) return this._delegate;
|
|
16
|
+
let e = this._provider.getDelegateTracer(this.name, this.version, this.options);
|
|
17
|
+
return e ? (this._delegate = e, this._delegate) : t;
|
|
6
18
|
}
|
|
7
19
|
};
|
|
8
20
|
//#endregion
|
|
9
|
-
export {
|
|
21
|
+
export { n as ProxyTracer };
|
|
@@ -1,19 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
var n = new t(), r = class {
|
|
1
|
+
import { NoopTracer as e } from "./vue-components61.es.js";
|
|
2
|
+
//#region ../../node_modules/.pnpm/@opentelemetry+api@1.9.1/node_modules/@opentelemetry/api/build/esm/trace/NoopTracerProvider.js
|
|
3
|
+
var t = class {
|
|
5
4
|
getTracer(t, n, r) {
|
|
6
|
-
return
|
|
7
|
-
}
|
|
8
|
-
getDelegate() {
|
|
9
|
-
return this._delegate ?? n;
|
|
10
|
-
}
|
|
11
|
-
setDelegate(e) {
|
|
12
|
-
this._delegate = e;
|
|
13
|
-
}
|
|
14
|
-
getDelegateTracer(e, t, n) {
|
|
15
|
-
return this._delegate?.getTracer(e, t, n);
|
|
5
|
+
return new e();
|
|
16
6
|
}
|
|
17
7
|
};
|
|
18
8
|
//#endregion
|
|
19
|
-
export {
|
|
9
|
+
export { t as NoopTracerProvider };
|
|
@@ -1,5 +1,19 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import { ProxyTracer as e } from "./vue-components62.es.js";
|
|
2
|
+
import { NoopTracerProvider as t } from "./vue-components63.es.js";
|
|
3
|
+
//#region ../../node_modules/.pnpm/@opentelemetry+api@1.9.1/node_modules/@opentelemetry/api/build/esm/trace/ProxyTracerProvider.js
|
|
4
|
+
var n = new t(), r = class {
|
|
5
|
+
getTracer(t, n, r) {
|
|
6
|
+
return this.getDelegateTracer(t, n, r) ?? new e(this, t, n, r);
|
|
7
|
+
}
|
|
8
|
+
getDelegate() {
|
|
9
|
+
return this._delegate ?? n;
|
|
10
|
+
}
|
|
11
|
+
setDelegate(e) {
|
|
12
|
+
this._delegate = e;
|
|
13
|
+
}
|
|
14
|
+
getDelegateTracer(e, t, n) {
|
|
15
|
+
return this._delegate?.getTracer(e, t, n);
|
|
16
|
+
}
|
|
17
|
+
};
|
|
4
18
|
//#endregion
|
|
5
|
-
export {
|
|
19
|
+
export { r as ProxyTracerProvider };
|
|
@@ -1,29 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
import { isSpanContextValid as u, wrapSpanContext as d } from "./vue-components59.es.js";
|
|
5
|
-
import { ProxyTracerProvider as f } from "./vue-components63.es.js";
|
|
6
|
-
//#region ../../node_modules/.pnpm/@opentelemetry+api@1.9.1/node_modules/@opentelemetry/api/build/esm/api/trace.js
|
|
7
|
-
var p = "trace", m = class m {
|
|
8
|
-
constructor() {
|
|
9
|
-
this._proxyTracerProvider = new f(), this.wrapSpanContext = d, this.isSpanContextValid = u, this.deleteSpan = i, this.getSpan = o, this.getActiveSpan = a, this.getSpanContext = s, this.setSpan = c, this.setSpanContext = l;
|
|
10
|
-
}
|
|
11
|
-
static getInstance() {
|
|
12
|
-
return this._instance ||= new m(), this._instance;
|
|
13
|
-
}
|
|
14
|
-
setGlobalTracerProvider(e) {
|
|
15
|
-
let n = t(p, this._proxyTracerProvider, r.instance());
|
|
16
|
-
return n && this._proxyTracerProvider.setDelegate(e), n;
|
|
17
|
-
}
|
|
18
|
-
getTracerProvider() {
|
|
19
|
-
return e(p) || this._proxyTracerProvider;
|
|
20
|
-
}
|
|
21
|
-
getTracer(e, t) {
|
|
22
|
-
return this.getTracerProvider().getTracer(e, t);
|
|
23
|
-
}
|
|
24
|
-
disable() {
|
|
25
|
-
n(p, r.instance()), this._proxyTracerProvider = new f();
|
|
26
|
-
}
|
|
27
|
-
};
|
|
1
|
+
import { ContextAPI as e } from "./vue-components55.es.js";
|
|
2
|
+
//#region ../../node_modules/.pnpm/@opentelemetry+api@1.9.1/node_modules/@opentelemetry/api/build/esm/context-api.js
|
|
3
|
+
var t = e.getInstance();
|
|
28
4
|
//#endregion
|
|
29
|
-
export {
|
|
5
|
+
export { t as context };
|
|
@@ -1,5 +1,29 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import { getGlobal as e, registerGlobal as t, unregisterGlobal as n } from "./vue-components48.es.js";
|
|
2
|
+
import { DiagAPI as r } from "./vue-components52.es.js";
|
|
3
|
+
import { deleteSpan as i, getActiveSpan as a, getSpan as o, getSpanContext as s, setSpan as c, setSpanContext as l } from "./vue-components59.es.js";
|
|
4
|
+
import { isSpanContextValid as u, wrapSpanContext as d } from "./vue-components60.es.js";
|
|
5
|
+
import { ProxyTracerProvider as f } from "./vue-components64.es.js";
|
|
6
|
+
//#region ../../node_modules/.pnpm/@opentelemetry+api@1.9.1/node_modules/@opentelemetry/api/build/esm/api/trace.js
|
|
7
|
+
var p = "trace", m = class m {
|
|
8
|
+
constructor() {
|
|
9
|
+
this._proxyTracerProvider = new f(), this.wrapSpanContext = d, this.isSpanContextValid = u, this.deleteSpan = i, this.getSpan = o, this.getActiveSpan = a, this.getSpanContext = s, this.setSpan = c, this.setSpanContext = l;
|
|
10
|
+
}
|
|
11
|
+
static getInstance() {
|
|
12
|
+
return this._instance ||= new m(), this._instance;
|
|
13
|
+
}
|
|
14
|
+
setGlobalTracerProvider(e) {
|
|
15
|
+
let n = t(p, this._proxyTracerProvider, r.instance());
|
|
16
|
+
return n && this._proxyTracerProvider.setDelegate(e), n;
|
|
17
|
+
}
|
|
18
|
+
getTracerProvider() {
|
|
19
|
+
return e(p) || this._proxyTracerProvider;
|
|
20
|
+
}
|
|
21
|
+
getTracer(e, t) {
|
|
22
|
+
return this.getTracerProvider().getTracer(e, t);
|
|
23
|
+
}
|
|
24
|
+
disable() {
|
|
25
|
+
n(p, r.instance()), this._proxyTracerProvider = new f();
|
|
26
|
+
}
|
|
27
|
+
};
|
|
4
28
|
//#endregion
|
|
5
|
-
export {
|
|
29
|
+
export { m as TraceAPI };
|