@tailor-cms/ce-jodit-html-display 0.0.6 → 0.0.7

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.
@@ -0,0 +1,7 @@
1
+ import { ElementData } from '@tailor-cms/ce-jodit-html-manifest';
2
+ type __VLS_Props = {
3
+ id: number;
4
+ data: ElementData;
5
+ };
6
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
7
+ export default _default;
@@ -0,0 +1,5 @@
1
+ import type { ElementManifest } from '@tailor-cms/ce-jodit-html-manifest';
2
+ import Display from './components/Display.vue';
3
+ declare const manifest: ElementManifest;
4
+ export default manifest;
5
+ export { Display };
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Tailor CMS Jodit HTML editor end-user component",
4
4
  "author": "Studion <info@gostudion.com> (https://github.com/tailor-cms)",
5
5
  "type": "module",
6
- "version": "0.0.6",
6
+ "version": "0.0.7",
7
7
  "exports": {
8
8
  ".": {
9
9
  "import": "./dist/index.js",
@@ -11,6 +11,7 @@
11
11
  }
12
12
  },
13
13
  "main": "./dist/index.cjs",
14
+ "types": "./types/index.d.ts",
14
15
  "files": [
15
16
  "dist"
16
17
  ],
@@ -23,14 +24,14 @@
23
24
  "typescript": "^5.7.3",
24
25
  "vite": "^6.1.0",
25
26
  "vue-tsc": "^2.2.0",
26
- "@tailor-cms/ce-jodit-html-manifest": "0.0.6"
27
+ "@tailor-cms/ce-jodit-html-manifest": "0.0.7"
27
28
  },
28
29
  "publishConfig": {
29
30
  "access": "public"
30
31
  },
31
32
  "scripts": {
32
33
  "dev": "vite build --watch",
33
- "build": "vue-tsc --noEmit && vite build",
34
+ "build": "vue-tsc && vite build",
34
35
  "lint": "eslint --ext .js,.ts,.vue ./src",
35
36
  "lint:fix": "pnpm lint --fix"
36
37
  }