@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.
- package/dist/components/radialFanTreeChart/RadialFanTreeChart.d.ts +1 -1
- package/dist/components/radialFanTreeChart/types.d.ts +0 -1
- 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 +525 -509
- package/dist/types/index.d.ts +0 -6
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -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;
|