@ironsource/shared-ui 2.1.7-test.1 → 2.1.7-test.3

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 (63) hide show
  1. package/Autocomplete.vue_vue_type_style_index_0_scoped_e361f9fd_lang.css +1 -0
  2. package/Chart.vue_vue_type_style_index_0_scoped_f06a4764_lang.css +1 -0
  3. package/ChartHeader.vue_vue_type_style_index_0_scoped_88d4532f_lang.css +1 -0
  4. package/ChartLegend.vue_vue_type_style_index_0_scoped_efc608f9_lang.css +1 -0
  5. package/ChartLoader.vue_vue_type_style_index_0_scoped_142c444a_lang.css +1 -0
  6. package/ChartTooltip.vue_vue_type_style_index_0_scoped_ec636f18_lang.css +1 -0
  7. package/FieldMaxLength.vue_vue_type_style_index_0_scoped_47877984_lang.css +1 -0
  8. package/SortableItem.vue_vue_type_style_index_0_scoped_9dd4d372_lang.css +1 -0
  9. package/SortableItemLabel.vue_vue_type_style_index_0_scoped_1386ae20_lang.css +1 -0
  10. package/SortableList.vue_vue_type_style_index_0_scoped_21842d59_lang.css +1 -0
  11. package/TextAreaV4.vue_vue_type_style_index_0_scoped_4114ef89_lang.css +1 -0
  12. package/TextField.vue_vue_type_style_index_0_scoped_eb472aa3_lang.css +1 -0
  13. package/components/autocomplete/Autocomplete.vue.d.ts +5 -0
  14. package/components/autocomplete/Autocomplete.vue.js +2 -2
  15. package/components/autocomplete/Autocomplete.vue2.js +57 -45
  16. package/components/autocomplete/index.d.ts +20 -1
  17. package/components/chart/Chart.vue.js +7 -0
  18. package/components/chart/Chart.vue2.js +281 -0
  19. package/components/chart/ChartHeader.vue.js +7 -0
  20. package/components/chart/ChartHeader.vue2.js +51 -0
  21. package/components/chart/ChartLegend.vue.js +7 -0
  22. package/components/chart/ChartLegend.vue2.js +65 -0
  23. package/components/chart/ChartLoader.vue.js +25 -0
  24. package/components/chart/ChartLoader.vue2.js +0 -0
  25. package/components/chart/ChartTooltip.vue.js +7 -0
  26. package/components/chart/ChartTooltip.vue2.js +81 -0
  27. package/components/chart/composables/useChartValues.js +32 -0
  28. package/components/chart/composables/useTooltipPosition.js +22 -0
  29. package/components/chart/consts.js +21 -0
  30. package/components/chart/index.js +6 -0
  31. package/components/chart/plugins/HoverVerticalLine.js +12 -0
  32. package/components/chart/types.js +4 -0
  33. package/components/chart/utils/formatNumber.js +11 -0
  34. package/components/chart/utils/utils.js +12 -0
  35. package/components/input/v4/TextField.vue.d.ts +6 -1
  36. package/components/input/v4/TextField.vue.js +3 -3
  37. package/components/input/v4/TextField.vue2.js +95 -90
  38. package/components/input/v4/index.d.ts +20 -1
  39. package/components/shared/FieldMaxLength.vue.js +3 -3
  40. package/components/shared/FieldMaxLength.vue2.js +2 -2
  41. package/components/shared/commonTypes.d.ts +2 -0
  42. package/components/sortableList/SortableItem.vue.js +7 -0
  43. package/components/sortableList/SortableItem.vue2.js +140 -0
  44. package/components/sortableList/SortableItemLabel.vue.js +7 -0
  45. package/components/sortableList/SortableItemLabel.vue2.js +60 -0
  46. package/components/sortableList/SortableList.vue.js +7 -0
  47. package/components/sortableList/SortableList.vue2.js +120 -0
  48. package/components/sortableList/composables/useHoverEffect.js +19 -0
  49. package/components/sortableList/consts.js +4 -0
  50. package/components/sortableList/index.js +6 -0
  51. package/components/textArea/v4/TextAreaV4.vue.d.ts +6 -1
  52. package/components/textArea/v4/TextAreaV4.vue.js +3 -3
  53. package/components/textArea/v4/TextAreaV4.vue2.js +18 -12
  54. package/components/textArea/v4/index.d.ts +9 -0
  55. package/index.d.ts +651 -2
  56. package/index.js +131 -126
  57. package/package.json +9 -1
  58. package/testids/index.js +5 -4
  59. package/utils/search.js +4 -0
  60. package/Autocomplete.vue_vue_type_style_index_0_scoped_a7bfd237_lang.css +0 -1
  61. package/FieldMaxLength.vue_vue_type_style_index_0_scoped_f3c4001a_lang.css +0 -1
  62. package/TextAreaV4.vue_vue_type_style_index_0_scoped_f3b2c01d_lang.css +0 -1
  63. package/TextField.vue_vue_type_style_index_0_scoped_a6457440_lang.css +0 -1
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">;
@@ -2419,6 +3011,10 @@ declare const _default: {
2419
3011
  type: import("vue").PropType<string>;
2420
3012
  default: string;
2421
3013
  };
