@spotpatch/runtime 1.8.0 → 1.10.0
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/chunk-7ES63LA7.js +28 -0
- package/dist/chunk-7ES63LA7.js.map +1 -0
- package/dist/chunk-NII5OBAN.js +14 -0
- package/dist/chunk-NII5OBAN.js.map +1 -0
- package/dist/chunk-QY5T4DPA.js +552 -0
- package/dist/chunk-QY5T4DPA.js.map +1 -0
- package/dist/chunk-XBD55BCF.js +14 -0
- package/dist/chunk-XBD55BCF.js.map +1 -0
- package/dist/data-flow-panel.cjs +333 -0
- package/dist/data-flow-panel.cjs.map +1 -0
- package/dist/data-flow-panel.d.cts +38 -0
- package/dist/data-flow-panel.d.ts +38 -0
- package/dist/data-flow-panel.js +283 -0
- package/dist/data-flow-panel.js.map +1 -0
- package/dist/data-flow-runtime-B3itbieT.d.cts +67 -0
- package/dist/data-flow-runtime-B3itbieT.d.ts +67 -0
- package/dist/data-flow.cjs +575 -0
- package/dist/data-flow.cjs.map +1 -0
- package/dist/data-flow.d.cts +8 -0
- package/dist/data-flow.d.ts +8 -0
- package/dist/data-flow.js +15 -0
- package/dist/data-flow.js.map +1 -0
- package/dist/external-handoff-panel.cjs +1002 -0
- package/dist/external-handoff-panel.cjs.map +1 -0
- package/dist/external-handoff-panel.d.cts +36 -0
- package/dist/external-handoff-panel.d.ts +36 -0
- package/dist/external-handoff-panel.js +959 -0
- package/dist/external-handoff-panel.js.map +1 -0
- package/dist/index.cjs +871 -14
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +335 -31
- package/dist/index.js.map +1 -1
- package/package.json +46 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spotpatch/runtime",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.0",
|
|
4
4
|
"description": "Browser runtime, collectors, and Shadow DOM UI for SpotPatch.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -39,11 +39,54 @@
|
|
|
39
39
|
"types": "./dist/index.d.cts",
|
|
40
40
|
"default": "./dist/index.cjs"
|
|
41
41
|
}
|
|
42
|
+
},
|
|
43
|
+
"./data-flow": {
|
|
44
|
+
"import": {
|
|
45
|
+
"types": "./dist/data-flow.d.ts",
|
|
46
|
+
"default": "./dist/data-flow.js"
|
|
47
|
+
},
|
|
48
|
+
"require": {
|
|
49
|
+
"types": "./dist/data-flow.d.cts",
|
|
50
|
+
"default": "./dist/data-flow.cjs"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"./data-flow-panel": {
|
|
54
|
+
"import": {
|
|
55
|
+
"types": "./dist/data-flow-panel.d.ts",
|
|
56
|
+
"default": "./dist/data-flow-panel.js"
|
|
57
|
+
},
|
|
58
|
+
"require": {
|
|
59
|
+
"types": "./dist/data-flow-panel.d.cts",
|
|
60
|
+
"default": "./dist/data-flow-panel.cjs"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"./external-handoff-panel": {
|
|
64
|
+
"import": {
|
|
65
|
+
"types": "./dist/external-handoff-panel.d.ts",
|
|
66
|
+
"default": "./dist/external-handoff-panel.js"
|
|
67
|
+
},
|
|
68
|
+
"require": {
|
|
69
|
+
"types": "./dist/external-handoff-panel.d.cts",
|
|
70
|
+
"default": "./dist/external-handoff-panel.cjs"
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
"typesVersions": {
|
|
75
|
+
"*": {
|
|
76
|
+
"data-flow": [
|
|
77
|
+
"dist/data-flow.d.ts"
|
|
78
|
+
],
|
|
79
|
+
"data-flow-panel": [
|
|
80
|
+
"dist/data-flow-panel.d.ts"
|
|
81
|
+
],
|
|
82
|
+
"external-handoff-panel": [
|
|
83
|
+
"dist/external-handoff-panel.d.ts"
|
|
84
|
+
]
|
|
42
85
|
}
|
|
43
86
|
},
|
|
44
87
|
"dependencies": {
|
|
45
|
-
"@spotpatch/react-adapter": "^1.0
|
|
46
|
-
"@spotpatch/shared": "^1.
|
|
88
|
+
"@spotpatch/react-adapter": "^1.1.0",
|
|
89
|
+
"@spotpatch/shared": "^1.10.0"
|
|
47
90
|
},
|
|
48
91
|
"publishConfig": {
|
|
49
92
|
"access": "public",
|