@kong-ui-public/analytics-utilities 11.0.1-pr.2392.a1cc516a8.0 → 11.0.1-pr.2394.39929d8e1.0
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/types/dashboardSchema.v2.d.ts +1 -163
- package/dist/types/dashboardSchema.v2.d.ts.map +1 -1
- package/dist/types/types/index.d.ts +0 -1
- package/dist/types/types/index.d.ts.map +1 -1
- package/dist/types/utils/chartDataGenerator.d.ts +1 -1
- package/dist/types/utils/chartDataGenerator.d.ts.map +1 -1
- package/dist/vitals-utilities.cjs +1 -1
- package/dist/vitals-utilities.cjs.map +1 -1
- package/dist/vitals-utilities.es.js +616 -1152
- package/dist/vitals-utilities.es.js.map +1 -1
- package/dist/vitals-utilities.umd.js +1 -1
- package/dist/vitals-utilities.umd.js.map +1 -1
- package/package.json +1 -1
- package/dist/types/types/country-codes.d.ts +0 -3
- package/dist/types/types/country-codes.d.ts.map +0 -1
|
@@ -2,7 +2,7 @@ import type { FromSchema, JSONSchema } from 'json-schema-to-ts';
|
|
|
2
2
|
type FromSchemaWithOptions<T extends JSONSchema> = FromSchema<T, {
|
|
3
3
|
keepDefaultedPropertiesOptional: true;
|
|
4
4
|
}>;
|
|
5
|
-
export declare const dashboardTileTypes: readonly ["horizontal_bar", "vertical_bar", "gauge", "donut", "timeseries_line", "timeseries_bar", "golden_signals", "top_n", "slottable", "single_value"
|
|
5
|
+
export declare const dashboardTileTypes: readonly ["horizontal_bar", "vertical_bar", "gauge", "donut", "timeseries_line", "timeseries_bar", "golden_signals", "top_n", "slottable", "single_value"];
|
|
6
6
|
export type DashboardTileType = typeof dashboardTileTypes[number];
|
|
7
7
|
export declare const slottableSchema: {
|
|
8
8
|
readonly type: "object";
|
|
@@ -203,48 +203,6 @@ export declare const singleValueSchema: {
|
|
|
203
203
|
readonly additionalProperties: false;
|
|
204
204
|
};
|
|
205
205
|
export type SingleValueOptions = FromSchemaWithOptions<typeof singleValueSchema>;
|
|
206
|
-
export declare const choroplethMapSchema: {
|
|
207
|
-
readonly type: "object";
|
|
208
|
-
readonly properties: {
|
|
209
|
-
readonly type: {
|
|
210
|
-
readonly type: "string";
|
|
211
|
-
readonly enum: readonly ["choropleth_map"];
|
|
212
|
-
};
|
|
213
|
-
readonly chart_title: {
|
|
214
|
-
readonly type: "string";
|
|
215
|
-
};
|
|
216
|
-
readonly fit_to_country: {
|
|
217
|
-
readonly type: "string";
|
|
218
|
-
readonly enum: readonly ["AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BQ", "BA", "BW", "BV", "BR", "IO", "BN", "BG", "BF", "BI", "CV", "KH", "CM", "CA", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CG", "CD", "CK", "CR", "CI", "HR", "CU", "CW", "CY", "CZ", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "SZ", "ET", "FK", "FO", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "HM", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KP", "KR", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "FM", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "MK", "MP", "NO", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SX", "SK", "SI", "SB", "SO", "ZA", "GS", "SS", "ES", "LK", "SD", "SR", "SJ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "GB", "UM", "US", "UY", "UZ", "VU", "VE", "VN", "VG", "VI", "WF", "EH", "YE", "ZM", "ZW"];
|
|
219
|
-
};
|
|
220
|
-
readonly legend: {
|
|
221
|
-
readonly type: "boolean";
|
|
222
|
-
readonly default: false;
|
|
223
|
-
};
|
|
224
|
-
readonly bounds: {
|
|
225
|
-
readonly type: "array";
|
|
226
|
-
readonly minItems: 2;
|
|
227
|
-
readonly maxItems: 2;
|
|
228
|
-
readonly items: {
|
|
229
|
-
readonly type: "array";
|
|
230
|
-
readonly minItems: 2;
|
|
231
|
-
readonly maxItems: 2;
|
|
232
|
-
readonly items: readonly [{
|
|
233
|
-
readonly type: "number";
|
|
234
|
-
readonly minimum: -180;
|
|
235
|
-
readonly maximum: 180;
|
|
236
|
-
}, {
|
|
237
|
-
readonly type: "number";
|
|
238
|
-
readonly minimum: -90;
|
|
239
|
-
readonly maximum: 90;
|
|
240
|
-
}];
|
|
241
|
-
};
|
|
242
|
-
};
|
|
243
|
-
};
|
|
244
|
-
readonly required: readonly ["type"];
|
|
245
|
-
readonly additionalProperties: false;
|
|
246
|
-
};
|
|
247
|
-
export type ChoroplethMapOptions = FromSchemaWithOptions<typeof choroplethMapSchema>;
|
|
248
206
|
export declare const apiUsageQuerySchema: {
|
|
249
207
|
readonly type: "object";
|
|
250
208
|
readonly description: "A query to launch at the advanced explore API";
|
|
@@ -1621,46 +1579,6 @@ export declare const tileDefinitionSchema: {
|
|
|
1621
1579
|
};
|
|
1622
1580
|
readonly required: readonly ["type"];
|
|
1623
1581
|
readonly additionalProperties: false;
|
|
1624
|
-
}, {
|
|
1625
|
-
readonly type: "object";
|
|
1626
|
-
readonly properties: {
|
|
1627
|
-
readonly type: {
|
|
1628
|
-
readonly type: "string";
|
|
1629
|
-
readonly enum: readonly ["choropleth_map"];
|
|
1630
|
-
};
|
|
1631
|
-
readonly chart_title: {
|
|
1632
|
-
readonly type: "string";
|
|
1633
|
-
};
|
|
1634
|
-
readonly fit_to_country: {
|
|
1635
|
-
readonly type: "string";
|
|
1636
|
-
readonly enum: readonly ["AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BQ", "BA", "BW", "BV", "BR", "IO", "BN", "BG", "BF", "BI", "CV", "KH", "CM", "CA", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CG", "CD", "CK", "CR", "CI", "HR", "CU", "CW", "CY", "CZ", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "SZ", "ET", "FK", "FO", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "HM", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KP", "KR", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "FM", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "MK", "MP", "NO", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SX", "SK", "SI", "SB", "SO", "ZA", "GS", "SS", "ES", "LK", "SD", "SR", "SJ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "GB", "UM", "US", "UY", "UZ", "VU", "VE", "VN", "VG", "VI", "WF", "EH", "YE", "ZM", "ZW"];
|
|
1637
|
-
};
|
|
1638
|
-
readonly legend: {
|
|
1639
|
-
readonly type: "boolean";
|
|
1640
|
-
readonly default: false;
|
|
1641
|
-
};
|
|
1642
|
-
readonly bounds: {
|
|
1643
|
-
readonly type: "array";
|
|
1644
|
-
readonly minItems: 2;
|
|
1645
|
-
readonly maxItems: 2;
|
|
1646
|
-
readonly items: {
|
|
1647
|
-
readonly type: "array";
|
|
1648
|
-
readonly minItems: 2;
|
|
1649
|
-
readonly maxItems: 2;
|
|
1650
|
-
readonly items: readonly [{
|
|
1651
|
-
readonly type: "number";
|
|
1652
|
-
readonly minimum: -180;
|
|
1653
|
-
readonly maximum: 180;
|
|
1654
|
-
}, {
|
|
1655
|
-
readonly type: "number";
|
|
1656
|
-
readonly minimum: -90;
|
|
1657
|
-
readonly maximum: 90;
|
|
1658
|
-
}];
|
|
1659
|
-
};
|
|
1660
|
-
};
|
|
1661
|
-
};
|
|
1662
|
-
readonly required: readonly ["type"];
|
|
1663
|
-
readonly additionalProperties: false;
|
|
1664
1582
|
}];
|
|
1665
1583
|
};
|
|
1666
1584
|
};
|
|
@@ -2297,46 +2215,6 @@ export declare const tileConfigSchema: {
|
|
|
2297
2215
|
};
|
|
2298
2216
|
readonly required: readonly ["type"];
|
|
2299
2217
|
readonly additionalProperties: false;
|
|
2300
|
-
}, {
|
|
2301
|
-
readonly type: "object";
|
|
2302
|
-
readonly properties: {
|
|
2303
|
-
readonly type: {
|
|
2304
|
-
readonly type: "string";
|
|
2305
|
-
readonly enum: readonly ["choropleth_map"];
|
|
2306
|
-
};
|
|
2307
|
-
readonly chart_title: {
|
|
2308
|
-
readonly type: "string";
|
|
2309
|
-
};
|
|
2310
|
-
readonly fit_to_country: {
|
|
2311
|
-
readonly type: "string";
|
|
2312
|
-
readonly enum: readonly ["AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BQ", "BA", "BW", "BV", "BR", "IO", "BN", "BG", "BF", "BI", "CV", "KH", "CM", "CA", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CG", "CD", "CK", "CR", "CI", "HR", "CU", "CW", "CY", "CZ", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "SZ", "ET", "FK", "FO", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "HM", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KP", "KR", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "FM", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "MK", "MP", "NO", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SX", "SK", "SI", "SB", "SO", "ZA", "GS", "SS", "ES", "LK", "SD", "SR", "SJ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "GB", "UM", "US", "UY", "UZ", "VU", "VE", "VN", "VG", "VI", "WF", "EH", "YE", "ZM", "ZW"];
|
|
2313
|
-
};
|
|
2314
|
-
readonly legend: {
|
|
2315
|
-
readonly type: "boolean";
|
|
2316
|
-
readonly default: false;
|
|
2317
|
-
};
|
|
2318
|
-
readonly bounds: {
|
|
2319
|
-
readonly type: "array";
|
|
2320
|
-
readonly minItems: 2;
|
|
2321
|
-
readonly maxItems: 2;
|
|
2322
|
-
readonly items: {
|
|
2323
|
-
readonly type: "array";
|
|
2324
|
-
readonly minItems: 2;
|
|
2325
|
-
readonly maxItems: 2;
|
|
2326
|
-
readonly items: readonly [{
|
|
2327
|
-
readonly type: "number";
|
|
2328
|
-
readonly minimum: -180;
|
|
2329
|
-
readonly maximum: 180;
|
|
2330
|
-
}, {
|
|
2331
|
-
readonly type: "number";
|
|
2332
|
-
readonly minimum: -90;
|
|
2333
|
-
readonly maximum: 90;
|
|
2334
|
-
}];
|
|
2335
|
-
};
|
|
2336
|
-
};
|
|
2337
|
-
};
|
|
2338
|
-
readonly required: readonly ["type"];
|
|
2339
|
-
readonly additionalProperties: false;
|
|
2340
2218
|
}];
|
|
2341
2219
|
};
|
|
2342
2220
|
};
|
|
@@ -2985,46 +2863,6 @@ export declare const dashboardConfigSchema: {
|
|
|
2985
2863
|
};
|
|
2986
2864
|
readonly required: readonly ["type"];
|
|
2987
2865
|
readonly additionalProperties: false;
|
|
2988
|
-
}, {
|
|
2989
|
-
readonly type: "object";
|
|
2990
|
-
readonly properties: {
|
|
2991
|
-
readonly type: {
|
|
2992
|
-
readonly type: "string";
|
|
2993
|
-
readonly enum: readonly ["choropleth_map"];
|
|
2994
|
-
};
|
|
2995
|
-
readonly chart_title: {
|
|
2996
|
-
readonly type: "string";
|
|
2997
|
-
};
|
|
2998
|
-
readonly fit_to_country: {
|
|
2999
|
-
readonly type: "string";
|
|
3000
|
-
readonly enum: readonly ["AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BQ", "BA", "BW", "BV", "BR", "IO", "BN", "BG", "BF", "BI", "CV", "KH", "CM", "CA", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CG", "CD", "CK", "CR", "CI", "HR", "CU", "CW", "CY", "CZ", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "SZ", "ET", "FK", "FO", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "HM", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KP", "KR", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "FM", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "MK", "MP", "NO", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SX", "SK", "SI", "SB", "SO", "ZA", "GS", "SS", "ES", "LK", "SD", "SR", "SJ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "GB", "UM", "US", "UY", "UZ", "VU", "VE", "VN", "VG", "VI", "WF", "EH", "YE", "ZM", "ZW"];
|
|
3001
|
-
};
|
|
3002
|
-
readonly legend: {
|
|
3003
|
-
readonly type: "boolean";
|
|
3004
|
-
readonly default: false;
|
|
3005
|
-
};
|
|
3006
|
-
readonly bounds: {
|
|
3007
|
-
readonly type: "array";
|
|
3008
|
-
readonly minItems: 2;
|
|
3009
|
-
readonly maxItems: 2;
|
|
3010
|
-
readonly items: {
|
|
3011
|
-
readonly type: "array";
|
|
3012
|
-
readonly minItems: 2;
|
|
3013
|
-
readonly maxItems: 2;
|
|
3014
|
-
readonly items: readonly [{
|
|
3015
|
-
readonly type: "number";
|
|
3016
|
-
readonly minimum: -180;
|
|
3017
|
-
readonly maximum: 180;
|
|
3018
|
-
}, {
|
|
3019
|
-
readonly type: "number";
|
|
3020
|
-
readonly minimum: -90;
|
|
3021
|
-
readonly maximum: 90;
|
|
3022
|
-
}];
|
|
3023
|
-
};
|
|
3024
|
-
};
|
|
3025
|
-
};
|
|
3026
|
-
readonly required: readonly ["type"];
|
|
3027
|
-
readonly additionalProperties: false;
|
|
3028
2866
|
}];
|
|
3029
2867
|
};
|
|
3030
2868
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dashboardSchema.v2.d.ts","sourceRoot":"","sources":["../../src/dashboardSchema.v2.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAA;
|
|
1
|
+
{"version":3,"file":"dashboardSchema.v2.d.ts","sourceRoot":"","sources":["../../src/dashboardSchema.v2.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":"AAKA,cAAc,wBAAwB,CAAA;AACtC,cAAc,qBAAqB,CAAA;AACnC,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,kBAAkB,CAAA;AAChC,cAAc,qBAAqB,CAAA;AACnC,cAAc,eAAe,CAAA;AAC7B,cAAc,aAAa,CAAA;AAC3B,cAAc,WAAW,CAAA;AACzB,cAAc,gBAAgB,CAAA;AAC9B,cAAc,oBAAoB,CAAA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":"AAKA,cAAc,wBAAwB,CAAA;AACtC,cAAc,qBAAqB,CAAA;AACnC,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,kBAAkB,CAAA;AAChC,cAAc,qBAAqB,CAAA;AACnC,cAAc,eAAe,CAAA;AAC7B,cAAc,aAAa,CAAA;AAC3B,cAAc,WAAW,CAAA;AACzB,cAAc,gBAAgB,CAAA;AAC9B,cAAc,oBAAoB,CAAA"}
|
|
@@ -3,7 +3,7 @@ export interface Metric {
|
|
|
3
3
|
name: string;
|
|
4
4
|
unit: string;
|
|
5
5
|
}
|
|
6
|
-
export declare const generateSingleMetricTimeSeriesData: (metric: Metric, dimensionMap?: DimensionMap, metaOverrides?: Partial<QueryResponseMeta
|
|
6
|
+
export declare const generateSingleMetricTimeSeriesData: (metric: Metric, dimensionMap?: DimensionMap, metaOverrides?: Partial<QueryResponseMeta>, start?: number, end?: number) => ExploreResultV4;
|
|
7
7
|
export declare const generateMultipleMetricTimeSeriesData: (metrics: Metric[], metaOverrides?: Partial<QueryResponseMeta>) => ExploreResultV4;
|
|
8
8
|
export declare const generateCrossSectionalData: (metrics: Metric[], dimensionMap?: DimensionMap, metaOverrides?: Partial<QueryResponseMeta>) => ExploreResultV4;
|
|
9
9
|
//# sourceMappingURL=chartDataGenerator.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chartDataGenerator.d.ts","sourceRoot":"","sources":["../../../src/utils/chartDataGenerator.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,YAAY,EAKZ,iBAAiB,EACjB,eAAe,EAChB,MAAM,UAAU,CAAA;AAIjB,MAAM,WAAW,MAAM;IACrB,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;CACb;AAED,eAAO,MAAM,kCAAkC,
|
|
1
|
+
{"version":3,"file":"chartDataGenerator.d.ts","sourceRoot":"","sources":["../../../src/utils/chartDataGenerator.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,YAAY,EAKZ,iBAAiB,EACjB,eAAe,EAChB,MAAM,UAAU,CAAA;AAIjB,MAAM,WAAW,MAAM;IACrB,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;CACb;AAED,eAAO,MAAM,kCAAkC,GAC7C,QAAQ,MAAM,EACd,eAAe,YAAY,EAC3B,gBAAgB,OAAO,CAAC,iBAAiB,CAAC,EAC1C,QAAO,MAAwC,EAC/C,MAAK,MAAmB,KA4EnB,eACN,CAAA;AAED,eAAO,MAAM,oCAAoC,GAAI,SAAS,MAAM,EAAE,EAAE,gBAAgB,OAAO,CAAC,iBAAiB,CAAC,KAgD3G,eACN,CAAA;AAED,eAAO,MAAM,0BAA0B,GAAI,SAAS,MAAM,EAAE,EAAE,eAAe,YAAY,EAAE,gBAAgB,OAAO,CAAC,iBAAiB,CAAC,KAqF9H,eACN,CAAA"}
|