@tugitark/vue-widget 1.3.0 → 1.3.1
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/index.d.ts +0 -2
- package/index.js +0 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -5,7 +5,6 @@ type Customise = NonNullable<Props['customize']>;
|
|
|
5
5
|
declare const _default: {
|
|
6
6
|
data(): {
|
|
7
7
|
firstTime_: boolean;
|
|
8
|
-
props_: {};
|
|
9
8
|
};
|
|
10
9
|
props: {
|
|
11
10
|
user: StringConstructor;
|
|
@@ -45,7 +44,6 @@ declare const _default: {
|
|
|
45
44
|
onClosed_(): void;
|
|
46
45
|
onError_(e: any): void;
|
|
47
46
|
};
|
|
48
|
-
watc(): void;
|
|
49
47
|
watch: {
|
|
50
48
|
$props: {
|
|
51
49
|
handler(props: any): void;
|
package/index.js
CHANGED
|
@@ -5,7 +5,6 @@ export default {
|
|
|
5
5
|
data() {
|
|
6
6
|
return {
|
|
7
7
|
firstTime_: true,
|
|
8
|
-
props_: {},
|
|
9
8
|
};
|
|
10
9
|
},
|
|
11
10
|
props: {
|
|
@@ -63,9 +62,6 @@ export default {
|
|
|
63
62
|
onClosed_() { this.onClosed && this.onClosed(); },
|
|
64
63
|
onError_(e) { this.onError && this.onError(e); },
|
|
65
64
|
},
|
|
66
|
-
watc() {
|
|
67
|
-
return render(this.props_);
|
|
68
|
-
},
|
|
69
65
|
watch: {
|
|
70
66
|
$props: {
|
|
71
67
|
handler(props) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tugitark/vue-widget",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "Wraps the tugitark widget in a Vue component.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "npx tsc --noErrorTruncation --esModuleInterop --resolveJsonModule --module esnext --moduleResolution bundler --rewriteRelativeImportExtensions --forceConsistentCasingInFileNames false --declaration --declarationMap --target es2022 --outDir . index.ts",
|