luyoumin-ui 0.0.41 → 0.0.42
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.
|
@@ -4,7 +4,7 @@ var __publicField = (obj, key, value2) => {
|
|
|
4
4
|
__defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value2);
|
|
5
5
|
return value2;
|
|
6
6
|
};
|
|
7
|
-
import { e as each, f as formatTime, m as modifyHSL, p as parseDate, a as format, r as round, c as clipRectByRect, b as addCommas, l as lift, d as linearMap } from "./index-
|
|
7
|
+
import { e as each, f as formatTime, m as modifyHSL, p as parseDate, a as format, r as round, c as clipRectByRect, b as addCommas, l as lift, d as linearMap } from "./index-BmA67yC9.js";
|
|
8
8
|
const rawData = [
|
|
9
9
|
["Income", "Life Expectancy", "Population", "Country", "Year"],
|
|
10
10
|
[815, 34.05, 351014, "Australia", 1800],
|
package/dist/global.d.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export {}
|
|
2
|
+
|
|
3
|
+
import { GenericImg, LymButton, LymCheckBox, LymCheckBoxGroup, LymColorPicker, LymDialog, LymDrawer, LymInput, LymLink, Echarts } from './index'
|
|
4
|
+
|
|
5
|
+
// 自动注册全局组件虽然很方便,但在使用时缺少了ts类型提示,下面介绍一下为全局组件添加类型提示
|
|
6
|
+
declare module 'vue' {
|
|
7
|
+
export interface GlobalComponents {
|
|
8
|
+
GenericImg: typeof GenericImg
|
|
9
|
+
LymButton: typeof LymButton
|
|
10
|
+
LymCheckBox: typeof LymCheckBox
|
|
11
|
+
LymCheckBoxGroup: typeof LymCheckBoxGroup
|
|
12
|
+
LymColorPicker: typeof LymColorPicker
|
|
13
|
+
LymDialog: typeof LymDialog
|
|
14
|
+
LymDrawer: typeof LymDrawer
|
|
15
|
+
LymInput: typeof LymInput
|
|
16
|
+
LymLink: typeof LymLink
|
|
17
|
+
Echarts: typeof Echarts
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -78831,7 +78831,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
78831
78831
|
}
|
|
78832
78832
|
});
|
|
78833
78833
|
async function getCahrtData() {
|
|
78834
|
-
const asd = await import("./charts-data-
|
|
78834
|
+
const asd = await import("./charts-data-mBG7rsjS.js");
|
|
78835
78835
|
chartSamples.value = asd.default.chartSamples;
|
|
78836
78836
|
}
|
|
78837
78837
|
function changeTheme(type) {
|
|
@@ -78953,6 +78953,7 @@ const install = {
|
|
|
78953
78953
|
}
|
|
78954
78954
|
};
|
|
78955
78955
|
export {
|
|
78956
|
+
Echarts as E,
|
|
78956
78957
|
GenericImg as G,
|
|
78957
78958
|
LymButton as L,
|
|
78958
78959
|
_sfc_main$9 as _,
|
package/dist/index.d.ts
CHANGED
|
@@ -8,9 +8,10 @@ import { default as LymDrawer } from './components/LymDrawer.vue';
|
|
|
8
8
|
import { default as LymInput } from './components/LymInput.vue';
|
|
9
9
|
import { default as LymLink } from './components/LymLink.vue';
|
|
10
10
|
import { default as GenericImg } from './components/generic-img/GenericImg.vue';
|
|
11
|
+
import { default as Echarts } from './components/echarts/Echarts.vue';
|
|
11
12
|
|
|
12
13
|
declare const install: {
|
|
13
14
|
install(app: App): void;
|
|
14
15
|
};
|
|
15
|
-
export { LymButton, LymCheckBox, LymCheckBoxGroup, LymColorPicker, LymDialog, LymDrawer, LymInput, LymLink, GenericImg };
|
|
16
|
+
export { LymButton, LymCheckBox, LymCheckBoxGroup, LymColorPicker, LymDialog, LymDrawer, LymInput, LymLink, GenericImg, Echarts };
|
|
16
17
|
export default install;
|