@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.
@@ -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;
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@divami-artefacts/ai-design-system",
3
- "version": "1.0.47",
3
+ "version": "1.0.49",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "module": "./dist/index.js",