@fuaran-ui/ops 0.22.0 → 0.23.0
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/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1406,10 +1406,10 @@ var chartSpec = (s) => {
|
|
|
1406
1406
|
["kind", str(s.kind)],
|
|
1407
1407
|
// fuaran#665 — rows are a typed Static payload now, not the opaque residual.
|
|
1408
1408
|
["source", binding(s.source, staticRowSeq)],
|
|
1409
|
-
["stacked", bool(s.stacked)],
|
|
1410
1409
|
["xField", str(s.xField)],
|
|
1411
1410
|
["yFields", jArray(s.yFields.map(str))]
|
|
1412
1411
|
];
|
|
1412
|
+
if (s.stacked) fields.push(["stacked", bool(s.stacked)]);
|
|
1413
1413
|
if (s.title !== void 0) fields.push(["title", textSource(s.title)]);
|
|
1414
1414
|
if (s.valueFormat !== void 0) fields.push(["valueFormat", formatIntent(s.valueFormat)]);
|
|
1415
1415
|
if (s.xTitle !== void 0) fields.push(["xTitle", textSource(s.xTitle)]);
|