eco-vue-js 0.10.77 → 0.10.79
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/components/Chart/WChartLine.vue.d.ts +38 -0
- package/dist/components/Chart/WChartLine.vue.d.ts.map +1 -0
- package/dist/components/Chart/WChartLine.vue.js +296 -0
- package/dist/components/Chart/WChartLine.vue2.js +5 -0
- package/dist/components/Chart/WChartLinear.vue.d.ts +49 -0
- package/dist/components/Chart/WChartLinear.vue.d.ts.map +1 -0
- package/dist/components/Chart/WChartLinear.vue.js +126 -0
- package/dist/components/Chart/WChartLinear.vue2.js +5 -0
- package/dist/components/Chart/components/ChartAxis.vue.d.ts +10 -0
- package/dist/components/Chart/components/ChartAxis.vue.d.ts.map +1 -0
- package/dist/components/Chart/components/ChartAxis.vue.js +40 -0
- package/dist/components/Chart/components/ChartAxis.vue2.js +5 -0
- package/dist/components/Chart/types.d.ts +16 -0
- package/dist/components/Chart/types.d.ts.map +1 -0
- package/dist/components/DragContainer/use/useDragContainer.js +1 -0
- package/dist/components/InfiniteList/components/InfiniteListScroll.vue.d.ts.map +1 -1
- package/dist/components/InfiniteList/components/InfiniteListScroll.vue.js +8 -11
- package/dist/components/Input/WInputAsync.vue.js +1 -1
- package/dist/components/Nav/WNavItemExpand.vue.d.ts +1 -1
- package/dist/components/Nav/WNavItemExpand.vue.d.ts.map +1 -1
- package/dist/components/Nav/WNavItemExpand.vue.js +5 -5
- package/dist/components/Select/WSelectSingle.vue.js +1 -1
- package/dist/components/Tooltip/WTooltip.vue.d.ts +6 -1
- package/dist/components/Tooltip/WTooltip.vue.d.ts.map +1 -1
- package/dist/components/Tooltip/WTooltip.vue.js +16 -11
- package/dist/components/Tooltip/WTooltipContainer.vue.d.ts +69 -1
- package/dist/components/Tooltip/WTooltipContainer.vue.d.ts.map +1 -1
- package/dist/components/Tooltip/WTooltipContainer.vue.js +22 -47
- package/dist/components/Tooltip/components/TooltipContainer.vue.d.ts +1 -1
- package/dist/components/Tooltip/components/TooltipContainer.vue.d.ts.map +1 -1
- package/dist/components/Tooltip/models/tooltipMeta.d.ts +32 -0
- package/dist/components/Tooltip/models/tooltipMeta.d.ts.map +1 -0
- package/dist/components/Tooltip/models/tooltipMeta.js +40 -0
- package/dist/imports/componentsPlugin.d.ts +3 -1
- package/dist/imports/componentsPlugin.d.ts.map +1 -1
- package/dist/main.js +3 -1
- package/dist/utils/ApiClient.d.ts +1 -0
- package/dist/utils/ApiClient.d.ts.map +1 -1
- package/dist/utils/ApiClient.js +3 -0
- package/dist/utils/dateTime.d.ts +1 -0
- package/dist/utils/dateTime.d.ts.map +1 -1
- package/dist/utils/dateTime.js +4 -1
- package/package.json +10 -4
- package/dist/components/Tooltip/models/utils.js +0 -6
- package/dist/utils/Tooltip.d.ts +0 -17
- package/dist/utils/Tooltip.d.ts.map +0 -1
- package/dist/utils/Tooltip.js +0 -14
package/package.json
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
"type": "git",
|
5
5
|
"url": "https://github.com/rsmple/eco-vue-js.git"
|
6
6
|
},
|
7
|
-
"version": "0.10.
|
7
|
+
"version": "0.10.79",
|
8
8
|
"dependencies": {
|
9
9
|
"@stylistic/eslint-plugin": "5.1.0",
|
10
10
|
"@tanstack/eslint-plugin-query": "5.81.2",
|
@@ -80,9 +80,6 @@
|
|
80
80
|
"./dist/utils/Notify": {
|
81
81
|
"import": "./dist/utils/Notify.js"
|
82
82
|
},
|
83
|
-
"./dist/utils/Tooltip": {
|
84
|
-
"import": "./dist/utils/Tooltip.js"
|
85
|
-
},
|
86
83
|
"./dist/utils/useDefaultQuery": {
|
87
84
|
"import": "./dist/utils/useDefaultQuery.js"
|
88
85
|
},
|
@@ -164,6 +161,15 @@
|
|
164
161
|
"./dist/components/Button/types": {
|
165
162
|
"import": "./dist/components/Button/types.d.ts"
|
166
163
|
},
|
164
|
+
"./dist/components/Chart/WChartLine.vue": {
|
165
|
+
"import": "./dist/components/Chart/WChartLine.vue.js"
|
166
|
+
},
|
167
|
+
"./dist/components/Chart/WChartLinear.vue": {
|
168
|
+
"import": "./dist/components/Chart/WChartLinear.vue.js"
|
169
|
+
},
|
170
|
+
"./dist/components/Chart/types": {
|
171
|
+
"import": "./dist/components/Chart/types.d.ts"
|
172
|
+
},
|
167
173
|
"./dist/components/Checkbox/WCheckbox.vue": {
|
168
174
|
"import": "./dist/components/Checkbox/WCheckbox.vue.js"
|
169
175
|
},
|
package/dist/utils/Tooltip.d.ts
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
import { VNode } from 'vue';
|
2
|
-
export type TooltipMeta = {
|
3
|
-
parent: HTMLElement;
|
4
|
-
slot?: VNode;
|
5
|
-
text?: string;
|
6
|
-
key: number;
|
7
|
-
maxHeight?: number;
|
8
|
-
left?: boolean;
|
9
|
-
right?: boolean;
|
10
|
-
};
|
11
|
-
export type SetTooltipMeta = (meta: TooltipMeta | null) => void;
|
12
|
-
export declare const initTooltip: (value: SetTooltipMeta | undefined) => void;
|
13
|
-
export declare const Tooltip: {
|
14
|
-
add(meta: TooltipMeta): void;
|
15
|
-
close(): void;
|
16
|
-
};
|
17
|
-
//# sourceMappingURL=Tooltip.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"Tooltip.d.ts","sourceRoot":"","sources":["../../../src/utils/Tooltip.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,KAAK,EAAC,MAAM,KAAK,CAAA;AAE9B,MAAM,MAAM,WAAW,GAAG;IACxB,MAAM,EAAE,WAAW,CAAA;IACnB,IAAI,CAAC,EAAE,KAAK,CAAA;IACZ,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,GAAG,EAAE,MAAM,CAAA;IACX,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,KAAK,CAAC,EAAE,OAAO,CAAA;CAChB,CAAA;AAED,MAAM,MAAM,cAAc,GAAG,CAAC,IAAI,EAAE,WAAW,GAAG,IAAI,KAAK,IAAI,CAAA;AAI/D,eAAO,MAAM,WAAW,GAAI,OAAO,cAAc,GAAG,SAAS,SAE5D,CAAA;AAED,eAAO,MAAM,OAAO;cACR,WAAW,GAAG,IAAI;aAGnB,IAAI;CAGd,CAAA"}
|
package/dist/utils/Tooltip.js
DELETED