@tailor-cms/ce-quill-html-display 0.0.3 → 0.0.5

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-quill-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;
package/dist/index.cjs CHANGED
@@ -2,7 +2,7 @@
2
2
  var import_index = require("./index.css");
3
3
  Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
4
4
  const vue = require("vue");
5
- var type = "QUILL_HTML";
5
+ var type = "HTML";
6
6
  var name = "Quill HTML";
7
7
  var initState = () => ({ content: "" });
8
8
  var version = "1.0";
@@ -0,0 +1,5 @@
1
+ import type { ElementManifest } from '@tailor-cms/ce-quill-html-manifest';
2
+ import Display from './components/Display.vue';
3
+ declare const manifest: ElementManifest;
4
+ export default manifest;
5
+ export { Display };
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import "./index.css";
2
2
  import { defineComponent, createElementBlock, openBlock, createElementVNode } from "vue";
3
- var type = "QUILL_HTML";
3
+ var type = "HTML";
4
4
  var name = "Quill HTML";
5
5
  var initState = () => ({ content: "" });
6
6
  var version = "1.0";
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Tailor CMS Quill 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.3",
6
+ "version": "0.0.5",
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-quill-html-manifest": "0.0.3"
27
+ "@tailor-cms/ce-quill-html-manifest": "0.0.5"
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
  }