@ironsource/shared-ui 2.1.7-rc.4 → 2.1.7-rc.5

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.
Files changed (40) hide show
  1. package/Chart.vue_vue_type_style_index_0_scoped_f06a4764_lang.css +1 -0
  2. package/ChartHeader.vue_vue_type_style_index_0_scoped_88d4532f_lang.css +1 -0
  3. package/ChartLegend.vue_vue_type_style_index_0_scoped_efc608f9_lang.css +1 -0
  4. package/ChartLoader.vue_vue_type_style_index_0_scoped_142c444a_lang.css +1 -0
  5. package/ChartTooltip.vue_vue_type_style_index_0_scoped_ec636f18_lang.css +1 -0
  6. package/SortableItem.vue_vue_type_style_index_0_scoped_9dd4d372_lang.css +1 -0
  7. package/SortableItemLabel.vue_vue_type_style_index_0_scoped_1386ae20_lang.css +1 -0
  8. package/SortableList.vue_vue_type_style_index_0_scoped_21842d59_lang.css +1 -0
  9. package/components/chart/Chart.vue.js +7 -0
  10. package/components/chart/Chart.vue2.js +281 -0
  11. package/components/chart/ChartHeader.vue.js +7 -0
  12. package/components/chart/ChartHeader.vue2.js +51 -0
  13. package/components/chart/ChartLegend.vue.js +7 -0
  14. package/components/chart/ChartLegend.vue2.js +65 -0
  15. package/components/chart/ChartLoader.vue.js +25 -0
  16. package/components/chart/ChartLoader.vue2.js +0 -0
  17. package/components/chart/ChartTooltip.vue.js +7 -0
  18. package/components/chart/ChartTooltip.vue2.js +81 -0
  19. package/components/chart/composables/useChartValues.js +32 -0
  20. package/components/chart/composables/useTooltipPosition.js +22 -0
  21. package/components/chart/consts.js +21 -0
  22. package/components/chart/index.js +6 -0
  23. package/components/chart/plugins/HoverVerticalLine.js +12 -0
  24. package/components/chart/types.js +4 -0
  25. package/components/chart/utils/formatNumber.js +11 -0
  26. package/components/chart/utils/utils.js +12 -0
  27. package/components/sortableList/SortableItem.vue.js +7 -0
  28. package/components/sortableList/SortableItem.vue2.js +140 -0
  29. package/components/sortableList/SortableItemLabel.vue.js +7 -0
  30. package/components/sortableList/SortableItemLabel.vue2.js +60 -0
  31. package/components/sortableList/SortableList.vue.js +7 -0
  32. package/components/sortableList/SortableList.vue2.js +120 -0
  33. package/components/sortableList/composables/useHoverEffect.js +19 -0
  34. package/components/sortableList/consts.js +4 -0
  35. package/components/sortableList/index.js +6 -0
  36. package/index.d.ts +593 -0
  37. package/index.js +131 -126
  38. package/package.json +9 -1
  39. package/testids/index.js +5 -4
  40. package/utils/search.js +4 -0
package/index.d.ts CHANGED
@@ -1197,6 +1197,598 @@ declare const _default: {
1197
1197
  }): any;
1198
1198
  };
1199
1199
  }))[];
