kritzel-vue 0.1.64 → 0.1.66

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.
@@ -2,6 +2,7 @@ import { type StencilVueComponent } from '@stencil/vue-output-target/runtime';
2
2
  import type { JSX } from '../../kritzel-stencil/dist/components';
3
3
  export declare const KritzelBackToContent: StencilVueComponent<JSX.KritzelBackToContent>;
4
4
  export declare const KritzelButton: StencilVueComponent<JSX.KritzelButton>;
5
+ export declare const KritzelCurrentUserDialog: StencilVueComponent<JSX.KritzelCurrentUserDialog>;
5
6
  export declare const KritzelDialog: StencilVueComponent<JSX.KritzelDialog>;
6
7
  export declare const KritzelEditor: StencilVueComponent<JSX.KritzelEditor>;
7
8
  export declare const KritzelExport: StencilVueComponent<JSX.KritzelExport>;
@@ -4,6 +4,7 @@
4
4
  import { defineContainer } from '@stencil/vue-output-target/runtime';
5
5
  import { defineCustomElement as defineKritzelBackToContent } from '../../kritzel-stencil/dist/components/kritzel-back-to-content.js';
6
6
  import { defineCustomElement as defineKritzelButton } from '../../kritzel-stencil/dist/components/kritzel-button.js';
7
+ import { defineCustomElement as defineKritzelCurrentUserDialog } from '../../kritzel-stencil/dist/components/kritzel-current-user-dialog.js';
7
8
  import { defineCustomElement as defineKritzelDialog } from '../../kritzel-stencil/dist/components/kritzel-dialog.js';
8
9
  import { defineCustomElement as defineKritzelEditor } from '../../kritzel-stencil/dist/components/kritzel-editor.js';
9
10
  import { defineCustomElement as defineKritzelExport } from '../../kritzel-stencil/dist/components/kritzel-export.js';
@@ -30,6 +31,9 @@ export const KritzelButton = /*@__PURE__*/ defineContainer('kritzel-button', def
30
31
  ], [
31
32
  'buttonClick'
32
33
  ]);
34
+ export const KritzelCurrentUserDialog = /*@__PURE__*/ defineContainer('kritzel-current-user-dialog', defineKritzelCurrentUserDialog, [
35
+ 'user'
36
+ ]);
33
37
  export const KritzelDialog = /*@__PURE__*/ defineContainer('kritzel-dialog', defineKritzelDialog, [
34
38
  'isOpen',
35
39
  'dialogTitle',
package/package.json CHANGED
@@ -1,39 +1,39 @@
1
- {
2
- "name": "kritzel-vue",
3
- "version": "0.1.64",
4
- "homepage": "https://gitlab.com/kasual1/kritzel#readme",
5
- "license": "ISC",
6
- "main": "dist/index.js",
7
- "types": "dist/index.d.ts",
8
- "directories": {
9
- "lib": "lib",
10
- "test": "__tests__"
11
- },
12
- "files": [
13
- "dist"
14
- ],
15
- "repository": {
16
- "type": "git",
17
- "url": "git+ssh://git@gitlab.com/kasual1/kritzel.git"
18
- },
19
- "scripts": {
20
- "test": "echo \"Error: run tests from root\" && exit 1",
21
- "build": "npm run tsc",
22
- "tsc": "tsc -p . --outDir ./dist",
23
- "clean": "rimraf dist node_modules",
24
- "bump": "npm version patch",
25
- "release": "npm publish"
26
- },
27
- "bugs": {
28
- "url": "https://gitlab.com/kasual1/kritzel/issues"
29
- },
30
- "publishConfig": {
31
- "access": "public"
32
- },
33
- "dependencies": {
34
- "@stencil/vue-output-target": "0.11.8"
35
- },
36
- "peerDependencies": {
37
- "kritzel-stencil": "^0.1.64"
38
- }
39
- }
1
+ {
2
+ "name": "kritzel-vue",
3
+ "version": "0.1.66",
4
+ "homepage": "https://gitlab.com/kasual1/kritzel#readme",
5
+ "license": "ISC",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "directories": {
9
+ "lib": "lib",
10
+ "test": "__tests__"
11
+ },
12
+ "files": [
13
+ "dist"
14
+ ],
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+ssh://git@gitlab.com/kasual1/kritzel.git"
18
+ },
19
+ "scripts": {
20
+ "test": "echo \"Error: run tests from root\" && exit 1",
21
+ "build": "npm run tsc",
22
+ "tsc": "tsc -p . --outDir ./dist",
23
+ "clean": "rimraf dist node_modules",
24
+ "bump": "npm version patch",
25
+ "release": "npm publish"
26
+ },
27
+ "bugs": {
28
+ "url": "https://gitlab.com/kasual1/kritzel/issues"
29
+ },
30
+ "publishConfig": {
31
+ "access": "public"
32
+ },
33
+ "dependencies": {
34
+ "@stencil/vue-output-target": "0.11.8"
35
+ },
36
+ "peerDependencies": {
37
+ "kritzel-stencil": "^0.1.66"
38
+ }
39
+ }