@nsshunt/stsuxvue 0.0.24 → 0.0.26
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/README.md +24 -1
- package/dist/stsuxvue.mjs +1903 -2872
- package/dist/stsuxvue.mjs.map +1 -1
- package/dist/stsuxvue.umd.js +1901 -2869
- package/dist/stsuxvue.umd.js.map +1 -1
- package/package.json +28 -30
- package/types/index.d.ts +0 -9
- package/types/index.d.ts.map +1 -1
- package/types/plugins/emitter.d.ts +0 -6
- package/types/plugins/emitter.d.ts.map +0 -1
- package/types/plugins/requestResponseHelper.d.ts +0 -8
- package/types/plugins/requestResponseHelper.d.ts.map +0 -1
- package/types/plugins/storage.d.ts +0 -10
- package/types/plugins/storage.d.ts.map +0 -1
- package/types/plugins/stsPluginKeys.d.ts +0 -4
- package/types/plugins/stsPluginKeys.d.ts.map +0 -1
- package/types/plugins/stsStorage.d.ts +0 -24
- package/types/plugins/stsStorage.d.ts.map +0 -1
- package/types/plugins/stsTestWorkerDefinitions.d.ts +0 -95
- package/types/plugins/stsTestWorkerDefinitions.d.ts.map +0 -1
- package/types/plugins/workerInstance.d.ts +0 -18
- package/types/plugins/workerInstance.d.ts.map +0 -1
- package/types/plugins/workerManager.d.ts +0 -22
- package/types/plugins/workerManager.d.ts.map +0 -1
- package/types/stores/TelemetryStore.d.ts +0 -8
- package/types/stores/TelemetryStore.d.ts.map +0 -1
package/README.md
CHANGED
|
@@ -1 +1,24 @@
|
|
|
1
|
-
# stsuxvue
|
|
1
|
+
# stsuxvue
|
|
2
|
+
|
|
3
|
+
previous project includes
|
|
4
|
+
|
|
5
|
+
"vite-plugin-lib-inject-css": "^2.1.1",
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
breaking includes
|
|
10
|
+
|
|
11
|
+
"vite-plugin-dts": "^3.9.1",
|
|
12
|
+
|
|
13
|
+
going to any of the 4.0.0-beta will break the build
|
|
14
|
+
|
|
15
|
+
the component UXBarChart.vue.d that works as this;
|
|
16
|
+
|
|
17
|
+
declare const _default: import('vue').DefineComponent<{}, {
|
|
18
|
+
UpdateGraph: (durationSeries: any[], latencySeries: any[]) => void;
|
|
19
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
|
|
20
|
+
export default _default;
|
|
21
|
+
//# sourceMappingURL=UXBarChart.vue.d.ts.map
|
|
22
|
+
|
|
23
|
+
turns into a huge file with a bunch of global stuff - that breaks the build for any project that uses this library
|
|
24
|
+
the error is conflicting declares
|