1200
+ SortableList: {
1201
+ new (...args: any[]): {
1202
+ $: import("vue").ComponentInternalInstance;
1203
+ $data: {};
1204
+ $props: Partial<{
1205
+ search: string;
1206
+ testId: string;
1207
+ displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1208
+ searchPlaceholder: string;
1209
+ items: import("./components/sortableList/SortableList.types").SortableListItem[];
1210
+ selectedChildId: string | number;
1211
+ searchHandler: (item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean;
1212
+ openId: string | number;
1213
+ selectedId: string | number;
1214
+ showSearch: boolean;
1215
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
1216
+ search: {
1217
+ type: import("vue").PropType<string>;
1218
+ default: any;
1219
+ };
1220
+ testId: {
1221
+ type: import("vue").PropType<string>;
1222
+ default: string;
1223
+ };
1224
+ displayValue: {
1225
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
1226
+ required: true;
1227
+ default: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1228
+ };
1229
+ searchPlaceholder: {
1230
+ type: import("vue").PropType<string>;
1231
+ default: string;
1232
+ };
1233
+ items: {
1234
+ type: import("vue").PropType<import("./components/sortableList/SortableList.types").SortableListItem[]>;
1235
+ required: true;
1236
+ default: () => any[];
1237
+ };
1238
+ selectedChildId: {
1239
+ type: import("vue").PropType<string | number>;
1240
+ default: any;
1241
+ };
1242
+ searchHandler: {
1243
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean>;
1244
+ default: any;
1245
+ };
1246
+ openId: {
1247
+ type: import("vue").PropType<string | number>;
1248
+ default: any;
1249
+ };
1250
+ selectedId: {
1251
+ type: import("vue").PropType<string | number>;
1252
+ default: any;
1253
+ };
1254
+ showSearch: {
1255
+ type: import("vue").PropType<boolean>;
1256
+ default: boolean;
1257
+ };
1258
+ }>> & {
1259
+ "onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
1260
+ "onUpdate:openId"?: (id: string | number) => any;
1261
+ "onUpdate:selectedId"?: (id: string | number) => any;
1262
+ "onUpdate:selectedChildId"?: (id: string | number) => any;
1263
+ "onUpdate:search"?: (query: string) => any;
1264
+ onClearSearch?: () => any;
1265
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "searchHandler" | "openId" | "selectedId" | "showSearch">;
1266
+ $attrs: {
1267
+ [x: string]: unknown;
1268
+ };
1269
+ $refs: {
1270
+ [x: string]: unknown;
1271
+ };
1272
+ $slots: Readonly<{
1273
+ [name: string]: import("vue").Slot;
1274
+ }>;
1275
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1276
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1277
+ $emit: ((event: "update:items", items: import("./components/sortableList/SortableList.types").SortableListItem[]) => void) & ((event: "update:openId", id: string | number) => void) & ((event: "update:selectedId", id: string | number) => void) & ((event: "update:selectedChildId", id: string | number) => void) & ((event: "update:search", query: string) => void) & ((event: "clearSearch") => void);
1278
+ $el: any;
1279
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1280
+ search: {
1281
+ type: import("vue").PropType<string>;
1282
+ default: any;
1283
+ };
1284
+ testId: {
1285
+ type: import("vue").PropType<string>;
1286
+ default: string;
1287
+ };
1288
+ displayValue: {
1289
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
1290
+ required: true;
1291
+ default: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1292
+ };
1293
+ searchPlaceholder: {
1294
+ type: import("vue").PropType<string>;
1295
+ default: string;
1296
+ };
1297
+ items: {
1298
+ type: import("vue").PropType<import("./components/sortableList/SortableList.types").SortableListItem[]>;
1299
+ required: true;
1300
+ default: () => any[];
1301
+ };
1302
+ selectedChildId: {
1303
+ type: import("vue").PropType<string | number>;
1304
+ default: any;
1305
+ };
1306
+ searchHandler: {
1307
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean>;
1308
+ default: any;
1309
+ };
1310
+ openId: {
1311
+ type: import("vue").PropType<string | number>;
1312
+ default: any;
1313
+ };
1314
+ selectedId: {
1315
+ type: import("vue").PropType<string | number>;
1316
+ default: any;
1317
+ };
1318
+ showSearch: {
1319
+ type: import("vue").PropType<boolean>;
1320
+ default: boolean;
1321
+ };
1322
+ }>> & {
1323
+ "onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
1324
+ "onUpdate:openId"?: (id: string | number) => any;
1325
+ "onUpdate:selectedId"?: (id: string | number) => any;
1326
+ "onUpdate:selectedChildId"?: (id: string | number) => any;
1327
+ "onUpdate:search"?: (query: string) => any;
1328
+ onClearSearch?: () => any;
1329
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1330
+ "update:items": (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => void;
1331
+ "update:openId": (id: string | number) => void;
1332
+ "update:selectedId": (id: string | number) => void;
1333
+ "update:selectedChildId": (id: string | number) => void;
1334
+ "update:search": (query: string) => void;
1335
+ clearSearch: () => void;
1336
+ }, string, {
1337
+ search: string;
1338
+ testId: string;
1339
+ displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1340
+ searchPlaceholder: string;
1341
+ items: import("./components/sortableList/SortableList.types").SortableListItem[];
1342
+ selectedChildId: string | number;
1343
+ searchHandler: (item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean;
1344
+ openId: string | number;
1345
+ selectedId: string | number;
1346
+ showSearch: boolean;
1347
+ }, {}, string> & {
1348
+ beforeCreate?: (() => void) | (() => void)[];
1349
+ created?: (() => void) | (() => void)[];
1350
+ beforeMount?: (() => void) | (() => void)[];
1351
+ mounted?: (() => void) | (() => void)[];
1352
+ beforeUpdate?: (() => void) | (() => void)[];
1353
+ updated?: (() => void) | (() => void)[];
1354
+ activated?: (() => void) | (() => void)[];
1355
+ deactivated?: (() => void) | (() => void)[];
1356
+ beforeDestroy?: (() => void) | (() => void)[];
1357
+ beforeUnmount?: (() => void) | (() => void)[];
1358
+ destroyed?: (() => void) | (() => void)[];
1359
+ unmounted?: (() => void) | (() => void)[];
1360
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
1361
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
1362
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
1363
+ };
1364
+ $forceUpdate: () => void;
1365
+ $nextTick: typeof import("vue").nextTick;
1366
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
1367
+ } & Readonly<import("vue").ExtractPropTypes<{
1368
+ search: {
1369
+ type: import("vue").PropType<string>;
1370
+ default: any;
1371
+ };
1372
+ testId: {
1373
+ type: import("vue").PropType<string>;
1374
+ default: string;
1375
+ };
1376
+ displayValue: {
1377
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
1378
+ required: true;
1379
+ default: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1380
+ };
1381
+ searchPlaceholder: {
1382
+ type: import("vue").PropType<string>;
1383
+ default: string;
1384
+ };
1385
+ items: {
1386
+ type: import("vue").PropType<import("./components/sortableList/SortableList.types").SortableListItem[]>;
1387
+ required: true;
1388
+ default: () => any[];
1389
+ };
1390
+ selectedChildId: {
1391
+ type: import("vue").PropType<string | number>;
1392
+ default: any;
1393
+ };
1394
+ searchHandler: {
1395
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean>;
1396
+ default: any;
1397
+ };
1398
+ openId: {
1399
+ type: import("vue").PropType<string | number>;
1400
+ default: any;
1401
+ };
1402
+ selectedId: {
1403
+ type: import("vue").PropType<string | number>;
1404
+ default: any;
1405
+ };
1406
+ showSearch: {
1407
+ type: import("vue").PropType<boolean>;
1408
+ default: boolean;
1409
+ };
1410
+ }>> & {
1411
+ "onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
1412
+ "onUpdate:openId"?: (id: string | number) => any;
1413
+ "onUpdate:selectedId"?: (id: string | number) => any;
1414
+ "onUpdate:selectedChildId"?: (id: string | number) => any;
1415
+ "onUpdate:search"?: (query: string) => any;
1416
+ onClearSearch?: () => any;
1417
+ } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
1418
+ __isFragment?: never;
1419
+ __isTeleport?: never;
1420
+ __isSuspense?: never;
1421
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1422
+ search: {
1423
+ type: import("vue").PropType<string>;
1424
+ default: any;
1425
+ };
1426
+ testId: {
1427
+ type: import("vue").PropType<string>;
1428
+ default: string;
1429
+ };
1430
+ displayValue: {
1431
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
1432
+ required: true;
1433
+ default: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1434
+ };
1435
+ searchPlaceholder: {
1436
+ type: import("vue").PropType<string>;
1437
+ default: string;
1438
+ };
1439
+ items: {
1440
+ type: import("vue").PropType<import("./components/sortableList/SortableList.types").SortableListItem[]>;
1441
+ required: true;
1442
+ default: () => any[];
1443
+ };
1444
+ selectedChildId: {
1445
+ type: import("vue").PropType<string | number>;
1446
+ default: any;
1447
+ };
1448
+ searchHandler: {
1449
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean>;
1450
+ default: any;
1451
+ };
1452
+ openId: {
1453
+ type: import("vue").PropType<string | number>;
1454
+ default: any;
1455
+ };
1456
+ selectedId: {
1457
+ type: import("vue").PropType<string | number>;
1458
+ default: any;
1459
+ };
1460
+ showSearch: {
1461
+ type: import("vue").PropType<boolean>;
1462
+ default: boolean;
1463
+ };
1464
+ }>> & {
1465
+ "onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
1466
+ "onUpdate:openId"?: (id: string | number) => any;
1467
+ "onUpdate:selectedId"?: (id: string | number) => any;
1468
+ "onUpdate:selectedChildId"?: (id: string | number) => any;
1469
+ "onUpdate:search"?: (query: string) => any;
1470
+ onClearSearch?: () => any;
1471
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1472
+ "update:items": (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => void;
1473
+ "update:openId": (id: string | number) => void;
1474
+ "update:selectedId": (id: string | number) => void;
1475
+ "update:selectedChildId": (id: string | number) => void;
1476
+ "update:search": (query: string) => void;
1477
+ clearSearch: () => void;
1478
+ }, string, {
1479
+ search: string;
1480
+ testId: string;
1481
+ displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1482
+ searchPlaceholder: string;
1483
+ items: import("./components/sortableList/SortableList.types").SortableListItem[];
1484
+ selectedChildId: string | number;
1485
+ searchHandler: (item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean;
1486
+ openId: string | number;
1487
+ selectedId: string | number;
1488
+ showSearch: boolean;
1489
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
1490
+ $slots: {
1491
+ menu?(_: {
1492
+ item: import("./components/sortableList/SortableList.types").SortableListItem;
1493
+ }): any;
1494
+ };
1495
+ });
1496
+ SortableListTypes: () => ({
1497
+ new (...args: any[]): {
1498
+ $: import("vue").ComponentInternalInstance;
1499
+ $data: {};
1500
+ $props: Partial<{
1501
+ search: string;
1502
+ testId: string;
1503
+ displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1504
+ searchPlaceholder: string;
1505
+ items: import("./components/sortableList/SortableList.types").SortableListItem[];
1506
+ selectedChildId: string | number;
1507
+ searchHandler: (item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean;
1508
+ openId: string | number;
1509
+ selectedId: string | number;
1510
+ showSearch: boolean;
1511
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
1512
+ search: {
1513
+ type: import("vue").PropType<string>;
1514
+ default: any;
1515
+ };
1516
+ testId: {
1517
+ type: import("vue").PropType<string>;
1518
+ default: string;
1519
+ };
1520
+ displayValue: {
1521
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
1522
+ required: true;
1523
+ default: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1524
+ };
1525
+ searchPlaceholder: {
1526
+ type: import("vue").PropType<string>;
1527
+ default: string;
1528
+ };
1529
+ items: {
1530
+ type: import("vue").PropType<import("./components/sortableList/SortableList.types").SortableListItem[]>;
1531
+ required: true;
1532
+ default: () => any[];
1533
+ };
1534
+ selectedChildId: {
1535
+ type: import("vue").PropType<string | number>;
1536
+ default: any;
1537
+ };
1538
+ searchHandler: {
1539
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean>;
1540
+ default: any;
1541
+ };
1542
+ openId: {
1543
+ type: import("vue").PropType<string | number>;
1544
+ default: any;
1545
+ };
1546
+ selectedId: {
1547
+ type: import("vue").PropType<string | number>;
1548
+ default: any;
1549
+ };
1550
+ showSearch: {
1551
+ type: import("vue").PropType<boolean>;
1552
+ default: boolean;
1553
+ };
1554
+ }>> & {
1555
+ "onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
1556
+ "onUpdate:openId"?: (id: string | number) => any;
1557
+ "onUpdate:selectedId"?: (id: string | number) => any;
1558
+ "onUpdate:selectedChildId"?: (id: string | number) => any;
1559
+ "onUpdate:search"?: (query: string) => any;
1560
+ onClearSearch?: () => any;
1561
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "searchHandler" | "openId" | "selectedId" | "showSearch">;
1562
+ $attrs: {
1563
+ [x: string]: unknown;
1564
+ };
1565
+ $refs: {
1566
+ [x: string]: unknown;
1567
+ };
1568
+ $slots: Readonly<{
1569
+ [name: string]: import("vue").Slot;
1570
+ }>;
1571
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1572
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1573
+ $emit: ((event: "update:items", items: import("./components/sortableList/SortableList.types").SortableListItem[]) => void) & ((event: "update:openId", id: string | number) => void) & ((event: "update:selectedId", id: string | number) => void) & ((event: "update:selectedChildId", id: string | number) => void) & ((event: "update:search", query: string) => void) & ((event: "clearSearch") => void);
1574
+ $el: any;
1575
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1576
+ search: {
1577
+ type: import("vue").PropType<string>;
1578
+ default: any;
1579
+ };
1580
+ testId: {
1581
+ type: import("vue").PropType<string>;
1582
+ default: string;
1583
+ };
1584
+ displayValue: {
1585
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
1586
+ required: true;
1587
+ default: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1588
+ };
1589
+ searchPlaceholder: {
1590
+ type: import("vue").PropType<string>;
1591
+ default: string;
1592
+ };
1593
+ items: {
1594
+ type: import("vue").PropType<import("./components/sortableList/SortableList.types").SortableListItem[]>;
1595
+ required: true;
1596
+ default: () => any[];
1597
+ };
1598
+ selectedChildId: {
1599
+ type: import("vue").PropType<string | number>;
1600
+ default: any;
1601
+ };
1602
+ searchHandler: {
1603
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean>;
1604
+ default: any;
1605
+ };
1606
+ openId: {
1607
+ type: import("vue").PropType<string | number>;
1608
+ default: any;
1609
+ };
1610
+ selectedId: {
1611
+ type: import("vue").PropType<string | number>;
1612
+ default: any;
1613
+ };
1614
+ showSearch: {
1615
+ type: import("vue").PropType<boolean>;
1616
+ default: boolean;
1617
+ };
1618
+ }>> & {
1619
+ "onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
1620
+ "onUpdate:openId"?: (id: string | number) => any;
1621
+ "onUpdate:selectedId"?: (id: string | number) => any;
1622
+ "onUpdate:selectedChildId"?: (id: string | number) => any;
1623
+ "onUpdate:search"?: (query: string) => any;
1624
+ onClearSearch?: () => any;
1625
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1626
+ "update:items": (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => void;
1627
+ "update:openId": (id: string | number) => void;
1628
+ "update:selectedId": (id: string | number) => void;
1629
+ "update:selectedChildId": (id: string | number) => void;
1630
+ "update:search": (query: string) => void;
1631
+ clearSearch: () => void;
1632
+ }, string, {
1633
+ search: string;
1634
+ testId: string;
1635
+ displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1636
+ searchPlaceholder: string;
1637
+ items: import("./components/sortableList/SortableList.types").SortableListItem[];
1638
+ selectedChildId: string | number;
1639
+ searchHandler: (item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean;
1640
+ openId: string | number;
1641
+ selectedId: string | number;
1642
+ showSearch: boolean;
1643
+ }, {}, string> & {
1644
+ beforeCreate?: (() => void) | (() => void)[];
1645
+ created?: (() => void) | (() => void)[];
1646
+ beforeMount?: (() => void) | (() => void)[];
1647
+ mounted?: (() => void) | (() => void)[];
1648
+ beforeUpdate?: (() => void) | (() => void)[];
1649
+ updated?: (() => void) | (() => void)[];
1650
+ activated?: (() => void) | (() => void)[];
1651
+ deactivated?: (() => void) | (() => void)[];
1652
+ beforeDestroy?: (() => void) | (() => void)[];
1653
+ beforeUnmount?: (() => void) | (() => void)[];
1654
+ destroyed?: (() => void) | (() => void)[];
1655
+ unmounted?: (() => void) | (() => void)[];
1656
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
1657
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
1658
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
1659
+ };
1660
+ $forceUpdate: () => void;
1661
+ $nextTick: typeof import("vue").nextTick;
1662
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
1663
+ } & Readonly<import("vue").ExtractPropTypes<{
1664
+ search: {
1665
+ type: import("vue").PropType<string>;
1666
+ default: any;
1667
+ };
1668
+ testId: {
1669
+ type: import("vue").PropType<string>;
1670
+ default: string;
1671
+ };
1672
+ displayValue: {
1673
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
1674
+ required: true;
1675
+ default: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1676
+ };
1677
+ searchPlaceholder: {
1678
+ type: import("vue").PropType<string>;
1679
+ default: string;
1680
+ };
1681
+ items: {
1682
+ type: import("vue").PropType<import("./components/sortableList/SortableList.types").SortableListItem[]>;
1683
+ required: true;
1684
+ default: () => any[];
1685
+ };
1686
+ selectedChildId: {
1687
+ type: import("vue").PropType<string | number>;
1688
+ default: any;
1689
+ };
1690
+ searchHandler: {
1691
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean>;
1692
+ default: any;
1693
+ };
1694
+ openId: {
1695
+ type: import("vue").PropType<string | number>;
1696
+ default: any;
1697
+ };
1698
+ selectedId: {
1699
+ type: import("vue").PropType<string | number>;
1700
+ default: any;
1701
+ };
1702
+ showSearch: {
1703
+ type: import("vue").PropType<boolean>;
1704
+ default: boolean;
1705
+ };
1706
+ }>> & {
1707
+ "onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
1708
+ "onUpdate:openId"?: (id: string | number) => any;
1709
+ "onUpdate:selectedId"?: (id: string | number) => any;
1710
+ "onUpdate:selectedChildId"?: (id: string | number) => any;
1711
+ "onUpdate:search"?: (query: string) => any;
1712
+ onClearSearch?: () => any;
1713
+ } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
1714
+ __isFragment?: never;
1715
+ __isTeleport?: never;
1716
+ __isSuspense?: never;
1717
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1718
+ search: {
1719
+ type: import("vue").PropType<string>;
1720
+ default: any;
1721
+ };
1722
+ testId: {
1723
+ type: import("vue").PropType<string>;
1724
+ default: string;
1725
+ };
1726
+ displayValue: {
1727
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
1728
+ required: true;
1729
+ default: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1730
+ };
1731
+ searchPlaceholder: {
1732
+ type: import("vue").PropType<string>;
1733
+ default: string;
1734
+ };
1735
+ items: {
1736
+ type: import("vue").PropType<import("./components/sortableList/SortableList.types").SortableListItem[]>;
1737
+ required: true;
1738
+ default: () => any[];
1739
+ };
1740
+ selectedChildId: {
1741
+ type: import("vue").PropType<string | number>;
1742
+ default: any;
1743
+ };
1744
+ searchHandler: {
1745
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean>;
1746
+ default: any;
1747
+ };
1748
+ openId: {
1749
+ type: import("vue").PropType<string | number>;
1750
+ default: any;
1751
+ };
1752
+ selectedId: {
1753
+ type: import("vue").PropType<string | number>;
1754
+ default: any;
1755
+ };
1756
+ showSearch: {
1757
+ type: import("vue").PropType<boolean>;
1758
+ default: boolean;
1759
+ };
1760
+ }>> & {
1761
+ "onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
1762
+ "onUpdate:openId"?: (id: string | number) => any;
1763
+ "onUpdate:selectedId"?: (id: string | number) => any;
1764
+ "onUpdate:selectedChildId"?: (id: string | number) => any;
1765
+ "onUpdate:search"?: (query: string) => any;
1766
+ onClearSearch?: () => any;
1767
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1768
+ "update:items": (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => void;
1769
+ "update:openId": (id: string | number) => void;
1770
+ "update:selectedId": (id: string | number) => void;
1771
+ "update:selectedChildId": (id: string | number) => void;
1772
+ "update:search": (query: string) => void;
1773
+ clearSearch: () => void;
1774
+ }, string, {
1775
+ search: string;
1776
+ testId: string;
1777
+ displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1778
+ searchPlaceholder: string;
1779
+ items: import("./components/sortableList/SortableList.types").SortableListItem[];
1780
+ selectedChildId: string | number;
1781
+ searchHandler: (item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean;
1782
+ openId: string | number;
1783
+ selectedId: string | number;
1784
+ showSearch: boolean;
1785
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
1786
+ $slots: {
1787
+ menu?(_: {
1788
+ item: import("./components/sortableList/SortableList.types").SortableListItem;
1789
+ }): any;
1790
+ };
1791
+ }))[];
1200
1792
  StatusDot: import("vue").DefineComponent<{
1201
1793
  type: {
1202
1794
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
@@ -20803,3 +21395,4 @@ export * from '@/composables/useFormValidation';
20803
21395
  export * from '@/components/banner';
20804
21396
  export * from '@/components/alert';
20805
21397
  export * from '@/components/autocomplete';
21398
+ export * from '@/components/chart';