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

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