@visactor/vseed 0.1.33 → 0.1.35
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/cjs/index.cjs +2 -2
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/builder/builder/builder.d.ts +1189 -3271
- package/dist/esm/pipeline/advanced/chart/pipes/config/column.d.ts +2 -0
- package/dist/esm/pipeline/advanced/chart/pipes/config/column.js +31 -0
- package/dist/esm/pipeline/advanced/chart/pipes/config/column.js.map +1 -0
- package/dist/esm/pipeline/advanced/chart/pipes/config/index.d.ts +19 -3
- package/dist/esm/pipeline/advanced/chart/pipes/config/index.js +21 -3
- package/dist/esm/pipeline/advanced/chart/pipes/config/index.js.map +1 -0
- package/dist/esm/pipeline/advanced/chart/pipes/config/line.d.ts +2 -0
- package/dist/esm/pipeline/advanced/chart/pipes/config/line.js +30 -0
- package/dist/esm/pipeline/advanced/chart/pipes/config/line.js.map +1 -0
- package/dist/esm/pipeline/advanced/chart/pipes/config/pie.d.ts +2 -0
- package/dist/esm/pipeline/advanced/chart/pipes/config/pie.js +27 -0
- package/dist/esm/pipeline/advanced/chart/pipes/config/pie.js.map +1 -0
- package/dist/esm/pipeline/spec/chart/pipeline/funnel.js +3 -1
- package/dist/esm/pipeline/spec/chart/pipeline/funnel.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipeline/heatmap.js +2 -2
- package/dist/esm/pipeline/spec/chart/pipeline/heatmap.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipes/init/funnel.js +0 -3
- package/dist/esm/pipeline/spec/chart/pipes/init/funnel.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipes/label/label.js +5 -4
- package/dist/esm/pipeline/spec/chart/pipes/label/label.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipes/legend/discreteLegend.js +26 -11
- package/dist/esm/pipeline/spec/chart/pipes/legend/discreteLegend.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipes/legend/heatmapColorLegend.d.ts +2 -0
- package/dist/esm/pipeline/spec/chart/pipes/legend/heatmapColorLegend.js +19 -0
- package/dist/esm/pipeline/spec/chart/pipes/legend/heatmapColorLegend.js.map +1 -0
- package/dist/esm/pipeline/spec/chart/pipes/legend/index.d.ts +1 -0
- package/dist/esm/pipeline/spec/chart/pipes/legend/index.js +2 -1
- package/dist/esm/pipeline/spec/chart/pipes/markStyle/cellStyle.js +8 -3
- package/dist/esm/pipeline/spec/chart/pipes/markStyle/cellStyle.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipes/markStyle/funnelStyle.js +1 -1
- package/dist/esm/pipeline/spec/chart/pipes/markStyle/funnelStyle.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipes/markStyle/funnelTransformStyle.d.ts +2 -0
- package/dist/esm/pipeline/spec/chart/pipes/markStyle/funnelTransformStyle.js +22 -0
- package/dist/esm/pipeline/spec/chart/pipes/markStyle/funnelTransformStyle.js.map +1 -0
- package/dist/esm/pipeline/spec/chart/pipes/markStyle/index.d.ts +1 -0
- package/dist/esm/pipeline/spec/chart/pipes/markStyle/index.js +2 -1
- package/dist/esm/pipeline/spec/chart/pipes/pivotChart/pivotColumnDimensions.js +0 -1
- package/dist/esm/pipeline/spec/chart/pipes/pivotChart/pivotColumnDimensions.js.map +1 -1
- package/dist/esm/pipeline/utils/constant.d.ts +1 -0
- package/dist/esm/pipeline/utils/constant.js +2 -1
- package/dist/esm/pipeline/utils/constant.js.map +1 -1
- package/dist/esm/theme/common/funnelTransform.d.ts +3 -0
- package/dist/esm/theme/common/funnelTransform.js +11 -0
- package/dist/esm/theme/common/funnelTransform.js.map +1 -0
- package/dist/esm/theme/common/heatmapCell.d.ts +3 -0
- package/dist/esm/theme/common/heatmapCell.js +9 -0
- package/dist/esm/theme/common/heatmapCell.js.map +1 -0
- package/dist/esm/theme/common/table.d.ts +47 -5
- package/dist/esm/theme/common/table.js.map +1 -1
- package/dist/esm/theme/dark/dark.js +4 -0
- package/dist/esm/theme/dark/dark.js.map +1 -1
- package/dist/esm/theme/light/light.js +4 -0
- package/dist/esm/theme/light/light.js.map +1 -1
- package/dist/esm/types/advancedVSeed.d.ts +160 -958
- package/dist/esm/types/properties/config/annotation/zAnnotaion.d.ts +1 -1
- package/dist/esm/types/properties/config/annotation/zAnnotaion.js +2 -2
- package/dist/esm/types/properties/config/annotation/zAnnotaion.js.map +1 -1
- package/dist/esm/types/properties/config/area.d.ts +647 -0
- package/dist/esm/types/properties/config/area.js +26 -0
- package/dist/esm/types/properties/config/area.js.map +1 -0
- package/dist/esm/types/properties/config/axes/bandAxis.d.ts +149 -1
- package/dist/esm/types/properties/config/axes/linearAxis.d.ts +151 -1
- package/dist/esm/types/properties/config/bar.d.ts +970 -0
- package/dist/esm/types/properties/config/bar.js +29 -0
- package/dist/esm/types/properties/config/bar.js.map +1 -0
- package/dist/esm/types/properties/config/column.d.ts +970 -0
- package/dist/esm/types/properties/config/column.js +29 -0
- package/dist/esm/types/properties/config/column.js.map +1 -0
- package/dist/esm/types/properties/config/config.d.ts +138 -5667
- package/dist/esm/types/properties/config/config.js +13 -142
- package/dist/esm/types/properties/config/config.js.map +1 -1
- package/dist/esm/types/properties/config/dualAxis.d.ts +566 -0
- package/dist/esm/types/properties/config/dualAxis.js +29 -0
- package/dist/esm/types/properties/config/dualAxis.js.map +1 -0
- package/dist/esm/types/properties/config/funnel.d.ts +124 -0
- package/dist/esm/types/properties/config/funnel.js +20 -0
- package/dist/esm/types/properties/config/funnel.js.map +1 -0
- package/dist/esm/types/properties/config/funnelTransform/funnelTransform.d.ts +13 -0
- package/dist/esm/types/properties/config/funnelTransform/funnelTransform.js +0 -0
- package/dist/esm/types/properties/config/funnelTransform/index.d.ts +2 -0
- package/dist/esm/types/properties/config/funnelTransform/index.js +1 -0
- package/dist/esm/types/properties/config/funnelTransform/zFunnelTransform.d.ts +5 -0
- package/dist/esm/types/properties/config/funnelTransform/zFunnelTransform.js +8 -0
- package/dist/esm/types/properties/config/funnelTransform/zFunnelTransform.js.map +1 -0
- package/dist/esm/types/properties/config/heatmap/heatmap.d.ts +17 -0
- package/dist/esm/types/properties/config/heatmap/heatmap.js +0 -0
- package/dist/esm/types/properties/config/heatmap/index.d.ts +2 -0
- package/dist/esm/types/properties/config/heatmap/index.js +1 -0
- package/dist/esm/types/properties/config/heatmap/zHeatmap.d.ts +6 -0
- package/dist/esm/types/properties/config/heatmap/zHeatmap.js +9 -0
- package/dist/esm/types/properties/config/heatmap/zHeatmap.js.map +1 -0
- package/dist/esm/types/properties/config/heatmap.d.ts +125 -0
- package/dist/esm/types/properties/config/heatmap.js +20 -0
- package/dist/esm/types/properties/config/heatmap.js.map +1 -0
- package/dist/esm/types/properties/config/index.d.ts +17 -2
- package/dist/esm/types/properties/config/index.js +17 -2
- package/dist/esm/types/properties/config/line.d.ts +324 -0
- package/dist/esm/types/properties/config/line.js +25 -0
- package/dist/esm/types/properties/config/line.js.map +1 -0
- package/dist/esm/types/properties/config/pie.d.ts +364 -0
- package/dist/esm/types/properties/config/pie.js +21 -0
- package/dist/esm/types/properties/config/pie.js.map +1 -0
- package/dist/esm/types/properties/config/pivotGrid/index.d.ts +2 -0
- package/dist/esm/types/properties/config/pivotGrid/index.js +2 -0
- package/dist/esm/types/properties/config/pivotGrid/pivotGrid.d.ts +10 -0
- package/dist/esm/types/properties/config/pivotGrid/pivotGrid.js +12 -0
- package/dist/esm/types/properties/config/pivotGrid/pivotGrid.js.map +1 -0
- package/dist/esm/types/properties/config/pivotTable.d.ts +18 -0
- package/dist/esm/types/properties/config/pivotTable.js +5 -0
- package/dist/esm/types/properties/config/pivotTable.js.map +1 -0
- package/dist/esm/types/properties/config/rose.d.ts +241 -0
- package/dist/esm/types/properties/config/rose.js +19 -0
- package/dist/esm/types/properties/config/rose.js.map +1 -0
- package/dist/esm/types/properties/config/scatter.d.ts +357 -0
- package/dist/esm/types/properties/config/scatter.js +27 -0
- package/dist/esm/types/properties/config/scatter.js.map +1 -0
- package/dist/esm/types/properties/config/table.d.ts +18 -0
- package/dist/esm/types/properties/config/table.js +21 -0
- package/dist/esm/types/properties/config/table.js.map +1 -0
- package/dist/esm/types/properties/theme/customTheme.d.ts +161 -959
- package/dist/umd/index.js +241 -137
- package/dist/umd/index.js.map +1 -1
- package/package.json +3 -3
- package/dist/esm/pipeline/advanced/chart/pipes/config/config.d.ts +0 -17
- package/dist/esm/pipeline/advanced/chart/pipes/config/config.js +0 -89
- package/dist/esm/pipeline/advanced/chart/pipes/config/config.js.map +0 -1
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import { zXBandAxis, zYLinearAxis } from "./axes/index.js";
|
|
3
|
+
import { zCrosshairRect } from "./crosshair/index.js";
|
|
4
|
+
import { zStackCornerRadius } from "./stackCornerRadius/stackCornerRadius.js";
|
|
5
|
+
import { zBackgroundColor } from "./backgroundColor/backgroundColor.js";
|
|
6
|
+
import { zColor } from "./color/color.js";
|
|
7
|
+
import { zLabel } from "./label/index.js";
|
|
8
|
+
import { zLegend } from "./legend/legend.js";
|
|
9
|
+
import { zTooltip } from "./tooltip/tooltip.js";
|
|
10
|
+
import { zAnnotationConfig } from "./annotation/zAnnotaion.js";
|
|
11
|
+
import { zPivotChartGridConfig } from "./pivotGrid/index.js";
|
|
12
|
+
const zColumnConfig = z.object({
|
|
13
|
+
backgroundColor: zBackgroundColor.nullish(),
|
|
14
|
+
label: zLabel.nullish(),
|
|
15
|
+
color: zColor.nullish(),
|
|
16
|
+
tooltip: zTooltip.nullish(),
|
|
17
|
+
legend: zLegend.nullish(),
|
|
18
|
+
xAxis: zXBandAxis.nullish(),
|
|
19
|
+
yAxis: zYLinearAxis.nullish(),
|
|
20
|
+
crosshairRect: zCrosshairRect.nullish(),
|
|
21
|
+
stackCornerRadius: zStackCornerRadius.nullish(),
|
|
22
|
+
pivotGrid: zPivotChartGridConfig.nullish(),
|
|
23
|
+
annotation: zAnnotationConfig.nullish()
|
|
24
|
+
});
|
|
25
|
+
const zColumnParallelConfig = zColumnConfig;
|
|
26
|
+
const zColumnPercentConfig = zColumnConfig;
|
|
27
|
+
export { zColumnConfig, zColumnParallelConfig, zColumnPercentConfig };
|
|
28
|
+
|
|
29
|
+
//# sourceMappingURL=column.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types/properties/config/column.js","sources":["webpack://@visactor/vseed/./src/types/properties/config/column.ts"],"sourcesContent":["import { z } from 'zod'\nimport { zXBandAxis, zYLinearAxis } from './axes'\nimport { zCrosshairRect } from './crosshair'\nimport { zStackCornerRadius } from './stackCornerRadius/stackCornerRadius'\nimport { zBackgroundColor } from './backgroundColor/backgroundColor'\nimport { zColor } from './color/color'\nimport { zLabel } from './label'\nimport { zLegend } from './legend/legend'\nimport { zTooltip } from './tooltip/tooltip'\nimport { zAnnotationConfig } from './annotation/zAnnotaion'\nimport { zPivotChartGridConfig } from './pivotGrid'\n\nexport const zColumnConfig = z.object({\n backgroundColor: zBackgroundColor.nullish(),\n label: zLabel.nullish(),\n color: zColor.nullish(),\n tooltip: zTooltip.nullish(),\n legend: zLegend.nullish(),\n\n xAxis: zXBandAxis.nullish(),\n yAxis: zYLinearAxis.nullish(),\n crosshairRect: zCrosshairRect.nullish(),\n stackCornerRadius: zStackCornerRadius.nullish(),\n pivotGrid: zPivotChartGridConfig.nullish(),\n annotation: zAnnotationConfig.nullish(),\n})\nexport const zColumnParallelConfig = zColumnConfig\nexport const zColumnPercentConfig = zColumnConfig\n\nexport type ColumnConfig = z.infer<typeof zColumnConfig>\nexport type ColumnParallelConfig = z.infer<typeof zColumnParallelConfig>\nexport type ColumnPercentConfig = z.infer<typeof zColumnPercentConfig>\n"],"names":["zColumnConfig","z","zBackgroundColor","zLabel","zColor","zTooltip","zLegend","zXBandAxis","zYLinearAxis","zCrosshairRect","zStackCornerRadius","zPivotChartGridConfig","zAnnotationConfig","zColumnParallelConfig","zColumnPercentConfig"],"mappings":";;;;;;;;;;;AAYO,MAAMA,gBAAgBC,EAAE,MAAM,CAAC;IACpC,iBAAiBC,iBAAiB,OAAO;IACzC,OAAOC,OAAO,OAAO;IACrB,OAAOC,OAAO,OAAO;IACrB,SAASC,SAAS,OAAO;IACzB,QAAQC,QAAQ,OAAO;IAEvB,OAAOC,WAAW,OAAO;IACzB,OAAOC,aAAa,OAAO;IAC3B,eAAeC,eAAe,OAAO;IACrC,mBAAmBC,mBAAmB,OAAO;IAC7C,WAAWC,sBAAsB,OAAO;IACxC,YAAYC,kBAAkB,OAAO;AACvC;AACO,MAAMC,wBAAwBb;AAC9B,MAAMc,uBAAuBd"}
|