@ironsource/shared-ui 2.1.3-rc.1 → 2.1.3-rc.10

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 (123) hide show
  1. package/Alert.vue_vue_type_style_index_0_scoped_203b6bd1_lang.css +1 -0
  2. package/AppHeader.vue_vue_type_style_index_0_scoped_95908b8d_lang.css +1 -0
  3. package/CardPanel.vue_vue_type_style_index_0_scoped_7d0acb11_lang.css +1 -0
  4. package/CheckboxV4.vue_vue_type_style_index_0_scoped_d25514d1_lang.css +1 -0
  5. package/DataGrid.vue_vue_type_style_index_0_scoped_4baf9e57_lang.css +1 -0
  6. package/DataGridMenu.vue_vue_type_style_index_0_scoped_13f1ce76_lang.css +1 -0
  7. package/DataGridRowsCounter.vue_vue_type_style_index_0_scoped_06751538_lang.css +1 -0
  8. package/EditableV4.vue_vue_type_style_index_0_scoped_31bfb722_lang.css +1 -0
  9. package/EmptyStateV4.vue_vue_type_style_index_0_scoped_24001caa_lang.css +1 -0
  10. package/FieldLabel.vue_vue_type_style_index_0_scoped_5c2a70ad_lang.css +1 -0
  11. package/FieldMaxLength.vue_vue_type_style_index_0_scoped_f3c4001a_lang.css +1 -0
  12. package/FormCard.vue_vue_type_style_index_0_scoped_276bd901_lang.css +1 -0
  13. package/FormRow.vue_vue_type_style_index_0_scoped_c5265707_lang.css +1 -0
  14. package/InlineCopy.vue_vue_type_style_index_0_scoped_2a9e8782_lang.css +1 -0
  15. package/RadioButtonV4.vue_vue_type_style_index_0_scoped_cb3a12c6_lang.css +1 -0
  16. package/TextArea.vue_vue_type_style_index_0_scoped_eb62e4c0_lang.css +1 -0
  17. package/TextAreaV4.vue_vue_type_style_index_0_scoped_0336a92f_lang.css +1 -0
  18. package/TextField.vue_vue_type_style_index_0_scoped_dca4c102_lang.css +1 -0
  19. package/components/alert/Alert.vue.d.ts +68 -0
  20. package/components/alert/Alert.vue.js +7 -0
  21. package/components/alert/Alert.vue2.js +86 -0
  22. package/components/alert/index.d.ts +82 -0
  23. package/components/alert/index.js +6 -0
  24. package/components/appHeader/AppHeader.vue.js +3 -3
  25. package/components/appHeader/AppHeader.vue2.js +41 -35
  26. package/components/button/v3/Button.vue.d.ts +6 -6
  27. package/components/button/v3/ButtonBase.vue.d.ts +1 -1
  28. package/components/button/v3/IconButton.vue.d.ts +1 -1
  29. package/components/button/v3/index.d.ts +34 -34
  30. package/components/button/v4/ButtonV4.vue.d.ts +1 -1
  31. package/components/button/v4/IconButtonV4.vue.d.ts +1 -1
  32. package/components/button/v4/index.d.ts +40 -40
  33. package/components/checkbox/v4/CheckboxV4.vue.js +4 -4
  34. package/components/checkbox/v4/CheckboxV4.vue2.js +2 -2
  35. package/components/checkbox/v4/icons/UncheckedDisabledState.vue.js +11 -12
  36. package/components/checkbox/v4/icons/UncheckedState.vue.js +12 -11
  37. package/components/dialog/v4/index.d.ts +1 -1
  38. package/components/dropdown/common/Dropdown.common.js +93 -92
  39. package/components/emptyState/v3/EmptyState.vue.d.ts +3 -3
  40. package/components/emptyState/v3/index.d.ts +7 -7
  41. package/components/emptyState/v4/EmptyStateV4.vue.d.ts +15 -0
  42. package/components/emptyState/v4/EmptyStateV4.vue.js +3 -3
  43. package/components/emptyState/v4/EmptyStateV4.vue2.js +41 -27
  44. package/components/emptyState/v4/index.d.ts +58 -1
  45. package/components/forms/CardPanel.vue.d.ts +20 -0
  46. package/components/forms/CardPanel.vue.js +2 -2
  47. package/components/forms/CardPanel.vue2.js +26 -14
  48. package/components/forms/FormCard.vue.d.ts +5 -0
  49. package/components/forms/FormCard.vue.js +3 -3
  50. package/components/forms/FormCard.vue2.js +62 -36
  51. package/components/forms/FormRow.vue.d.ts +10 -0
  52. package/components/forms/FormRow.vue.js +3 -3
  53. package/components/forms/FormRow.vue2.js +22 -29
  54. package/components/forms/index.d.ts +136 -3
  55. package/components/inlineCopy/InlineCopy.vue.js +2 -2
  56. package/components/inlineCopy/InlineCopy.vue2.js +2 -2
  57. package/components/input/v4/TextField.vue.d.ts +1 -1
  58. package/components/input/v4/TextField.vue.js +3 -3
  59. package/components/input/v4/TextField.vue2.js +83 -90
  60. package/components/input/v4/index.d.ts +20 -20
  61. package/components/radioButton/v4/RadioButtonV4.vue.js +4 -4
  62. package/components/radioButton/v4/RadioButtonV4.vue2.js +1 -1
  63. package/components/search/v3/Search.vue.d.ts +1 -1
  64. package/components/search/v3/index.d.ts +9 -9
  65. package/components/shared/FieldLabel.vue.d.ts +5 -0
  66. package/components/shared/FieldLabel.vue.js +3 -3
  67. package/components/shared/FieldLabel.vue2.js +63 -46
  68. package/components/shared/FieldMaxLength.vue.d.ts +34 -0
  69. package/components/shared/FieldMaxLength.vue.js +7 -0
  70. package/components/shared/FieldMaxLength.vue2.js +24 -0
  71. package/components/skeleton/v4/index.d.ts +2 -2
  72. package/components/snackbar/v4/SnackbarV4.vue.d.ts +12 -12
  73. package/components/table/common/Table.common.d.ts +1 -0
  74. package/components/table/common/Table.common.js +64 -60
  75. package/components/table/common/TableContext.d.ts +1 -0
  76. package/components/table/v4/DataGrid.vue.js +4 -4
  77. package/components/table/v4/DataGrid.vue2.js +71 -69
  78. package/components/table/v4/DataGridMenu.vue.d.ts +5 -5
  79. package/components/table/v4/DataGridMenu.vue.js +4 -4
  80. package/components/table/v4/DataGridMenu.vue2.js +46 -47
  81. package/components/table/v4/DataGridRowsCounter.vue.d.ts +15 -0
  82. package/components/table/v4/DataGridRowsCounter.vue.js +3 -3
  83. package/components/table/v4/DataGridRowsCounter.vue2.js +22 -19
  84. package/components/table/v4/index.d.ts +32 -5
  85. package/components/table-cells/common/Editable.common.js +15 -15
  86. package/components/table-cells/v4/EditableV4.vue.d.ts +10 -0
  87. package/components/table-cells/v4/EditableV4.vue.js +3 -3
  88. package/components/table-cells/v4/EditableV4.vue2.js +31 -22
  89. package/components/table-cells/v4/index.d.ts +43 -1
  90. package/components/tabs/v3/Tabs.vue.d.ts +1 -1
  91. package/components/tabs/v3/index.d.ts +20 -20
  92. package/components/textArea/v3/TextArea.vue.js +7 -0
  93. package/components/textArea/{TextArea.vue2.js → v3/TextArea.vue2.js} +4 -4
  94. package/components/textArea/v4/TextAreaV4.vue.d.ts +100 -0
  95. package/components/textArea/v4/TextAreaV4.vue.js +7 -0
  96. package/components/textArea/v4/TextAreaV4.vue2.js +74 -0
  97. package/components/textArea/v4/index.d.ts +136 -0
  98. package/components/textArea/v4/index.js +6 -0
  99. package/components/typography/index.d.ts +12 -12
  100. package/index.d.ts +661 -141
  101. package/index.js +113 -109
  102. package/package.json +7 -2
  103. package/testids/index.d.ts +7 -0
  104. package/testids/index.js +26 -25
  105. package/AppHeader.vue_vue_type_style_index_0_scoped_209ecc03_lang.css +0 -1
  106. package/CardPanel.vue_vue_type_style_index_0_scoped_d2b5d12f_lang.css +0 -1
  107. package/CheckboxV4.vue_vue_type_style_index_0_scoped_ee3e6d82_lang.css +0 -1
  108. package/DataGrid.vue_vue_type_style_index_0_scoped_d5635f1b_lang.css +0 -1
  109. package/DataGridMenu.vue_vue_type_style_index_0_scoped_92d83650_lang.css +0 -1
  110. package/DataGridRowsCounter.vue_vue_type_style_index_0_scoped_9e366543_lang.css +0 -1
  111. package/EditableV4.vue_vue_type_style_index_0_scoped_df325b51_lang.css +0 -1
  112. package/EmptyStateV4.vue_vue_type_style_index_0_scoped_b8373c2d_lang.css +0 -1
  113. package/FieldLabel.vue_vue_type_style_index_0_scoped_526af548_lang.css +0 -1
  114. package/FormCard.vue_vue_type_style_index_0_scoped_ad5e4be0_lang.css +0 -1
  115. package/FormRow.vue_vue_type_style_index_0_scoped_017dc22e_lang.css +0 -1
  116. package/InlineCopy.vue_vue_type_style_index_0_scoped_2f0a0202_lang.css +0 -1
  117. package/RadioButtonV4.vue_vue_type_style_index_0_scoped_14be812e_lang.css +0 -1
  118. package/TextArea.vue_vue_type_style_index_0_scoped_889b62ac_lang.css +0 -1
  119. package/TextField.vue_vue_type_style_index_0_scoped_473bab9b_lang.css +0 -1
  120. package/components/textArea/TextArea.vue.js +0 -7
  121. /package/components/textArea/{TextArea.vue.d.ts → v3/TextArea.vue.d.ts} +0 -0
  122. /package/components/textArea/{index.d.ts → v3/index.d.ts} +0 -0
  123. /package/components/textArea/{index.js → v3/index.js} +0 -0
