hs-admin-ui 16.0.6 → 16.0.8
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/_plugin-vue_export-helper-VLDak8vc.js +12 -0
- package/dist/{_plugin-vue_export-helper-CZTmULB5.mjs → _plugin-vue_export-helper-Y3IFIQZf.mjs} +2503 -3902
- package/dist/bcIcon-C9X7fHMn.mjs +4 -0
- package/dist/bcIcon-yArMcfT8.js +1 -0
- package/dist/bcIcon.vue_vue_type_script_setup_true_name_bcIcon_lang-B4FHqtSa.js +1 -0
- package/dist/bcIcon.vue_vue_type_script_setup_true_name_bcIcon_lang-BwEGGUoG.mjs +53 -0
- package/dist/bcVisual.vue_vue_type_style_index_0_scoped_cae31cec_lang-BxwLctae.js +276 -0
- package/dist/bcVisual.vue_vue_type_style_index_0_scoped_cae31cec_lang-COr4IvZN.mjs +73610 -0
- package/dist/components-BnTw-qiD.js +3 -0
- package/dist/components-DLXckk4C.mjs +14236 -0
- package/dist/element-plus-ui.js +1 -0
- package/dist/element-plus-ui.mjs +17 -0
- package/dist/h5.js +1 -1
- package/dist/h5.mjs +21 -20
- package/dist/index-413Nqtv2.js +6 -0
- package/dist/index-Cffr-T4a.mjs +33231 -0
- package/dist/index-D9s2LT3q.js +39 -0
- package/dist/index-DbVnKvm5.mjs +1414 -0
- package/dist/index.js +18 -1
- package/dist/index.mjs +15382 -258
- package/dist/style.css +1 -1
- package/dist/types/element-plus-ui.d.ts +15 -0
- package/dist/types/src/components/base/ConfigProvider/index.d.ts +1 -0
- package/dist/types/src/components/base/ConfigProvider/src/ConfigProvider.vue.d.ts +9 -0
- package/dist/types/src/components/base/components.d.ts +1 -0
- package/dist/types/src/components/base/index.d.ts +7 -0
- package/dist/types/src/components/business/bcTable/components/query/query.vue.d.ts +2 -1
- package/dist/types/vxe-table-ui.d.ts +17 -0
- package/dist/vxe-table-ui.js +1 -0
- package/dist/vxe-table-ui.mjs +17 -0
- package/package.json +11 -1
- package/dist/_plugin-vue_export-helper-Dk80_hr9.js +0 -17
- package/dist/bcIcon-Baqfk5_w.mjs +0 -4
- package/dist/bcIcon-iCzoHRXh.js +0 -1
- package/dist/index-B49HhTKd.js +0 -333
- package/dist/index-VZF696wu.mjs +0 -136085
- package/dist/types/src/components/h5/Test/Test.vue.d.ts +0 -3
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { App } from "vue";
|
|
2
|
+
import "element-plus/dist/index.css";
|
|
3
|
+
import { mathTool } from "./src/utils/number";
|
|
4
|
+
import { HsMessage as ElMessage, HsMessageBox as ElMessageBox, HsNotification as ElNotification } from "./src/utils";
|
|
5
|
+
import * as Utils from "./src/utils";
|
|
6
|
+
import type { Router } from "vue-router";
|
|
7
|
+
interface OptionsDef {
|
|
8
|
+
/** 缓存npm包名 */
|
|
9
|
+
NEXT_NAME?: string;
|
|
10
|
+
IS_DEV?: boolean;
|
|
11
|
+
currentRoute?: Router["currentRoute"];
|
|
12
|
+
currentRouter?: Router;
|
|
13
|
+
}
|
|
14
|
+
declare function useElementUi(app: App, options?: OptionsDef): void;
|
|
15
|
+
export { useElementUi, mathTool, Utils, ElMessage, ElMessageBox, ElNotification };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as ConfigProvider } from "./src/ConfigProvider.vue";
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare const __VLS_export: import("vue").DefineComponent<{
|
|
2
|
+
size?: any;
|
|
3
|
+
locale?: any;
|
|
4
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
5
|
+
size?: any;
|
|
6
|
+
locale?: any;
|
|
7
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8
|
+
declare const _default: typeof __VLS_export;
|
|
9
|
+
export default _default;
|
|
@@ -26,6 +26,13 @@ export declare const baseComponents: {
|
|
|
26
26
|
Collapse: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
27
27
|
CollapseItem: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
28
28
|
ColorPicker: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
29
|
+
ConfigProvider: import("vue").DefineComponent<{
|
|
30
|
+
size?: any;
|
|
31
|
+
locale?: any;
|
|
32
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
33
|
+
size?: any;
|
|
34
|
+
locale?: any;
|
|
35
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
29
36
|
Container: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
30
37
|
Countdown: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
31
38
|
DatePicker: import("vue").DefineComponent<{
|
|
@@ -136,7 +136,8 @@ declare function getInstance(): {
|
|
|
136
136
|
};
|
|
137
137
|
$forceUpdate: () => void;
|
|
138
138
|
$nextTick: typeof nextTick;
|
|
139
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (
|
|
139
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (
|
|
140
|
+
/** @type {[typeof __VLS_components.ElButton, typeof __VLS_components.elButton, ]} */ ...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
140
141
|
} & Readonly<{
|
|
141
142
|
readonly inline: boolean;
|
|
142
143
|
readonly disabled: boolean;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { App } from "vue";
|
|
2
|
+
import "vxe-pc-ui/lib/style.css";
|
|
3
|
+
import "vxe-table/lib/style.css";
|
|
4
|
+
import { VxeUI } from "vxe-pc-ui";
|
|
5
|
+
import { mathTool } from "./src/utils/number";
|
|
6
|
+
import { HsMessage, HsMessageBox, HsNotification } from "./src/utils";
|
|
7
|
+
import * as Utils from "./src/utils";
|
|
8
|
+
import type { Router } from "vue-router";
|
|
9
|
+
interface OptionsDef {
|
|
10
|
+
/** 缓存npm包名 */
|
|
11
|
+
NEXT_NAME?: string;
|
|
12
|
+
IS_DEV?: boolean;
|
|
13
|
+
currentRoute?: Router["currentRoute"];
|
|
14
|
+
currentRouter?: Router;
|
|
15
|
+
}
|
|
16
|
+
declare function useVxeTableUi(app: App, options?: OptionsDef): void;
|
|
17
|
+
export { useVxeTableUi, VxeUI, mathTool, Utils, HsMessage, HsMessageBox, HsNotification };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("./components-BnTw-qiD.js"),u=require("./bcVisual.vue_vue_type_style_index_0_scoped_cae31cec_lang-BxwLctae.js");require("vue");const l=require("./_plugin-vue_export-helper-VLDak8vc.js");function c(r,e){u.NEXT_NAME.value=e==null?void 0:e.NEXT_NAME,u.IS_DEV.value=e==null?void 0:e.IS_DEV,u.CurrentRoute.value=e==null?void 0:e.currentRoute,u.CurrentRouter.value=e==null?void 0:e.currentRouter,r.directive("loading",l.ElLoading.directive),r.use(u.VxeUIExport).use(a.VxeTableExport)}exports.HsMessage=u.HsMessage;exports.HsMessageBox=u.HsMessageBox;exports.HsNotification=u.HsNotification;exports.Utils=u.index;exports.VxeUI=u.VxeUI;exports.mathTool=u.mathTool;exports.useVxeTableUi=c;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { V as r } from "./components-DLXckk4C.mjs";
|
|
2
|
+
import { ao as u, aY as l, aZ as m, a_ as x, a$ as E } from "./bcVisual.vue_vue_type_style_index_0_scoped_cae31cec_lang-COr4IvZN.mjs";
|
|
3
|
+
import { H as T, b0 as _, b1 as d, b2 as g, b4 as t, b3 as I } from "./bcVisual.vue_vue_type_style_index_0_scoped_cae31cec_lang-COr4IvZN.mjs";
|
|
4
|
+
import "vue";
|
|
5
|
+
import { H as b } from "./_plugin-vue_export-helper-Y3IFIQZf.mjs";
|
|
6
|
+
function s(a, e) {
|
|
7
|
+
u.value = e == null ? void 0 : e.NEXT_NAME, l.value = e == null ? void 0 : e.IS_DEV, m.value = e == null ? void 0 : e.currentRoute, x.value = e == null ? void 0 : e.currentRouter, a.directive("loading", b.directive), a.use(E).use(r);
|
|
8
|
+
}
|
|
9
|
+
export {
|
|
10
|
+
T as HsMessage,
|
|
11
|
+
_ as HsMessageBox,
|
|
12
|
+
d as HsNotification,
|
|
13
|
+
g as Utils,
|
|
14
|
+
t as VxeUI,
|
|
15
|
+
I as mathTool,
|
|
16
|
+
s as useVxeTableUi
|
|
17
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hs-admin-ui",
|
|
3
|
-
"version": "16.0.
|
|
3
|
+
"version": "16.0.8",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -23,6 +23,16 @@
|
|
|
23
23
|
"import": "./dist/h5.mjs",
|
|
24
24
|
"require": "./dist/h5.js"
|
|
25
25
|
},
|
|
26
|
+
"./element-plus-ui": {
|
|
27
|
+
"types": "./dist/types/element-plus-ui.d.ts",
|
|
28
|
+
"import": "./dist/element-plus-ui.mjs",
|
|
29
|
+
"require": "./dist/element-plus-ui.js"
|
|
30
|
+
},
|
|
31
|
+
"./vxe-table-ui": {
|
|
32
|
+
"types": "./dist/types/vxe-table-ui.d.ts",
|
|
33
|
+
"import": "./dist/vxe-table-ui.mjs",
|
|
34
|
+
"require": "./dist/vxe-table-ui.js"
|
|
35
|
+
},
|
|
26
36
|
"./dist/style.css": {
|
|
27
37
|
"require": "./dist/style.css",
|
|
28
38
|
"import": "./dist/style.css"
|