@divami-artefacts/ai-design-system 1.0.47 → 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 +1231 -1053
- package/dist/pages/interactiveDemo/InteractiveDemoPage.d.ts +1 -0
- package/dist/types/index.d.ts +13 -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;
|
|
@@ -256,6 +261,7 @@ export type KeyHighlightChip = {
|
|
|
256
261
|
value: string;
|
|
257
262
|
label: string;
|
|
258
263
|
color?: string;
|
|
264
|
+
icon?: string;
|
|
259
265
|
};
|
|
260
266
|
export type KeyHighlightBadge = {
|
|
261
267
|
text: string;
|
|
@@ -292,6 +298,7 @@ export type KeyHighlightBlock = {
|
|
|
292
298
|
value: string;
|
|
293
299
|
label: string;
|
|
294
300
|
color?: string;
|
|
301
|
+
icon?: string;
|
|
295
302
|
}>;
|
|
296
303
|
takeaway?: string;
|
|
297
304
|
} | {
|
|
@@ -352,6 +359,12 @@ export type KeyHighlightBlock = {
|
|
|
352
359
|
rows: ComparisonRow[];
|
|
353
360
|
takeaway?: string;
|
|
354
361
|
};
|
|
362
|
+
export type HorizontalBarRow = {
|
|
363
|
+
id: string;
|
|
364
|
+
name: string;
|
|
365
|
+
value: number;
|
|
366
|
+
valueLabel?: string;
|
|
367
|
+
};
|
|
355
368
|
export type DualSegmentBarRow = {
|
|
356
369
|
id: string;
|
|
357
370
|
name: string;
|