@divami-artefacts/ai-design-system 1.0.45 → 1.0.47
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/components/balanceScaleChart/BalanceScaleChart.d.ts +1 -1
- package/dist/components/balanceScaleChart/types.d.ts +3 -0
- package/dist/components/segmentedSplitBarChart/SegmentedSplitBarChart.d.ts +1 -1
- package/dist/components/segmentedSplitBarChart/types.d.ts +3 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +341 -320
- package/dist/types/index.d.ts +6 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -155,10 +155,16 @@ export type BaseVisualizationConfig = {
|
|
|
155
155
|
} | {
|
|
156
156
|
type: 'segmented-split-bar-chart';
|
|
157
157
|
items: VariationRow[];
|
|
158
|
+
labelA?: string;
|
|
159
|
+
labelB?: string;
|
|
160
|
+
unit?: string;
|
|
158
161
|
} | {
|
|
159
162
|
type: 'balance-scale-chart';
|
|
160
163
|
left: QuotationSide;
|
|
161
164
|
right: QuotationSide;
|
|
165
|
+
leftTitle?: string;
|
|
166
|
+
rightTitle?: string;
|
|
167
|
+
unit?: string;
|
|
162
168
|
} | {
|
|
163
169
|
type: 'area-line-chart';
|
|
164
170
|
points: QuotationTrendPoint[];
|