@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.
@@ -0,0 +1 @@
1
+ export declare function InteractiveDemoPage(): import("react/jsx-runtime").JSX.Element;
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@divami-artefacts/ai-design-system",
3
- "version": "1.0.48",
3
+ "version": "1.0.49",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "module": "./dist/index.js",