@visactor/vseed 0.4.25 → 0.4.27
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/pipeline/advanced/chart/pipes/config/column.js +1 -0
- package/dist/esm/pipeline/advanced/chart/pipes/config/column.js.map +1 -1
- package/dist/esm/pipeline/advanced/chart/pipes/config/line.js +1 -0
- package/dist/esm/pipeline/advanced/chart/pipes/config/line.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipeline/area.js +5 -1
- package/dist/esm/pipeline/spec/chart/pipeline/area.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipeline/areaPercent.js +3 -1
- package/dist/esm/pipeline/spec/chart/pipeline/areaPercent.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipeline/bar.js +3 -1
- package/dist/esm/pipeline/spec/chart/pipeline/bar.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipeline/barParallel.js +3 -1
- package/dist/esm/pipeline/spec/chart/pipeline/barParallel.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipeline/barPercent.js +3 -1
- package/dist/esm/pipeline/spec/chart/pipeline/barPercent.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipeline/column.js +3 -1
- package/dist/esm/pipeline/spec/chart/pipeline/column.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipeline/columnParallel.js +3 -1
- package/dist/esm/pipeline/spec/chart/pipeline/columnParallel.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipeline/columnPercent.js +3 -1
- package/dist/esm/pipeline/spec/chart/pipeline/columnPercent.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipeline/line.js +5 -1
- package/dist/esm/pipeline/spec/chart/pipeline/line.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipes/annotation/annotationDifferenceLine.js +220 -73
- package/dist/esm/pipeline/spec/chart/pipes/annotation/annotationDifferenceLine.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipes/annotation/annotationDifferenceLineCommon.d.ts +21 -5
- package/dist/esm/pipeline/spec/chart/pipes/annotation/annotationDifferenceLineCommon.js +67 -14
- package/dist/esm/pipeline/spec/chart/pipes/annotation/annotationDifferenceLineCommon.js.map +1 -1
- package/dist/esm/pipeline/spec/chart/pipes/region/index.d.ts +1 -0
- package/dist/esm/pipeline/spec/chart/pipes/region/index.js +1 -0
- package/dist/esm/pipeline/spec/chart/pipes/region/regionPadding.d.ts +2 -0
- package/dist/esm/pipeline/spec/chart/pipes/region/regionPadding.js +20 -0
- package/dist/esm/pipeline/spec/chart/pipes/region/regionPadding.js.map +1 -0
- package/dist/esm/types/chartType/area/area.d.ts +11 -1
- package/dist/esm/types/chartType/area/zArea.d.ts +309 -0
- package/dist/esm/types/chartType/area/zArea.js +3 -1
- package/dist/esm/types/chartType/area/zArea.js.map +1 -1
- package/dist/esm/types/chartType/areaPercent/areaPercent.d.ts +6 -1
- package/dist/esm/types/chartType/areaPercent/zAreaPercent.d.ts +6 -0
- package/dist/esm/types/chartType/areaPercent/zAreaPercent.js +2 -1
- package/dist/esm/types/chartType/areaPercent/zAreaPercent.js.map +1 -1
- package/dist/esm/types/chartType/bar/bar.d.ts +6 -1
- package/dist/esm/types/chartType/bar/zBar.d.ts +6 -0
- package/dist/esm/types/chartType/bar/zBar.js +2 -1
- package/dist/esm/types/chartType/bar/zBar.js.map +1 -1
- package/dist/esm/types/chartType/barParallel/barParallel.d.ts +6 -1
- package/dist/esm/types/chartType/barParallel/zBarParallel.d.ts +6 -0
- package/dist/esm/types/chartType/barParallel/zBarParallel.js +2 -1
- package/dist/esm/types/chartType/barParallel/zBarParallel.js.map +1 -1
- package/dist/esm/types/chartType/barPercent/barPercent.d.ts +6 -1
- package/dist/esm/types/chartType/barPercent/zBarPercent.d.ts +6 -0
- package/dist/esm/types/chartType/barPercent/zBarPercent.js +2 -1
- package/dist/esm/types/chartType/barPercent/zBarPercent.js.map +1 -1
- package/dist/esm/types/chartType/column/column.d.ts +6 -1
- package/dist/esm/types/chartType/column/zColumn.d.ts +6 -0
- package/dist/esm/types/chartType/column/zColumn.js +2 -1
- package/dist/esm/types/chartType/column/zColumn.js.map +1 -1
- package/dist/esm/types/chartType/columnParallel/columnParallel.d.ts +6 -1
- package/dist/esm/types/chartType/columnParallel/zColumnParallel.d.ts +6 -0
- package/dist/esm/types/chartType/columnParallel/zColumnParallel.js +2 -1
- package/dist/esm/types/chartType/columnParallel/zColumnParallel.js.map +1 -1
- package/dist/esm/types/chartType/columnPercent/columnPercent.d.ts +6 -1
- package/dist/esm/types/chartType/columnPercent/zColumnPercent.d.ts +6 -0
- package/dist/esm/types/chartType/columnPercent/zColumnPercent.js +2 -1
- package/dist/esm/types/chartType/columnPercent/zColumnPercent.js.map +1 -1
- package/dist/esm/types/chartType/line/line.d.ts +11 -1
- package/dist/esm/types/chartType/line/zLine.d.ts +309 -0
- package/dist/esm/types/chartType/line/zLine.js +3 -1
- package/dist/esm/types/chartType/line/zLine.js.map +1 -1
- package/dist/esm/types/properties/config/area.d.ts +12 -0
- package/dist/esm/types/properties/config/area.js +2 -0
- package/dist/esm/types/properties/config/area.js.map +1 -1
- package/dist/esm/types/properties/config/bar.d.ts +18 -0
- package/dist/esm/types/properties/config/bar.js +2 -0
- package/dist/esm/types/properties/config/bar.js.map +1 -1
- package/dist/esm/types/properties/config/column.d.ts +18 -0
- package/dist/esm/types/properties/config/column.js +2 -0
- package/dist/esm/types/properties/config/column.js.map +1 -1
- package/dist/esm/types/properties/config/config.d.ts +66 -0
- package/dist/esm/types/properties/config/line.d.ts +6 -0
- package/dist/esm/types/properties/config/line.js +2 -0
- package/dist/esm/types/properties/config/line.js.map +1 -1
- package/dist/esm/types/properties/config/race.d.ts +12 -0
- package/dist/esm/types/properties/index.d.ts +1 -0
- package/dist/esm/types/properties/index.js +1 -0
- package/dist/esm/types/properties/regionPadding/index.d.ts +2 -0
- package/dist/esm/types/properties/regionPadding/index.js +1 -0
- package/dist/esm/types/properties/regionPadding/regionPadding.d.ts +6 -0
- package/dist/esm/types/properties/regionPadding/regionPadding.js +0 -0
- package/dist/esm/types/properties/regionPadding/zRegionPadding.d.ts +7 -0
- package/dist/esm/types/properties/regionPadding/zRegionPadding.js +11 -0
- package/dist/esm/types/properties/regionPadding/zRegionPadding.js.map +1 -0
- package/dist/esm/types/properties/theme/customTheme.d.ts +132 -0
- package/dist/umd/index.js +552 -291
- package/dist/umd/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -422,6 +422,12 @@ export declare const zLine: z.ZodObject<{
|
|
|
422
422
|
labelFontSize: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>;
|
|
423
423
|
labelFontWeight: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>>;
|
|
424
424
|
}, z.core.$strip>>>;
|
|
425
|
+
regionPadding: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
426
|
+
top: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
427
|
+
right: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
428
|
+
bottom: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
429
|
+
left: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
430
|
+
}, z.core.$strip>]>>>;
|
|
425
431
|
tooltip: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
426
432
|
enable: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
427
433
|
borderColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2048,6 +2054,309 @@ export declare const zLine: z.ZodObject<{
|
|
|
2048
2054
|
areaLineDash: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber>>>;
|
|
2049
2055
|
outerPadding: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>;
|
|
2050
2056
|
}, z.core.$strip>]>>>;
|
|
2057
|
+
annotationDifferenceLine: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
2058
|
+
start: z.ZodObject<{
|
|
2059
|
+
selector: z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodRecord<z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodAny>, z.ZodObject<{
|
|
2060
|
+
field: z.ZodString;
|
|
2061
|
+
operator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2062
|
+
"=": "=";
|
|
2063
|
+
"==": "==";
|
|
2064
|
+
"!=": "!=";
|
|
2065
|
+
">": ">";
|
|
2066
|
+
"<": "<";
|
|
2067
|
+
">=": ">=";
|
|
2068
|
+
"<=": "<=";
|
|
2069
|
+
between: "between";
|
|
2070
|
+
}>>>;
|
|
2071
|
+
op: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2072
|
+
"=": "=";
|
|
2073
|
+
"==": "==";
|
|
2074
|
+
"!=": "!=";
|
|
2075
|
+
">": ">";
|
|
2076
|
+
"<": "<";
|
|
2077
|
+
">=": ">=";
|
|
2078
|
+
"<=": "<=";
|
|
2079
|
+
between: "between";
|
|
2080
|
+
}>>>;
|
|
2081
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
|
2082
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2083
|
+
field: z.ZodString;
|
|
2084
|
+
operator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2085
|
+
in: "in";
|
|
2086
|
+
"not in": "not in";
|
|
2087
|
+
}>>>;
|
|
2088
|
+
op: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2089
|
+
in: "in";
|
|
2090
|
+
"not in": "not in";
|
|
2091
|
+
}>>>;
|
|
2092
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
|
2093
|
+
}, z.core.$strip>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodRecord<z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodAny>, z.ZodObject<{
|
|
2094
|
+
field: z.ZodString;
|
|
2095
|
+
operator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2096
|
+
"=": "=";
|
|
2097
|
+
"==": "==";
|
|
2098
|
+
"!=": "!=";
|
|
2099
|
+
">": ">";
|
|
2100
|
+
"<": "<";
|
|
2101
|
+
">=": ">=";
|
|
2102
|
+
"<=": "<=";
|
|
2103
|
+
between: "between";
|
|
2104
|
+
}>>>;
|
|
2105
|
+
op: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2106
|
+
"=": "=";
|
|
2107
|
+
"==": "==";
|
|
2108
|
+
"!=": "!=";
|
|
2109
|
+
">": ">";
|
|
2110
|
+
"<": "<";
|
|
2111
|
+
">=": ">=";
|
|
2112
|
+
"<=": "<=";
|
|
2113
|
+
between: "between";
|
|
2114
|
+
}>>>;
|
|
2115
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
|
2116
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2117
|
+
field: z.ZodString;
|
|
2118
|
+
operator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2119
|
+
in: "in";
|
|
2120
|
+
"not in": "not in";
|
|
2121
|
+
}>>>;
|
|
2122
|
+
op: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2123
|
+
in: "in";
|
|
2124
|
+
"not in": "not in";
|
|
2125
|
+
}>>>;
|
|
2126
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
|
2127
|
+
}, z.core.$strip>]>>]>;
|
|
2128
|
+
}, z.core.$strip>;
|
|
2129
|
+
end: z.ZodObject<{
|
|
2130
|
+
selector: z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodRecord<z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodAny>, z.ZodObject<{
|
|
2131
|
+
field: z.ZodString;
|
|
2132
|
+
operator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2133
|
+
"=": "=";
|
|
2134
|
+
"==": "==";
|
|
2135
|
+
"!=": "!=";
|
|
2136
|
+
">": ">";
|
|
2137
|
+
"<": "<";
|
|
2138
|
+
">=": ">=";
|
|
2139
|
+
"<=": "<=";
|
|
2140
|
+
between: "between";
|
|
2141
|
+
}>>>;
|
|
2142
|
+
op: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2143
|
+
"=": "=";
|
|
2144
|
+
"==": "==";
|
|
2145
|
+
"!=": "!=";
|
|
2146
|
+
">": ">";
|
|
2147
|
+
"<": "<";
|
|
2148
|
+
">=": ">=";
|
|
2149
|
+
"<=": "<=";
|
|
2150
|
+
between: "between";
|
|
2151
|
+
}>>>;
|
|
2152
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
|
2153
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2154
|
+
field: z.ZodString;
|
|
2155
|
+
operator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2156
|
+
in: "in";
|
|
2157
|
+
"not in": "not in";
|
|
2158
|
+
}>>>;
|
|
2159
|
+
op: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2160
|
+
in: "in";
|
|
2161
|
+
"not in": "not in";
|
|
2162
|
+
}>>>;
|
|
2163
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
|
2164
|
+
}, z.core.$strip>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodRecord<z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodAny>, z.ZodObject<{
|
|
2165
|
+
field: z.ZodString;
|
|
2166
|
+
operator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2167
|
+
"=": "=";
|
|
2168
|
+
"==": "==";
|
|
2169
|
+
"!=": "!=";
|
|
2170
|
+
">": ">";
|
|
2171
|
+
"<": "<";
|
|
2172
|
+
">=": ">=";
|
|
2173
|
+
"<=": "<=";
|
|
2174
|
+
between: "between";
|
|
2175
|
+
}>>>;
|
|
2176
|
+
op: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2177
|
+
"=": "=";
|
|
2178
|
+
"==": "==";
|
|
2179
|
+
"!=": "!=";
|
|
2180
|
+
">": ">";
|
|
2181
|
+
"<": "<";
|
|
2182
|
+
">=": ">=";
|
|
2183
|
+
"<=": "<=";
|
|
2184
|
+
between: "between";
|
|
2185
|
+
}>>>;
|
|
2186
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
|
2187
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2188
|
+
field: z.ZodString;
|
|
2189
|
+
operator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2190
|
+
in: "in";
|
|
2191
|
+
"not in": "not in";
|
|
2192
|
+
}>>>;
|
|
2193
|
+
op: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2194
|
+
in: "in";
|
|
2195
|
+
"not in": "not in";
|
|
2196
|
+
}>>>;
|
|
2197
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
|
2198
|
+
}, z.core.$strip>]>>]>;
|
|
2199
|
+
}, z.core.$strip>;
|
|
2200
|
+
differenceType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2201
|
+
percent: "percent";
|
|
2202
|
+
absolute: "absolute";
|
|
2203
|
+
}>>>;
|
|
2204
|
+
textFontSize: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2205
|
+
textColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2206
|
+
textBackgroundColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2207
|
+
lineColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2208
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2209
|
+
start: z.ZodObject<{
|
|
2210
|
+
selector: z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodRecord<z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodAny>, z.ZodObject<{
|
|
2211
|
+
field: z.ZodString;
|
|
2212
|
+
operator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2213
|
+
"=": "=";
|
|
2214
|
+
"==": "==";
|
|
2215
|
+
"!=": "!=";
|
|
2216
|
+
">": ">";
|
|
2217
|
+
"<": "<";
|
|
2218
|
+
">=": ">=";
|
|
2219
|
+
"<=": "<=";
|
|
2220
|
+
between: "between";
|
|
2221
|
+
}>>>;
|
|
2222
|
+
op: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2223
|
+
"=": "=";
|
|
2224
|
+
"==": "==";
|
|
2225
|
+
"!=": "!=";
|
|
2226
|
+
">": ">";
|
|
2227
|
+
"<": "<";
|
|
2228
|
+
">=": ">=";
|
|
2229
|
+
"<=": "<=";
|
|
2230
|
+
between: "between";
|
|
2231
|
+
}>>>;
|
|
2232
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
|
2233
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2234
|
+
field: z.ZodString;
|
|
2235
|
+
operator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2236
|
+
in: "in";
|
|
2237
|
+
"not in": "not in";
|
|
2238
|
+
}>>>;
|
|
2239
|
+
op: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2240
|
+
in: "in";
|
|
2241
|
+
"not in": "not in";
|
|
2242
|
+
}>>>;
|
|
2243
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
|
2244
|
+
}, z.core.$strip>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodRecord<z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodAny>, z.ZodObject<{
|
|
2245
|
+
field: z.ZodString;
|
|
2246
|
+
operator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2247
|
+
"=": "=";
|
|
2248
|
+
"==": "==";
|
|
2249
|
+
"!=": "!=";
|
|
2250
|
+
">": ">";
|
|
2251
|
+
"<": "<";
|
|
2252
|
+
">=": ">=";
|
|
2253
|
+
"<=": "<=";
|
|
2254
|
+
between: "between";
|
|
2255
|
+
}>>>;
|
|
2256
|
+
op: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2257
|
+
"=": "=";
|
|
2258
|
+
"==": "==";
|
|
2259
|
+
"!=": "!=";
|
|
2260
|
+
">": ">";
|
|
2261
|
+
"<": "<";
|
|
2262
|
+
">=": ">=";
|
|
2263
|
+
"<=": "<=";
|
|
2264
|
+
between: "between";
|
|
2265
|
+
}>>>;
|
|
2266
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
|
2267
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2268
|
+
field: z.ZodString;
|
|
2269
|
+
operator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2270
|
+
in: "in";
|
|
2271
|
+
"not in": "not in";
|
|
2272
|
+
}>>>;
|
|
2273
|
+
op: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2274
|
+
in: "in";
|
|
2275
|
+
"not in": "not in";
|
|
2276
|
+
}>>>;
|
|
2277
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
|
2278
|
+
}, z.core.$strip>]>>]>;
|
|
2279
|
+
}, z.core.$strip>;
|
|
2280
|
+
end: z.ZodObject<{
|
|
2281
|
+
selector: z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodRecord<z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodAny>, z.ZodObject<{
|
|
2282
|
+
field: z.ZodString;
|
|
2283
|
+
operator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2284
|
+
"=": "=";
|
|
2285
|
+
"==": "==";
|
|
2286
|
+
"!=": "!=";
|
|
2287
|
+
">": ">";
|
|
2288
|
+
"<": "<";
|
|
2289
|
+
">=": ">=";
|
|
2290
|
+
"<=": "<=";
|
|
2291
|
+
between: "between";
|
|
2292
|
+
}>>>;
|
|
2293
|
+
op: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2294
|
+
"=": "=";
|
|
2295
|
+
"==": "==";
|
|
2296
|
+
"!=": "!=";
|
|
2297
|
+
">": ">";
|
|
2298
|
+
"<": "<";
|
|
2299
|
+
">=": ">=";
|
|
2300
|
+
"<=": "<=";
|
|
2301
|
+
between: "between";
|
|
2302
|
+
}>>>;
|
|
2303
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
|
2304
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2305
|
+
field: z.ZodString;
|
|
2306
|
+
operator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2307
|
+
in: "in";
|
|
2308
|
+
"not in": "not in";
|
|
2309
|
+
}>>>;
|
|
2310
|
+
op: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2311
|
+
in: "in";
|
|
2312
|
+
"not in": "not in";
|
|
2313
|
+
}>>>;
|
|
2314
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
|
2315
|
+
}, z.core.$strip>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodRecord<z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodAny>, z.ZodObject<{
|
|
2316
|
+
field: z.ZodString;
|
|
2317
|
+
operator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2318
|
+
"=": "=";
|
|
2319
|
+
"==": "==";
|
|
2320
|
+
"!=": "!=";
|
|
2321
|
+
">": ">";
|
|
2322
|
+
"<": "<";
|
|
2323
|
+
">=": ">=";
|
|
2324
|
+
"<=": "<=";
|
|
2325
|
+
between: "between";
|
|
2326
|
+
}>>>;
|
|
2327
|
+
op: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2328
|
+
"=": "=";
|
|
2329
|
+
"==": "==";
|
|
2330
|
+
"!=": "!=";
|
|
2331
|
+
">": ">";
|
|
2332
|
+
"<": "<";
|
|
2333
|
+
">=": ">=";
|
|
2334
|
+
"<=": "<=";
|
|
2335
|
+
between: "between";
|
|
2336
|
+
}>>>;
|
|
2337
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
|
2338
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2339
|
+
field: z.ZodString;
|
|
2340
|
+
operator: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2341
|
+
in: "in";
|
|
2342
|
+
"not in": "not in";
|
|
2343
|
+
}>>>;
|
|
2344
|
+
op: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2345
|
+
in: "in";
|
|
2346
|
+
"not in": "not in";
|
|
2347
|
+
}>>>;
|
|
2348
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
|
2349
|
+
}, z.core.$strip>]>>]>;
|
|
2350
|
+
}, z.core.$strip>;
|
|
2351
|
+
differenceType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2352
|
+
percent: "percent";
|
|
2353
|
+
absolute: "absolute";
|
|
2354
|
+
}>>>;
|
|
2355
|
+
textFontSize: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2356
|
+
textColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2357
|
+
textBackgroundColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2358
|
+
lineColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2359
|
+
}, z.core.$strip>]>>>;
|
|
2051
2360
|
dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2052
2361
|
enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
2053
2362
|
showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { zLocale } from "../../i18n/index.js";
|
|
2
|
-
import { zAnnotationArea, zAnnotationHorizontalLine, zAnnotationPoint, zAnnotationVerticalLine, zBackgroundColor, zBrush, zColor, zCrosshairLine, zDataset, zDimensionLinkage, zDimensions, zEncoding, zLabel, zLegend, zLineStyle, zMeasures, zPage, zPointStyle, zSort, zSortLegend, zTheme, zTooltip, zXBandAxis, zYLinearAxis } from "../../properties/index.js";
|
|
2
|
+
import { zAnnotationArea, zAnnotationDifferenceLine, zAnnotationHorizontalLine, zAnnotationPoint, zAnnotationVerticalLine, zBackgroundColor, zBrush, zColor, zCrosshairLine, zDataset, zDimensionLinkage, zDimensions, zEncoding, zLabel, zLegend, zLineStyle, zMeasures, zPage, zPointStyle, zRegionPadding, zSort, zSortLegend, zTheme, zTooltip, zXBandAxis, zYLinearAxis } from "../../properties/index.js";
|
|
3
3
|
import { z } from "zod";
|
|
4
4
|
const zLine = z.object({
|
|
5
5
|
chartType: z.literal('line'),
|
|
@@ -12,6 +12,7 @@ const zLine = z.object({
|
|
|
12
12
|
color: zColor.nullish(),
|
|
13
13
|
label: zLabel.nullish(),
|
|
14
14
|
legend: zLegend.nullish(),
|
|
15
|
+
regionPadding: zRegionPadding.nullish(),
|
|
15
16
|
tooltip: zTooltip.nullish(),
|
|
16
17
|
brush: zBrush.nullish(),
|
|
17
18
|
xAxis: zXBandAxis.nullish(),
|
|
@@ -26,6 +27,7 @@ const zLine = z.object({
|
|
|
26
27
|
annotationVerticalLine: z.array(zAnnotationVerticalLine).or(zAnnotationVerticalLine).nullish(),
|
|
27
28
|
annotationHorizontalLine: z.array(zAnnotationHorizontalLine).or(zAnnotationHorizontalLine).nullish(),
|
|
28
29
|
annotationArea: z.array(zAnnotationArea).or(zAnnotationArea).nullish(),
|
|
30
|
+
annotationDifferenceLine: z.array(zAnnotationDifferenceLine).or(zAnnotationDifferenceLine).nullish(),
|
|
29
31
|
dimensionLinkage: zDimensionLinkage.nullish(),
|
|
30
32
|
locale: zLocale.nullish()
|
|
31
33
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types/chartType/line/zLine.js","sources":["../../../../../src/types/chartType/line/zLine.ts"],"sourcesContent":["import { zLocale } from '../../i18n'\nimport {\n zAnnotationArea,\n zAnnotationHorizontalLine,\n zAnnotationPoint,\n zAnnotationVerticalLine,\n zBackgroundColor,\n zColor,\n zCrosshairLine,\n zDataset,\n zDimensionLinkage,\n zDimensions,\n zEncoding,\n zLabel,\n zLegend,\n zLineStyle,\n zMeasures,\n zPointStyle,\n zSort,\n zSortLegend,\n zTheme,\n zTooltip,\n zBrush,\n zXBandAxis,\n zYLinearAxis,\n zPage,\n} from '../../properties'\n\nimport { z } from 'zod'\n\nexport const zLine = z.object({\n chartType: z.literal('line'),\n dataset: zDataset.nullish(),\n encoding: zEncoding.nullish(),\n dimensions: zDimensions.nullish(),\n measures: zMeasures.nullish(),\n page: zPage.nullish(),\n\n backgroundColor: zBackgroundColor.nullish(),\n color: zColor.nullish(),\n label: zLabel.nullish(),\n legend: zLegend.nullish(),\n tooltip: zTooltip.nullish(),\n brush: zBrush.nullish(),\n xAxis: zXBandAxis.nullish(),\n yAxis: zYLinearAxis.nullish(),\n crosshairLine: zCrosshairLine.nullish(),\n sort: zSort.nullish(),\n sortLegend: zSortLegend.nullish(),\n theme: zTheme.nullish(),\n pointStyle: z.array(zPointStyle).or(zPointStyle).nullish(),\n lineStyle: z.array(zLineStyle).or(zLineStyle).nullish(),\n annotationPoint: z.array(zAnnotationPoint).or(zAnnotationPoint).nullish(),\n annotationVerticalLine: z.array(zAnnotationVerticalLine).or(zAnnotationVerticalLine).nullish(),\n annotationHorizontalLine: z.array(zAnnotationHorizontalLine).or(zAnnotationHorizontalLine).nullish(),\n annotationArea: z.array(zAnnotationArea).or(zAnnotationArea).nullish(),\n dimensionLinkage: zDimensionLinkage.nullish(),\n locale: zLocale.nullish(),\n})\n"],"names":["zLine","z","zDataset","zEncoding","zDimensions","zMeasures","zPage","zBackgroundColor","zColor","zLabel","zLegend","zTooltip","zBrush","zXBandAxis","zYLinearAxis","zCrosshairLine","zSort","zSortLegend","zTheme","zPointStyle","zLineStyle","zAnnotationPoint","zAnnotationVerticalLine","zAnnotationHorizontalLine","zAnnotationArea","zDimensionLinkage","zLocale"],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"types/chartType/line/zLine.js","sources":["../../../../../src/types/chartType/line/zLine.ts"],"sourcesContent":["import { zLocale } from '../../i18n'\nimport {\n zAnnotationArea,\n zAnnotationDifferenceLine,\n zAnnotationHorizontalLine,\n zAnnotationPoint,\n zAnnotationVerticalLine,\n zBackgroundColor,\n zColor,\n zCrosshairLine,\n zDataset,\n zDimensionLinkage,\n zDimensions,\n zEncoding,\n zLabel,\n zLegend,\n zLineStyle,\n zMeasures,\n zPointStyle,\n zRegionPadding,\n zSort,\n zSortLegend,\n zTheme,\n zTooltip,\n zBrush,\n zXBandAxis,\n zYLinearAxis,\n zPage,\n} from '../../properties'\n\nimport { z } from 'zod'\n\nexport const zLine = z.object({\n chartType: z.literal('line'),\n dataset: zDataset.nullish(),\n encoding: zEncoding.nullish(),\n dimensions: zDimensions.nullish(),\n measures: zMeasures.nullish(),\n page: zPage.nullish(),\n\n backgroundColor: zBackgroundColor.nullish(),\n color: zColor.nullish(),\n label: zLabel.nullish(),\n legend: zLegend.nullish(),\n regionPadding: zRegionPadding.nullish(),\n tooltip: zTooltip.nullish(),\n brush: zBrush.nullish(),\n xAxis: zXBandAxis.nullish(),\n yAxis: zYLinearAxis.nullish(),\n crosshairLine: zCrosshairLine.nullish(),\n sort: zSort.nullish(),\n sortLegend: zSortLegend.nullish(),\n theme: zTheme.nullish(),\n pointStyle: z.array(zPointStyle).or(zPointStyle).nullish(),\n lineStyle: z.array(zLineStyle).or(zLineStyle).nullish(),\n annotationPoint: z.array(zAnnotationPoint).or(zAnnotationPoint).nullish(),\n annotationVerticalLine: z.array(zAnnotationVerticalLine).or(zAnnotationVerticalLine).nullish(),\n annotationHorizontalLine: z.array(zAnnotationHorizontalLine).or(zAnnotationHorizontalLine).nullish(),\n annotationArea: z.array(zAnnotationArea).or(zAnnotationArea).nullish(),\n annotationDifferenceLine: z.array(zAnnotationDifferenceLine).or(zAnnotationDifferenceLine).nullish(),\n dimensionLinkage: zDimensionLinkage.nullish(),\n locale: zLocale.nullish(),\n})\n"],"names":["zLine","z","zDataset","zEncoding","zDimensions","zMeasures","zPage","zBackgroundColor","zColor","zLabel","zLegend","zRegionPadding","zTooltip","zBrush","zXBandAxis","zYLinearAxis","zCrosshairLine","zSort","zSortLegend","zTheme","zPointStyle","zLineStyle","zAnnotationPoint","zAnnotationVerticalLine","zAnnotationHorizontalLine","zAnnotationArea","zAnnotationDifferenceLine","zDimensionLinkage","zLocale"],"mappings":";;;AAgCO,MAAMA,QAAQC,EAAE,MAAM,CAAC;IAC5B,WAAWA,EAAE,OAAO,CAAC;IACrB,SAASC,SAAS,OAAO;IACzB,UAAUC,UAAU,OAAO;IAC3B,YAAYC,YAAY,OAAO;IAC/B,UAAUC,UAAU,OAAO;IAC3B,MAAMC,MAAM,OAAO;IAEnB,iBAAiBC,iBAAiB,OAAO;IACzC,OAAOC,OAAO,OAAO;IACrB,OAAOC,OAAO,OAAO;IACrB,QAAQC,QAAQ,OAAO;IACvB,eAAeC,eAAe,OAAO;IACrC,SAASC,SAAS,OAAO;IACzB,OAAOC,OAAO,OAAO;IACrB,OAAOC,WAAW,OAAO;IACzB,OAAOC,aAAa,OAAO;IAC3B,eAAeC,eAAe,OAAO;IACrC,MAAMC,MAAM,OAAO;IACnB,YAAYC,YAAY,OAAO;IAC/B,OAAOC,OAAO,OAAO;IACrB,YAAYlB,EAAE,KAAK,CAACmB,aAAa,EAAE,CAACA,aAAa,OAAO;IACxD,WAAWnB,EAAE,KAAK,CAACoB,YAAY,EAAE,CAACA,YAAY,OAAO;IACrD,iBAAiBpB,EAAE,KAAK,CAACqB,kBAAkB,EAAE,CAACA,kBAAkB,OAAO;IACvE,wBAAwBrB,EAAE,KAAK,CAACsB,yBAAyB,EAAE,CAACA,yBAAyB,OAAO;IAC5F,0BAA0BtB,EAAE,KAAK,CAACuB,2BAA2B,EAAE,CAACA,2BAA2B,OAAO;IAClG,gBAAgBvB,EAAE,KAAK,CAACwB,iBAAiB,EAAE,CAACA,iBAAiB,OAAO;IACpE,0BAA0BxB,EAAE,KAAK,CAACyB,2BAA2B,EAAE,CAACA,2BAA2B,OAAO;IAClG,kBAAkBC,kBAAkB,OAAO;IAC3C,QAAQC,QAAQ,OAAO;AACzB"}
|
|
@@ -279,6 +279,12 @@ export declare const zAreaConfig: z.ZodObject<{
|
|
|
279
279
|
labelFontSize: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>;
|
|
280
280
|
labelFontWeight: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>>;
|
|
281
281
|
}, z.core.$strip>>>;
|
|
282
|
+
regionPadding: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
283
|
+
top: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
284
|
+
right: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
285
|
+
bottom: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
286
|
+
left: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
287
|
+
}, z.core.$strip>]>>>;
|
|
282
288
|
xAxis: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
283
289
|
visible: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
284
290
|
labelAutoHide: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
@@ -901,6 +907,12 @@ export declare const zAreaPercentConfig: z.ZodObject<{
|
|
|
901
907
|
labelFontSize: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>;
|
|
902
908
|
labelFontWeight: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>>;
|
|
903
909
|
}, z.core.$strip>>>;
|
|
910
|
+
regionPadding: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
911
|
+
top: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
912
|
+
right: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
913
|
+
bottom: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
914
|
+
left: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
915
|
+
}, z.core.$strip>]>>>;
|
|
904
916
|
xAxis: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
905
917
|
visible: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
906
918
|
labelAutoHide: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
@@ -9,6 +9,7 @@ import { zTooltip } from "./tooltip/tooltip.js";
|
|
|
9
9
|
import { zAnnotationConfig } from "./annotation/zAnnotation.js";
|
|
10
10
|
import { zPivotChartGridConfig } from "./pivotGrid/index.js";
|
|
11
11
|
import { zDimensionLinkage } from "./dimensionLinkage/dimensionLinkage.js";
|
|
12
|
+
import { zRegionPadding } from "../regionPadding/index.js";
|
|
12
13
|
import { zBrushConfig } from "../brush/zBrush.js";
|
|
13
14
|
const zAreaConfig = z.object({
|
|
14
15
|
backgroundColor: zBackgroundColor.nullish(),
|
|
@@ -16,6 +17,7 @@ const zAreaConfig = z.object({
|
|
|
16
17
|
color: zColor.nullish(),
|
|
17
18
|
tooltip: zTooltip.nullish(),
|
|
18
19
|
legend: zLegend.nullish(),
|
|
20
|
+
regionPadding: zRegionPadding.nullish(),
|
|
19
21
|
xAxis: zXBandAxis.nullish(),
|
|
20
22
|
yAxis: zYLinearAxis.nullish(),
|
|
21
23
|
crosshairLine: zCrosshairLine.nullish(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types/properties/config/area.js","sources":["../../../../../src/types/properties/config/area.ts"],"sourcesContent":["import { z } from 'zod'\nimport { zXBandAxis, zYLinearAxis } from './axes'\nimport { zCrosshairLine } from './crosshair'\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/zAnnotation'\nimport { zPivotChartGridConfig } from './pivotGrid'\nimport { zDimensionLinkage } from './dimensionLinkage/dimensionLinkage'\n\nimport { zBrushConfig } from '../brush/zBrush'\n\nexport const zAreaConfig = 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 crosshairLine: zCrosshairLine.nullish(),\n pivotGrid: zPivotChartGridConfig.nullish(),\n annotation: zAnnotationConfig.nullish(),\n\n dimensionLinkage: zDimensionLinkage.nullish(),\n\n brush: zBrushConfig.nullish(),\n})\nexport const zAreaPercentConfig = zAreaConfig\n\nexport type AreaConfig = z.infer<typeof zAreaConfig>\nexport type AreaPercentConfig = z.infer<typeof zAreaPercentConfig>\n"],"names":["zAreaConfig","z","zBackgroundColor","zLabel","zColor","zTooltip","zLegend","zXBandAxis","zYLinearAxis","zCrosshairLine","zPivotChartGridConfig","zAnnotationConfig","zDimensionLinkage","zBrushConfig","zAreaPercentConfig"],"mappings":"
|
|
1
|
+
{"version":3,"file":"types/properties/config/area.js","sources":["../../../../../src/types/properties/config/area.ts"],"sourcesContent":["import { z } from 'zod'\nimport { zXBandAxis, zYLinearAxis } from './axes'\nimport { zCrosshairLine } from './crosshair'\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/zAnnotation'\nimport { zPivotChartGridConfig } from './pivotGrid'\nimport { zDimensionLinkage } from './dimensionLinkage/dimensionLinkage'\nimport { zRegionPadding } from '../regionPadding'\n\nimport { zBrushConfig } from '../brush/zBrush'\n\nexport const zAreaConfig = z.object({\n backgroundColor: zBackgroundColor.nullish(),\n label: zLabel.nullish(),\n color: zColor.nullish(),\n tooltip: zTooltip.nullish(),\n legend: zLegend.nullish(),\n regionPadding: zRegionPadding.nullish(),\n\n xAxis: zXBandAxis.nullish(),\n yAxis: zYLinearAxis.nullish(),\n crosshairLine: zCrosshairLine.nullish(),\n pivotGrid: zPivotChartGridConfig.nullish(),\n annotation: zAnnotationConfig.nullish(),\n\n dimensionLinkage: zDimensionLinkage.nullish(),\n\n brush: zBrushConfig.nullish(),\n})\nexport const zAreaPercentConfig = zAreaConfig\n\nexport type AreaConfig = z.infer<typeof zAreaConfig>\nexport type AreaPercentConfig = z.infer<typeof zAreaPercentConfig>\n"],"names":["zAreaConfig","z","zBackgroundColor","zLabel","zColor","zTooltip","zLegend","zRegionPadding","zXBandAxis","zYLinearAxis","zCrosshairLine","zPivotChartGridConfig","zAnnotationConfig","zDimensionLinkage","zBrushConfig","zAreaPercentConfig"],"mappings":";;;;;;;;;;;;;AAeO,MAAMA,cAAcC,EAAE,MAAM,CAAC;IAClC,iBAAiBC,iBAAiB,OAAO;IACzC,OAAOC,OAAO,OAAO;IACrB,OAAOC,OAAO,OAAO;IACrB,SAASC,SAAS,OAAO;IACzB,QAAQC,QAAQ,OAAO;IACvB,eAAeC,eAAe,OAAO;IAErC,OAAOC,WAAW,OAAO;IACzB,OAAOC,aAAa,OAAO;IAC3B,eAAeC,eAAe,OAAO;IACrC,WAAWC,sBAAsB,OAAO;IACxC,YAAYC,kBAAkB,OAAO;IAErC,kBAAkBC,kBAAkB,OAAO;IAE3C,OAAOC,aAAa,OAAO;AAC7B;AACO,MAAMC,qBAAqBf"}
|
|
@@ -279,6 +279,12 @@ export declare const zBarConfig: z.ZodObject<{
|
|
|
279
279
|
labelFontSize: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>;
|
|
280
280
|
labelFontWeight: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>>;
|
|
281
281
|
}, z.core.$strip>>>;
|
|
282
|
+
regionPadding: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
283
|
+
top: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
284
|
+
right: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
285
|
+
bottom: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
286
|
+
left: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
287
|
+
}, z.core.$strip>]>>>;
|
|
282
288
|
xAxis: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
283
289
|
visible: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
284
290
|
min: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -901,6 +907,12 @@ export declare const zBarParallelConfig: z.ZodObject<{
|
|
|
901
907
|
labelFontSize: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>;
|
|
902
908
|
labelFontWeight: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>>;
|
|
903
909
|
}, z.core.$strip>>>;
|
|
910
|
+
regionPadding: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
911
|
+
top: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
912
|
+
right: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
913
|
+
bottom: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
914
|
+
left: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
915
|
+
}, z.core.$strip>]>>>;
|
|
904
916
|
xAxis: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
905
917
|
visible: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
906
918
|
min: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -1523,6 +1535,12 @@ export declare const zBarPercentConfig: z.ZodObject<{
|
|
|
1523
1535
|
labelFontSize: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>;
|
|
1524
1536
|
labelFontWeight: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>>;
|
|
1525
1537
|
}, z.core.$strip>>>;
|
|
1538
|
+
regionPadding: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
1539
|
+
top: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
1540
|
+
right: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
1541
|
+
bottom: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
1542
|
+
left: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
1543
|
+
}, z.core.$strip>]>>>;
|
|
1526
1544
|
xAxis: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1527
1545
|
visible: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
1528
1546
|
min: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -10,6 +10,7 @@ import { zTooltip } from "./tooltip/tooltip.js";
|
|
|
10
10
|
import { zAnnotationConfig } from "./annotation/zAnnotation.js";
|
|
11
11
|
import { zPivotChartGridConfig } from "./pivotGrid/index.js";
|
|
12
12
|
import { zDimensionLinkage } from "./dimensionLinkage/dimensionLinkage.js";
|
|
13
|
+
import { zRegionPadding } from "../regionPadding/index.js";
|
|
13
14
|
import { zBrushConfig } from "../brush/zBrush.js";
|
|
14
15
|
const zBarConfig = z.object({
|
|
15
16
|
backgroundColor: zBackgroundColor.nullish(),
|
|
@@ -17,6 +18,7 @@ const zBarConfig = z.object({
|
|
|
17
18
|
color: zColor.nullish(),
|
|
18
19
|
tooltip: zTooltip.nullish(),
|
|
19
20
|
legend: zLegend.nullish(),
|
|
21
|
+
regionPadding: zRegionPadding.nullish(),
|
|
20
22
|
xAxis: zXLinearAxis.nullish(),
|
|
21
23
|
yAxis: zYBandAxis.nullish(),
|
|
22
24
|
crosshairRect: zCrosshairRect.nullish(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types/properties/config/bar.js","sources":["../../../../../src/types/properties/config/bar.ts"],"sourcesContent":["import { z } from 'zod'\nimport { zYBandAxis, zXLinearAxis } 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/zAnnotation'\nimport { zPivotChartGridConfig } from './pivotGrid'\nimport { zDimensionLinkage } from './dimensionLinkage/dimensionLinkage'\n\nimport { zBrushConfig } from '../brush/zBrush'\n\nexport const zBarConfig = 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: zXLinearAxis.nullish(),\n yAxis: zYBandAxis.nullish(),\n crosshairRect: zCrosshairRect.nullish(),\n stackCornerRadius: zStackCornerRadius.nullish(),\n pivotGrid: zPivotChartGridConfig.nullish(),\n annotation: zAnnotationConfig.nullish(),\n\n dimensionLinkage: zDimensionLinkage.nullish(),\n\n brush: zBrushConfig.nullish(),\n})\nexport const zBarParallelConfig = zBarConfig\nexport const zBarPercentConfig = zBarConfig\n\nexport type BarConfig = z.infer<typeof zBarConfig>\nexport type BarParallelConfig = z.infer<typeof zBarParallelConfig>\nexport type BarPercentConfig = z.infer<typeof zBarPercentConfig>\n"],"names":["zBarConfig","z","zBackgroundColor","zLabel","zColor","zTooltip","zLegend","zXLinearAxis","zYBandAxis","zCrosshairRect","zStackCornerRadius","zPivotChartGridConfig","zAnnotationConfig","zDimensionLinkage","zBrushConfig","zBarParallelConfig","zBarPercentConfig"],"mappings":"
|
|
1
|
+
{"version":3,"file":"types/properties/config/bar.js","sources":["../../../../../src/types/properties/config/bar.ts"],"sourcesContent":["import { z } from 'zod'\nimport { zYBandAxis, zXLinearAxis } 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/zAnnotation'\nimport { zPivotChartGridConfig } from './pivotGrid'\nimport { zDimensionLinkage } from './dimensionLinkage/dimensionLinkage'\nimport { zRegionPadding } from '../regionPadding'\n\nimport { zBrushConfig } from '../brush/zBrush'\n\nexport const zBarConfig = z.object({\n backgroundColor: zBackgroundColor.nullish(),\n label: zLabel.nullish(),\n color: zColor.nullish(),\n tooltip: zTooltip.nullish(),\n legend: zLegend.nullish(),\n regionPadding: zRegionPadding.nullish(),\n\n xAxis: zXLinearAxis.nullish(),\n yAxis: zYBandAxis.nullish(),\n crosshairRect: zCrosshairRect.nullish(),\n stackCornerRadius: zStackCornerRadius.nullish(),\n pivotGrid: zPivotChartGridConfig.nullish(),\n annotation: zAnnotationConfig.nullish(),\n\n dimensionLinkage: zDimensionLinkage.nullish(),\n\n brush: zBrushConfig.nullish(),\n})\nexport const zBarParallelConfig = zBarConfig\nexport const zBarPercentConfig = zBarConfig\n\nexport type BarConfig = z.infer<typeof zBarConfig>\nexport type BarParallelConfig = z.infer<typeof zBarParallelConfig>\nexport type BarPercentConfig = z.infer<typeof zBarPercentConfig>\n"],"names":["zBarConfig","z","zBackgroundColor","zLabel","zColor","zTooltip","zLegend","zRegionPadding","zXLinearAxis","zYBandAxis","zCrosshairRect","zStackCornerRadius","zPivotChartGridConfig","zAnnotationConfig","zDimensionLinkage","zBrushConfig","zBarParallelConfig","zBarPercentConfig"],"mappings":";;;;;;;;;;;;;;AAgBO,MAAMA,aAAaC,EAAE,MAAM,CAAC;IACjC,iBAAiBC,iBAAiB,OAAO;IACzC,OAAOC,OAAO,OAAO;IACrB,OAAOC,OAAO,OAAO;IACrB,SAASC,SAAS,OAAO;IACzB,QAAQC,QAAQ,OAAO;IACvB,eAAeC,eAAe,OAAO;IAErC,OAAOC,aAAa,OAAO;IAC3B,OAAOC,WAAW,OAAO;IACzB,eAAeC,eAAe,OAAO;IACrC,mBAAmBC,mBAAmB,OAAO;IAC7C,WAAWC,sBAAsB,OAAO;IACxC,YAAYC,kBAAkB,OAAO;IAErC,kBAAkBC,kBAAkB,OAAO;IAE3C,OAAOC,aAAa,OAAO;AAC7B;AACO,MAAMC,qBAAqBhB;AAC3B,MAAMiB,oBAAoBjB"}
|
|
@@ -279,6 +279,12 @@ export declare const zColumnParallelConfig: z.ZodObject<{
|
|
|
279
279
|
labelFontSize: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>;
|
|
280
280
|
labelFontWeight: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>>;
|
|
281
281
|
}, z.core.$strip>>>;
|
|
282
|
+
regionPadding: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
283
|
+
top: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
284
|
+
right: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
285
|
+
bottom: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
286
|
+
left: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
287
|
+
}, z.core.$strip>]>>>;
|
|
282
288
|
xAxis: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
283
289
|
visible: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
284
290
|
labelAutoHide: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
@@ -903,6 +909,12 @@ export declare const zColumnConfig: z.ZodObject<{
|
|
|
903
909
|
labelFontSize: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>;
|
|
904
910
|
labelFontWeight: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>>;
|
|
905
911
|
}, z.core.$strip>>>;
|
|
912
|
+
regionPadding: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
913
|
+
top: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
914
|
+
right: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
915
|
+
bottom: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
916
|
+
left: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
917
|
+
}, z.core.$strip>]>>>;
|
|
906
918
|
xAxis: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
907
919
|
visible: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
908
920
|
labelAutoHide: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
@@ -1701,6 +1713,12 @@ export declare const zColumnPercentConfig: z.ZodObject<{
|
|
|
1701
1713
|
labelFontSize: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>;
|
|
1702
1714
|
labelFontWeight: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>>;
|
|
1703
1715
|
}, z.core.$strip>>>;
|
|
1716
|
+
regionPadding: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
1717
|
+
top: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
1718
|
+
right: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
1719
|
+
bottom: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
1720
|
+
left: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
1721
|
+
}, z.core.$strip>]>>>;
|
|
1704
1722
|
xAxis: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1705
1723
|
visible: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
1706
1724
|
labelAutoHide: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
@@ -12,6 +12,7 @@ import { zPivotChartGridConfig } from "./pivotGrid/index.js";
|
|
|
12
12
|
import { zBarGapInGroup, zBarMaxWidth } from "./barWidth/index.js";
|
|
13
13
|
import { zRegressionLine } from "../regressionLine/index.js";
|
|
14
14
|
import { zDimensionLinkage } from "./dimensionLinkage/dimensionLinkage.js";
|
|
15
|
+
import { zRegionPadding } from "../regionPadding/index.js";
|
|
15
16
|
import { zBrushConfig } from "../brush/zBrush.js";
|
|
16
17
|
const zColumnParallelConfig = z.object({
|
|
17
18
|
backgroundColor: zBackgroundColor.nullish(),
|
|
@@ -19,6 +20,7 @@ const zColumnParallelConfig = z.object({
|
|
|
19
20
|
color: zColor.nullish(),
|
|
20
21
|
tooltip: zTooltip.nullish(),
|
|
21
22
|
legend: zLegend.nullish(),
|
|
23
|
+
regionPadding: zRegionPadding.nullish(),
|
|
22
24
|
xAxis: zXBandAxis.nullish(),
|
|
23
25
|
yAxis: zYLinearAxis.nullish(),
|
|
24
26
|
crosshairRect: zCrosshairRect.nullish(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types/properties/config/column.js","sources":["../../../../../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/zAnnotation'\nimport { zPivotChartGridConfig } from './pivotGrid'\nimport { zBarGapInGroup, zBarMaxWidth } from './barWidth'\nimport { zRegressionLine } from '../regressionLine'\nimport { zDimensionLinkage } from './dimensionLinkage/dimensionLinkage'\n\nimport { zBrushConfig } from '../brush/zBrush'\n\nexport const zColumnParallelConfig = 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 barMaxWidth: zBarMaxWidth.nullish(),\n barGapInGroup: zBarGapInGroup.nullish(),\n pivotGrid: zPivotChartGridConfig.nullish(),\n annotation: zAnnotationConfig.nullish(),\n\n dimensionLinkage: zDimensionLinkage.nullish(),\n\n brush: zBrushConfig.nullish(),\n})\nexport const zColumnConfig = zColumnParallelConfig.extend({\n regressionLine: zRegressionLine.nullish(),\n})\nexport const zColumnPercentConfig = zColumnParallelConfig.extend({})\n\nexport type ColumnConfig = z.infer<typeof zColumnConfig>\nexport type ColumnParallelConfig = z.infer<typeof zColumnParallelConfig>\nexport type ColumnPercentConfig = z.infer<typeof zColumnPercentConfig>\n"],"names":["zColumnParallelConfig","z","zBackgroundColor","zLabel","zColor","zTooltip","zLegend","zXBandAxis","zYLinearAxis","zCrosshairRect","zStackCornerRadius","zBarMaxWidth","zBarGapInGroup","zPivotChartGridConfig","zAnnotationConfig","zDimensionLinkage","zBrushConfig","zColumnConfig","zRegressionLine","zColumnPercentConfig"],"mappings":"
|
|
1
|
+
{"version":3,"file":"types/properties/config/column.js","sources":["../../../../../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/zAnnotation'\nimport { zPivotChartGridConfig } from './pivotGrid'\nimport { zBarGapInGroup, zBarMaxWidth } from './barWidth'\nimport { zRegressionLine } from '../regressionLine'\nimport { zDimensionLinkage } from './dimensionLinkage/dimensionLinkage'\nimport { zRegionPadding } from '../regionPadding'\n\nimport { zBrushConfig } from '../brush/zBrush'\n\nexport const zColumnParallelConfig = z.object({\n backgroundColor: zBackgroundColor.nullish(),\n label: zLabel.nullish(),\n color: zColor.nullish(),\n tooltip: zTooltip.nullish(),\n legend: zLegend.nullish(),\n regionPadding: zRegionPadding.nullish(),\n\n xAxis: zXBandAxis.nullish(),\n yAxis: zYLinearAxis.nullish(),\n crosshairRect: zCrosshairRect.nullish(),\n stackCornerRadius: zStackCornerRadius.nullish(),\n barMaxWidth: zBarMaxWidth.nullish(),\n barGapInGroup: zBarGapInGroup.nullish(),\n pivotGrid: zPivotChartGridConfig.nullish(),\n annotation: zAnnotationConfig.nullish(),\n\n dimensionLinkage: zDimensionLinkage.nullish(),\n\n brush: zBrushConfig.nullish(),\n})\nexport const zColumnConfig = zColumnParallelConfig.extend({\n regressionLine: zRegressionLine.nullish(),\n})\nexport const zColumnPercentConfig = zColumnParallelConfig.extend({})\n\nexport type ColumnConfig = z.infer<typeof zColumnConfig>\nexport type ColumnParallelConfig = z.infer<typeof zColumnParallelConfig>\nexport type ColumnPercentConfig = z.infer<typeof zColumnPercentConfig>\n"],"names":["zColumnParallelConfig","z","zBackgroundColor","zLabel","zColor","zTooltip","zLegend","zRegionPadding","zXBandAxis","zYLinearAxis","zCrosshairRect","zStackCornerRadius","zBarMaxWidth","zBarGapInGroup","zPivotChartGridConfig","zAnnotationConfig","zDimensionLinkage","zBrushConfig","zColumnConfig","zRegressionLine","zColumnPercentConfig"],"mappings":";;;;;;;;;;;;;;;;AAkBO,MAAMA,wBAAwBC,EAAE,MAAM,CAAC;IAC5C,iBAAiBC,iBAAiB,OAAO;IACzC,OAAOC,OAAO,OAAO;IACrB,OAAOC,OAAO,OAAO;IACrB,SAASC,SAAS,OAAO;IACzB,QAAQC,QAAQ,OAAO;IACvB,eAAeC,eAAe,OAAO;IAErC,OAAOC,WAAW,OAAO;IACzB,OAAOC,aAAa,OAAO;IAC3B,eAAeC,eAAe,OAAO;IACrC,mBAAmBC,mBAAmB,OAAO;IAC7C,aAAaC,aAAa,OAAO;IACjC,eAAeC,eAAe,OAAO;IACrC,WAAWC,sBAAsB,OAAO;IACxC,YAAYC,kBAAkB,OAAO;IAErC,kBAAkBC,kBAAkB,OAAO;IAE3C,OAAOC,aAAa,OAAO;AAC7B;AACO,MAAMC,gBAAgBlB,sBAAsB,MAAM,CAAC;IACxD,gBAAgBmB,gBAAgB,OAAO;AACzC;AACO,MAAMC,uBAAuBpB,sBAAsB,MAAM,CAAC,CAAC"}
|