moblor-vue 0.1.11 → 0.1.12
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.
|
@@ -4582,8 +4582,8 @@ var ReportDataConvertor = /** @class */ (function (_super) {
|
|
|
4582
4582
|
}
|
|
4583
4583
|
var index = aggregates.findIndex(function (summaryField) { return summaryField === 'RowCount'; });
|
|
4584
4584
|
var recordCount = 0;
|
|
4585
|
-
if (index
|
|
4586
|
-
recordCount = aggregates[index].
|
|
4585
|
+
if (index > -1) {
|
|
4586
|
+
recordCount = aggregates[index].label;
|
|
4587
4587
|
}
|
|
4588
4588
|
else if (aggregates.length === 1) {
|
|
4589
4589
|
recordCount = aggregates[0].label;
|
|
@@ -4643,8 +4643,8 @@ var ReportDataConvertor = /** @class */ (function (_super) {
|
|
|
4643
4643
|
};
|
|
4644
4644
|
var _c = factMap[key + "!T"], rowAggregates = _c.aggregates, rows = _c.rows;
|
|
4645
4645
|
var index1 = aggregates.findIndex(function (aggregate) { return aggregate === 'RowCount'; });
|
|
4646
|
-
if (index1 >
|
|
4647
|
-
row.recordCount = rowAggregates[index1].
|
|
4646
|
+
if (index1 > -1) {
|
|
4647
|
+
row.recordCount = rowAggregates[index1].label;
|
|
4648
4648
|
}
|
|
4649
4649
|
else if (aggregates.length === 1) {
|
|
4650
4650
|
row.recordCount = rowAggregates[0].label;
|
|
@@ -4707,7 +4707,7 @@ var ReportDataConvertor = /** @class */ (function (_super) {
|
|
|
4707
4707
|
var index = aggregates.findIndex(function (aggregate) { return aggregate === 'RowCount'; });
|
|
4708
4708
|
var recordCount = 0;
|
|
4709
4709
|
if (index > -1) {
|
|
4710
|
-
recordCount = grandTotalAggregates[index].
|
|
4710
|
+
recordCount = grandTotalAggregates[index].label;
|
|
4711
4711
|
}
|
|
4712
4712
|
else if (aggregates.length === 1) {
|
|
4713
4713
|
recordCount = grandTotalAggregates[0].label;
|
|
@@ -6647,11 +6647,11 @@ __vue_render__$k._withStripped = true;
|
|
|
6647
6647
|
/* style */
|
|
6648
6648
|
var __vue_inject_styles__$m = function (inject) {
|
|
6649
6649
|
if (!inject) { return }
|
|
6650
|
-
inject("data-v-
|
|
6650
|
+
inject("data-v-932f6b36_0", { source: "/* Colors\n========================================================================== */\n/* Typography\n========================================================================== */\n/* Border Radius\n========================================================================== */\n/* Table */\n/* Safe Area */\n.total-row[data-v-932f6b36] {\n font-size: 11px;\n padding: 0px 10px;\n position: relative;\n}\n.total-row[data-v-932f6b36]:before {\n content: \"\";\n position: absolute;\n bottom: auto;\n right: auto;\n background-color: #e3e5e8;\n display: block;\n z-index: 15;\n transform-origin: 0% 50%;\n left: 0;\n top: 0;\n width: 1px;\n height: 100%;\n}\n.pixel-ratio-2 .total-row[data-v-932f6b36]:before {\n transform: scaleX(0.5);\n}\n.pixel-ratio-3 .total-row[data-v-932f6b36]:before {\n transform: scaleX(0.33);\n}\n.android.pixel-ratio-3 .total-row[data-v-932f6b36]:before {\n transform-origin: 0% 33%;\n}\n.total-row[data-v-932f6b36]:after {\n content: \"\";\n position: absolute;\n bottom: auto;\n right: auto;\n background-color: #e3e5e8;\n display: block;\n z-index: 15;\n transform-origin: 100% 50%;\n right: 0;\n top: 0;\n width: 1px;\n height: 100%;\n}\n.pixel-ratio-2 .total-row[data-v-932f6b36]:after {\n transform: scaleX(0.5);\n}\n.pixel-ratio-3 .total-row[data-v-932f6b36]:after {\n transform: scaleX(0.33);\n}\n.android.pixel-ratio-3 .total-row[data-v-932f6b36]:after {\n transform-origin: 66% 33%;\n}\n.total-row .label[data-v-932f6b36], .total-row .count[data-v-932f6b36] {\n float: left;\n font-weight: bold;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n.total-row .count-left-mark[data-v-932f6b36] {\n margin-left: 5px;\n}\n.total-row .label[data-v-932f6b36] {\n max-width: 20%;\n}\n.total-row .count[data-v-932f6b36] {\n max-width: calc(80% - 13px);\n}\n.total-row .count-left-mark[data-v-932f6b36], .total-row .count-right-mark[data-v-932f6b36] {\n float: left;\n width: 4px;\n}", map: undefined, media: undefined });
|
|
6651
6651
|
|
|
6652
6652
|
};
|
|
6653
6653
|
/* scoped */
|
|
6654
|
-
var __vue_scope_id__$m = "data-v-
|
|
6654
|
+
var __vue_scope_id__$m = "data-v-932f6b36";
|
|
6655
6655
|
/* module identifier */
|
|
6656
6656
|
var __vue_module_identifier__$m = undefined;
|
|
6657
6657
|
/* functional template */
|