package/index.d.ts CHANGED
@@ -1118,6 +1118,274 @@ declare const _default: {
1118
1118
  default?(_: {}): any;
1119
1119
  };
1120
1120
  })))[];
1121
+ TextArea: import("vue").DefineComponent<{
1122
+ label: {
1123
+ type: import("vue").PropType<string>;
1124
+ default: string;
1125
+ };
1126
+ disabled: {
1127
+ type: import("vue").PropType<boolean>;
1128
+ default: boolean;
1129
+ };
1130
+ height: {
1131
+ type: import("vue").PropType<string>;
1132
+ default: any;
1133
+ };
1134
+ resize: {
1135
+ type: import("vue").PropType<"both" | "none" | "horizontal" | "vertical">;
1136
+ default: string;
1137
+ };
1138
+ mandatory: {
1139
+ type: import("vue").PropType<boolean>;
1140
+ default: boolean;
1141
+ };
1142
+ testId: {
1143
+ type: import("vue").PropType<string>;
1144
+ default: string;
1145
+ };
1146
+ modelValue: {
1147
+ type: import("vue").PropType<string>;
1148
+ default: string;
1149
+ };
1150
+ placeholder: {
1151
+ type: import("vue").PropType<string>;
1152
+ default: string;
1153
+ };
1154
+ hoverHelpText: {
1155
+ type: import("vue").PropType<string>;
1156
+ default: string;
1157
+ };
1158
+ hoverHelpTextPlacement: {
1159
+ type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
1160
+ default: string;
1161
+ };
1162
+ feedbackText: {
1163
+ type: import("vue").PropType<string>;
1164
+ default: string;
1165
+ };
1166
+ feedbackVariant: {
1167
+ type: import("vue").PropType<"success" | "warning" | "error">;
1168
+ default: any;
1169
+ };
1170
+ maxLength: {
1171
+ type: import("vue").PropType<number>;
1172
+ default: any;
1173
+ };
1174
+ showFeedbackTextIcon: {
1175
+ type: import("vue").PropType<boolean>;
1176
+ default: boolean;
1177
+ };
1178
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1179
+ "update:modelValue": (value: string) => void;
1180
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1181
+ label: {
1182
+ type: import("vue").PropType<string>;
1183
+ default: string;
1184
+ };
1185
+ disabled: {
1186
+ type: import("vue").PropType<boolean>;
1187
+ default: boolean;
1188
+ };
1189
+ height: {
1190
+ type: import("vue").PropType<string>;
1191
+ default: any;
1192
+ };
1193
+ resize: {
1194
+ type: import("vue").PropType<"both" | "none" | "horizontal" | "vertical">;
1195
+ default: string;
1196
+ };
1197
+ mandatory: {
1198
+ type: import("vue").PropType<boolean>;
1199
+ default: boolean;
1200
+ };
1201
+ testId: {
1202
+ type: import("vue").PropType<string>;
1203
+ default: string;
1204
+ };
1205
+ modelValue: {
1206
+ type: import("vue").PropType<string>;
1207
+ default: string;
1208
+ };
1209
+ placeholder: {
1210
+ type: import("vue").PropType<string>;
1211
+ default: string;
1212
+ };
1213
+ hoverHelpText: {
1214
+ type: import("vue").PropType<string>;
1215
+ default: string;
1216
+ };
1217
+ hoverHelpTextPlacement: {
1218
+ type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
1219
+ default: string;
1220
+ };
1221
+ feedbackText: {
1222
+ type: import("vue").PropType<string>;
1223
+ default: string;
1224
+ };
1225
+ feedbackVariant: {
1226
+ type: import("vue").PropType<"success" | "warning" | "error">;
1227
+ default: any;
1228
+ };
1229
+ maxLength: {
1230
+ type: import("vue").PropType<number>;
1231
+ default: any;
1232
+ };
1233
+ showFeedbackTextIcon: {
1234
+ type: import("vue").PropType<boolean>;
1235
+ default: boolean;
1236
+ };
1237
+ }>> & {
1238
+ "onUpdate:modelValue"?: (value: string) => any;
1239
+ }, {
1240
+ label: string;
1241
+ disabled: boolean;
1242
+ height: string;
1243
+ resize: "both" | "none" | "horizontal" | "vertical";
1244
+ mandatory: boolean;
1245
+ testId: string;
1246
+ modelValue: string;
1247
+ placeholder: string;
1248
+ hoverHelpText: string;
1249
+ hoverHelpTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
1250
+ feedbackText: string;
1251
+ feedbackVariant: "success" | "warning" | "error";
1252
+ maxLength: number;
1253
+ showFeedbackTextIcon: boolean;
1254
+ }>;
1255
+ TextAreaTypes: () => import("vue").DefineComponent<{
1256
+ label: {
1257
+ type: import("vue").PropType<string>;
1258
+ default: string;
1259
+ };
1260
+ disabled: {
1261
+ type: import("vue").PropType<boolean>;
1262
+ default: boolean;
1263
+ };
1264
+ height: {
1265
+ type: import("vue").PropType<string>;
1266
+ default: any;
1267
+ };
1268
+ resize: {
1269
+ type: import("vue").PropType<"both" | "none" | "horizontal" | "vertical">;
1270
+ default: string;
1271
+ };
1272
+ mandatory: {
1273
+ type: import("vue").PropType<boolean>;
1274
+ default: boolean;
1275
+ };
1276
+ testId: {
1277
+ type: import("vue").PropType<string>;
1278
+ default: string;
1279
+ };
1280
+ modelValue: {
1281
+ type: import("vue").PropType<string>;
1282
+ default: string;
1283
+ };
1284
+ placeholder: {
1285
+ type: import("vue").PropType<string>;
1286
+ default: string;
1287
+ };
1288
+ hoverHelpText: {
1289
+ type: import("vue").PropType<string>;
1290
+ default: string;
1291
+ };
1292
+ hoverHelpTextPlacement: {
1293
+ type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
1294
+ default: string;
1295
+ };
1296
+ feedbackText: {
1297
+ type: import("vue").PropType<string>;
1298
+ default: string;
1299
+ };
1300
+ feedbackVariant: {
1301
+ type: import("vue").PropType<"success" | "warning" | "error">;
1302
+ default: any;
1303
+ };
1304
+ maxLength: {
1305
+ type: import("vue").PropType<number>;
1306
+ default: any;
1307
+ };
1308
+ showFeedbackTextIcon: {
1309
+ type: import("vue").PropType<boolean>;
1310
+ default: boolean;
1311
+ };
1312
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1313
+ "update:modelValue": (value: string) => void;
1314
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1315
+ label: {
1316
+ type: import("vue").PropType<string>;
1317
+ default: string;
1318
+ };
1319
+ disabled: {
1320
+ type: import("vue").PropType<boolean>;
1321
+ default: boolean;
1322
+ };
1323
+ height: {
1324
+ type: import("vue").PropType<string>;
1325
+ default: any;
1326
+ };
1327
+ resize: {
1328
+ type: import("vue").PropType<"both" | "none" | "horizontal" | "vertical">;
1329
+ default: string;
1330
+ };
1331
+ mandatory: {
1332
+ type: import("vue").PropType<boolean>;
1333
+ default: boolean;
1334
+ };
1335
+ testId: {
1336
+ type: import("vue").PropType<string>;
1337
+ default: string;
1338
+ };
1339
+ modelValue: {
1340
+ type: import("vue").PropType<string>;
1341
+ default: string;
1342
+ };
1343
+ placeholder: {
1344
+ type: import("vue").PropType<string>;
1345
+ default: string;
1346
+ };
1347
+ hoverHelpText: {
1348
+ type: import("vue").PropType<string>;
1349
+ default: string;
1350
+ };
1351
+ hoverHelpTextPlacement: {
1352
+ type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
1353
+ default: string;
1354
+ };
1355
+ feedbackText: {
1356
+ type: import("vue").PropType<string>;
1357
+ default: string;
1358
+ };
1359
+ feedbackVariant: {
1360
+ type: import("vue").PropType<"success" | "warning" | "error">;
1361
+ default: any;
1362
+ };
1363
+ maxLength: {
1364
+ type: import("vue").PropType<number>;
1365
+ default: any;
1366
+ };
1367
+ showFeedbackTextIcon: {
1368
+ type: import("vue").PropType<boolean>;
1369
+ default: boolean;
1370
+ };
1371
+ }>> & {
1372
+ "onUpdate:modelValue"?: (value: string) => any;
1373
+ }, {
1374
+ label: string;
1375
+ disabled: boolean;
1376
+ height: string;
1377
+ resize: "both" | "none" | "horizontal" | "vertical";
1378
+ mandatory: boolean;
1379
+ testId: string;
1380
+ modelValue: string;
1381
+ placeholder: string;
1382
+ hoverHelpText: string;
1383
+ hoverHelpTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
1384
+ feedbackText: string;
1385
+ feedbackVariant: "success" | "warning" | "error";
1386
+ maxLength: number;
1387
+ showFeedbackTextIcon: boolean;
1388
+ }>[];
1121
1389
  Checkbox: {
1122
1390
  new (...args: any[]): {
1123
1391
  $: import("vue").ComponentInternalInstance;
@@ -1425,7 +1693,7 @@ declare const _default: {
1425
1693
  destroy: () => boolean;
1426
1694
  };
1427
1695
  snackbarTypes: readonly ["success", "info", "error"];
1428
- Skeleton: {
1696
+ SkeletonTypes: () => ({
1429
1697
  new (...args: any[]): {
1430
1698
  $: import("vue").ComponentInternalInstance;
1431
1699
  $data: {};
@@ -1516,8 +1784,8 @@ declare const _default: {
1516
1784
  $slots: {
1517
1785
  default?(_: {}): any;
1518
1786
  };
1519
- });
1520
- SkeletonTypes: () => ({
1787
+ }))[];
1788
+ Skeleton: {
1521
1789
  new (...args: any[]): {
1522
1790
  $: import("vue").ComponentInternalInstance;
1523
1791
  $data: {};
@@ -1608,7 +1876,7 @@ declare const _default: {
1608
1876
  $slots: {
1609
1877
  default?(_: {}): any;
1610
1878
  };
1611
- }))[];
1879
+ });
1612
1880
  EmptyState: {
1613
1881
  new (...args: any[]): {
1614
1882
  $: import("vue").ComponentInternalInstance;
@@ -1616,7 +1884,10 @@ declare const _default: {
1616
1884
  $props: Partial<{
1617
1885
  title: string;
1618
1886
  variant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
1887
+ iconName: string;
1888
+ iconSize: string;
1619
1889
  subtitle: string;
1890
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
1620
1891
  buttonText: string;
1621
1892
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
1622
1893
  title: {
@@ -1627,17 +1898,29 @@ declare const _default: {
1627
1898
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
1628
1899
  default: string;
1629
1900
  };
1901
+ iconName: {
1902
+ type: import("vue").PropType<string>;
1903
+ default: any;
1904
+ };
1905
+ iconSize: {
1906
+ type: import("vue").PropType<string>;
1907
+ default: string;
1908
+ };
1630
1909
  subtitle: {
1631
1910
  type: import("vue").PropType<string>;
1632
1911
  default: any;
1633
1912
  };
1913
+ iconType: {
1914
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
1915
+ default: string;
1916
+ };
1634
1917
  buttonText: {
1635
1918
  type: import("vue").PropType<string>;
1636
1919
  default: any;
1637
1920
  };
1638
1921
  }>> & {
1639
1922
  onClick?: () => any;
1640
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "variant" | "subtitle" | "buttonText">;
1923
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "variant" | "iconName" | "iconSize" | "subtitle" | "iconType" | "buttonText">;
1641
1924
  $attrs: {
1642
1925
  [x: string]: unknown;
1643
1926
  };
@@ -1660,10 +1943,22 @@ declare const _default: {
1660
1943
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
1661
1944
  default: string;
1662
1945
  };
1946
+ iconName: {
1947
+ type: import("vue").PropType<string>;
1948
+ default: any;
1949
+ };
1950
+ iconSize: {
1951
+ type: import("vue").PropType<string>;
1952
+ default: string;
1953
+ };
1663
1954
  subtitle: {
1664
1955
  type: import("vue").PropType<string>;
1665
1956
  default: any;
1666
1957
  };
1958
+ iconType: {
1959
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
1960
+ default: string;
1961
+ };
1667
1962
  buttonText: {
1668
1963
  type: import("vue").PropType<string>;
1669
1964
  default: any;
@@ -1675,7 +1970,10 @@ declare const _default: {
1675
1970
  }, string, {
1676
1971
  title: string;
1677
1972
  variant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
1973
+ iconName: string;
1974
+ iconSize: string;
1678
1975
  subtitle: string;
1976
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
1679
1977
  buttonText: string;
1680
1978
  }, {}, string> & {
1681
1979
  beforeCreate?: (() => void) | (() => void)[];
@@ -1706,10 +2004,22 @@ declare const _default: {
1706
2004
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
1707
2005
  default: string;
1708
2006
  };
2007
+ iconName: {
2008
+ type: import("vue").PropType<string>;
2009
+ default: any;
2010
+ };
2011
+ iconSize: {
2012
+ type: import("vue").PropType<string>;
2013
+ default: string;
2014
+ };
1709
2015
  subtitle: {
1710
2016
  type: import("vue").PropType<string>;
1711
2017
  default: any;
1712
2018
  };
2019
+ iconType: {
2020
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
2021
+ default: string;
2022
+ };
1713
2023
  buttonText: {
1714
2024
  type: import("vue").PropType<string>;
1715
2025
  default: any;
@@ -1729,10 +2039,22 @@ declare const _default: {
1729
2039
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
1730
2040
  default: string;
1731
2041
  };
2042
+ iconName: {
2043
+ type: import("vue").PropType<string>;
2044
+ default: any;
2045
+ };
2046
+ iconSize: {
2047
+ type: import("vue").PropType<string>;
2048
+ default: string;
2049
+ };
1732
2050
  subtitle: {
1733
2051
  type: import("vue").PropType<string>;
1734
2052
  default: any;
1735
2053
  };
2054
+ iconType: {
2055
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
2056
+ default: string;
2057
+ };
1736
2058
  buttonText: {
1737
2059
  type: import("vue").PropType<string>;
1738
2060
  default: any;
@@ -1744,7 +2066,10 @@ declare const _default: {
1744
2066
  }, string, {
1745
2067
  title: string;
1746
2068
  variant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
2069
+ iconName: string;
2070
+ iconSize: string;
1747
2071
  subtitle: string;
2072
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
1748
2073
  buttonText: string;
1749
2074
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
1750
2075
  $slots: {
@@ -1759,7 +2084,10 @@ declare const _default: {
1759
2084
  $props: Partial<{
1760
2085
  title: string;
1761
2086
  variant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
2087
+ iconName: string;
2088
+ iconSize: string;
1762
2089
  subtitle: string;
2090
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
1763
2091
  buttonText: string;
1764
2092
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
1765
2093
  title: {
@@ -1770,17 +2098,29 @@ declare const _default: {
1770
2098
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
1771
2099
  default: string;
1772
2100
  };
2101
+ iconName: {
2102
+ type: import("vue").PropType<string>;
2103
+ default: any;
2104
+ };
2105
+ iconSize: {
2106
+ type: import("vue").PropType<string>;
2107
+ default: string;
2108
+ };
1773
2109
  subtitle: {
1774
2110
  type: import("vue").PropType<string>;
1775
2111
  default: any;
1776
2112
  };
2113
+ iconType: {
2114
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
2115
+ default: string;
2116
+ };
1777
2117
  buttonText: {
1778
2118
  type: import("vue").PropType<string>;
1779
2119
  default: any;
1780
2120
  };
1781
2121
  }>> & {
1782
2122
  onClick?: () => any;
1783
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "variant" | "subtitle" | "buttonText">;
2123
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "variant" | "iconName" | "iconSize" | "subtitle" | "iconType" | "buttonText">;
1784
2124
  $attrs: {
1785
2125
  [x: string]: unknown;
1786
2126
  };
@@ -1803,10 +2143,22 @@ declare const _default: {
1803
2143
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
1804
2144
  default: string;
1805
2145
  };
2146
+ iconName: {
2147
+ type: import("vue").PropType<string>;
2148
+ default: any;
2149
+ };
2150
+ iconSize: {
2151
+ type: import("vue").PropType<string>;
2152
+ default: string;
2153
+ };
1806
2154
  subtitle: {
1807
2155
  type: import("vue").PropType<string>;
1808
2156
  default: any;
1809
2157
  };
2158
+ iconType: {
2159
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
2160
+ default: string;
2161
+ };
1810
2162
  buttonText: {
1811
2163
  type: import("vue").PropType<string>;
1812
2164
  default: any;
@@ -1818,7 +2170,10 @@ declare const _default: {
1818
2170
  }, string, {
1819
2171
  title: string;
1820
2172
  variant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
2173
+ iconName: string;
2174
+ iconSize: string;
1821
2175
  subtitle: string;
2176
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
1822
2177
  buttonText: string;
1823
2178
  }, {}, string> & {
1824
2179
  beforeCreate?: (() => void) | (() => void)[];
@@ -1849,10 +2204,22 @@ declare const _default: {
1849
2204
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
1850
2205
  default: string;
1851
2206
  };
2207
+ iconName: {
2208
+ type: import("vue").PropType<string>;
2209
+ default: any;
2210
+ };
2211
+ iconSize: {
2212
+ type: import("vue").PropType<string>;
2213
+ default: string;
2214
+ };
1852
2215
  subtitle: {
1853
2216
  type: import("vue").PropType<string>;
1854
2217
  default: any;
1855
2218
  };
2219
+ iconType: {
2220
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
2221
+ default: string;
2222
+ };
1856
2223
  buttonText: {
1857
2224
  type: import("vue").PropType<string>;
1858
2225
  default: any;
@@ -1872,10 +2239,22 @@ declare const _default: {
1872
2239
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
1873
2240
  default: string;
1874
2241
  };
2242
+ iconName: {
2243
+ type: import("vue").PropType<string>;
2244
+ default: any;
2245
+ };
2246
+ iconSize: {
2247
+ type: import("vue").PropType<string>;
2248
+ default: string;
2249
+ };
1875
2250
  subtitle: {
1876
2251
  type: import("vue").PropType<string>;
1877
2252
  default: any;
1878
2253
  };
2254
+ iconType: {
2255
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
2256
+ default: string;
2257
+ };
1879
2258
  buttonText: {
1880
2259
  type: import("vue").PropType<string>;
1881
2260
  default: any;
@@ -1887,7 +2266,10 @@ declare const _default: {
1887
2266
  }, string, {
1888
2267
  title: string;
1889
2268
  variant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
2269
+ iconName: string;
2270
+ iconSize: string;
1890
2271
  subtitle: string;
2272
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
1891
2273
  buttonText: string;
1892
2274
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
1893
2275
  $slots: {
@@ -1900,14 +2282,25 @@ declare const _default: {
1900
2282
  $: import("vue").ComponentInternalInstance;
1901
2283
  $data: {};
1902
2284
  $props: Partial<{
2285
+ type: "input" | "dropdown";
1903
2286
  cell: string;
2287
+ displayValue: (option: unknown) => unknown;
1904
2288
  validateFunction: (value: unknown) => string | boolean;
1905
2289
  isLoading: boolean;
1906
2290
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
2291
+ type: {
2292
+ type: import("vue").PropType<"input" | "dropdown">;
2293
+ required: true;
2294
+ default: string;
2295
+ };
1907
2296
  cell: {
1908
2297
  type: import("vue").PropType<string>;
1909
2298
  default: string;
1910
2299
  };
2300
+ displayValue: {
2301
+ type: import("vue").PropType<(option: unknown) => unknown>;
2302
+ default: (cell: unknown) => unknown;
2303
+ };
1911
2304
  validateFunction: {
1912
2305
  type: import("vue").PropType<(value: unknown) => string | boolean>;
1913
2306
  default: () => false;
@@ -1924,7 +2317,7 @@ declare const _default: {
1924
2317
  type: import("vue").PropType<number>;
1925
2318
  required: true;
1926
2319
  };
1927
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "cell" | "validateFunction" | "isLoading">;
2320
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "cell" | "displayValue" | "validateFunction" | "isLoading">;
1928
2321
  $attrs: {
1929
2322
  [x: string]: unknown;
1930
2323
  };
@@ -1939,10 +2332,19 @@ declare const _default: {
1939
2332
  $emit: (event: string, ...args: any[]) => void;
1940
2333
  $el: any;
1941
2334
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2335
+ type: {
2336
+ type: import("vue").PropType<"input" | "dropdown">;
2337
+ required: true;
2338
+ default: string;
2339
+ };
1942
2340
  cell: {
1943
2341
  type: import("vue").PropType<string>;
1944
2342
  default: string;
1945
2343
  };
2344
+ displayValue: {
2345
+ type: import("vue").PropType<(option: unknown) => unknown>;
2346
+ default: (cell: unknown) => unknown;
2347
+ };
1946
2348
  validateFunction: {
1947
2349
  type: import("vue").PropType<(value: unknown) => string | boolean>;
1948
2350
  default: () => false;
@@ -1960,7 +2362,9 @@ declare const _default: {
1960
2362
  required: true;
1961
2363
  };
1962
2364
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
2365
+ type: "input" | "dropdown";
1963
2366
  cell: string;
2367
+ displayValue: (option: unknown) => unknown;
1964
2368
  validateFunction: (value: unknown) => string | boolean;
1965
2369
  isLoading: boolean;
1966
2370
  }, {}, string> & {
@@ -1984,10 +2388,19 @@ declare const _default: {
1984
2388
  $nextTick: typeof import("vue").nextTick;
1985
2389
  $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;
1986
2390
  } & Readonly<import("vue").ExtractPropTypes<{
2391
+ type: {
2392
+ type: import("vue").PropType<"input" | "dropdown">;
2393
+ required: true;
2394
+ default: string;
2395
+ };
1987
2396
  cell: {
1988
2397
  type: import("vue").PropType<string>;
1989
2398
  default: string;
1990
2399
  };
2400
+ displayValue: {
2401
+ type: import("vue").PropType<(option: unknown) => unknown>;
2402
+ default: (cell: unknown) => unknown;
2403
+ };
1991
2404
  validateFunction: {
1992
2405
  type: import("vue").PropType<(value: unknown) => string | boolean>;
1993
2406
  default: () => false;
@@ -2009,10 +2422,19 @@ declare const _default: {
2009
2422
  __isTeleport?: never;
2010
2423
  __isSuspense?: never;
2011
2424
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2425
+ type: {
2426
+ type: import("vue").PropType<"input" | "dropdown">;
2427
+ required: true;
2428
+ default: string;
2429
+ };
2012
2430
  cell: {
2013
2431
  type: import("vue").PropType<string>;
2014
2432
  default: string;
2015
2433
  };
2434
+ displayValue: {
2435
+ type: import("vue").PropType<(option: unknown) => unknown>;
2436
+ default: (cell: unknown) => unknown;
2437
+ };
2016
2438
  validateFunction: {
2017
2439
  type: import("vue").PropType<(value: unknown) => string | boolean>;
2018
2440
  default: () => false;
@@ -2030,7 +2452,9 @@ declare const _default: {
2030
2452
  required: true;
2031
2453
  };
2032
2454
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
2455
+ type: "input" | "dropdown";
2033
2456
  cell: string;
2457
+ displayValue: (option: unknown) => unknown;
2034
2458
  validateFunction: (value: unknown) => string | boolean;
2035
2459
  isLoading: boolean;
2036
2460
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
@@ -2044,14 +2468,25 @@ declare const _default: {
2044
2468
  $: import("vue").ComponentInternalInstance;
2045
2469
  $data: {};
2046
2470
  $props: Partial<{
2471
+ type: "input" | "dropdown";
2047
2472
  cell: string;
2473
+ displayValue: (option: unknown) => unknown;
2048
2474
  validateFunction: (value: unknown) => string | boolean;
2049
2475
  isLoading: boolean;
2050
2476
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
2477
+ type: {
2478
+ type: import("vue").PropType<"input" | "dropdown">;
2479
+ required: true;
2480
+ default: string;
2481
+ };
2051
2482
  cell: {
2052
2483
  type: import("vue").PropType<string>;
2053
2484
  default: string;
2054
2485
  };
2486
+ displayValue: {
2487
+ type: import("vue").PropType<(option: unknown) => unknown>;
2488
+ default: (cell: unknown) => unknown;
2489
+ };
2055
2490
  validateFunction: {
2056
2491
  type: import("vue").PropType<(value: unknown) => string | boolean>;
2057
2492
  default: () => false;
@@ -2068,7 +2503,7 @@ declare const _default: {
2068
2503
  type: import("vue").PropType<number>;
2069
2504
  required: true;
2070
2505
  };
2071
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "cell" | "validateFunction" | "isLoading">;
2506
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "cell" | "displayValue" | "validateFunction" | "isLoading">;
2072
2507
  $attrs: {
2073
2508
  [x: string]: unknown;
2074
2509
  };
@@ -2083,10 +2518,19 @@ declare const _default: {
2083
2518
  $emit: (event: string, ...args: any[]) => void;
2084
2519
  $el: any;
2085
2520
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2521
+ type: {
2522
+ type: import("vue").PropType<"input" | "dropdown">;
2523
+ required: true;
2524
+ default: string;
2525
+ };
2086
2526
  cell: {
2087
2527
  type: import("vue").PropType<string>;
2088
2528
  default: string;
2089
2529
  };
2530
+ displayValue: {
2531
+ type: import("vue").PropType<(option: unknown) => unknown>;
2532
+ default: (cell: unknown) => unknown;
2533
+ };
2090
2534
  validateFunction: {
2091
2535
  type: import("vue").PropType<(value: unknown) => string | boolean>;
2092
2536
  default: () => false;
@@ -2104,7 +2548,9 @@ declare const _default: {
2104
2548
  required: true;
2105
2549
  };
2106
2550
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
2551
+ type: "input" | "dropdown";
2107
2552
  cell: string;
2553
+ displayValue: (option: unknown) => unknown;
2108
2554
  validateFunction: (value: unknown) => string | boolean;
2109
2555
  isLoading: boolean;
2110
2556
  }, {}, string> & {
@@ -2128,10 +2574,19 @@ declare const _default: {
2128
2574
  $nextTick: typeof import("vue").nextTick;
2129
2575
  $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;
2130
2576
  } & Readonly<import("vue").ExtractPropTypes<{
2577
+ type: {
2578
+ type: import("vue").PropType<"input" | "dropdown">;
2579
+ required: true;
2580
+ default: string;
2581
+ };
2131
2582
  cell: {
2132
2583
  type: import("vue").PropType<string>;
2133
2584
  default: string;
2134
2585
  };
2586
+ displayValue: {
2587
+ type: import("vue").PropType<(option: unknown) => unknown>;
2588
+ default: (cell: unknown) => unknown;
2589
+ };
2135
2590
  validateFunction: {
2136
2591
  type: import("vue").PropType<(value: unknown) => string | boolean>;
2137
2592
  default: () => false;
@@ -2153,10 +2608,19 @@ declare const _default: {
2153
2608
  __isTeleport?: never;
2154
2609
  __isSuspense?: never;
2155
2610
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2611
+ type: {
2612
+ type: import("vue").PropType<"input" | "dropdown">;
2613
+ required: true;
2614
+ default: string;
2615
+ };
2156
2616
  cell: {
2157
2617
  type: import("vue").PropType<string>;
2158
2618
  default: string;
2159
2619
  };
2620
+ displayValue: {
2621
+ type: import("vue").PropType<(option: unknown) => unknown>;
2622
+ default: (cell: unknown) => unknown;
2623
+ };
2160
2624
  validateFunction: {
2161
2625
  type: import("vue").PropType<(value: unknown) => string | boolean>;
2162
2626
  default: () => false;
@@ -2174,7 +2638,9 @@ declare const _default: {
2174
2638
  required: true;
2175
2639
  };
2176
2640
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
2641
+ type: "input" | "dropdown";
2177
2642
  cell: string;
2643
+ displayValue: (option: unknown) => unknown;
2178
2644
  validateFunction: (value: unknown) => string | boolean;
2179
2645
  isLoading: boolean;
2180
2646
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
@@ -2804,8 +3270,8 @@ declare const _default: {
2804
3270
  };
2805
3271
  });
2806
3272
  DataGridMenu: import("vue").DefineComponent<{
2807
- container: {
2808
- type: import("vue").PropType<string>;
3273
+ rowIndex: {
3274
+ type: import("vue").PropType<number>;
2809
3275
  default: any;
2810
3276
  };
2811
3277
  menuItems: {
@@ -2816,8 +3282,8 @@ declare const _default: {
2816
3282
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2817
3283
  selected: (option: unknown) => void;
2818
3284
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2819
- container: {
2820
- type: import("vue").PropType<string>;
3285
+ rowIndex: {
3286
+ type: import("vue").PropType<number>;
2821
3287
  default: any;
2822
3288
  };
2823
3289
  menuItems: {
@@ -2828,7 +3294,7 @@ declare const _default: {
2828
3294
  }>> & {
2829
3295
  onSelected?: (option: unknown) => any;
2830
3296
  }, {
2831
- container: string;
3297
+ rowIndex: number;
2832
3298
  menuItems: tableV4.MenuItem[];
2833
3299
  }>;
2834
3300
  DataGridRowsCounter: import("vue").DefineComponent<{
@@ -2840,6 +3306,18 @@ declare const _default: {
2840
3306
  type: import("vue").PropType<number>;
2841
3307
  default: number;
2842
3308
  };
3309
+ displayingText: {
3310
+ type: import("vue").PropType<string>;
3311
+ default: string;
3312
+ };
3313
+ outOfText: {
3314
+ type: import("vue").PropType<string>;
3315
+ default: string;
3316
+ };
3317
+ totalText: {
3318
+ type: import("vue").PropType<string>;
3319
+ default: string;
3320
+ };
2843
3321
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2844
3322
  count: {
2845
3323
  type: import("vue").PropType<number>;
@@ -2849,9 +3327,24 @@ declare const _default: {
2849
3327
  type: import("vue").PropType<number>;
2850
3328
  default: number;
2851
3329
  };
3330
+ displayingText: {
3331
+ type: import("vue").PropType<string>;
3332
+ default: string;
3333
+ };
3334
+ outOfText: {
3335
+ type: import("vue").PropType<string>;
3336
+ default: string;
3337
+ };
3338
+ totalText: {
3339
+ type: import("vue").PropType<string>;
3340
+ default: string;
3341
+ };
2852
3342
  }>>, {
2853
3343
  count: number;
2854
3344
  totalCount: number;
3345
+ displayingText: string;
3346
+ outOfText: string;
3347
+ totalText: string;
2855
3348
  }>;
2856
3349
  DataGridTypes: () => (({
2857
3350
  new (...args: any[]): {
@@ -3471,8 +3964,8 @@ declare const _default: {
3471
3964
  footer?(_: {}): any;
3472
3965
  };
3473
3966
  })) | import("vue").DefineComponent<{
3474
- container: {
3475
- type: import("vue").PropType<string>;
3967
+ rowIndex: {
3968
+ type: import("vue").PropType<number>;
3476
3969
  default: any;
3477
3970
  };
3478
3971
  menuItems: {
@@ -3483,8 +3976,8 @@ declare const _default: {
3483
3976
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3484
3977
  selected: (option: unknown) => void;
3485
3978
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
3486
- container: {
3487
- type: import("vue").PropType<string>;
3979
+ rowIndex: {
3980
+ type: import("vue").PropType<number>;
3488
3981
  default: any;
3489
3982
  };
3490
3983
  menuItems: {
@@ -3495,7 +3988,7 @@ declare const _default: {
3495
3988
  }>> & {
3496
3989
  onSelected?: (option: unknown) => any;
3497
3990
  }, {
3498
- container: string;
3991
+ rowIndex: number;
3499
3992
  menuItems: tableV4.MenuItem[];
3500
3993
  }> | import("vue").DefineComponent<{
3501
3994
  count: {
@@ -3506,6 +3999,18 @@ declare const _default: {
3506
3999
  type: import("vue").PropType<number>;
3507
4000
  default: number;
3508
4001
  };
4002
+ displayingText: {
4003
+ type: import("vue").PropType<string>;
4004
+ default: string;
4005
+ };
4006
+ outOfText: {
4007
+ type: import("vue").PropType<string>;
4008
+ default: string;
4009
+ };
4010
+ totalText: {
4011
+ type: import("vue").PropType<string>;
4012
+ default: string;
4013
+ };
3509
4014
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
3510
4015
  count: {
3511
4016
  type: import("vue").PropType<number>;
@@ -3515,9 +4020,24 @@ declare const _default: {
3515
4020
  type: import("vue").PropType<number>;
3516
4021
  default: number;
3517
4022
  };
4023
+ displayingText: {
4024
+ type: import("vue").PropType<string>;
4025
+ default: string;
4026
+ };
4027
+ outOfText: {
4028
+ type: import("vue").PropType<string>;
4029
+ default: string;
4030
+ };
4031
+ totalText: {
4032
+ type: import("vue").PropType<string>;
4033
+ default: string;
4034
+ };
3518
4035
  }>>, {
3519
4036
  count: number;
3520
4037
  totalCount: number;
4038
+ displayingText: string;
4039
+ outOfText: string;
4040
+ totalText: string;
3521
4041
  }>)[];
3522
4042
  Table: {
3523
4043
  new (...args: any[]): {
@@ -5612,7 +6132,7 @@ declare const _default: {
5612
6132
  }>;
5613
6133
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
5614
6134
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
5615
- $emit: ((event: "open") => void) & ((event: "cancel") => void) & ((event: "close", reason: dialogV3.Reason) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "save") => void);
6135
+ $emit: ((event: "open") => void) & ((event: "close", reason: dialogV3.Reason) => void) & ((event: "cancel") => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "save") => void);
5616
6136
  $el: any;
5617
6137
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
5618
6138
  title: {
@@ -6081,7 +6601,7 @@ declare const _default: {
6081
6601
  }>;
6082
6602
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
6083
6603
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
6084
- $emit: ((event: "open") => void) & ((event: "cancel") => void) & ((event: "close", reason: dialogV3.Reason) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "save") => void);
6604
+ $emit: ((event: "open") => void) & ((event: "close", reason: dialogV3.Reason) => void) & ((event: "cancel") => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "save") => void);
6085
6605
  $el: any;
6086
6606
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
6087
6607
  title: {
@@ -7694,13 +8214,13 @@ declare const _default: {
7694
8214
  hoverHelpTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
7695
8215
  feedbackText: string;
7696
8216
  feedbackVariant: "success" | "warning" | "error";
8217
+ maxLength: number;
7697
8218
  viewOnly: boolean;
7698
8219
  labelDirection: "top" | "inside";
7699
8220
  hideNumberArrows: boolean;
7700
8221
  step: number;
7701
8222
  onlyDigits: boolean;
7702
8223
  suffix: string;
7703
- maxLength: number;
7704
8224
  showApply: boolean;
7705
8225
  inlineError: boolean;
7706
8226
  inlineErrorText: string;
@@ -7762,6 +8282,10 @@ declare const _default: {
7762
8282
  type: import("vue").PropType<"success" | "warning" | "error">;
7763
8283
  default: any;
7764
8284
  };
8285
+ maxLength: {
8286
+ type: import("vue").PropType<number>;
8287
+ default: any;
8288
+ };
7765
8289
  viewOnly: {
7766
8290
  type: import("vue").PropType<boolean>;
7767
8291
  default: boolean;
@@ -7786,10 +8310,6 @@ declare const _default: {
7786
8310
  type: import("vue").PropType<string>;
7787
8311
  default: string;
7788
8312
  };
7789
- maxLength: {
7790
- type: import("vue").PropType<number>;
7791
- default: any;
7792
- };
7793
8313
  showApply: {
7794
8314
  type: import("vue").PropType<boolean>;
7795
8315
  default: boolean;
@@ -7809,7 +8329,7 @@ declare const _default: {
7809
8329
  }>> & {
7810
8330
  "onUpdate:modelValue"?: (value: string | number) => any;
7811
8331
  onApply?: () => any;
7812
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "modelValue" | "placeholder" | "autoFocus" | "prefix" | "hoverHelpText" | "hoverHelpTextPlacement" | "feedbackText" | "feedbackVariant" | "viewOnly" | "labelDirection" | "hideNumberArrows" | "step" | "onlyDigits" | "suffix" | "maxLength" | "showApply" | "inlineError" | "inlineErrorText" | "showFeedbackTextIcon">;
8332
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "modelValue" | "placeholder" | "autoFocus" | "prefix" | "hoverHelpText" | "hoverHelpTextPlacement" | "feedbackText" | "feedbackVariant" | "maxLength" | "viewOnly" | "labelDirection" | "hideNumberArrows" | "step" | "onlyDigits" | "suffix" | "showApply" | "inlineError" | "inlineErrorText" | "showFeedbackTextIcon">;
7813
8333
  $attrs: {
7814
8334
  [x: string]: unknown;
7815
8335
  };
@@ -7880,6 +8400,10 @@ declare const _default: {
7880
8400
  type: import("vue").PropType<"success" | "warning" | "error">;
7881
8401
  default: any;
7882
8402
  };
8403
+ maxLength: {
8404
+ type: import("vue").PropType<number>;
8405
+ default: any;
8406
+ };
7883
8407
  viewOnly: {
7884
8408
  type: import("vue").PropType<boolean>;
7885
8409
  default: boolean;
@@ -7904,10 +8428,6 @@ declare const _default: {
7904
8428
  type: import("vue").PropType<string>;
7905
8429
  default: string;
7906
8430
  };
7907
- maxLength: {
7908
- type: import("vue").PropType<number>;
7909
- default: any;
7910
- };
7911
8431
  showApply: {
7912
8432
  type: import("vue").PropType<boolean>;
7913
8433
  default: boolean;
@@ -7947,13 +8467,13 @@ declare const _default: {
7947
8467
  hoverHelpTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
7948
8468
  feedbackText: string;
7949
8469
  feedbackVariant: "success" | "warning" | "error";
8470
+ maxLength: number;
7950
8471
  viewOnly: boolean;
7951
8472
  labelDirection: "top" | "inside";
7952
8473
  hideNumberArrows: boolean;
7953
8474
  step: number;
7954
8475
  onlyDigits: boolean;
7955
8476
  suffix: string;
7956
- maxLength: number;
7957
8477
  showApply: boolean;
7958
8478
  inlineError: boolean;
7959
8479
  inlineErrorText: string;
@@ -8035,6 +8555,10 @@ declare const _default: {
8035
8555
  type: import("vue").PropType<"success" | "warning" | "error">;
8036
8556
  default: any;
8037
8557
  };
8558
+ maxLength: {
8559
+ type: import("vue").PropType<number>;
8560
+ default: any;
8561
+ };
8038
8562
  viewOnly: {
8039
8563
  type: import("vue").PropType<boolean>;
8040
8564
  default: boolean;
@@ -8059,10 +8583,6 @@ declare const _default: {
8059
8583
  type: import("vue").PropType<string>;
8060
8584
  default: string;
8061
8585
  };
8062
- maxLength: {
8063
- type: import("vue").PropType<number>;
8064
- default: any;
8065
- };
8066
8586
  showApply: {
8067
8587
  type: import("vue").PropType<boolean>;
8068
8588
  default: boolean;
@@ -8145,6 +8665,10 @@ declare const _default: {
8145
8665
  type: import("vue").PropType<"success" | "warning" | "error">;
8146
8666
  default: any;
8147
8667
  };
8668
+ maxLength: {
8669
+ type: import("vue").PropType<number>;
8670
+ default: any;
8671
+ };
8148
8672
  viewOnly: {
8149
8673
  type: import("vue").PropType<boolean>;
8150
8674
  default: boolean;
@@ -8169,10 +8693,6 @@ declare const _default: {
8169
8693
  type: import("vue").PropType<string>;
8170
8694
  default: string;
8171
8695
  };
8172
- maxLength: {
8173
- type: import("vue").PropType<number>;
8174
- default: any;
8175
- };
8176
8696
  showApply: {
8177
8697
  type: import("vue").PropType<boolean>;
8178
8698
  default: boolean;
@@ -8212,13 +8732,13 @@ declare const _default: {
8212
8732
  hoverHelpTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
8213
8733
  feedbackText: string;
8214
8734
  feedbackVariant: "success" | "warning" | "error";
8735
+ maxLength: number;
8215
8736
  viewOnly: boolean;
8216
8737
  labelDirection: "top" | "inside";
8217
8738
  hideNumberArrows: boolean;
8218
8739
  step: number;
8219
8740
  onlyDigits: boolean;
8220
8741
  suffix: string;
8221
- maxLength: number;
8222
8742
  showApply: boolean;
8223
8743
  inlineError: boolean;
8224
8744
  inlineErrorText: string;
@@ -8248,13 +8768,13 @@ declare const _default: {
8248
8768
  hoverHelpTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
8249
8769
  feedbackText: string;
8250
8770
  feedbackVariant: "success" | "warning" | "error";
8771
+ maxLength: number;
8251
8772
  viewOnly: boolean;
8252
8773
  labelDirection: "top" | "inside";
8253
8774
  hideNumberArrows: boolean;
8254
8775
  step: number;
8255
8776
  onlyDigits: boolean;
8256
8777
  suffix: string;
8257
- maxLength: number;
8258
8778
  showApply: boolean;
8259
8779
  inlineError: boolean;
8260
8780
  inlineErrorText: string;
@@ -8316,6 +8836,10 @@ declare const _default: {
8316
8836
  type: import("vue").PropType<"success" | "warning" | "error">;
8317
8837
  default: any;
8318
8838
  };
8839
+ maxLength: {
8840
+ type: import("vue").PropType<number>;
8841
+ default: any;
8842
+ };
8319
8843
  viewOnly: {
8320
8844
  type: import("vue").PropType<boolean>;
8321
8845
  default: boolean;
@@ -8340,10 +8864,6 @@ declare const _default: {
8340
8864
  type: import("vue").PropType<string>;
8341
8865
  default: string;
8342
8866
  };
8343
- maxLength: {
8344
- type: import("vue").PropType<number>;
8345
- default: any;
8346
- };
8347
8867
  showApply: {
8348
8868
  type: import("vue").PropType<boolean>;
8349
8869
  default: boolean;
@@ -8363,7 +8883,7 @@ declare const _default: {
8363
8883
  }>> & {
8364
8884
  "onUpdate:modelValue"?: (value: string | number) => any;
8365
8885
  onApply?: () => any;
8366
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "modelValue" | "placeholder" | "autoFocus" | "prefix" | "hoverHelpText" | "hoverHelpTextPlacement" | "feedbackText" | "feedbackVariant" | "viewOnly" | "labelDirection" | "hideNumberArrows" | "step" | "onlyDigits" | "suffix" | "maxLength" | "showApply" | "inlineError" | "inlineErrorText" | "showFeedbackTextIcon">;
8886
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "modelValue" | "placeholder" | "autoFocus" | "prefix" | "hoverHelpText" | "hoverHelpTextPlacement" | "feedbackText" | "feedbackVariant" | "maxLength" | "viewOnly" | "labelDirection" | "hideNumberArrows" | "step" | "onlyDigits" | "suffix" | "showApply" | "inlineError" | "inlineErrorText" | "showFeedbackTextIcon">;
8367
8887
  $attrs: {
8368
8888
  [x: string]: unknown;
8369
8889
  };
@@ -8434,6 +8954,10 @@ declare const _default: {
8434
8954
  type: import("vue").PropType<"success" | "warning" | "error">;
8435
8955
  default: any;
8436
8956
  };
8957
+ maxLength: {
8958
+ type: import("vue").PropType<number>;
8959
+ default: any;
8960
+ };
8437
8961
  viewOnly: {
8438
8962
  type: import("vue").PropType<boolean>;
8439
8963
  default: boolean;
@@ -8458,10 +8982,6 @@ declare const _default: {
8458
8982
  type: import("vue").PropType<string>;
8459
8983
  default: string;
8460
8984
  };
8461
- maxLength: {
8462
- type: import("vue").PropType<number>;
8463
- default: any;
8464
- };
8465
8985
  showApply: {
8466
8986
  type: import("vue").PropType<boolean>;
8467
8987
  default: boolean;
@@ -8501,13 +9021,13 @@ declare const _default: {
8501
9021
  hoverHelpTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
8502
9022
  feedbackText: string;
8503
9023
  feedbackVariant: "success" | "warning" | "error";
9024
+ maxLength: number;
8504
9025
  viewOnly: boolean;
8505
9026
  labelDirection: "top" | "inside";
8506
9027
  hideNumberArrows: boolean;
8507
9028
  step: number;
8508
9029
  onlyDigits: boolean;
8509
9030
  suffix: string;
8510
- maxLength: number;
8511
9031
  showApply: boolean;
8512
9032
  inlineError: boolean;
8513
9033
  inlineErrorText: string;
@@ -8589,6 +9109,10 @@ declare const _default: {
8589
9109
  type: import("vue").PropType<"success" | "warning" | "error">;
8590
9110
  default: any;
8591
9111
  };
9112
+ maxLength: {
9113
+ type: import("vue").PropType<number>;
9114
+ default: any;
9115
+ };
8592
9116
  viewOnly: {
8593
9117
  type: import("vue").PropType<boolean>;
8594
9118
  default: boolean;
@@ -8613,10 +9137,6 @@ declare const _default: {
8613
9137
  type: import("vue").PropType<string>;
8614
9138
  default: string;
8615
9139
  };
8616
- maxLength: {
8617
- type: import("vue").PropType<number>;
8618
- default: any;
8619
- };
8620
9140
  showApply: {
8621
9141
  type: import("vue").PropType<boolean>;
8622
9142
  default: boolean;
@@ -8699,6 +9219,10 @@ declare const _default: {
8699
9219
  type: import("vue").PropType<"success" | "warning" | "error">;
8700
9220
  default: any;
8701
9221
  };
9222
+ maxLength: {
9223
+ type: import("vue").PropType<number>;
9224
+ default: any;
9225
+ };
8702
9226
  viewOnly: {
8703
9227
  type: import("vue").PropType<boolean>;
8704
9228
  default: boolean;
@@ -8723,10 +9247,6 @@ declare const _default: {
8723
9247
  type: import("vue").PropType<string>;
8724
9248
  default: string;
8725
9249
  };
8726
- maxLength: {
8727
- type: import("vue").PropType<number>;
8728
- default: any;
8729
- };
8730
9250
  showApply: {
8731
9251
  type: import("vue").PropType<boolean>;
8732
9252
  default: boolean;
@@ -8766,13 +9286,13 @@ declare const _default: {
8766
9286
  hoverHelpTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
8767
9287
  feedbackText: string;
8768
9288
  feedbackVariant: "success" | "warning" | "error";
9289
+ maxLength: number;
8769
9290
  viewOnly: boolean;
8770
9291
  labelDirection: "top" | "inside";
8771
9292
  hideNumberArrows: boolean;
8772
9293
  step: number;
8773
9294
  onlyDigits: boolean;
8774
9295
  suffix: string;
8775
- maxLength: number;
8776
9296
  showApply: boolean;
8777
9297
  inlineError: boolean;
8778
9298
  inlineErrorText: string;
@@ -15560,10 +16080,10 @@ declare const _default: {
15560
16080
  $: import("vue").ComponentInternalInstance;
15561
16081
  $data: {};
15562
16082
  $props: Partial<{
16083
+ variant: "text" | "contained" | "outlined";
15563
16084
  disabled: boolean;
15564
16085
  size: "small" | "medium" | "large" | "extraLarge";
15565
16086
  color: "default" | "primary" | "danger" | "info" | "success" | "warning";
15566
- variant: "text" | "contained" | "outlined";
15567
16087
  content: string;
15568
16088
  loading: boolean;
15569
16089
  testId: string;
@@ -15572,6 +16092,10 @@ declare const _default: {
15572
16092
  startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
15573
16093
  endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
15574
16094
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
16095
+ variant: {
16096
+ type: import("vue").PropType<"text" | "contained" | "outlined">;
16097
+ default: string;
16098
+ };
15575
16099
  disabled: {
15576
16100
  type: import("vue").PropType<boolean>;
15577
16101
  default: boolean;
@@ -15584,10 +16108,6 @@ declare const _default: {
15584
16108
  type: import("vue").PropType<"default" | "primary" | "danger" | "info" | "success" | "warning">;
15585
16109
  default: string;
15586
16110
  };
15587
- variant: {
15588
- type: import("vue").PropType<"text" | "contained" | "outlined">;
15589
- default: string;
15590
- };
15591
16111
  content: {
15592
16112
  type: import("vue").PropType<string>;
15593
16113
  default: string;
@@ -15616,7 +16136,7 @@ declare const _default: {
15616
16136
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
15617
16137
  default: string;
15618
16138
  };
15619
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "size" | "color" | "variant" | "content" | "loading" | "testId" | "startIconName" | "endIconName" | "startIconType" | "endIconType">;
16139
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "disabled" | "size" | "color" | "content" | "loading" | "testId" | "startIconName" | "endIconName" | "startIconType" | "endIconType">;
15620
16140
  $attrs: {
15621
16141
  [x: string]: unknown;
15622
16142
  };
@@ -15631,6 +16151,10 @@ declare const _default: {
15631
16151
  $emit: (event: string, ...args: any[]) => void;
15632
16152
  $el: any;
15633
16153
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
16154
+ variant: {
16155
+ type: import("vue").PropType<"text" | "contained" | "outlined">;
16156
+ default: string;
16157
+ };
15634
16158
  disabled: {
15635
16159
  type: import("vue").PropType<boolean>;
15636
16160
  default: boolean;
@@ -15643,10 +16167,6 @@ declare const _default: {
15643
16167
  type: import("vue").PropType<"default" | "primary" | "danger" | "info" | "success" | "warning">;
15644
16168
  default: string;
15645
16169
  };
15646
- variant: {
15647
- type: import("vue").PropType<"text" | "contained" | "outlined">;
15648
- default: string;
15649
- };
15650
16170
  content: {
15651
16171
  type: import("vue").PropType<string>;
15652
16172
  default: string;
@@ -15676,10 +16196,10 @@ declare const _default: {
15676
16196
  default: string;
15677
16197
  };
15678
16198
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
16199
+ variant: "text" | "contained" | "outlined";
15679
16200
  disabled: boolean;
15680
16201
  size: "small" | "medium" | "large" | "extraLarge";
15681
16202
  color: "default" | "primary" | "danger" | "info" | "success" | "warning";
15682
- variant: "text" | "contained" | "outlined";
15683
16203
  content: string;
15684
16204
  loading: boolean;
15685
16205
  testId: string;
@@ -15708,6 +16228,10 @@ declare const _default: {
15708
16228
  $nextTick: typeof import("vue").nextTick;
15709
16229
  $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;
15710
16230
  } & Readonly<import("vue").ExtractPropTypes<{
16231
+ variant: {
16232
+ type: import("vue").PropType<"text" | "contained" | "outlined">;
16233
+ default: string;
16234
+ };
15711
16235
  disabled: {
15712
16236
  type: import("vue").PropType<boolean>;
15713
16237
  default: boolean;
@@ -15720,10 +16244,6 @@ declare const _default: {
15720
16244
  type: import("vue").PropType<"default" | "primary" | "danger" | "info" | "success" | "warning">;
15721
16245
  default: string;
15722
16246
  };
15723
- variant: {
15724
- type: import("vue").PropType<"text" | "contained" | "outlined">;
15725
- default: string;
15726
- };
15727
16247
  content: {
15728
16248
  type: import("vue").PropType<string>;
15729
16249
  default: string;
@@ -15757,6 +16277,10 @@ declare const _default: {
15757
16277
  __isTeleport?: never;
15758
16278
  __isSuspense?: never;
15759
16279
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
16280
+ variant: {
16281
+ type: import("vue").PropType<"text" | "contained" | "outlined">;
16282
+ default: string;
16283
+ };
15760
16284
  disabled: {
15761
16285
  type: import("vue").PropType<boolean>;
15762
16286
  default: boolean;
@@ -15769,10 +16293,6 @@ declare const _default: {
15769
16293
  type: import("vue").PropType<"default" | "primary" | "danger" | "info" | "success" | "warning">;
15770
16294
  default: string;
15771
16295
  };
15772
- variant: {
15773
- type: import("vue").PropType<"text" | "contained" | "outlined">;
15774
- default: string;
15775
- };
15776
16296
  content: {
15777
16297
  type: import("vue").PropType<string>;
15778
16298
  default: string;
@@ -15802,10 +16322,10 @@ declare const _default: {
15802
16322
  default: string;
15803
16323
  };
15804
16324
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
16325
+ variant: "text" | "contained" | "outlined";
15805
16326
  disabled: boolean;
15806
16327
  size: "small" | "medium" | "large" | "extraLarge";
15807
16328
  color: "default" | "primary" | "danger" | "info" | "success" | "warning";
15808
- variant: "text" | "contained" | "outlined";
15809
16329
  content: string;
15810
16330
  loading: boolean;
15811
16331
  testId: string;
@@ -15825,10 +16345,10 @@ declare const _default: {
15825
16345
  $data: {};
15826
16346
  $props: Partial<{
15827
16347
  type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
16348
+ variant: "default" | "outlined";
15828
16349
  disabled: boolean;
15829
16350
  size: "small" | "medium" | "large" | "extraLarge";
15830
16351
  color: "default" | "primary" | "error";
15831
- variant: "default" | "outlined";
15832
16352
  testId: string;
15833
16353
  iconName: string;
15834
16354
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
@@ -15836,6 +16356,10 @@ declare const _default: {
15836
16356
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
15837
16357
  default: string;
15838
16358
  };
16359
+ variant: {
16360
+ type: import("vue").PropType<"default" | "outlined">;
16361
+ default: string;
16362
+ };
15839
16363
  disabled: {
15840
16364
  type: import("vue").PropType<boolean>;
15841
16365
  default: boolean;
@@ -15848,10 +16372,6 @@ declare const _default: {
15848
16372
  type: import("vue").PropType<"default" | "primary" | "error">;
15849
16373
  default: string;
15850
16374
  };
15851
- variant: {
15852
- type: import("vue").PropType<"default" | "outlined">;
15853
- default: string;
15854
- };
15855
16375
  testId: {
15856
16376
  type: import("vue").PropType<string>;
15857
16377
  default: string;
@@ -15860,7 +16380,7 @@ declare const _default: {
15860
16380
  type: import("vue").PropType<string>;
15861
16381
  default: string;
15862
16382
  };
15863
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "disabled" | "size" | "color" | "variant" | "testId" | "iconName">;
16383
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "variant" | "disabled" | "size" | "color" | "testId" | "iconName">;
15864
16384
  $attrs: {
15865
16385
  [x: string]: unknown;
15866
16386
  };
@@ -15879,6 +16399,10 @@ declare const _default: {
15879
16399
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
15880
16400
  default: string;
15881
16401
  };
16402
+ variant: {
16403
+ type: import("vue").PropType<"default" | "outlined">;
16404
+ default: string;
16405
+ };
15882
16406
  disabled: {
15883
16407
  type: import("vue").PropType<boolean>;
15884
16408
  default: boolean;
@@ -15891,10 +16415,6 @@ declare const _default: {
15891
16415
  type: import("vue").PropType<"default" | "primary" | "error">;
15892
16416
  default: string;
15893
16417
  };
15894
- variant: {
15895
- type: import("vue").PropType<"default" | "outlined">;
15896
- default: string;
15897
- };
15898
16418
  testId: {
15899
16419
  type: import("vue").PropType<string>;
15900
16420
  default: string;
@@ -15905,10 +16425,10 @@ declare const _default: {
15905
16425
  };
15906
16426
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
15907
16427
  type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
16428
+ variant: "default" | "outlined";
15908
16429
  disabled: boolean;
15909
16430
  size: "small" | "medium" | "large" | "extraLarge";
15910
16431
  color: "default" | "primary" | "error";
15911
- variant: "default" | "outlined";
15912
16432
  testId: string;
15913
16433
  iconName: string;
15914
16434
  }, {}, string> & {
@@ -15936,6 +16456,10 @@ declare const _default: {
15936
16456
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
15937
16457
  default: string;
15938
16458
  };
16459
+ variant: {
16460
+ type: import("vue").PropType<"default" | "outlined">;
16461
+ default: string;
16462
+ };
15939
16463
  disabled: {
15940
16464
  type: import("vue").PropType<boolean>;
15941
16465
  default: boolean;
@@ -15948,10 +16472,6 @@ declare const _default: {
15948
16472
  type: import("vue").PropType<"default" | "primary" | "error">;
15949
16473
  default: string;
15950
16474
  };
15951
- variant: {
15952
- type: import("vue").PropType<"default" | "outlined">;
15953
- default: string;
15954
- };
15955
16475
  testId: {
15956
16476
  type: import("vue").PropType<string>;
15957
16477
  default: string;
@@ -15969,6 +16489,10 @@ declare const _default: {
15969
16489
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
15970
16490
  default: string;
15971
16491
  };
16492
+ variant: {
16493
+ type: import("vue").PropType<"default" | "outlined">;
16494
+ default: string;
16495
+ };
15972
16496
  disabled: {
15973
16497
  type: import("vue").PropType<boolean>;
15974
16498
  default: boolean;
@@ -15981,10 +16505,6 @@ declare const _default: {
15981
16505
  type: import("vue").PropType<"default" | "primary" | "error">;
15982
16506
  default: string;
15983
16507
  };
15984
- variant: {
15985
- type: import("vue").PropType<"default" | "outlined">;
15986
- default: string;
15987
- };
15988
16508
  testId: {
15989
16509
  type: import("vue").PropType<string>;
15990
16510
  default: string;
@@ -15995,10 +16515,10 @@ declare const _default: {
15995
16515
  };
15996
16516
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
15997
16517
  type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
16518
+ variant: "default" | "outlined";
15998
16519
  disabled: boolean;
15999
16520
  size: "small" | "medium" | "large" | "extraLarge";
16000
16521
  color: "default" | "primary" | "error";
16001
- variant: "default" | "outlined";
16002
16522
  testId: string;
16003
16523
  iconName: string;
16004
16524
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
@@ -16011,10 +16531,10 @@ declare const _default: {
16011
16531
  $: import("vue").ComponentInternalInstance;
16012
16532
  $data: {};
16013
16533
  $props: Partial<{
16534
+ variant: "text" | "contained" | "outlined";
16014
16535
  disabled: boolean;
16015
16536
  size: "small" | "medium" | "large" | "extraLarge";
16016
16537
  color: "default" | "primary" | "danger" | "info" | "success" | "warning";
16017
- variant: "text" | "contained" | "outlined";
16018
16538
  content: string;
16019
16539
  loading: boolean;
16020
16540
  testId: string;
@@ -16023,6 +16543,10 @@ declare const _default: {
16023
16543
  startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
16024
16544
  endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
16025
16545
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
16546
+ variant: {
16547
+ type: import("vue").PropType<"text" | "contained" | "outlined">;
16548
+ default: string;
16549
+ };
16026
16550
  disabled: {
16027
16551
  type: import("vue").PropType<boolean>;
16028
16552
  default: boolean;
@@ -16035,10 +16559,6 @@ declare const _default: {
16035
16559
  type: import("vue").PropType<"default" | "primary" | "danger" | "info" | "success" | "warning">;
16036
16560
  default: string;
16037
16561
  };
16038
- variant: {
16039
- type: import("vue").PropType<"text" | "contained" | "outlined">;
16040
- default: string;
16041
- };
16042
16562
  content: {
16043
16563
  type: import("vue").PropType<string>;
16044
16564
  default: string;
@@ -16067,7 +16587,7 @@ declare const _default: {
16067
16587
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
16068
16588
  default: string;
16069
16589
  };
16070
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "size" | "color" | "variant" | "content" | "loading" | "testId" | "startIconName" | "endIconName" | "startIconType" | "endIconType">;
16590
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "disabled" | "size" | "color" | "content" | "loading" | "testId" | "startIconName" | "endIconName" | "startIconType" | "endIconType">;
16071
16591
  $attrs: {
16072
16592
  [x: string]: unknown;
16073
16593
  };
@@ -16082,6 +16602,10 @@ declare const _default: {
16082
16602
  $emit: (event: string, ...args: any[]) => void;
16083
16603
  $el: any;
16084
16604
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
16605
+ variant: {
16606
+ type: import("vue").PropType<"text" | "contained" | "outlined">;
16607
+ default: string;
16608
+ };
16085
16609
  disabled: {
16086
16610
  type: import("vue").PropType<boolean>;
16087
16611
  default: boolean;
@@ -16094,10 +16618,6 @@ declare const _default: {
16094
16618
  type: import("vue").PropType<"default" | "primary" | "danger" | "info" | "success" | "warning">;
16095
16619
  default: string;
16096
16620
  };
16097
- variant: {
16098
- type: import("vue").PropType<"text" | "contained" | "outlined">;
16099
- default: string;
16100
- };
16101
16621
  content: {
16102
16622
  type: import("vue").PropType<string>;
16103
16623
  default: string;
@@ -16127,10 +16647,10 @@ declare const _default: {
16127
16647
  default: string;
16128
16648
  };
16129
16649
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
16650
+ variant: "text" | "contained" | "outlined";
16130
16651
  disabled: boolean;
16131
16652
  size: "small" | "medium" | "large" | "extraLarge";
16132
16653
  color: "default" | "primary" | "danger" | "info" | "success" | "warning";
16133
- variant: "text" | "contained" | "outlined";
16134
16654
  content: string;
16135
16655
  loading: boolean;
16136
16656
  testId: string;
@@ -16159,6 +16679,10 @@ declare const _default: {
16159
16679
  $nextTick: typeof import("vue").nextTick;
16160
16680
  $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;
16161
16681
  } & Readonly<import("vue").ExtractPropTypes<{
16682
+ variant: {
16683
+ type: import("vue").PropType<"text" | "contained" | "outlined">;
16684
+ default: string;
16685
+ };
16162
16686
  disabled: {
16163
16687
  type: import("vue").PropType<boolean>;
16164
16688
  default: boolean;
@@ -16171,10 +16695,6 @@ declare const _default: {
16171
16695
  type: import("vue").PropType<"default" | "primary" | "danger" | "info" | "success" | "warning">;
16172
16696
  default: string;
16173
16697
  };
16174
- variant: {
16175
- type: import("vue").PropType<"text" | "contained" | "outlined">;
16176
- default: string;
16177
- };
16178
16698
  content: {
16179
16699
  type: import("vue").PropType<string>;
16180
16700
  default: string;
@@ -16208,6 +16728,10 @@ declare const _default: {
16208
16728
  __isTeleport?: never;
16209
16729
  __isSuspense?: never;
16210
16730
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
16731
+ variant: {
16732
+ type: import("vue").PropType<"text" | "contained" | "outlined">;
16733
+ default: string;
16734
+ };
16211
16735
  disabled: {
16212
16736
  type: import("vue").PropType<boolean>;
16213
16737
  default: boolean;
@@ -16220,10 +16744,6 @@ declare const _default: {
16220
16744
  type: import("vue").PropType<"default" | "primary" | "danger" | "info" | "success" | "warning">;
16221
16745
  default: string;
16222
16746
  };
16223
- variant: {
16224
- type: import("vue").PropType<"text" | "contained" | "outlined">;
16225
- default: string;
16226
- };
16227
16747
  content: {
16228
16748
  type: import("vue").PropType<string>;
16229
16749
  default: string;
@@ -16253,10 +16773,10 @@ declare const _default: {
16253
16773
  default: string;
16254
16774
  };
16255
16775
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
16776
+ variant: "text" | "contained" | "outlined";
16256
16777
  disabled: boolean;
16257
16778
  size: "small" | "medium" | "large" | "extraLarge";
16258
16779
  color: "default" | "primary" | "danger" | "info" | "success" | "warning";
16259
- variant: "text" | "contained" | "outlined";
16260
16780
  content: string;
16261
16781
  loading: boolean;
16262
16782
  testId: string;
@@ -16275,10 +16795,10 @@ declare const _default: {
16275
16795
  $data: {};
16276
16796
  $props: Partial<{
16277
16797
  type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
16798
+ variant: "default" | "outlined";
16278
16799
  disabled: boolean;
16279
16800
  size: "small" | "medium" | "large" | "extraLarge";
16280
16801
  color: "default" | "primary" | "error";
16281
- variant: "default" | "outlined";
16282
16802
  testId: string;
16283
16803
  iconName: string;
16284
16804
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
@@ -16286,6 +16806,10 @@ declare const _default: {
16286
16806
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
16287
16807
  default: string;
16288
16808
  };
16809
+ variant: {
16810
+ type: import("vue").PropType<"default" | "outlined">;
16811
+ default: string;
16812
+ };
16289
16813
  disabled: {
16290
16814
  type: import("vue").PropType<boolean>;
16291
16815
  default: boolean;
@@ -16298,10 +16822,6 @@ declare const _default: {
16298
16822
  type: import("vue").PropType<"default" | "primary" | "error">;
16299
16823
  default: string;
16300
16824
  };
16301
- variant: {
16302
- type: import("vue").PropType<"default" | "outlined">;
16303
- default: string;
16304
- };
16305
16825
  testId: {
16306
16826
  type: import("vue").PropType<string>;
16307
16827
  default: string;
@@ -16310,7 +16830,7 @@ declare const _default: {
16310
16830
  type: import("vue").PropType<string>;
16311
16831
  default: string;
16312
16832
  };
16313
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "disabled" | "size" | "color" | "variant" | "testId" | "iconName">;
16833
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "variant" | "disabled" | "size" | "color" | "testId" | "iconName">;
16314
16834
  $attrs: {
16315
16835
  [x: string]: unknown;
16316
16836
  };
@@ -16329,6 +16849,10 @@ declare const _default: {
16329
16849
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
16330
16850
  default: string;
16331
16851
  };
16852
+ variant: {
16853
+ type: import("vue").PropType<"default" | "outlined">;
16854
+ default: string;
16855
+ };
16332
16856
  disabled: {
16333
16857
  type: import("vue").PropType<boolean>;
16334
16858
  default: boolean;
@@ -16341,10 +16865,6 @@ declare const _default: {
16341
16865
  type: import("vue").PropType<"default" | "primary" | "error">;
16342
16866
  default: string;
16343
16867
  };
16344
- variant: {
16345
- type: import("vue").PropType<"default" | "outlined">;
16346
- default: string;
16347
- };
16348
16868
  testId: {
16349
16869
  type: import("vue").PropType<string>;
16350
16870
  default: string;
@@ -16355,10 +16875,10 @@ declare const _default: {
16355
16875
  };
16356
16876
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
16357
16877
  type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
16878
+ variant: "default" | "outlined";
16358
16879
  disabled: boolean;
16359
16880
  size: "small" | "medium" | "large" | "extraLarge";
16360
16881
  color: "default" | "primary" | "error";
16361
- variant: "default" | "outlined";
16362
16882
  testId: string;
16363
16883
  iconName: string;
16364
16884
  }, {}, string> & {
@@ -16386,6 +16906,10 @@ declare const _default: {
16386
16906
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
16387
16907
  default: string;
16388
16908
  };
16909
+ variant: {
16910
+ type: import("vue").PropType<"default" | "outlined">;
16911
+ default: string;
16912
+ };
16389
16913
  disabled: {
16390
16914
  type: import("vue").PropType<boolean>;
16391
16915
  default: boolean;
@@ -16398,10 +16922,6 @@ declare const _default: {
16398
16922
  type: import("vue").PropType<"default" | "primary" | "error">;
16399
16923
  default: string;
16400
16924
  };
16401
- variant: {
16402
- type: import("vue").PropType<"default" | "outlined">;
16403
- default: string;
16404
- };
16405
16925
  testId: {
16406
16926
  type: import("vue").PropType<string>;
16407
16927
  default: string;
@@ -16419,6 +16939,10 @@ declare const _default: {
16419
16939
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
16420
16940
  default: string;
16421
16941
  };
16942
+ variant: {
16943
+ type: import("vue").PropType<"default" | "outlined">;
16944
+ default: string;
16945
+ };
16422
16946
  disabled: {
16423
16947
  type: import("vue").PropType<boolean>;
16424
16948
  default: boolean;
@@ -16431,10 +16955,6 @@ declare const _default: {
16431
16955
  type: import("vue").PropType<"default" | "primary" | "error">;
16432
16956
  default: string;
16433
16957
  };
16434
- variant: {
16435
- type: import("vue").PropType<"default" | "outlined">;
16436
- default: string;
16437
- };
16438
16958
  testId: {
16439
16959
  type: import("vue").PropType<string>;
16440
16960
  default: string;
@@ -16445,10 +16965,10 @@ declare const _default: {
16445
16965
  };
16446
16966
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
16447
16967
  type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
16968
+ variant: "default" | "outlined";
16448
16969
  disabled: boolean;
16449
16970
  size: "small" | "medium" | "large" | "extraLarge";
16450
16971
  color: "default" | "primary" | "error";
16451
- variant: "default" | "outlined";
16452
16972
  testId: string;
16453
16973
  iconName: string;
16454
16974
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
@@ -17106,10 +17626,10 @@ declare const _default: {
17106
17626
  }))[];
17107
17627
  };
17108
17628
  export default _default;
17109
- export * from '@/components/textArea';
17110
17629
  export * from '@/composables/useToggle';
17111
17630
  export * from '@/composables/useSearch';
17112
17631
  export * from '@/composables/useFormValidation';
17113
17632
  export * from '@/components/dateRange';
17114
17633
  export * from '@/components/datePicker';
17115
17634
  export * from '@/components/banner';
17635
+ export * from '@/components/alert';