@kengic/vue 0.0.2-beta.8 → 0.1.1-beta.0
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.
- package/dist/index.css +1 -1
- package/dist/kengic-vue.js +2708 -0
- package/dist/src/apis/WMS/Controllers/VarController/GetAll.d.ts +21 -0
- package/dist/src/apis/WMS/Controllers/VarController/index.d.ts +1 -0
- package/dist/src/apis/WMS/Controllers/index.d.ts +1 -0
- package/dist/src/apis/WMS/index.d.ts +2 -0
- package/dist/src/apis/WMS/models.d.ts +62 -0
- package/dist/src/apis/api.d.ts +1 -0
- package/dist/src/apis/def.d.ts +1 -0
- package/dist/src/apis/index.d.ts +2 -0
- package/dist/src/components/KgButton/KgButton.Create.d.ts +10 -0
- package/dist/src/components/KgButton/KgButton.Delete.d.ts +11 -0
- package/dist/src/components/KgButton/KgButton.Update.d.ts +10 -0
- package/dist/src/components/KgButton/KgButton.d.ts +13 -0
- package/dist/src/components/KgButton/index.d.ts +4 -0
- package/dist/src/components/KgButton/index.vm.d.ts +9 -0
- package/dist/src/components/KgControl/KgControl.Input.d.ts +60 -0
- package/dist/src/components/KgControl/KgControl.Select.d.ts +57 -0
- package/dist/src/components/KgControl/KgControl.d.ts +60 -0
- package/dist/src/components/KgControl/index.d.ts +171 -0
- package/dist/src/components/KgControl/index.vm.d.ts +55 -0
- package/dist/src/components/KgPage/KgPage.d.ts +3 -0
- package/dist/src/components/KgProgressA/KgProgressA.d.ts +58 -0
- package/dist/src/components/KgSearch/KgSearch.d.ts +16 -0
- package/dist/src/components/KgSearch/index.d.ts +4 -0
- package/dist/src/components/KgSearch/index.vm.d.ts +9 -0
- package/dist/src/components/KgVar/hooks/index.d.ts +48 -0
- package/dist/src/components/KgVar/index.d.ts +2 -0
- package/dist/src/components/KgVar/store/index.d.ts +14 -0
- package/dist/src/components/KgVar/store/index.data.d.ts +9 -0
- package/dist/src/components/KgYesOrNo/KgYesOrNo.d.ts +24 -0
- package/dist/src/components/index.d.ts +8 -3
- package/dist/src/consts/i18n/en.d.ts +26 -0
- package/dist/src/consts/i18n/index.d.ts +53 -0
- package/dist/src/consts/i18n/t.d.ts +20 -0
- package/dist/src/consts/i18n/zh_CN.d.ts +26 -0
- package/dist/src/consts/index.d.ts +65 -0
- package/dist/src/consts/injection-keys.const.d.ts +8 -0
- package/dist/src/index.d.ts +3 -7
- package/dist/src/services/http-client.d.ts +32 -0
- package/dist/src/services/index.d.ts +1 -0
- package/dist/src/utils/app.util.d.ts +17 -0
- package/dist/src/utils/index.d.ts +4 -2
- package/dist/src/utils/kg.util.d.ts +38 -0
- package/dist/src/utils/logger.util.d.ts +40 -0
- package/dist/src/utils/route.util.d.ts +6 -0
- package/dist/src/utils/var.util.d.ts +11 -0
- package/kg.config.ts +23 -0
- package/package.json +24 -12
- package/.nvmrc +0 -1
- package/dist/index.js +0 -55
- package/dist/src/components/B.d.ts +0 -8
- package/dist/src/components/ComponentA.vue.d.ts +0 -6
- package/dist/src/constants/MyConstants.d.ts +0 -1
- package/dist/src/constants/index.d.ts +0 -2
- package/dist/src/utils/MyUtil.d.ts +0 -5
package/dist/index.js
DELETED
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
import { defineComponent as c, createVNode as n, openBlock as p, createElementBlock as s, Fragment as m, createElementVNode as i, toDisplayString as u, unref as o, withCtx as d, createTextVNode as _ } from "vue";
|
|
2
|
-
import { Button as l } from "ant-design-vue";
|
|
3
|
-
const a = c({
|
|
4
|
-
props: {
|
|
5
|
-
name: String
|
|
6
|
-
},
|
|
7
|
-
setup(e) {
|
|
8
|
-
return () => n(l, {
|
|
9
|
-
type: "ghost"
|
|
10
|
-
}, {
|
|
11
|
-
default: () => [e.name]
|
|
12
|
-
});
|
|
13
|
-
}
|
|
14
|
-
}), f = /* @__PURE__ */ c({
|
|
15
|
-
__name: "ComponentA",
|
|
16
|
-
props: {
|
|
17
|
-
msg: String
|
|
18
|
-
},
|
|
19
|
-
setup(e) {
|
|
20
|
-
return (t, S) => (p(), s(m, null, [i("div", null, "Hello " + u(e.msg) + "!", 1), n(o(l), {
|
|
21
|
-
type: "primary"
|
|
22
|
-
}, {
|
|
23
|
-
default: d(() => [_("CLICK")]),
|
|
24
|
-
_: 1
|
|
25
|
-
}), n(o(a), {
|
|
26
|
-
name: "FOO"
|
|
27
|
-
})], 64));
|
|
28
|
-
}
|
|
29
|
-
}), r = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
30
|
-
__proto__: null,
|
|
31
|
-
ComponentA: f,
|
|
32
|
-
B: a
|
|
33
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
34
|
-
const g = 100, M = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
35
|
-
__proto__: null,
|
|
36
|
-
MAGIC_NUM: g
|
|
37
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
38
|
-
function y(e, t) {
|
|
39
|
-
return e + t;
|
|
40
|
-
}
|
|
41
|
-
const O = {
|
|
42
|
-
add: y
|
|
43
|
-
};
|
|
44
|
-
function C(e) {
|
|
45
|
-
for (const t in r)
|
|
46
|
-
e.component(t, r[t]);
|
|
47
|
-
}
|
|
48
|
-
const j = { install: C };
|
|
49
|
-
export {
|
|
50
|
-
a as B,
|
|
51
|
-
f as ComponentA,
|
|
52
|
-
M as MyConstants,
|
|
53
|
-
O as MyUtil,
|
|
54
|
-
j as default
|
|
55
|
-
};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
declare const B: import("vue").DefineComponent<{
|
|
2
|
-
/** 名称. */
|
|
3
|
-
name: StringConstructor;
|
|
4
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
5
|
-
/** 名称. */
|
|
6
|
-
name: StringConstructor;
|
|
7
|
-
}>>, {}>;
|
|
8
|
-
export { B };
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
msg: StringConstructor;
|
|
3
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
4
|
-
msg: StringConstructor;
|
|
5
|
-
}>>, {}>;
|
|
6
|
-
export default _default;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const MAGIC_NUM = 100;
|