kritzel-vue 0.0.40 → 0.0.42
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/components.d.ts +6 -5
- package/dist/components.js +9 -5
- package/package.json +3 -3
package/dist/components.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import type
|
|
2
|
-
|
|
3
|
-
export declare const
|
|
4
|
-
export declare const
|
|
5
|
-
export declare const
|
|
1
|
+
import { type StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
2
|
+
import type { JSX } from '../../kritzel-stencil/dist/components';
|
|
3
|
+
export declare const KritzelControls: StencilVueComponent<JSX.KritzelControls>;
|
|
4
|
+
export declare const KritzelEditor: StencilVueComponent<JSX.KritzelEditor>;
|
|
5
|
+
export declare const KritzelEngine: StencilVueComponent<JSX.KritzelEngine>;
|
|
6
|
+
export declare const KritzelIcon: StencilVueComponent<JSX.KritzelIcon>;
|
package/dist/components.js
CHANGED
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* auto-generated vue proxies */
|
|
4
|
-
import { defineContainer } from '
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
import { defineContainer } from '@stencil/vue-output-target/runtime';
|
|
5
|
+
import { defineCustomElement as defineKritzelControls } from '../../kritzel-stencil/dist/components/kritzel-controls.js';
|
|
6
|
+
import { defineCustomElement as defineKritzelEditor } from '../../kritzel-stencil/dist/components/kritzel-editor.js';
|
|
7
|
+
import { defineCustomElement as defineKritzelEngine } from '../../kritzel-stencil/dist/components/kritzel-engine.js';
|
|
8
|
+
import { defineCustomElement as defineKritzelIcon } from '../../kritzel-stencil/dist/components/kritzel-icon.js';
|
|
9
|
+
export const KritzelControls = /*@__PURE__*/ defineContainer('kritzel-controls', defineKritzelControls);
|
|
10
|
+
export const KritzelEditor = /*@__PURE__*/ defineContainer('kritzel-editor', defineKritzelEditor);
|
|
11
|
+
export const KritzelEngine = /*@__PURE__*/ defineContainer('kritzel-engine', defineKritzelEngine, [
|
|
8
12
|
'activeTool'
|
|
9
13
|
]);
|
|
10
|
-
export const KritzelIcon = /*@__PURE__*/ defineContainer('kritzel-icon',
|
|
14
|
+
export const KritzelIcon = /*@__PURE__*/ defineContainer('kritzel-icon', defineKritzelIcon, [
|
|
11
15
|
'name',
|
|
12
16
|
'label'
|
|
13
17
|
]);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kritzel-vue",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.42",
|
|
4
4
|
"homepage": "https://gitlab.com/kasual1/kritzel#readme",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"access": "public"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@stencil/vue-output-target": "0.
|
|
34
|
+
"@stencil/vue-output-target": "0.10.7"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
|
-
"kritzel-stencil": "^0.0.
|
|
37
|
+
"kritzel-stencil": "^0.0.42"
|
|
38
38
|
}
|
|
39
39
|
}
|