super-page-runtime 2.3.7 → 2.3.9
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/es/components/runtime/utils/charts/chart-columnline-util.js +76 -76
- package/dist/es/components/runtime/utils/charts/chart-gauge-util.js +26 -24
- package/dist/es/components/runtime/utils/charts/chart-pie-util.js +59 -58
- package/dist/es/components/runtime/utils/charts/chart-radar-util.js +38 -37
- package/dist/es/components/runtime/utils/charts/chart-scatter-util.js +28 -27
- package/dist/es/components/runtime/utils/charts/chart-util.d.ts +1 -0
- package/dist/es/components/runtime/utils/charts/chart-util.js +29 -22
- package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.js +4 -1
- package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +4 -4
- package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.js +4 -1
- package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.js +15 -15
- package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.js +4 -1
- package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.js +7 -7
- package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.js +4 -1
- package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.js +8 -8
- package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.js +4 -1
- package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.js +7 -7
- package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.js +86 -82
- package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.js +18 -15
- package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.js +4 -1
- package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue2.js +32 -29
- package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue2.js +14 -15
- package/dist/es/style.css +30 -0
- package/package.json +2 -2
package/dist/es/style.css
CHANGED
|
@@ -551,6 +551,36 @@
|
|
|
551
551
|
}
|
|
552
552
|
|
|
553
553
|
|
|
554
|
+
|
|
555
|
+
.amb-chart-container[data-v-5b4e8687] {
|
|
556
|
+
display: flex;
|
|
557
|
+
flex-direction: column;
|
|
558
|
+
height: 100%;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
.amb-chart-container[data-v-961b3d1c] {
|
|
562
|
+
display: flex;
|
|
563
|
+
flex-direction: column;
|
|
564
|
+
height: 100%;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
.amb-chart-container[data-v-8d392d9f] {
|
|
568
|
+
display: flex;
|
|
569
|
+
flex-direction: column;
|
|
570
|
+
height: 100%;
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
.amb-chart-container[data-v-f50eeed9] {
|
|
574
|
+
display: flex;
|
|
575
|
+
flex-direction: column;
|
|
576
|
+
height: 100%;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
.amb-chart-container[data-v-e08919a0] {
|
|
580
|
+
display: flex;
|
|
581
|
+
flex-direction: column;
|
|
582
|
+
height: 100%;
|
|
583
|
+
}
|
|
554
584
|
|
|
555
585
|
/** 右键菜单样式 */
|
|
556
586
|
.context-menu[data-v-89330064] {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "super-page-runtime",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.9",
|
|
4
4
|
"description": "AgileBuilder super page runtime",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/es/index.js",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"@vitejs/plugin-vue-jsx": "^3.1.0",
|
|
49
49
|
"@vue/eslint-config-prettier": "^8.0.0",
|
|
50
50
|
"@vue/test-utils": "^2.4.4",
|
|
51
|
-
"agilebuilder-ui": "1.1.
|
|
51
|
+
"agilebuilder-ui": "1.1.46",
|
|
52
52
|
"axios": "^1.6.8",
|
|
53
53
|
"cypress": "^13.6.6",
|
|
54
54
|
"element-plus": "^2.6.1",
|