@fangzhongya/vue-archive 0.0.80 → 0.0.82

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.
@@ -1,25 +1,18 @@
1
- import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from '../../../vue/dist/vue.esm-bundler.js';
2
- declare const _default: DefineComponent<ExtractPropTypes<{
3
- name: {
4
- type: StringConstructor;
5
- };
6
- html: {
7
- type: StringConstructor;
8
- default(): string;
9
- };
10
- }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
11
- refresh: (...args: any[]) => void;
12
- }, string, PublicProps, Readonly< ExtractPropTypes<{
13
- name: {
14
- type: StringConstructor;
15
- };
16
- html: {
17
- type: StringConstructor;
18
- default(): string;
19
- };
20
- }>> & Readonly<{
21
- onRefresh?: ((...args: any[]) => any) | undefined;
22
- }>, {
23
- html: string;
24
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
25
- export default _default;
1
+ import { ObjStr, ObjUnk } from '../../config';
2
+ import { SpecObjs, Spec } from '../../utils/index';
3
+ import { DataType } from './util';
4
+ export declare function getHmtl(propsname: string, param: {
5
+ [key: string]: SpecObjs[];
6
+ }, value: ObjUnk, slotValue?: ObjStr, propsText?: ObjStr, exposeText?: ObjUnk): Promise<string>;
7
+ export declare function setValStringify(v: unknown, key: string, propsText?: ObjStr): string | Promise<string>;
8
+ type SelectsObj = {
9
+ label: string;
10
+ prop: unknown;
11
+ };
12
+ export declare function getSpecType(val: Spec): {
13
+ arr: SelectsObj[];
14
+ type: string;
15
+ dataType: DataType[];
16
+ };
17
+ export declare function getDefaultValue(obj: Spec, is?: boolean): any;
18
+ export {};
@@ -1 +1 @@
1
- "use strict";const e=require("vue");;/* empty css */const o=require("../../_virtual/_plugin-vue_export-helper.cjs"),t={},n={class:"__document"};function c(_,i){const r=e.resolveComponent("router-view");return e.openBlock(),e.createElementBlock("div",n,[e.createVNode(r)])}const s=o(t,[["render",c]]);module.exports=s;
1
+ "use strict";const e=;/* empty css */;/* empty css */module.exports=e;
@@ -1,14 +1,5 @@
1
- import { resolveComponent as o, createElementBlock as t, openBlock as r, createVNode as c } from "vue";
1
+ import o from "./index.vue2.js";
2
2
  /* empty css */
3
- import n from "../../_virtual/_plugin-vue_export-helper.js";
4
- const _ = {}, s = { class: "__document" };
5
- function i(m, d) {
6
- const e = o("router-view");
7
- return r(), t("div", s, [
8
- c(e)
9
- ]);
10
- }
11
- const l = /* @__PURE__ */ n(_, [["render", i]]);
12
3
  export {
13
- l as default
4
+ o as default
14
5
  };
@@ -0,0 +1 @@
1
+ "use strict";const e=require("vue"),t=require("vue-router"),n={class:"__document"},o=e.defineComponent({__name:"index",setup(r){return(c,s)=>(e.openBlock(),e.createElementBlock("div",n,[e.createVNode(e.unref(t.RouterView))]))}});module.exports=o;
@@ -0,0 +1,13 @@
1
+ import { defineComponent as e, createElementBlock as o, openBlock as t, createVNode as n, unref as r } from "vue";
2
+ import { RouterView as c } from "vue-router";
3
+ const _ = { class: "__document" }, d = /* @__PURE__ */ e({
4
+ __name: "index",
5
+ setup(m) {
6
+ return (s, a) => (t(), o("div", _, [
7
+ n(r(c))
8
+ ]));
9
+ }
10
+ });
11
+ export {
12
+ d as default
13
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@fangzhongya/vue-archive",
3
3
  "private": false,
4
- "version": "0.0.80",
4
+ "version": "0.0.82",
5
5
  "type": "module",
6
6
  "description ": "vue 组件注释生成文档",
7
7
  "author": "fangzhongya ",