@divami-artefacts/ai-design-system 1.0.48 → 1.0.49
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/canvas/canvasUtils.d.ts +32 -0
- package/dist/components/contractsByAreaChart/index.d.ts +2 -0
- package/dist/components/contractsByAreaChart/types.d.ts +1 -0
- package/dist/components/horizontalBarChart/HorizontalBarChart.d.ts +2 -0
- package/dist/components/horizontalBarChart/index.d.ts +2 -0
- package/dist/components/horizontalBarChart/types.d.ts +11 -0
- package/dist/components/progressRaceChart/ProgressRaceChart.d.ts +1 -1
- package/dist/components/progressRaceChart/types.d.ts +1 -0
- package/dist/components/proportionalBandChart/ProportionalBandChart.d.ts +1 -1
- package/dist/components/proportionalBandChart/types.d.ts +1 -0
- package/dist/components/radialFanTreeChart/RadialFanTreeChart.d.ts +1 -1
- package/dist/components/radialFanTreeChart/types.d.ts +1 -0
- package/dist/components/semiCircularGaugeChart/SemiCircularGaugeChart.d.ts +1 -1
- package/dist/components/semiCircularGaugeChart/types.d.ts +1 -0
- package/dist/components/trend/Trend.d.ts +1 -1
- package/dist/components/trend/types.d.ts +1 -0
- package/dist/components/visualizationRenderer/VisualizationRenderer.d.ts +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1143 -1023
- package/dist/pages/interactiveDemo/InteractiveDemoPage.d.ts +1 -0
- package/dist/types/index.d.ts +11 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function InteractiveDemoPage(): import("react/jsx-runtime").JSX.Element;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -174,10 +174,15 @@ export type BaseVisualizationConfig = {
|
|
|
174
174
|
} | {
|
|
175
175
|
type: 'weekly-flow';
|
|
176
176
|
items: ContractorRow[];
|
|
177
|
+
} | {
|
|
178
|
+
type: 'horizontal-bar-chart';
|
|
179
|
+
rows: HorizontalBarRow[];
|
|
180
|
+
valuePrefix?: string;
|
|
177
181
|
};
|
|
178
182
|
export type VisualizationRendererProps = {
|
|
179
183
|
config: BaseVisualizationConfig;
|
|
180
184
|
className?: string;
|
|
185
|
+
colorOffset?: number;
|
|
181
186
|
};
|
|
182
187
|
export type ContractorRow = {
|
|
183
188
|
id: string;
|
|
@@ -354,6 +359,12 @@ export type KeyHighlightBlock = {
|
|
|
354
359
|
rows: ComparisonRow[];
|
|
355
360
|
takeaway?: string;
|
|
356
361
|
};
|
|
362
|
+
export type HorizontalBarRow = {
|
|
363
|
+
id: string;
|
|
364
|
+
name: string;
|
|
365
|
+
value: number;
|
|
366
|
+
valueLabel?: string;
|
|
367
|
+
};
|
|
357
368
|
export type DualSegmentBarRow = {
|
|
358
369
|
id: string;
|
|
359
370
|
name: string;
|