@guandata/guanvis 0.1.25 → 0.1.26
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/CHANGELOG.md +5 -0
- package/README.md +5 -0
- package/binaries/guanvis-darwin-arm64 +0 -0
- package/binaries/guanvis-darwin-x64 +0 -0
- package/binaries/guanvis-linux-arm64 +0 -0
- package/binaries/guanvis-linux-x64 +0 -0
- package/binaries/guanvis-win32-x64.exe +0 -0
- package/package.json +1 -1
- package/skills/guanvis/references/api-reference.md +4 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -51,6 +51,11 @@ guanvis publish ./my_dashboard/ --allow-overwrite
|
|
|
51
51
|
|
|
52
52
|
## 版本更新
|
|
53
53
|
|
|
54
|
+
### @guandata/guanvis 0.1.26
|
|
55
|
+
|
|
56
|
+
- 修复自定义排序 payload 归一化问题,提升图表排序配置发布兼容性。
|
|
57
|
+
- 资源包打包增加配置一致性校验,提前发现重复或冲突资源,降低上传失败和覆盖风险。
|
|
58
|
+
|
|
54
59
|
### @guandata/guanvis 0.1.25
|
|
55
60
|
|
|
56
61
|
- 补充资源 ID 命名指引,建议 Card/Page/布局等资源 ID 使用字母开头,降低平台 ID 解析兼容风险。
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -414,7 +414,10 @@ createCard(ChartType.PIVOT_TABLE, "品牌同比分析")
|
|
|
414
414
|
.addMetric(yoyRate)
|
|
415
415
|
.addSort(f("品牌", {
|
|
416
416
|
ordering: "ASC",
|
|
417
|
-
customSort:
|
|
417
|
+
customSort: {
|
|
418
|
+
turnedOn: true,
|
|
419
|
+
sortOrder: ["华东", "华南", "华北"]
|
|
420
|
+
}
|
|
418
421
|
}));
|
|
419
422
|
```
|
|
420
423
|
|