@leiyin/v-form-renderer 0.1.3-alpha.1 → 0.1.3-alpha.3

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 @@
1
+ .red-text[data-v-3f4b8568]{color:red}
package/dist/index.cjs.js CHANGED
@@ -4,14 +4,16 @@ Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var vue = require('vue');
6
6
 
7
+ const _hoisted_1 = { class: "red-text" };
8
+
7
9
  function render(_ctx, _cache) {
8
- return (vue.openBlock(), vue.createElementBlock("div", null, "222"))
10
+ return (vue.openBlock(), vue.createElementBlock("div", _hoisted_1, "222"))
9
11
  }
10
12
 
11
13
  const script = {};
12
14
 
13
-
14
15
  script.render = render;
16
+ script.__scopeId = "data-v-3f4b8568";
15
17
  script.__file = "src/v-form-renderer.vue";
16
18
 
17
19
  exports.default = script;
@@ -1 +1 @@
1
- {"version":3,"file":"index.cjs.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.cjs.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;"}
package/dist/index.d.ts CHANGED
@@ -1,2 +1,9 @@
1
- import VFormRenderer from './v-form-renderer.vue';
2
- export default VFormRenderer;
1
+ declare const __VLS_export: any;
2
+ declare const _default: typeof __VLS_export;
3
+
4
+ interface TFormProp {
5
+ content: any[];
6
+ }
7
+
8
+ export { _default as default };
9
+ export type { TFormProp };
@@ -0,0 +1 @@
1
+ .red-text[data-v-3f4b8568]{color:red}
package/dist/index.esm.js CHANGED
@@ -1,13 +1,15 @@
1
1
  import { createElementBlock, openBlock } from 'vue';
2
2
 
3
+ const _hoisted_1 = { class: "red-text" };
4
+
3
5
  function render(_ctx, _cache) {
4
- return (openBlock(), createElementBlock("div", null, "222"))
6
+ return (openBlock(), createElementBlock("div", _hoisted_1, "222"))
5
7
  }
6
8
 
7
9
  const script = {};
8
10
 
9
-
10
11
  script.render = render;
12
+ script.__scopeId = "data-v-3f4b8568";
11
13
  script.__file = "src/v-form-renderer.vue";
12
14
 
13
15
  export { script as default };
@@ -1 +1 @@
1
- {"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;"}
@@ -0,0 +1,5 @@
1
+ import VFormRenderer from './v-form-renderer.vue';
2
+ export interface TFormProp {
3
+ content: any[];
4
+ }
5
+ export default VFormRenderer;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: any;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leiyin/v-form-renderer",
3
- "version": "0.1.3-alpha.1",
3
+ "version": "0.1.3-alpha.3",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "types": "dist/index.d.ts",
@@ -19,12 +19,16 @@
19
19
  },
20
20
  "scripts": {
21
21
  "clean": "rimraf dist node_modules/.cache",
22
- "build": "pnpm clean && rollup -c"
22
+ "build": "pnpm clean && vue-tsc --declaration --emitDeclarationOnly && rollup -c && rollup -c rollup.dts.config.mjs"
23
23
  },
24
24
  "devDependencies": {
25
25
  "rimraf": "^6.1.2",
26
+ "rollup-plugin-dts": "^6.3.0",
27
+ "rollup-plugin-postcss": "^4.0.2",
26
28
  "rollup-plugin-typescript2": "^0.36.0",
27
- "rollup-plugin-vue": "^6.0.0"
29
+ "rollup-plugin-vue": "^6.0.0",
30
+ "typescript": "^5.9.3",
31
+ "vue-tsc": "^3.2.1"
28
32
  },
29
- "gitHead": "3fa855eb7398827cf7e02535b8bafa8f363021ed"
33
+ "gitHead": "e850aa989e29b5440a0b90c6cec96a832f35ecc5"
30
34
  }