@divami-artefacts/ai-design-system 1.0.24 → 1.0.26
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/components/radialFanTreeChart/RadialFanTreeChart.d.ts +1 -1
- package/dist/components/radialFanTreeChart/types.d.ts +1 -0
- package/dist/components/rankedCardLeaderboard/RankedCardLeaderboard.d.ts +1 -1
- package/dist/components/weeklyFlow/WeeklyFlow.d.ts +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +354 -356
- package/dist/types/index.d.ts +6 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -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;
|