3014
+ maxLengthCounterPosition: {
3015
+ type: import("vue").PropType<"inside" | "outside">;
3016
+ default: string;
3017
+ };
2422
3018
  feedbackText: {
2423
3019
  type: import("vue").PropType<string>;
2424
3020
  default: string;
@@ -2478,6 +3074,10 @@ declare const _default: {
2478
3074
  type: import("vue").PropType<string>;
2479
3075
  default: string;
2480
3076
  };
3077
+ maxLengthCounterPosition: {
3078
+ type: import("vue").PropType<"inside" | "outside">;
3079
+ default: string;
3080
+ };
2481
3081
  feedbackText: {
2482
3082
  type: import("vue").PropType<string>;
2483
3083
  default: string;
@@ -2504,6 +3104,7 @@ declare const _default: {
2504
3104
  maxLength: number;
2505
3105
  modelValue: string;
2506
3106
  placeholder: string;
3107
+ maxLengthCounterPosition: "inside" | "outside";
2507
3108
  feedbackText: string;
2508
3109
  feedbackVariant: "success" | "warning" | "error";
2509
3110
  showFeedbackTextIcon: boolean;
@@ -2553,6 +3154,10 @@ declare const _default: {
2553
3154
  type: import("vue").PropType<string>;
2554
3155
  default: string;
2555
3156
  };
3157
+ maxLengthCounterPosition: {
3158
+ type: import("vue").PropType<"inside" | "outside">;
3159
+ default: string;
3160
+ };
2556
3161
  feedbackText: {
2557
3162
  type: import("vue").PropType<string>;
2558
3163
  default: string;
@@ -2612,6 +3217,10 @@ declare const _default: {
2612
3217
  type: import("vue").PropType<string>;
2613
3218
  default: string;
2614
3219
  };
3220
+ maxLengthCounterPosition: {
3221
+ type: import("vue").PropType<"inside" | "outside">;
3222
+ default: string;
3223
+ };
2615
3224
  feedbackText: {
2616
3225
  type: import("vue").PropType<string>;
2617
3226
  default: string;
@@ -2638,6 +3247,7 @@ declare const _default: {
2638
3247
  maxLength: number;
2639
3248
  modelValue: string;
2640
3249
  placeholder: string;
3250
+ maxLengthCounterPosition: "inside" | "outside";
2641
3251
  feedbackText: string;
2642
3252
  feedbackVariant: "success" | "warning" | "error";
2643
3253
  showFeedbackTextIcon: boolean;
@@ -10634,6 +11244,7 @@ declare const _default: {
10634
11244
  onlyDigits: boolean;
10635
11245
  prefix: string;
10636
11246
  suffix: string;
11247
+ maxLengthCounterPosition: "inside" | "outside";
10637
11248
  showApply: boolean;
10638
11249
  inlineError: boolean;
10639
11250
  inlineErrorText: string;
@@ -10719,6 +11330,10 @@ declare const _default: {
10719
11330
  type: import("vue").PropType<string>;
10720
11331
  default: string;
10721
11332
  };
11333
+ maxLengthCounterPosition: {
11334
+ type: import("vue").PropType<"inside" | "outside">;
11335
+ default: string;
11336
+ };
10722
11337
  showApply: {
10723
11338
  type: import("vue").PropType<boolean>;
10724
11339
  default: boolean;
@@ -10754,7 +11369,7 @@ declare const _default: {
10754
11369
  }>> & {
10755
11370
  "onUpdate:modelValue"?: (value: string | number) => any;
10756
11371
  onApply?: () => any;
10757
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "maxLength" | "modelValue" | "placeholder" | "viewOnly" | "labelDirection" | "autoFocus" | "hideNumberArrows" | "step" | "onlyDigits" | "prefix" | "suffix" | "showApply" | "inlineError" | "inlineErrorText" | "inlineErrorTextPlacement" | "feedbackText" | "feedbackVariant" | "showFeedbackTextIcon" | "feedbackPositionAbsolute">;
11372
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "maxLength" | "modelValue" | "placeholder" | "viewOnly" | "labelDirection" | "autoFocus" | "hideNumberArrows" | "step" | "onlyDigits" | "prefix" | "suffix" | "maxLengthCounterPosition" | "showApply" | "inlineError" | "inlineErrorText" | "inlineErrorTextPlacement" | "feedbackText" | "feedbackVariant" | "showFeedbackTextIcon" | "feedbackPositionAbsolute">;
10758
11373
  $attrs: {
10759
11374
  [x: string]: unknown;
10760
11375
  };
@@ -10845,6 +11460,10 @@ declare const _default: {
10845
11460
  type: import("vue").PropType<string>;
10846
11461
  default: string;
10847
11462
  };
11463
+ maxLengthCounterPosition: {
11464
+ type: import("vue").PropType<"inside" | "outside">;
11465
+ default: string;
11466
+ };
10848
11467
  showApply: {
10849
11468
  type: import("vue").PropType<boolean>;
10850
11469
  default: boolean;
@@ -10905,6 +11524,7 @@ declare const _default: {
10905
11524
  onlyDigits: boolean;
10906
11525
  prefix: string;
10907
11526
  suffix: string;
11527
+ maxLengthCounterPosition: "inside" | "outside";
10908
11528
  showApply: boolean;
10909
11529
  inlineError: boolean;
10910
11530
  inlineErrorText: string;
@@ -11010,6 +11630,10 @@ declare const _default: {
11010
11630
  type: import("vue").PropType<string>;
11011
11631
  default: string;
11012
11632
  };
11633
+ maxLengthCounterPosition: {
11634
+ type: import("vue").PropType<"inside" | "outside">;
11635
+ default: string;
11636
+ };
11013
11637
  showApply: {
11014
11638
  type: import("vue").PropType<boolean>;
11015
11639
  default: boolean;
@@ -11128,6 +11752,10 @@ declare const _default: {
11128
11752
  type: import("vue").PropType<string>;
11129
11753
  default: string;
11130
11754
  };
11755
+ maxLengthCounterPosition: {
11756
+ type: import("vue").PropType<"inside" | "outside">;
11757
+ default: string;
11758
+ };
11131
11759
  showApply: {
11132
11760
  type: import("vue").PropType<boolean>;
11133
11761
  default: boolean;
@@ -11188,6 +11816,7 @@ declare const _default: {
11188
11816
  onlyDigits: boolean;
11189
11817
  prefix: string;
11190
11818
  suffix: string;
11819
+ maxLengthCounterPosition: "inside" | "outside";
11191
11820
  showApply: boolean;
11192
11821
  inlineError: boolean;
11193
11822
  inlineErrorText: string;
@@ -11226,6 +11855,7 @@ declare const _default: {
11226
11855
  onlyDigits: boolean;
11227
11856
  prefix: string;
11228
11857
  suffix: string;
11858
+ maxLengthCounterPosition: "inside" | "outside";
11229
11859
  showApply: boolean;
11230
11860
  inlineError: boolean;
11231
11861
  inlineErrorText: string;
@@ -11311,6 +11941,10 @@ declare const _default: {
11311
11941
  type: import("vue").PropType<string>;
11312
11942
  default: string;
11313
11943
  };
11944
+ maxLengthCounterPosition: {
11945
+ type: import("vue").PropType<"inside" | "outside">;
11946
+ default: string;
11947
+ };
11314
11948
  showApply: {
11315
11949
  type: import("vue").PropType<boolean>;
11316
11950
  default: boolean;
@@ -11346,7 +11980,7 @@ declare const _default: {
11346
11980
  }>> & {
11347
11981
  "onUpdate:modelValue"?: (value: string | number) => any;
11348
11982
  onApply?: () => any;
11349
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "maxLength" | "modelValue" | "placeholder" | "viewOnly" | "labelDirection" | "autoFocus" | "hideNumberArrows" | "step" | "onlyDigits" | "prefix" | "suffix" | "showApply" | "inlineError" | "inlineErrorText" | "inlineErrorTextPlacement" | "feedbackText" | "feedbackVariant" | "showFeedbackTextIcon" | "feedbackPositionAbsolute">;
11983
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "maxLength" | "modelValue" | "placeholder" | "viewOnly" | "labelDirection" | "autoFocus" | "hideNumberArrows" | "step" | "onlyDigits" | "prefix" | "suffix" | "maxLengthCounterPosition" | "showApply" | "inlineError" | "inlineErrorText" | "inlineErrorTextPlacement" | "feedbackText" | "feedbackVariant" | "showFeedbackTextIcon" | "feedbackPositionAbsolute">;
11350
11984
  $attrs: {
11351
11985
  [x: string]: unknown;
11352
11986
  };
@@ -11437,6 +12071,10 @@ declare const _default: {
11437
12071
  type: import("vue").PropType<string>;
11438
12072
  default: string;
11439
12073
  };
12074
+ maxLengthCounterPosition: {
12075
+ type: import("vue").PropType<"inside" | "outside">;
12076
+ default: string;
12077
+ };
11440
12078
  showApply: {
11441
12079
  type: import("vue").PropType<boolean>;
11442
12080
  default: boolean;
@@ -11497,6 +12135,7 @@ declare const _default: {
11497
12135
  onlyDigits: boolean;
11498
12136
  prefix: string;
11499
12137
  suffix: string;
12138
+ maxLengthCounterPosition: "inside" | "outside";
11500
12139
  showApply: boolean;
11501
12140
  inlineError: boolean;
11502
12141
  inlineErrorText: string;
@@ -11602,6 +12241,10 @@ declare const _default: {
11602
12241
  type: import("vue").PropType<string>;
11603
12242
  default: string;
11604
12243
  };
12244
+ maxLengthCounterPosition: {
12245
+ type: import("vue").PropType<"inside" | "outside">;
12246
+ default: string;
12247
+ };
11605
12248
  showApply: {
11606
12249
  type: import("vue").PropType<boolean>;
11607
12250
  default: boolean;
@@ -11720,6 +12363,10 @@ declare const _default: {
11720
12363
  type: import("vue").PropType<string>;
11721
12364
  default: string;
11722
12365
  };
12366
+ maxLengthCounterPosition: {
12367
+ type: import("vue").PropType<"inside" | "outside">;
12368
+ default: string;
12369
+ };
11723
12370
  showApply: {
11724
12371
  type: import("vue").PropType<boolean>;
11725
12372
  default: boolean;
@@ -11780,6 +12427,7 @@ declare const _default: {
11780
12427
  onlyDigits: boolean;
11781
12428
  prefix: string;
11782
12429
  suffix: string;
12430
+ maxLengthCounterPosition: "inside" | "outside";
11783
12431
  showApply: boolean;
11784
12432
  inlineError: boolean;
11785
12433
  inlineErrorText: string;
@@ -20803,3 +21451,4 @@ export * from '@/composables/useFormValidation';
20803
21451
  export * from '@/components/banner';
20804
21452
  export * from '@/components/alert';
20805
21453
  export * from '@/components/autocomplete';
21454
+ export * from '@/components/chart';