@qxs-bns/components 0.0.50 → 0.0.51
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/es/index.css +82 -0
- package/es/package.json.mjs +1 -1
- package/es/src/data-chart/src/components/area.vue.mjs +1 -1
- package/es/src/data-chart/src/components/card.vue.mjs +1 -1
- package/es/src/data-chart/src/components/line.vue.mjs +1 -1
- package/lib/index.css +82 -0
- package/lib/package.json.cjs +1 -1
- package/lib/src/data-chart/src/components/area.vue.cjs +1 -1
- package/lib/src/data-chart/src/components/card.vue.cjs +1 -1
- package/lib/src/data-chart/src/components/line.vue.cjs +1 -1
- package/package.json +3 -1
- package/types/tsconfig.tsbuildinfo +1 -1
- package/es/node_modules/.pnpm/style-inject@0.3.0/node_modules/style-inject/dist/style-inject.es.mjs +0 -2
- package/es/node_modules/.pnpm/style-inject@0.3.0/node_modules/style-inject/dist/style-inject.es.mjs.map +0 -1
- package/es/src/data-chart/src/components/area.vue3.mjs +0 -2
- package/es/src/data-chart/src/components/area.vue3.mjs.map +0 -1
- package/es/src/data-chart/src/components/card.vue3.mjs +0 -2
- package/es/src/data-chart/src/components/card.vue3.mjs.map +0 -1
- package/es/src/data-chart/src/components/line.vue3.mjs +0 -2
- package/es/src/data-chart/src/components/line.vue3.mjs.map +0 -1
- package/lib/node_modules/.pnpm/style-inject@0.3.0/node_modules/style-inject/dist/style-inject.es.cjs +0 -2
- package/lib/node_modules/.pnpm/style-inject@0.3.0/node_modules/style-inject/dist/style-inject.es.cjs.map +0 -1
- package/lib/src/data-chart/src/components/area.vue3.cjs +0 -2
- package/lib/src/data-chart/src/components/area.vue3.cjs.map +0 -1
- package/lib/src/data-chart/src/components/card.vue3.cjs +0 -2
- package/lib/src/data-chart/src/components/card.vue3.cjs.map +0 -1
- package/lib/src/data-chart/src/components/line.vue3.cjs +0 -2
- package/lib/src/data-chart/src/components/line.vue3.cjs.map +0 -1
package/es/index.css
ADDED
@@ -0,0 +1,82 @@
|
|
1
|
+
/* unplugin-vue-components disabled */
|
2
|
+
.data-chart-area-wrap[data-v-51660d7b] {
|
3
|
+
position: relative;
|
4
|
+
}
|
5
|
+
.data-chart-area-wrap .city-select[data-v-51660d7b] {
|
6
|
+
position: absolute;
|
7
|
+
top: 10px;
|
8
|
+
right: 100px;
|
9
|
+
z-index: 1;
|
10
|
+
width: 120px;
|
11
|
+
}
|
12
|
+
.data-chart-area-wrap .data-chart-area[data-v-51660d7b] {
|
13
|
+
height: 100%;
|
14
|
+
}
|
15
|
+
/* unplugin-vue-components disabled */
|
16
|
+
.data-chart-card[data-v-1c14c088] {
|
17
|
+
display: flex;
|
18
|
+
flex-direction: column;
|
19
|
+
}
|
20
|
+
.data-chart-card .title[data-v-1c14c088] {
|
21
|
+
margin: 0;
|
22
|
+
display: flex;
|
23
|
+
align-items: center;
|
24
|
+
justify-content: space-between;
|
25
|
+
padding: 0 5.5px;
|
26
|
+
line-height: 26px;
|
27
|
+
font-family: sans-serif;
|
28
|
+
font-size: 14px;
|
29
|
+
font-weight: 600;
|
30
|
+
color: #464646;
|
31
|
+
}
|
32
|
+
.data-chart-card .data-chart-card-grid-layout[data-v-1c14c088] {
|
33
|
+
display: grid;
|
34
|
+
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
35
|
+
gap: 10px;
|
36
|
+
width: calc(100% - 3px);
|
37
|
+
}
|
38
|
+
.data-chart-card .data-chart-card-wrap[data-v-1c14c088] {
|
39
|
+
height: 100% !important;
|
40
|
+
}
|
41
|
+
.data-chart-card .data-chart-card-wrap .card-item[data-v-1c14c088] {
|
42
|
+
width: 100% !important;
|
43
|
+
}
|
44
|
+
.data-chart-card .card-item[data-v-1c14c088] {
|
45
|
+
position: relative;
|
46
|
+
background-repeat: no-repeat;
|
47
|
+
background-position: left top, right top;
|
48
|
+
background-size: contain, contain;
|
49
|
+
border: 2px solid #2196f3;
|
50
|
+
border-radius: 6px;
|
51
|
+
}
|
52
|
+
.data-chart-card .card-item .suffix-icon[data-v-1c14c088] {
|
53
|
+
position: absolute;
|
54
|
+
right: 1px;
|
55
|
+
bottom: calc(25% - 14px);
|
56
|
+
width: 20px;
|
57
|
+
font-size: 20px;
|
58
|
+
font-weight: bold;
|
59
|
+
color: #fff;
|
60
|
+
text-align: center;
|
61
|
+
}
|
62
|
+
.data-chart-card .card-item .card-title[data-v-1c14c088] {
|
63
|
+
padding-left: 15px;
|
64
|
+
margin-top: 10px;
|
65
|
+
margin-bottom: 5px;
|
66
|
+
overflow: hidden;
|
67
|
+
font-size: 16px;
|
68
|
+
font-weight: bold;
|
69
|
+
color: #2196f3;
|
70
|
+
text-overflow: ellipsis;
|
71
|
+
white-space: nowrap;
|
72
|
+
}
|
73
|
+
.data-chart-card .card-item .context[data-v-1c14c088] {
|
74
|
+
padding: 0 30px 10px 20px;
|
75
|
+
font-size: 14px;
|
76
|
+
color: #464646;
|
77
|
+
}
|
78
|
+
/* unplugin-vue-components disabled */
|
79
|
+
.data-chart-line[data-v-397864aa] {
|
80
|
+
width: 100%;
|
81
|
+
height: 100%;
|
82
|
+
}
|
package/es/package.json.mjs
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
var r="0.0.
|
1
|
+
var r="0.0.51";export{r as version};
|
2
2
|
//# sourceMappingURL=package.json.mjs.map
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import r from"./area.vue2.mjs";import
|
1
|
+
import r from"./area.vue2.mjs";import e from"../../../../_virtual/_plugin-vue_export-helper.mjs";var a=e(r,[["__scopeId","data-v-51660d7b"]]);export{a as default};
|
2
2
|
//# sourceMappingURL=area.vue.mjs.map
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import r from"./card.vue2.mjs";import
|
1
|
+
import r from"./card.vue2.mjs";import e from"../../../../_virtual/_plugin-vue_export-helper.mjs";var a=e(r,[["__scopeId","data-v-1c14c088"]]);export{a as default};
|
2
2
|
//# sourceMappingURL=card.vue.mjs.map
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import e from"./line.vue2.mjs";import
|
1
|
+
import e from"./line.vue2.mjs";import r from"../../../../_virtual/_plugin-vue_export-helper.mjs";var a=r(e,[["__scopeId","data-v-397864aa"]]);export{a as default};
|
2
2
|
//# sourceMappingURL=line.vue.mjs.map
|
package/lib/index.css
ADDED
@@ -0,0 +1,82 @@
|
|
1
|
+
/* unplugin-vue-components disabled */
|
2
|
+
.data-chart-area-wrap[data-v-51660d7b] {
|
3
|
+
position: relative;
|
4
|
+
}
|
5
|
+
.data-chart-area-wrap .city-select[data-v-51660d7b] {
|
6
|
+
position: absolute;
|
7
|
+
top: 10px;
|
8
|
+
right: 100px;
|
9
|
+
z-index: 1;
|
10
|
+
width: 120px;
|
11
|
+
}
|
12
|
+
.data-chart-area-wrap .data-chart-area[data-v-51660d7b] {
|
13
|
+
height: 100%;
|
14
|
+
}
|
15
|
+
/* unplugin-vue-components disabled */
|
16
|
+
.data-chart-card[data-v-1c14c088] {
|
17
|
+
display: flex;
|
18
|
+
flex-direction: column;
|
19
|
+
}
|
20
|
+
.data-chart-card .title[data-v-1c14c088] {
|
21
|
+
margin: 0;
|
22
|
+
display: flex;
|
23
|
+
align-items: center;
|
24
|
+
justify-content: space-between;
|
25
|
+
padding: 0 5.5px;
|
26
|
+
line-height: 26px;
|
27
|
+
font-family: sans-serif;
|
28
|
+
font-size: 14px;
|
29
|
+
font-weight: 600;
|
30
|
+
color: #464646;
|
31
|
+
}
|
32
|
+
.data-chart-card .data-chart-card-grid-layout[data-v-1c14c088] {
|
33
|
+
display: grid;
|
34
|
+
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
35
|
+
gap: 10px;
|
36
|
+
width: calc(100% - 3px);
|
37
|
+
}
|
38
|
+
.data-chart-card .data-chart-card-wrap[data-v-1c14c088] {
|
39
|
+
height: 100% !important;
|
40
|
+
}
|
41
|
+
.data-chart-card .data-chart-card-wrap .card-item[data-v-1c14c088] {
|
42
|
+
width: 100% !important;
|
43
|
+
}
|
44
|
+
.data-chart-card .card-item[data-v-1c14c088] {
|
45
|
+
position: relative;
|
46
|
+
background-repeat: no-repeat;
|
47
|
+
background-position: left top, right top;
|
48
|
+
background-size: contain, contain;
|
49
|
+
border: 2px solid #2196f3;
|
50
|
+
border-radius: 6px;
|
51
|
+
}
|
52
|
+
.data-chart-card .card-item .suffix-icon[data-v-1c14c088] {
|
53
|
+
position: absolute;
|
54
|
+
right: 1px;
|
55
|
+
bottom: calc(25% - 14px);
|
56
|
+
width: 20px;
|
57
|
+
font-size: 20px;
|
58
|
+
font-weight: bold;
|
59
|
+
color: #fff;
|
60
|
+
text-align: center;
|
61
|
+
}
|
62
|
+
.data-chart-card .card-item .card-title[data-v-1c14c088] {
|
63
|
+
padding-left: 15px;
|
64
|
+
margin-top: 10px;
|
65
|
+
margin-bottom: 5px;
|
66
|
+
overflow: hidden;
|
67
|
+
font-size: 16px;
|
68
|
+
font-weight: bold;
|
69
|
+
color: #2196f3;
|
70
|
+
text-overflow: ellipsis;
|
71
|
+
white-space: nowrap;
|
72
|
+
}
|
73
|
+
.data-chart-card .card-item .context[data-v-1c14c088] {
|
74
|
+
padding: 0 30px 10px 20px;
|
75
|
+
font-size: 14px;
|
76
|
+
color: #464646;
|
77
|
+
}
|
78
|
+
/* unplugin-vue-components disabled */
|
79
|
+
.data-chart-line[data-v-397864aa] {
|
80
|
+
width: 100%;
|
81
|
+
height: 100%;
|
82
|
+
}
|
package/lib/package.json.cjs
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
"use strict";exports.version="0.0.
|
1
|
+
"use strict";exports.version="0.0.51";
|
2
2
|
//# sourceMappingURL=package.json.cjs.map
|
@@ -1,2 +1,2 @@
|
|
1
|
-
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("./area.vue2.cjs")
|
1
|
+
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("./area.vue2.cjs"),r=require("../../../../_virtual/_plugin-vue_export-helper.cjs").default(e.default,[["__scopeId","data-v-51660d7b"]]);exports.default=r;
|
2
2
|
//# sourceMappingURL=area.vue.cjs.map
|
@@ -1,2 +1,2 @@
|
|
1
|
-
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("./card.vue2.cjs")
|
1
|
+
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("./card.vue2.cjs"),r=require("../../../../_virtual/_plugin-vue_export-helper.cjs").default(e.default,[["__scopeId","data-v-1c14c088"]]);exports.default=r;
|
2
2
|
//# sourceMappingURL=card.vue.cjs.map
|
@@ -1,2 +1,2 @@
|
|
1
|
-
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("./line.vue2.cjs")
|
1
|
+
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("./line.vue2.cjs"),r=require("../../../../_virtual/_plugin-vue_export-helper.cjs").default(e.default,[["__scopeId","data-v-397864aa"]]);exports.default=r;
|
2
2
|
//# sourceMappingURL=line.vue.cjs.map
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@qxs-bns/components",
|
3
3
|
"type": "module",
|
4
|
-
"version": "0.0.
|
4
|
+
"version": "0.0.51",
|
5
5
|
"description": "Vue 3 Component Library",
|
6
6
|
"license": "MIT",
|
7
7
|
"homepage": "https://trry-hub.github.io/qxs-bns/",
|
@@ -64,6 +64,8 @@
|
|
64
64
|
"require": "./lib/index.cjs",
|
65
65
|
"types": "./types/index.d.ts"
|
66
66
|
},
|
67
|
+
"./es/*": "./es/*",
|
68
|
+
"./lib/*": "./lib/*",
|
67
69
|
"./*": {
|
68
70
|
"import": "./es/*.mjs",
|
69
71
|
"require": "./lib/*.cjs",
|