@ecan-bi/datav 1.0.2 → 1.0.3
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/README.md +2 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.umd.js +1 -1
- package/package.json +14 -55
- package/dist/_utils/withInstall.d.ts +0 -5
- package/dist/index.d.ts +0 -1
- package/dist/shims-vue.d.ts +0 -5
- package/dist/text/index.d.ts +0 -2
- package/dist/text/scroll-text/ScrollText.vue.d.ts +0 -4
- package/dist/text/scroll-text/index.d.ts +0 -2
- package/dist/text/text/Text.vue.d.ts +0 -4
- package/dist/text/text/index.d.ts +0 -2
package/README.md
ADDED
package/dist/index.esm.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{defineComponent as e,ref as t,openBlock as
|
|
1
|
+
import{defineComponent as e,ref as t,openBlock as n,createElementBlock as o,toDisplayString as a}from"vue";const r=(e,t)=>{if(e.install=n=>{for(const o of[e,...Object.values(null!=t?t:{})])n.component(o.name,o)},t)for(const[n,o]of Object.entries(t))e[n]=o;return e};var d=e({name:"EText",setup:()=>({text:t("基础文本")})});const c={class:"red"};function s(e,t){void 0===t&&(t={});var n=t.insertAt;if(e&&"undefined"!=typeof document){var o=document.head||document.getElementsByTagName("head")[0],a=document.createElement("style");a.type="text/css","top"===n&&o.firstChild?o.insertBefore(a,o.firstChild):o.appendChild(a),a.styleSheet?a.styleSheet.cssText=e:a.appendChild(document.createTextNode(e))}}s(".red[data-v-4ec29934]{color:blue}"),d.render=function(e,t,r,d,s,l){return n(),o("div",c,a(e.text),1)},d.__scopeId="data-v-4ec29934",d.__file="packages/datav/text/text/Text.vue";const l=r(d);var i=e({name:"EScrollText",setup:()=>({text:t("基础文本")})});const u={class:"red"};s(".red[data-v-5aee1d32]{color:red}"),i.render=function(e,t,r,d,c,s){return n(),o("div",u,a(e.text),1)},i.__scopeId="data-v-5aee1d32",i.__file="packages/datav/text/scroll-text/ScrollText.vue";const f=r(i);export{f as EScrollText,l as EText};
|
package/dist/index.umd.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("vue")):"function"==typeof define&&define.amd?define(["exports","vue"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).index={},e.vue)}(this,(function(e,t){"use strict";
|
|
1
|
+
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("vue")):"function"==typeof define&&define.amd?define(["exports","vue"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).index={},e.vue)}(this,(function(e,t){"use strict";const n=(e,t)=>{if(e.install=n=>{for(const o of[e,...Object.values(null!=t?t:{})])n.component(o.name,o)},t)for(const[n,o]of Object.entries(t))e[n]=o;return e};var o=t.defineComponent({name:"EText",setup:()=>({text:t.ref("基础文本")})});const d={class:"red"};function r(e,t){void 0===t&&(t={});var n=t.insertAt;if(e&&"undefined"!=typeof document){var o=document.head||document.getElementsByTagName("head")[0],d=document.createElement("style");d.type="text/css","top"===n&&o.firstChild?o.insertBefore(d,o.firstChild):o.appendChild(d),d.styleSheet?d.styleSheet.cssText=e:d.appendChild(document.createTextNode(e))}}r(".red[data-v-4ec29934]{color:blue}"),o.render=function(e,n,o,r,c,a){return t.openBlock(),t.createElementBlock("div",d,t.toDisplayString(e.text),1)},o.__scopeId="data-v-4ec29934",o.__file="packages/datav/text/text/Text.vue";const c=n(o);var a=t.defineComponent({name:"EScrollText",setup:()=>({text:t.ref("基础文本")})});const l={class:"red"};r(".red[data-v-5aee1d32]{color:red}"),a.render=function(e,n,o,d,r,c){return t.openBlock(),t.createElementBlock("div",l,t.toDisplayString(e.text),1)},a.__scopeId="data-v-5aee1d32",a.__file="packages/datav/text/scroll-text/ScrollText.vue";const s=n(a);e.EScrollText=s,e.EText=c,Object.defineProperty(e,"__esModule",{value:!0})}));
|
package/package.json
CHANGED
|
@@ -1,68 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ecan-bi/datav",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"author": "阿远 <qzy0603@qq.com>",
|
|
5
|
+
"homepage": "",
|
|
6
|
+
"license": "ISC",
|
|
4
7
|
"main": "dist/index.umd.js",
|
|
5
8
|
"module": "dist/index.esm.js",
|
|
6
9
|
"types": "dist/index.d.ts",
|
|
7
|
-
"files": [
|
|
8
|
-
"dist"
|
|
9
|
-
],
|
|
10
|
-
"keywords": [],
|
|
11
|
-
"author": "ayuan",
|
|
12
10
|
"publishConfig": {
|
|
13
11
|
"access": "public"
|
|
14
12
|
},
|
|
15
|
-
"
|
|
16
|
-
|
|
17
|
-
"
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"
|
|
24
|
-
},
|
|
25
|
-
"devDependencies": {
|
|
26
|
-
"@babel/core": "^7.16.0",
|
|
27
|
-
"@babel/plugin-transform-runtime": "^7.16.4",
|
|
28
|
-
"@babel/preset-env": "^7.16.4",
|
|
29
|
-
"@babel/preset-typescript": "^7.16.0",
|
|
30
|
-
"@rollup/plugin-alias": "^3.1.8",
|
|
31
|
-
"@rollup/plugin-babel": "^5.3.0",
|
|
32
|
-
"@rollup/plugin-commonjs": "^21.0.1",
|
|
33
|
-
"@rollup/plugin-json": "^4.1.0",
|
|
34
|
-
"@rollup/plugin-node-resolve": "^13.0.6",
|
|
35
|
-
"@rollup/plugin-typescript": "^8.3.0",
|
|
36
|
-
"@typescript-eslint/eslint-plugin": "^5.4.0",
|
|
37
|
-
"@typescript-eslint/parser": "^5.4.0",
|
|
38
|
-
"@vue/compiler-sfc": "^3.2.22",
|
|
39
|
-
"@vue/eslint-config-standard": "^6.1.0",
|
|
40
|
-
"autoprefixer": "^10.4.0",
|
|
41
|
-
"babel-eslint": "^10.1.0",
|
|
42
|
-
"cssnano": "^5.0.11",
|
|
43
|
-
"eslint": "^7.32.0",
|
|
44
|
-
"eslint-config-standard": "^16.0.3",
|
|
45
|
-
"eslint-plugin-import": "^2.25.3",
|
|
46
|
-
"eslint-plugin-node": "^11.1.0",
|
|
47
|
-
"eslint-plugin-promise": "^5.1.1",
|
|
48
|
-
"eslint-plugin-standard": "^5.0.0",
|
|
49
|
-
"eslint-plugin-vue": "^8.1.1",
|
|
50
|
-
"less": "^4.1.2",
|
|
51
|
-
"npm": "^8.1.4",
|
|
52
|
-
"rimraf": "^2.7.1",
|
|
53
|
-
"rollup": "^2.60.1",
|
|
54
|
-
"rollup-plugin-commonjs": "^10.1.0",
|
|
55
|
-
"rollup-plugin-css-only": "^3.1.0",
|
|
56
|
-
"rollup-plugin-postcss": "^4.0.2",
|
|
57
|
-
"rollup-plugin-terser": "^7.0.2",
|
|
58
|
-
"rollup-plugin-typescript2": "^0.31.1",
|
|
59
|
-
"rollup-plugin-vue": "^6.0.0",
|
|
60
|
-
"tslib": "^2.3.1",
|
|
61
|
-
"typescript": "^4.3.5",
|
|
62
|
-
"vue-eslint-parser": "^8.0.1"
|
|
13
|
+
"keywords": [
|
|
14
|
+
"vue3",
|
|
15
|
+
"components"
|
|
16
|
+
],
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"@ecan-bi/utils": "file:../utlis"
|
|
63
22
|
},
|
|
64
23
|
"peerDependencies": {
|
|
65
24
|
"vue": "^3.2.22"
|
|
66
25
|
},
|
|
67
|
-
"
|
|
26
|
+
"gitHead": "bbf5ceda4f09b669418f46a594f1c01c59a0056c"
|
|
68
27
|
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { Plugin } from 'vue';
|
|
2
|
-
export declare type SFCWithInstall<T> = T & Plugin;
|
|
3
|
-
export declare const withInstall: <T, E extends Record<string, any>>(main: T, extra?: E) => SFCWithInstall<T> & E;
|
|
4
|
-
export declare const withInstallFunction: <T>(fn: T, name: string) => SFCWithInstall<T>;
|
|
5
|
-
export declare const withNoopInstall: <T>(component: T) => SFCWithInstall<T>;
|
package/dist/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './text';
|
package/dist/shims-vue.d.ts
DELETED
package/dist/text/index.d.ts
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
-
text: import("vue").Ref<string>;
|
|
3
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
|
|
4
|
-
export default _default;
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export declare const EScrollText: import("../../_utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{}, {}, any, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>> & Record<string, any>;
|
|
2
|
-
export default EScrollText;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
-
text: import("vue").Ref<string>;
|
|
3
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
|
|
4
|
-
export default _default;
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export declare const EText: import("../../_utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{}, {}, any, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>> & Record<string, any>;
|
|
2
|
-
export default EText;
|