@divami-artefacts/ai-design-system 1.0.21 → 1.0.22

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.
@@ -139,6 +139,7 @@ export type BaseVisualizationConfig = {
139
139
  } | {
140
140
  type: 'radial-fan-tree-chart';
141
141
  total: number;
142
+ totalLabel?: string;
142
143
  items: NCEContractorRow[];
143
144
  } | {
144
145
  type: 'semi-circular-gauge-chart';
@@ -174,6 +175,9 @@ export type ContractorRow = {
174
175
  variation?: number;
175
176
  total?: number;
176
177
  percentage?: number;
178
+ baseLabel?: string;
179
+ variationLabel?: string;
180
+ totalLabel?: string;
177
181
  };
178
182
  export type ContractData = {
179
183
  items: (ContractorRow | number | null)[];
@@ -201,12 +205,14 @@ export type EWOpenContractorRow = {
201
205
  name: string;
202
206
  abbreviation?: string;
203
207
  count?: number;
208
+ label?: string;
204
209
  };
205
210
  export type NCEContractorRow = {
206
211
  id: string;
207
212
  name: string;
208
213
  abbreviation?: string;
209
214
  count?: number;
215
+ label?: string;
210
216
  };
211
217
  export type NCECompensationData = {
212
218
  total: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@divami-artefacts/ai-design-system",
3
- "version": "1.0.21",
3
+ "version": "1.0.22",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "module": "./dist/index.js",