@ironsource/shared-ui 2.1.3-rc.1 → 2.1.3-rc.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 (92) hide show
  1. package/AppHeader.vue_vue_type_style_index_0_scoped_95908b8d_lang.css +1 -0
  2. package/CardPanel.vue_vue_type_style_index_0_scoped_7d0acb11_lang.css +1 -0
  3. package/CheckboxV4.vue_vue_type_style_index_0_scoped_d25514d1_lang.css +1 -0
  4. package/DataGrid.vue_vue_type_style_index_0_scoped_4baf9e57_lang.css +1 -0
  5. package/DataGridMenu.vue_vue_type_style_index_0_scoped_13f1ce76_lang.css +1 -0
  6. package/DataGridRowsCounter.vue_vue_type_style_index_0_scoped_06751538_lang.css +1 -0
  7. package/EditableV4.vue_vue_type_style_index_0_scoped_31bfb722_lang.css +1 -0
  8. package/EmptyStateV4.vue_vue_type_style_index_0_scoped_24001caa_lang.css +1 -0
  9. package/FieldLabel.vue_vue_type_style_index_0_scoped_5c2a70ad_lang.css +1 -0
  10. package/FieldMaxLength.vue_vue_type_style_index_0_scoped_f3c4001a_lang.css +1 -0
  11. package/FormRow.vue_vue_type_style_index_0_scoped_39f48410_lang.css +1 -0
  12. package/InlineCopy.vue_vue_type_style_index_0_scoped_2a9e8782_lang.css +1 -0
  13. package/RadioButtonV4.vue_vue_type_style_index_0_scoped_cb3a12c6_lang.css +1 -0
  14. package/TextArea.vue_vue_type_style_index_0_scoped_eb62e4c0_lang.css +1 -0
  15. package/TextAreaV4.vue_vue_type_style_index_0_scoped_6e91a617_lang.css +1 -0
  16. package/TextField.vue_vue_type_style_index_0_scoped_dca4c102_lang.css +1 -0
  17. package/components/appHeader/AppHeader.vue.js +3 -3
  18. package/components/appHeader/AppHeader.vue2.js +41 -35
  19. package/components/checkbox/v4/CheckboxV4.vue.js +4 -4
  20. package/components/checkbox/v4/CheckboxV4.vue2.js +2 -2
  21. package/components/checkbox/v4/icons/UncheckedDisabledState.vue.js +11 -12
  22. package/components/checkbox/v4/icons/UncheckedState.vue.js +12 -11
  23. package/components/dropdown/common/Dropdown.common.js +93 -92
  24. package/components/emptyState/v4/EmptyStateV4.vue.d.ts +15 -0
  25. package/components/emptyState/v4/EmptyStateV4.vue.js +3 -3
  26. package/components/emptyState/v4/EmptyStateV4.vue2.js +41 -27
  27. package/components/emptyState/v4/index.d.ts +58 -1
  28. package/components/forms/CardPanel.vue.d.ts +20 -0
  29. package/components/forms/CardPanel.vue.js +2 -2
  30. package/components/forms/CardPanel.vue2.js +26 -14
  31. package/components/forms/FormRow.vue.js +4 -4
  32. package/components/forms/FormRow.vue2.js +1 -1
  33. package/components/forms/index.d.ts +77 -1
  34. package/components/inlineCopy/InlineCopy.vue.js +2 -2
  35. package/components/inlineCopy/InlineCopy.vue2.js +2 -2
  36. package/components/input/v4/TextField.vue.d.ts +1 -1
  37. package/components/input/v4/TextField.vue.js +3 -3
  38. package/components/input/v4/TextField.vue2.js +83 -90
  39. package/components/input/v4/index.d.ts +20 -20
  40. package/components/radioButton/v4/RadioButtonV4.vue.js +4 -4
  41. package/components/radioButton/v4/RadioButtonV4.vue2.js +1 -1
  42. package/components/shared/FieldLabel.vue.d.ts +5 -0
  43. package/components/shared/FieldLabel.vue.js +3 -3
  44. package/components/shared/FieldLabel.vue2.js +63 -46
  45. package/components/shared/FieldMaxLength.vue.d.ts +34 -0
  46. package/components/shared/FieldMaxLength.vue.js +7 -0
  47. package/components/shared/FieldMaxLength.vue2.js +24 -0
  48. package/components/table/common/Table.common.d.ts +1 -0
  49. package/components/table/common/Table.common.js +64 -60
  50. package/components/table/common/TableContext.d.ts +1 -0
  51. package/components/table/v4/DataGrid.vue.js +4 -4
  52. package/components/table/v4/DataGrid.vue2.js +71 -69
  53. package/components/table/v4/DataGridMenu.vue.d.ts +5 -5
  54. package/components/table/v4/DataGridMenu.vue.js +4 -4
  55. package/components/table/v4/DataGridMenu.vue2.js +46 -47
  56. package/components/table/v4/DataGridRowsCounter.vue.d.ts +15 -0
  57. package/components/table/v4/DataGridRowsCounter.vue.js +3 -3
  58. package/components/table/v4/DataGridRowsCounter.vue2.js +22 -19
  59. package/components/table/v4/index.d.ts +32 -5
  60. package/components/table-cells/common/Editable.common.js +15 -15
  61. package/components/table-cells/v4/EditableV4.vue.d.ts +10 -0
  62. package/components/table-cells/v4/EditableV4.vue.js +3 -3
  63. package/components/table-cells/v4/EditableV4.vue2.js +31 -22
  64. package/components/table-cells/v4/index.d.ts +43 -1
  65. package/components/textArea/v3/TextArea.vue.js +7 -0
  66. package/components/textArea/{TextArea.vue2.js → v3/TextArea.vue2.js} +4 -4
  67. package/components/textArea/v4/TextAreaV4.vue.d.ts +90 -0
  68. package/components/textArea/v4/TextAreaV4.vue.js +7 -0
  69. package/components/textArea/v4/TextAreaV4.vue2.js +74 -0
  70. package/components/textArea/v4/index.d.ts +118 -0
  71. package/components/textArea/v4/index.js +6 -0
  72. package/index.d.ts +538 -55
  73. package/index.js +67 -67
  74. package/package.json +3 -2
  75. package/AppHeader.vue_vue_type_style_index_0_scoped_209ecc03_lang.css +0 -1
  76. package/CardPanel.vue_vue_type_style_index_0_scoped_d2b5d12f_lang.css +0 -1
  77. package/CheckboxV4.vue_vue_type_style_index_0_scoped_ee3e6d82_lang.css +0 -1
  78. package/DataGrid.vue_vue_type_style_index_0_scoped_d5635f1b_lang.css +0 -1
  79. package/DataGridMenu.vue_vue_type_style_index_0_scoped_92d83650_lang.css +0 -1
  80. package/DataGridRowsCounter.vue_vue_type_style_index_0_scoped_9e366543_lang.css +0 -1
  81. package/EditableV4.vue_vue_type_style_index_0_scoped_df325b51_lang.css +0 -1
  82. package/EmptyStateV4.vue_vue_type_style_index_0_scoped_b8373c2d_lang.css +0 -1
  83. package/FieldLabel.vue_vue_type_style_index_0_scoped_526af548_lang.css +0 -1
  84. package/FormRow.vue_vue_type_style_index_0_scoped_017dc22e_lang.css +0 -1
  85. package/InlineCopy.vue_vue_type_style_index_0_scoped_2f0a0202_lang.css +0 -1
  86. package/RadioButtonV4.vue_vue_type_style_index_0_scoped_14be812e_lang.css +0 -1
  87. package/TextArea.vue_vue_type_style_index_0_scoped_889b62ac_lang.css +0 -1
  88. package/TextField.vue_vue_type_style_index_0_scoped_473bab9b_lang.css +0 -1
  89. package/components/textArea/TextArea.vue.js +0 -7
  90. /package/components/textArea/{TextArea.vue.d.ts → v3/TextArea.vue.d.ts} +0 -0
  91. /package/components/textArea/{index.d.ts → v3/index.d.ts} +0 -0
  92. /package/components/textArea/{index.js → v3/index.js} +0 -0
package/index.d.ts CHANGED
@@ -1118,6 +1118,238 @@ 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
+ mandatory: {
1131
+ type: import("vue").PropType<boolean>;
1132
+ default: boolean;
1133
+ };
1134
+ testId: {
1135
+ type: import("vue").PropType<string>;
1136
+ default: string;
1137
+ };
1138
+ modelValue: {
1139
+ type: import("vue").PropType<string>;
1140
+ default: string;
1141
+ };
1142
+ placeholder: {
1143
+ type: import("vue").PropType<string>;
1144
+ default: string;
1145
+ };
1146
+ hoverHelpText: {
1147
+ type: import("vue").PropType<string>;
1148
+ default: string;
1149
+ };
1150
+ hoverHelpTextPlacement: {
1151
+ 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">;
1152
+ default: string;
1153
+ };
1154
+ feedbackText: {
1155
+ type: import("vue").PropType<string>;
1156
+ default: string;
1157
+ };
1158
+ feedbackVariant: {
1159
+ type: import("vue").PropType<"success" | "warning" | "error">;
1160
+ default: any;
1161
+ };
1162
+ maxLength: {
1163
+ type: import("vue").PropType<number>;
1164
+ default: any;
1165
+ };
1166
+ showFeedbackTextIcon: {
1167
+ type: import("vue").PropType<boolean>;
1168
+ default: boolean;
1169
+ };
1170
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1171
+ "update:modelValue": (value: string) => void;
1172
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1173
+ label: {
1174
+ type: import("vue").PropType<string>;
1175
+ default: string;
1176
+ };
1177
+ disabled: {
1178
+ type: import("vue").PropType<boolean>;
1179
+ default: boolean;
1180
+ };
1181
+ mandatory: {
1182
+ type: import("vue").PropType<boolean>;
1183
+ default: boolean;
1184
+ };
1185
+ testId: {
1186
+ type: import("vue").PropType<string>;
1187
+ default: string;
1188
+ };
1189
+ modelValue: {
1190
+ type: import("vue").PropType<string>;
1191
+ default: string;
1192
+ };
1193
+ placeholder: {
1194
+ type: import("vue").PropType<string>;
1195
+ default: string;
1196
+ };
1197
+ hoverHelpText: {
1198
+ type: import("vue").PropType<string>;
1199
+ default: string;
1200
+ };
1201
+ hoverHelpTextPlacement: {
1202
+ 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">;
1203
+ default: string;
1204
+ };
1205
+ feedbackText: {
1206
+ type: import("vue").PropType<string>;
1207
+ default: string;
1208
+ };
1209
+ feedbackVariant: {
1210
+ type: import("vue").PropType<"success" | "warning" | "error">;
1211
+ default: any;
1212
+ };
1213
+ maxLength: {
1214
+ type: import("vue").PropType<number>;
1215
+ default: any;
1216
+ };
1217
+ showFeedbackTextIcon: {
1218
+ type: import("vue").PropType<boolean>;
1219
+ default: boolean;
1220
+ };
1221
+ }>> & {
1222
+ "onUpdate:modelValue"?: (value: string) => any;
1223
+ }, {
1224
+ label: string;
1225
+ disabled: boolean;
1226
+ mandatory: boolean;
1227
+ testId: string;
1228
+ modelValue: string;
1229
+ placeholder: string;
1230
+ hoverHelpText: string;
1231
+ 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";
1232
+ feedbackText: string;
1233
+ feedbackVariant: "success" | "warning" | "error";
1234
+ maxLength: number;
1235
+ showFeedbackTextIcon: boolean;
1236
+ }>;
1237
+ TextAreaTypes: () => import("vue").DefineComponent<{
1238
+ label: {
1239
+ type: import("vue").PropType<string>;
1240
+ default: string;
1241
+ };
1242
+ disabled: {
1243
+ type: import("vue").PropType<boolean>;
1244
+ default: boolean;
1245
+ };
1246
+ mandatory: {
1247
+ type: import("vue").PropType<boolean>;
1248
+ default: boolean;
1249
+ };
1250
+ testId: {
1251
+ type: import("vue").PropType<string>;
1252
+ default: string;
1253
+ };
1254
+ modelValue: {
1255
+ type: import("vue").PropType<string>;
1256
+ default: string;
1257
+ };
1258
+ placeholder: {
1259
+ type: import("vue").PropType<string>;
1260
+ default: string;
1261
+ };
1262
+ hoverHelpText: {
1263
+ type: import("vue").PropType<string>;
1264
+ default: string;
1265
+ };
1266
+ hoverHelpTextPlacement: {
1267
+ 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">;
1268
+ default: string;
1269
+ };
1270
+ feedbackText: {
1271
+ type: import("vue").PropType<string>;
1272
+ default: string;
1273
+ };
1274
+ feedbackVariant: {
1275
+ type: import("vue").PropType<"success" | "warning" | "error">;
1276
+ default: any;
1277
+ };
1278
+ maxLength: {
1279
+ type: import("vue").PropType<number>;
1280
+ default: any;
1281
+ };
1282
+ showFeedbackTextIcon: {
1283
+ type: import("vue").PropType<boolean>;
1284
+ default: boolean;
1285
+ };
1286
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1287
+ "update:modelValue": (value: string) => void;
1288
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1289
+ label: {
1290
+ type: import("vue").PropType<string>;
1291
+ default: string;
1292
+ };
1293
+ disabled: {
1294
+ type: import("vue").PropType<boolean>;
1295
+ default: boolean;
1296
+ };
1297
+ mandatory: {
1298
+ type: import("vue").PropType<boolean>;
1299
+ default: boolean;
1300
+ };
1301
+ testId: {
1302
+ type: import("vue").PropType<string>;
1303
+ default: string;
1304
+ };
1305
+ modelValue: {
1306
+ type: import("vue").PropType<string>;
1307
+ default: string;
1308
+ };
1309
+ placeholder: {
1310
+ type: import("vue").PropType<string>;
1311
+ default: string;
1312
+ };
1313
+ hoverHelpText: {
1314
+ type: import("vue").PropType<string>;
1315
+ default: string;
1316
+ };
1317
+ hoverHelpTextPlacement: {
1318
+ 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">;
1319
+ default: string;
1320
+ };
1321
+ feedbackText: {
1322
+ type: import("vue").PropType<string>;
1323
+ default: string;
1324
+ };
1325
+ feedbackVariant: {
1326
+ type: import("vue").PropType<"success" | "warning" | "error">;
1327
+ default: any;
1328
+ };
1329
+ maxLength: {
1330
+ type: import("vue").PropType<number>;
1331
+ default: any;
1332
+ };
1333
+ showFeedbackTextIcon: {
1334
+ type: import("vue").PropType<boolean>;
1335
+ default: boolean;
1336
+ };
1337
+ }>> & {
1338
+ "onUpdate:modelValue"?: (value: string) => any;
1339
+ }, {
1340
+ label: string;
1341
+ disabled: boolean;
1342
+ mandatory: boolean;
1343
+ testId: string;
1344
+ modelValue: string;
1345
+ placeholder: string;
1346
+ hoverHelpText: string;
1347
+ 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";
1348
+ feedbackText: string;
1349
+ feedbackVariant: "success" | "warning" | "error";
1350
+ maxLength: number;
1351
+ showFeedbackTextIcon: boolean;
1352
+ }>[];
1121
1353
  Checkbox: {
1122
1354
  new (...args: any[]): {
1123
1355
  $: import("vue").ComponentInternalInstance;
@@ -1616,7 +1848,10 @@ declare const _default: {
1616
1848
  $props: Partial<{
1617
1849
  title: string;
1618
1850
  variant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
1851
+ iconName: string;
1852
+ iconSize: string;
1619
1853
  subtitle: string;
1854
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
1620
1855
  buttonText: string;
1621
1856
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
1622
1857
  title: {
@@ -1627,17 +1862,29 @@ declare const _default: {
1627
1862
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
1628
1863
  default: string;
1629
1864
  };
1865
+ iconName: {
1866
+ type: import("vue").PropType<string>;
1867
+ default: any;
1868
+ };
1869
+ iconSize: {
1870
+ type: import("vue").PropType<string>;
1871
+ default: string;
1872
+ };
1630
1873
  subtitle: {
1631
1874
  type: import("vue").PropType<string>;
1632
1875
  default: any;
1633
1876
  };
1877
+ iconType: {
1878
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
1879
+ default: string;
1880
+ };
1634
1881
  buttonText: {
1635
1882
  type: import("vue").PropType<string>;
1636
1883
  default: any;
1637
1884
  };
1638
1885
  }>> & {
1639
1886
  onClick?: () => any;
1640
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "variant" | "subtitle" | "buttonText">;
1887
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "variant" | "iconName" | "iconSize" | "subtitle" | "iconType" | "buttonText">;
1641
1888
  $attrs: {
1642
1889
  [x: string]: unknown;
1643
1890
  };
@@ -1660,10 +1907,22 @@ declare const _default: {
1660
1907
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
1661
1908
  default: string;
1662
1909
  };
1910
+ iconName: {
1911
+ type: import("vue").PropType<string>;
1912
+ default: any;
1913
+ };
1914
+ iconSize: {
1915
+ type: import("vue").PropType<string>;
1916
+ default: string;
1917
+ };
1663
1918
  subtitle: {
1664
1919
  type: import("vue").PropType<string>;
1665
1920
  default: any;
1666
1921
  };
1922
+ iconType: {
1923
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
1924
+ default: string;
1925
+ };
1667
1926
  buttonText: {
1668
1927
  type: import("vue").PropType<string>;
1669
1928
  default: any;
@@ -1675,7 +1934,10 @@ declare const _default: {
1675
1934
  }, string, {
1676
1935
  title: string;
1677
1936
  variant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
1937
+ iconName: string;
1938
+ iconSize: string;
1678
1939
  subtitle: string;
1940
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
1679
1941
  buttonText: string;
1680
1942
  }, {}, string> & {
1681
1943
  beforeCreate?: (() => void) | (() => void)[];
@@ -1706,10 +1968,22 @@ declare const _default: {
1706
1968
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
1707
1969
  default: string;
1708
1970
  };
1971
+ iconName: {
1972
+ type: import("vue").PropType<string>;
1973
+ default: any;
1974
+ };
1975
+ iconSize: {
1976
+ type: import("vue").PropType<string>;
1977
+ default: string;
1978
+ };
1709
1979
  subtitle: {
1710
1980
  type: import("vue").PropType<string>;
1711
1981
  default: any;
1712
1982
  };
1983
+ iconType: {
1984
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
1985
+ default: string;
1986
+ };
1713
1987
  buttonText: {
1714
1988
  type: import("vue").PropType<string>;
1715
1989
  default: any;
@@ -1729,10 +2003,22 @@ declare const _default: {
1729
2003
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
1730
2004
  default: string;
1731
2005
  };
2006
+ iconName: {
2007
+ type: import("vue").PropType<string>;
2008
+ default: any;
2009
+ };
2010
+ iconSize: {
2011
+ type: import("vue").PropType<string>;
2012
+ default: string;
2013
+ };
1732
2014
  subtitle: {
1733
2015
  type: import("vue").PropType<string>;
1734
2016
  default: any;
1735
2017
  };
2018
+ iconType: {
2019
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
2020
+ default: string;
2021
+ };
1736
2022
  buttonText: {
1737
2023
  type: import("vue").PropType<string>;
1738
2024
  default: any;
@@ -1744,7 +2030,10 @@ declare const _default: {
1744
2030
  }, string, {
1745
2031
  title: string;
1746
2032
  variant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
2033
+ iconName: string;
2034
+ iconSize: string;
1747
2035
  subtitle: string;
2036
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
1748
2037
  buttonText: string;
1749
2038
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
1750
2039
  $slots: {
@@ -1759,7 +2048,10 @@ declare const _default: {
1759
2048
  $props: Partial<{
1760
2049
  title: string;
1761
2050
  variant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
2051
+ iconName: string;
2052
+ iconSize: string;
1762
2053
  subtitle: string;
2054
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
1763
2055
  buttonText: string;
1764
2056
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
1765
2057
  title: {
@@ -1770,17 +2062,29 @@ declare const _default: {
1770
2062
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
1771
2063
  default: string;
1772
2064
  };
2065
+ iconName: {
2066
+ type: import("vue").PropType<string>;
2067
+ default: any;
2068
+ };
2069
+ iconSize: {
2070
+ type: import("vue").PropType<string>;
2071
+ default: string;
2072
+ };
1773
2073
  subtitle: {
1774
2074
  type: import("vue").PropType<string>;
1775
2075
  default: any;
1776
2076
  };
2077
+ iconType: {
2078
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
2079
+ default: string;
2080
+ };
1777
2081
  buttonText: {
1778
2082
  type: import("vue").PropType<string>;
1779
2083
  default: any;
1780
2084
  };
1781
2085
  }>> & {
1782
2086
  onClick?: () => any;
1783
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "variant" | "subtitle" | "buttonText">;
2087
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "variant" | "iconName" | "iconSize" | "subtitle" | "iconType" | "buttonText">;
1784
2088
  $attrs: {
1785
2089
  [x: string]: unknown;
1786
2090
  };
@@ -1803,10 +2107,22 @@ declare const _default: {
1803
2107
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
1804
2108
  default: string;
1805
2109
  };
2110
+ iconName: {
2111
+ type: import("vue").PropType<string>;
2112
+ default: any;
2113
+ };
2114
+ iconSize: {
2115
+ type: import("vue").PropType<string>;
2116
+ default: string;
2117
+ };
1806
2118
  subtitle: {
1807
2119
  type: import("vue").PropType<string>;
1808
2120
  default: any;
1809
2121
  };
2122
+ iconType: {
2123
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
2124
+ default: string;
2125
+ };
1810
2126
  buttonText: {
1811
2127
  type: import("vue").PropType<string>;
1812
2128
  default: any;
@@ -1818,7 +2134,10 @@ declare const _default: {
1818
2134
  }, string, {
1819
2135
  title: string;
1820
2136
  variant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
2137
+ iconName: string;
2138
+ iconSize: string;
1821
2139
  subtitle: string;
2140
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
1822
2141
  buttonText: string;
1823
2142
  }, {}, string> & {
1824
2143
  beforeCreate?: (() => void) | (() => void)[];
@@ -1849,10 +2168,22 @@ declare const _default: {
1849
2168
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
1850
2169
  default: string;
1851
2170
  };
2171
+ iconName: {
2172
+ type: import("vue").PropType<string>;
2173
+ default: any;
2174
+ };
2175
+ iconSize: {
2176
+ type: import("vue").PropType<string>;
2177
+ default: string;
2178
+ };
1852
2179
  subtitle: {
1853
2180
  type: import("vue").PropType<string>;
1854
2181
  default: any;
1855
2182
  };
2183
+ iconType: {
2184
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
2185
+ default: string;
2186
+ };
1856
2187
  buttonText: {
1857
2188
  type: import("vue").PropType<string>;
1858
2189
  default: any;
@@ -1872,10 +2203,22 @@ declare const _default: {
1872
2203
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
1873
2204
  default: string;
1874
2205
  };
2206
+ iconName: {
2207
+ type: import("vue").PropType<string>;
2208
+ default: any;
2209
+ };
2210
+ iconSize: {
2211
+ type: import("vue").PropType<string>;
2212
+ default: string;
2213
+ };
1875
2214
  subtitle: {
1876
2215
  type: import("vue").PropType<string>;
1877
2216
  default: any;
1878
2217
  };
2218
+ iconType: {
2219
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
2220
+ default: string;
2221
+ };
1879
2222
  buttonText: {
1880
2223
  type: import("vue").PropType<string>;
1881
2224
  default: any;
@@ -1887,7 +2230,10 @@ declare const _default: {
1887
2230
  }, string, {
1888
2231
  title: string;
1889
2232
  variant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
2233
+ iconName: string;
2234
+ iconSize: string;
1890
2235
  subtitle: string;
2236
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
1891
2237
  buttonText: string;
1892
2238
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
1893
2239
  $slots: {
@@ -1900,14 +2246,25 @@ declare const _default: {
1900
2246
  $: import("vue").ComponentInternalInstance;
1901
2247
  $data: {};
1902
2248
  $props: Partial<{
2249
+ type: "input" | "dropdown";
1903
2250
  cell: string;
2251
+ displayValue: (option: unknown) => unknown;
1904
2252
  validateFunction: (value: unknown) => string | boolean;
1905
2253
  isLoading: boolean;
1906
2254
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
2255
+ type: {
2256
+ type: import("vue").PropType<"input" | "dropdown">;
2257
+ required: true;
2258
+ default: string;
2259
+ };
1907
2260
  cell: {
1908
2261
  type: import("vue").PropType<string>;
1909
2262
  default: string;
1910
2263
  };
2264
+ displayValue: {
2265
+ type: import("vue").PropType<(option: unknown) => unknown>;
2266
+ default: (cell: unknown) => unknown;
2267
+ };
1911
2268
  validateFunction: {
1912
2269
  type: import("vue").PropType<(value: unknown) => string | boolean>;
1913
2270
  default: () => false;
@@ -1924,7 +2281,7 @@ declare const _default: {
1924
2281
  type: import("vue").PropType<number>;
1925
2282
  required: true;
1926
2283
  };
1927
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "cell" | "validateFunction" | "isLoading">;
2284
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "cell" | "displayValue" | "validateFunction" | "isLoading">;
1928
2285
  $attrs: {
1929
2286
  [x: string]: unknown;
1930
2287
  };
@@ -1939,10 +2296,19 @@ declare const _default: {
1939
2296
  $emit: (event: string, ...args: any[]) => void;
1940
2297
  $el: any;
1941
2298
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2299
+ type: {
2300
+ type: import("vue").PropType<"input" | "dropdown">;
2301
+ required: true;
2302
+ default: string;
2303
+ };
1942
2304
  cell: {
1943
2305
  type: import("vue").PropType<string>;
1944
2306
  default: string;
1945
2307
  };
2308
+ displayValue: {
2309
+ type: import("vue").PropType<(option: unknown) => unknown>;
2310
+ default: (cell: unknown) => unknown;
2311
+ };
1946
2312
  validateFunction: {
1947
2313
  type: import("vue").PropType<(value: unknown) => string | boolean>;
1948
2314
  default: () => false;
@@ -1960,7 +2326,9 @@ declare const _default: {
1960
2326
  required: true;
1961
2327
  };
1962
2328
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
2329
+ type: "input" | "dropdown";
1963
2330
  cell: string;
2331
+ displayValue: (option: unknown) => unknown;
1964
2332
  validateFunction: (value: unknown) => string | boolean;
1965
2333
  isLoading: boolean;
1966
2334
  }, {}, string> & {
@@ -1984,10 +2352,19 @@ declare const _default: {
1984
2352
  $nextTick: typeof import("vue").nextTick;
1985
2353
  $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
2354
  } & Readonly<import("vue").ExtractPropTypes<{
2355
+ type: {
2356
+ type: import("vue").PropType<"input" | "dropdown">;
2357
+ required: true;
2358
+ default: string;
2359
+ };
1987
2360
  cell: {
1988
2361
  type: import("vue").PropType<string>;
1989
2362
  default: string;
1990
2363
  };
2364
+ displayValue: {
2365
+ type: import("vue").PropType<(option: unknown) => unknown>;
2366
+ default: (cell: unknown) => unknown;
2367
+ };
1991
2368
  validateFunction: {
1992
2369
  type: import("vue").PropType<(value: unknown) => string | boolean>;
1993
2370
  default: () => false;
@@ -2009,10 +2386,19 @@ declare const _default: {
2009
2386
  __isTeleport?: never;
2010
2387
  __isSuspense?: never;
2011
2388
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2389
+ type: {
2390
+ type: import("vue").PropType<"input" | "dropdown">;
2391
+ required: true;
2392
+ default: string;
2393
+ };
2012
2394
  cell: {
2013
2395
  type: import("vue").PropType<string>;
2014
2396
  default: string;
2015
2397
  };
2398
+ displayValue: {
2399
+ type: import("vue").PropType<(option: unknown) => unknown>;
2400
+ default: (cell: unknown) => unknown;
2401
+ };
2016
2402
  validateFunction: {
2017
2403
  type: import("vue").PropType<(value: unknown) => string | boolean>;
2018
2404
  default: () => false;
@@ -2030,7 +2416,9 @@ declare const _default: {
2030
2416
  required: true;
2031
2417
  };
2032
2418
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
2419
+ type: "input" | "dropdown";
2033
2420
  cell: string;
2421
+ displayValue: (option: unknown) => unknown;
2034
2422
  validateFunction: (value: unknown) => string | boolean;
2035
2423
  isLoading: boolean;
2036
2424
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
@@ -2044,14 +2432,25 @@ declare const _default: {
2044
2432
  $: import("vue").ComponentInternalInstance;
2045
2433
  $data: {};
2046
2434
  $props: Partial<{
2435
+ type: "input" | "dropdown";
2047
2436
  cell: string;
2437
+ displayValue: (option: unknown) => unknown;
2048
2438
  validateFunction: (value: unknown) => string | boolean;
2049
2439
  isLoading: boolean;
2050
2440
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
2441
+ type: {
2442
+ type: import("vue").PropType<"input" | "dropdown">;
2443
+ required: true;
2444
+ default: string;
2445
+ };
2051
2446
  cell: {
2052
2447
  type: import("vue").PropType<string>;
2053
2448
  default: string;
2054
2449
  };
2450
+ displayValue: {
2451
+ type: import("vue").PropType<(option: unknown) => unknown>;
2452
+ default: (cell: unknown) => unknown;
2453
+ };
2055
2454
  validateFunction: {
2056
2455
  type: import("vue").PropType<(value: unknown) => string | boolean>;
2057
2456
  default: () => false;
@@ -2068,7 +2467,7 @@ declare const _default: {
2068
2467
  type: import("vue").PropType<number>;
2069
2468
  required: true;
2070
2469
  };
2071
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "cell" | "validateFunction" | "isLoading">;
2470
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "cell" | "displayValue" | "validateFunction" | "isLoading">;
2072
2471
  $attrs: {
2073
2472
  [x: string]: unknown;
2074
2473
  };
@@ -2083,10 +2482,19 @@ declare const _default: {
2083
2482
  $emit: (event: string, ...args: any[]) => void;
2084
2483
  $el: any;
2085
2484
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2485
+ type: {
2486
+ type: import("vue").PropType<"input" | "dropdown">;
2487
+ required: true;
2488
+ default: string;
2489
+ };
2086
2490
  cell: {
2087
2491
  type: import("vue").PropType<string>;
2088
2492
  default: string;
2089
2493
  };
2494
+ displayValue: {
2495
+ type: import("vue").PropType<(option: unknown) => unknown>;
2496
+ default: (cell: unknown) => unknown;
2497
+ };
2090
2498
  validateFunction: {
2091
2499
  type: import("vue").PropType<(value: unknown) => string | boolean>;
2092
2500
  default: () => false;
@@ -2104,7 +2512,9 @@ declare const _default: {
2104
2512
  required: true;
2105
2513
  };
2106
2514
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
2515
+ type: "input" | "dropdown";
2107
2516
  cell: string;
2517
+ displayValue: (option: unknown) => unknown;
2108
2518
  validateFunction: (value: unknown) => string | boolean;
2109
2519
  isLoading: boolean;
2110
2520
  }, {}, string> & {
@@ -2128,10 +2538,19 @@ declare const _default: {
2128
2538
  $nextTick: typeof import("vue").nextTick;
2129
2539
  $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
2540
  } & Readonly<import("vue").ExtractPropTypes<{
2541
+ type: {
2542
+ type: import("vue").PropType<"input" | "dropdown">;
2543
+ required: true;
2544
+ default: string;
2545
+ };
2131
2546
  cell: {
2132
2547
  type: import("vue").PropType<string>;
2133
2548
  default: string;
2134
2549
  };
2550
+ displayValue: {
2551
+ type: import("vue").PropType<(option: unknown) => unknown>;
2552
+ default: (cell: unknown) => unknown;
2553
+ };
2135
2554
  validateFunction: {
2136
2555
  type: import("vue").PropType<(value: unknown) => string | boolean>;
2137
2556
  default: () => false;
@@ -2153,10 +2572,19 @@ declare const _default: {
2153
2572
  __isTeleport?: never;
2154
2573
  __isSuspense?: never;
2155
2574
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2575
+ type: {
2576
+ type: import("vue").PropType<"input" | "dropdown">;
2577
+ required: true;
2578
+ default: string;
2579
+ };
2156
2580
  cell: {
2157
2581
  type: import("vue").PropType<string>;
2158
2582
  default: string;
2159
2583
  };
2584
+ displayValue: {
2585
+ type: import("vue").PropType<(option: unknown) => unknown>;
2586
+ default: (cell: unknown) => unknown;
2587
+ };
2160
2588
  validateFunction: {
2161
2589
  type: import("vue").PropType<(value: unknown) => string | boolean>;
2162
2590
  default: () => false;
@@ -2174,7 +2602,9 @@ declare const _default: {
2174
2602
  required: true;
2175
2603
  };
2176
2604
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
2605
+ type: "input" | "dropdown";
2177
2606
  cell: string;
2607
+ displayValue: (option: unknown) => unknown;
2178
2608
  validateFunction: (value: unknown) => string | boolean;
2179
2609
  isLoading: boolean;
2180
2610
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
@@ -2804,8 +3234,8 @@ declare const _default: {
2804
3234
  };
2805
3235
  });
2806
3236
  DataGridMenu: import("vue").DefineComponent<{
2807
- container: {
2808
- type: import("vue").PropType<string>;
3237
+ rowIndex: {
3238
+ type: import("vue").PropType<number>;
2809
3239
  default: any;
2810
3240
  };
2811
3241
  menuItems: {
@@ -2816,8 +3246,8 @@ declare const _default: {
2816
3246
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2817
3247
  selected: (option: unknown) => void;
2818
3248
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2819
- container: {
2820
- type: import("vue").PropType<string>;
3249
+ rowIndex: {
3250
+ type: import("vue").PropType<number>;
2821
3251
  default: any;
2822
3252
  };
2823
3253
  menuItems: {
@@ -2828,7 +3258,7 @@ declare const _default: {
2828
3258
  }>> & {
2829
3259
  onSelected?: (option: unknown) => any;
2830
3260
  }, {
2831
- container: string;
3261
+ rowIndex: number;
2832
3262
  menuItems: tableV4.MenuItem[];
2833
3263
  }>;
2834
3264
  DataGridRowsCounter: import("vue").DefineComponent<{
@@ -2840,6 +3270,18 @@ declare const _default: {
2840
3270
  type: import("vue").PropType<number>;
2841
3271
  default: number;
2842
3272
  };
3273
+ displayingText: {
3274
+ type: import("vue").PropType<string>;
3275
+ default: string;
3276
+ };
3277
+ outOfText: {
3278
+ type: import("vue").PropType<string>;
3279
+ default: string;
3280
+ };
3281
+ totalText: {
3282
+ type: import("vue").PropType<string>;
3283
+ default: string;
3284
+ };
2843
3285
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2844
3286
  count: {
2845
3287
  type: import("vue").PropType<number>;
@@ -2849,9 +3291,24 @@ declare const _default: {
2849
3291
  type: import("vue").PropType<number>;
2850
3292
  default: number;
2851
3293
  };
3294
+ displayingText: {
3295
+ type: import("vue").PropType<string>;
3296
+ default: string;
3297
+ };
3298
+ outOfText: {
3299
+ type: import("vue").PropType<string>;
3300
+ default: string;
3301
+ };
3302
+ totalText: {
3303
+ type: import("vue").PropType<string>;
3304
+ default: string;
3305
+ };
2852
3306
  }>>, {
2853
3307
  count: number;
2854
3308
  totalCount: number;
3309
+ displayingText: string;
3310
+ outOfText: string;
3311
+ totalText: string;
2855
3312
  }>;
2856
3313
  DataGridTypes: () => (({
2857
3314
  new (...args: any[]): {
@@ -3471,8 +3928,8 @@ declare const _default: {
3471
3928
  footer?(_: {}): any;
3472
3929
  };
3473
3930
  })) | import("vue").DefineComponent<{
3474
- container: {
3475
- type: import("vue").PropType<string>;
3931
+ rowIndex: {
3932
+ type: import("vue").PropType<number>;
3476
3933
  default: any;
3477
3934
  };
3478
3935
  menuItems: {
@@ -3483,8 +3940,8 @@ declare const _default: {
3483
3940
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3484
3941
  selected: (option: unknown) => void;
3485
3942
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
3486
- container: {
3487
- type: import("vue").PropType<string>;
3943
+ rowIndex: {
3944
+ type: import("vue").PropType<number>;
3488
3945
  default: any;
3489
3946
  };
3490
3947
  menuItems: {
@@ -3495,7 +3952,7 @@ declare const _default: {
3495
3952
  }>> & {
3496
3953
  onSelected?: (option: unknown) => any;
3497
3954
  }, {
3498
- container: string;
3955
+ rowIndex: number;
3499
3956
  menuItems: tableV4.MenuItem[];
3500
3957
  }> | import("vue").DefineComponent<{
3501
3958
  count: {
@@ -3506,6 +3963,18 @@ declare const _default: {
3506
3963
  type: import("vue").PropType<number>;
3507
3964
  default: number;
3508
3965
  };
3966
+ displayingText: {
3967
+ type: import("vue").PropType<string>;
3968
+ default: string;
3969
+ };
3970
+ outOfText: {
3971
+ type: import("vue").PropType<string>;
3972
+ default: string;
3973
+ };
3974
+ totalText: {
3975
+ type: import("vue").PropType<string>;
3976
+ default: string;
3977
+ };
3509
3978
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
3510
3979
  count: {
3511
3980
  type: import("vue").PropType<number>;
@@ -3515,9 +3984,24 @@ declare const _default: {
3515
3984
  type: import("vue").PropType<number>;
3516
3985
  default: number;
3517
3986
  };
3987
+ displayingText: {
3988
+ type: import("vue").PropType<string>;
3989
+ default: string;
3990
+ };
3991
+ outOfText: {
3992
+ type: import("vue").PropType<string>;
3993
+ default: string;
3994
+ };
3995
+ totalText: {
3996
+ type: import("vue").PropType<string>;
3997
+ default: string;
3998
+ };
3518
3999
  }>>, {
3519
4000
  count: number;
3520
4001
  totalCount: number;
4002
+ displayingText: string;
4003
+ outOfText: string;
4004
+ totalText: string;
3521
4005
  }>)[];
3522
4006
  Table: {
3523
4007
  new (...args: any[]): {
@@ -7694,13 +8178,13 @@ declare const _default: {
7694
8178
  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
8179
  feedbackText: string;
7696
8180
  feedbackVariant: "success" | "warning" | "error";
8181
+ maxLength: number;
7697
8182
  viewOnly: boolean;
7698
8183
  labelDirection: "top" | "inside";
7699
8184
  hideNumberArrows: boolean;
7700
8185
  step: number;
7701
8186
  onlyDigits: boolean;
7702
8187
  suffix: string;
7703
- maxLength: number;
7704
8188
  showApply: boolean;
7705
8189
  inlineError: boolean;
7706
8190
  inlineErrorText: string;
@@ -7762,6 +8246,10 @@ declare const _default: {
7762
8246
  type: import("vue").PropType<"success" | "warning" | "error">;
7763
8247
  default: any;
7764
8248
  };
8249
+ maxLength: {
8250
+ type: import("vue").PropType<number>;
8251
+ default: any;
8252
+ };
7765
8253
  viewOnly: {
7766
8254
  type: import("vue").PropType<boolean>;
7767
8255
  default: boolean;
@@ -7786,10 +8274,6 @@ declare const _default: {
7786
8274
  type: import("vue").PropType<string>;
7787
8275
  default: string;
7788
8276
  };
7789
- maxLength: {
7790
- type: import("vue").PropType<number>;
7791
- default: any;
7792
- };
7793
8277
  showApply: {
7794
8278
  type: import("vue").PropType<boolean>;
7795
8279
  default: boolean;
@@ -7809,7 +8293,7 @@ declare const _default: {
7809
8293
  }>> & {
7810
8294
  "onUpdate:modelValue"?: (value: string | number) => any;
7811
8295
  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">;
8296
+ } & 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
8297
  $attrs: {
7814
8298
  [x: string]: unknown;
7815
8299
  };
@@ -7880,6 +8364,10 @@ declare const _default: {
7880
8364
  type: import("vue").PropType<"success" | "warning" | "error">;
7881
8365
  default: any;
7882
8366
  };
8367
+ maxLength: {
8368
+ type: import("vue").PropType<number>;
8369
+ default: any;
8370
+ };
7883
8371
  viewOnly: {
7884
8372
  type: import("vue").PropType<boolean>;
7885
8373
  default: boolean;
@@ -7904,10 +8392,6 @@ declare const _default: {
7904
8392
  type: import("vue").PropType<string>;
7905
8393
  default: string;
7906
8394
  };
7907
- maxLength: {
7908
- type: import("vue").PropType<number>;
7909
- default: any;
7910
- };
7911
8395
  showApply: {
7912
8396
  type: import("vue").PropType<boolean>;
7913
8397
  default: boolean;
@@ -7947,13 +8431,13 @@ declare const _default: {
7947
8431
  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
8432
  feedbackText: string;
7949
8433
  feedbackVariant: "success" | "warning" | "error";
8434
+ maxLength: number;
7950
8435
  viewOnly: boolean;
7951
8436
  labelDirection: "top" | "inside";
7952
8437
  hideNumberArrows: boolean;
7953
8438
  step: number;
7954
8439
  onlyDigits: boolean;
7955
8440
  suffix: string;
7956
- maxLength: number;
7957
8441
  showApply: boolean;
7958
8442
  inlineError: boolean;
7959
8443
  inlineErrorText: string;
@@ -8035,6 +8519,10 @@ declare const _default: {
8035
8519
  type: import("vue").PropType<"success" | "warning" | "error">;
8036
8520
  default: any;
8037
8521
  };
8522
+ maxLength: {
8523
+ type: import("vue").PropType<number>;
8524
+ default: any;
8525
+ };
8038
8526
  viewOnly: {
8039
8527
  type: import("vue").PropType<boolean>;
8040
8528
  default: boolean;
@@ -8059,10 +8547,6 @@ declare const _default: {
8059
8547
  type: import("vue").PropType<string>;
8060
8548
  default: string;
8061
8549
  };
8062
- maxLength: {
8063
- type: import("vue").PropType<number>;
8064
- default: any;
8065
- };
8066
8550
  showApply: {
8067
8551
  type: import("vue").PropType<boolean>;
8068
8552
  default: boolean;
@@ -8145,6 +8629,10 @@ declare const _default: {
8145
8629
  type: import("vue").PropType<"success" | "warning" | "error">;
8146
8630
  default: any;
8147
8631
  };
8632
+ maxLength: {
8633
+ type: import("vue").PropType<number>;
8634
+ default: any;
8635
+ };
8148
8636
  viewOnly: {
8149
8637
  type: import("vue").PropType<boolean>;
8150
8638
  default: boolean;
@@ -8169,10 +8657,6 @@ declare const _default: {
8169
8657
  type: import("vue").PropType<string>;
8170
8658
  default: string;
8171
8659
  };
8172
- maxLength: {
8173
- type: import("vue").PropType<number>;
8174
- default: any;
8175
- };
8176
8660
  showApply: {
8177
8661
  type: import("vue").PropType<boolean>;
8178
8662
  default: boolean;
@@ -8212,13 +8696,13 @@ declare const _default: {
8212
8696
  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
8697
  feedbackText: string;
8214
8698
  feedbackVariant: "success" | "warning" | "error";
8699
+ maxLength: number;
8215
8700
  viewOnly: boolean;
8216
8701
  labelDirection: "top" | "inside";
8217
8702
  hideNumberArrows: boolean;
8218
8703
  step: number;
8219
8704
  onlyDigits: boolean;
8220
8705
  suffix: string;
8221
- maxLength: number;
8222
8706
  showApply: boolean;
8223
8707
  inlineError: boolean;
8224
8708
  inlineErrorText: string;
@@ -8248,13 +8732,13 @@ declare const _default: {
8248
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";
8249
8733
  feedbackText: string;
8250
8734
  feedbackVariant: "success" | "warning" | "error";
8735
+ maxLength: number;
8251
8736
  viewOnly: boolean;
8252
8737
  labelDirection: "top" | "inside";
8253
8738
  hideNumberArrows: boolean;
8254
8739
  step: number;
8255
8740
  onlyDigits: boolean;
8256
8741
  suffix: string;
8257
- maxLength: number;
8258
8742
  showApply: boolean;
8259
8743
  inlineError: boolean;
8260
8744
  inlineErrorText: string;
@@ -8316,6 +8800,10 @@ declare const _default: {
8316
8800
  type: import("vue").PropType<"success" | "warning" | "error">;
8317
8801
  default: any;
8318
8802
  };
8803
+ maxLength: {
8804
+ type: import("vue").PropType<number>;
8805
+ default: any;
8806
+ };
8319
8807
  viewOnly: {
8320
8808
  type: import("vue").PropType<boolean>;
8321
8809
  default: boolean;
@@ -8340,10 +8828,6 @@ declare const _default: {
8340
8828
  type: import("vue").PropType<string>;
8341
8829
  default: string;
8342
8830
  };
8343
- maxLength: {
8344
- type: import("vue").PropType<number>;
8345
- default: any;
8346
- };
8347
8831
  showApply: {
8348
8832
  type: import("vue").PropType<boolean>;
8349
8833
  default: boolean;
@@ -8363,7 +8847,7 @@ declare const _default: {
8363
8847
  }>> & {
8364
8848
  "onUpdate:modelValue"?: (value: string | number) => any;
8365
8849
  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">;
8850
+ } & 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
8851
  $attrs: {
8368
8852
  [x: string]: unknown;
8369
8853
  };
@@ -8434,6 +8918,10 @@ declare const _default: {
8434
8918
  type: import("vue").PropType<"success" | "warning" | "error">;
8435
8919
  default: any;
8436
8920
  };
8921
+ maxLength: {
8922
+ type: import("vue").PropType<number>;
8923
+ default: any;
8924
+ };
8437
8925
  viewOnly: {
8438
8926
  type: import("vue").PropType<boolean>;
8439
8927
  default: boolean;
@@ -8458,10 +8946,6 @@ declare const _default: {
8458
8946
  type: import("vue").PropType<string>;
8459
8947
  default: string;
8460
8948
  };
8461
- maxLength: {
8462
- type: import("vue").PropType<number>;
8463
- default: any;
8464
- };
8465
8949
  showApply: {
8466
8950
  type: import("vue").PropType<boolean>;
8467
8951
  default: boolean;
@@ -8501,13 +8985,13 @@ declare const _default: {
8501
8985
  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
8986
  feedbackText: string;
8503
8987
  feedbackVariant: "success" | "warning" | "error";
8988
+ maxLength: number;
8504
8989
  viewOnly: boolean;
8505
8990
  labelDirection: "top" | "inside";
8506
8991
  hideNumberArrows: boolean;
8507
8992
  step: number;
8508
8993
  onlyDigits: boolean;
8509
8994
  suffix: string;
8510
- maxLength: number;
8511
8995
  showApply: boolean;
8512
8996
  inlineError: boolean;
8513
8997
  inlineErrorText: string;
@@ -8589,6 +9073,10 @@ declare const _default: {
8589
9073
  type: import("vue").PropType<"success" | "warning" | "error">;
8590
9074
  default: any;
8591
9075
  };
9076
+ maxLength: {
9077
+ type: import("vue").PropType<number>;
9078
+ default: any;
9079
+ };
8592
9080
  viewOnly: {
8593
9081
  type: import("vue").PropType<boolean>;
8594
9082
  default: boolean;
@@ -8613,10 +9101,6 @@ declare const _default: {
8613
9101
  type: import("vue").PropType<string>;
8614
9102
  default: string;
8615
9103
  };
8616
- maxLength: {
8617
- type: import("vue").PropType<number>;
8618
- default: any;
8619
- };
8620
9104
  showApply: {
8621
9105
  type: import("vue").PropType<boolean>;
8622
9106
  default: boolean;
@@ -8699,6 +9183,10 @@ declare const _default: {
8699
9183
  type: import("vue").PropType<"success" | "warning" | "error">;
8700
9184
  default: any;
8701
9185
  };
9186
+ maxLength: {
9187
+ type: import("vue").PropType<number>;
9188
+ default: any;
9189
+ };
8702
9190
  viewOnly: {
8703
9191
  type: import("vue").PropType<boolean>;
8704
9192
  default: boolean;
@@ -8723,10 +9211,6 @@ declare const _default: {
8723
9211
  type: import("vue").PropType<string>;
8724
9212
  default: string;
8725
9213
  };
8726
- maxLength: {
8727
- type: import("vue").PropType<number>;
8728
- default: any;
8729
- };
8730
9214
  showApply: {
8731
9215
  type: import("vue").PropType<boolean>;
8732
9216
  default: boolean;
@@ -8766,13 +9250,13 @@ declare const _default: {
8766
9250
  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
9251
  feedbackText: string;
8768
9252
  feedbackVariant: "success" | "warning" | "error";
9253
+ maxLength: number;
8769
9254
  viewOnly: boolean;
8770
9255
  labelDirection: "top" | "inside";
8771
9256
  hideNumberArrows: boolean;
8772
9257
  step: number;
8773
9258
  onlyDigits: boolean;
8774
9259
  suffix: string;
8775
- maxLength: number;
8776
9260
  showApply: boolean;
8777
9261
  inlineError: boolean;
8778
9262
  inlineErrorText: string;
@@ -17106,7 +17590,6 @@ declare const _default: {
17106
17590
  }))[];
17107
17591
  };
17108
17592
  export default _default;
17109
- export * from '@/components/textArea';
17110
17593
  export * from '@/composables/useToggle';
17111
17594
  export * from '@/composables/useSearch';
17112
17595
  export * from '@/composables/useFormValidation';