@ironsource/shared-ui 2.1.3-rc.2 → 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 (27) hide show
  1. package/FieldMaxLength.vue_vue_type_style_index_0_scoped_f3c4001a_lang.css +1 -0
  2. package/TextArea.vue_vue_type_style_index_0_scoped_eb62e4c0_lang.css +1 -0
  3. package/TextAreaV4.vue_vue_type_style_index_0_scoped_6e91a617_lang.css +1 -0
  4. package/TextField.vue_vue_type_style_index_0_scoped_dca4c102_lang.css +1 -0
  5. package/components/input/v4/TextField.vue.d.ts +1 -1
  6. package/components/input/v4/TextField.vue.js +3 -3
  7. package/components/input/v4/TextField.vue2.js +83 -90
  8. package/components/input/v4/index.d.ts +20 -20
  9. package/components/shared/FieldMaxLength.vue.d.ts +34 -0
  10. package/components/shared/FieldMaxLength.vue.js +7 -0
  11. package/components/shared/FieldMaxLength.vue2.js +24 -0
  12. package/components/textArea/v3/TextArea.vue.js +7 -0
  13. package/components/textArea/{TextArea.vue2.js → v3/TextArea.vue2.js} +4 -4
  14. package/components/textArea/v4/TextAreaV4.vue.d.ts +90 -0
  15. package/components/textArea/v4/TextAreaV4.vue.js +7 -0
  16. package/components/textArea/v4/TextAreaV4.vue2.js +74 -0
  17. package/components/textArea/v4/index.d.ts +118 -0
  18. package/components/textArea/v4/index.js +6 -0
  19. package/index.d.ts +272 -41
  20. package/index.js +67 -67
  21. package/package.json +3 -2
  22. package/TextArea.vue_vue_type_style_index_0_scoped_889b62ac_lang.css +0 -1
  23. package/TextField.vue_vue_type_style_index_0_scoped_473bab9b_lang.css +0 -1
  24. package/components/textArea/TextArea.vue.js +0 -7
  25. /package/components/textArea/{TextArea.vue.d.ts → v3/TextArea.vue.d.ts} +0 -0
  26. /package/components/textArea/{index.d.ts → v3/index.d.ts} +0 -0
  27. /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;
@@ -7946,13 +8178,13 @@ declare const _default: {
7946
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";
7947
8179
  feedbackText: string;
7948
8180
  feedbackVariant: "success" | "warning" | "error";
8181
+ maxLength: number;
7949
8182
  viewOnly: boolean;
7950
8183
  labelDirection: "top" | "inside";
7951
8184
  hideNumberArrows: boolean;
7952
8185
  step: number;
7953
8186
  onlyDigits: boolean;
7954
8187
  suffix: string;
7955
- maxLength: number;
7956
8188
  showApply: boolean;
7957
8189
  inlineError: boolean;
7958
8190
  inlineErrorText: string;
@@ -8014,6 +8246,10 @@ declare const _default: {
8014
8246
  type: import("vue").PropType<"success" | "warning" | "error">;
8015
8247
  default: any;
8016
8248
  };
8249
+ maxLength: {
8250
+ type: import("vue").PropType<number>;
8251
+ default: any;
8252
+ };
8017
8253
  viewOnly: {
8018
8254
  type: import("vue").PropType<boolean>;
8019
8255
  default: boolean;
@@ -8038,10 +8274,6 @@ declare const _default: {
8038
8274
  type: import("vue").PropType<string>;
8039
8275
  default: string;
8040
8276
  };
8041
- maxLength: {
8042
- type: import("vue").PropType<number>;
8043
- default: any;
8044
- };
8045
8277
  showApply: {
8046
8278
  type: import("vue").PropType<boolean>;
8047
8279
  default: boolean;
@@ -8061,7 +8293,7 @@ declare const _default: {
8061
8293
  }>> & {
8062
8294
  "onUpdate:modelValue"?: (value: string | number) => any;
8063
8295
  onApply?: () => any;
8064
- } & 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">;
8065
8297
  $attrs: {
8066
8298
  [x: string]: unknown;
8067
8299
  };
@@ -8132,6 +8364,10 @@ declare const _default: {
8132
8364
  type: import("vue").PropType<"success" | "warning" | "error">;
8133
8365
  default: any;
8134
8366
  };
8367
+ maxLength: {
8368
+ type: import("vue").PropType<number>;
8369
+ default: any;
8370
+ };
8135
8371
  viewOnly: {
8136
8372
  type: import("vue").PropType<boolean>;
8137
8373
  default: boolean;
@@ -8156,10 +8392,6 @@ declare const _default: {
8156
8392
  type: import("vue").PropType<string>;
8157
8393
  default: string;
8158
8394
  };
8159
- maxLength: {
8160
- type: import("vue").PropType<number>;
8161
- default: any;
8162
- };
8163
8395
  showApply: {
8164
8396
  type: import("vue").PropType<boolean>;
8165
8397
  default: boolean;
@@ -8199,13 +8431,13 @@ declare const _default: {
8199
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";
8200
8432
  feedbackText: string;
8201
8433
  feedbackVariant: "success" | "warning" | "error";
8434
+ maxLength: number;
8202
8435
  viewOnly: boolean;
8203
8436
  labelDirection: "top" | "inside";
8204
8437
  hideNumberArrows: boolean;
8205
8438
  step: number;
8206
8439
  onlyDigits: boolean;
8207
8440
  suffix: string;
8208
- maxLength: number;
8209
8441
  showApply: boolean;
8210
8442
  inlineError: boolean;
8211
8443
  inlineErrorText: string;
@@ -8287,6 +8519,10 @@ declare const _default: {
8287
8519
  type: import("vue").PropType<"success" | "warning" | "error">;
8288
8520
  default: any;
8289
8521
  };
8522
+ maxLength: {
8523
+ type: import("vue").PropType<number>;
8524
+ default: any;
8525
+ };
8290
8526
  viewOnly: {
8291
8527
  type: import("vue").PropType<boolean>;
8292
8528
  default: boolean;
@@ -8311,10 +8547,6 @@ declare const _default: {
8311
8547
  type: import("vue").PropType<string>;
8312
8548
  default: string;
8313
8549
  };
8314
- maxLength: {
8315
- type: import("vue").PropType<number>;
8316
- default: any;
8317
- };
8318
8550
  showApply: {
8319
8551
  type: import("vue").PropType<boolean>;
8320
8552
  default: boolean;
@@ -8397,6 +8629,10 @@ declare const _default: {
8397
8629
  type: import("vue").PropType<"success" | "warning" | "error">;
8398
8630
  default: any;
8399
8631
  };
8632
+ maxLength: {
8633
+ type: import("vue").PropType<number>;
8634
+ default: any;
8635
+ };
8400
8636
  viewOnly: {
8401
8637
  type: import("vue").PropType<boolean>;
8402
8638
  default: boolean;
@@ -8421,10 +8657,6 @@ declare const _default: {
8421
8657
  type: import("vue").PropType<string>;
8422
8658
  default: string;
8423
8659
  };
8424
- maxLength: {
8425
- type: import("vue").PropType<number>;
8426
- default: any;
8427
- };
8428
8660
  showApply: {
8429
8661
  type: import("vue").PropType<boolean>;
8430
8662
  default: boolean;
@@ -8464,13 +8696,13 @@ declare const _default: {
8464
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";
8465
8697
  feedbackText: string;
8466
8698
  feedbackVariant: "success" | "warning" | "error";
8699
+ maxLength: number;
8467
8700
  viewOnly: boolean;
8468
8701
  labelDirection: "top" | "inside";
8469
8702
  hideNumberArrows: boolean;
8470
8703
  step: number;
8471
8704
  onlyDigits: boolean;
8472
8705
  suffix: string;
8473
- maxLength: number;
8474
8706
  showApply: boolean;
8475
8707
  inlineError: boolean;
8476
8708
  inlineErrorText: string;
@@ -8500,13 +8732,13 @@ declare const _default: {
8500
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";
8501
8733
  feedbackText: string;
8502
8734
  feedbackVariant: "success" | "warning" | "error";
8735
+ maxLength: number;
8503
8736
  viewOnly: boolean;
8504
8737
  labelDirection: "top" | "inside";
8505
8738
  hideNumberArrows: boolean;
8506
8739
  step: number;
8507
8740
  onlyDigits: boolean;
8508
8741
  suffix: string;
8509
- maxLength: number;
8510
8742
  showApply: boolean;
8511
8743
  inlineError: boolean;
8512
8744
  inlineErrorText: string;
@@ -8568,6 +8800,10 @@ declare const _default: {
8568
8800
  type: import("vue").PropType<"success" | "warning" | "error">;
8569
8801
  default: any;
8570
8802
  };
8803
+ maxLength: {
8804
+ type: import("vue").PropType<number>;
8805
+ default: any;
8806
+ };
8571
8807
  viewOnly: {
8572
8808
  type: import("vue").PropType<boolean>;
8573
8809
  default: boolean;
@@ -8592,10 +8828,6 @@ declare const _default: {
8592
8828
  type: import("vue").PropType<string>;
8593
8829
  default: string;
8594
8830
  };
8595
- maxLength: {
8596
- type: import("vue").PropType<number>;
8597
- default: any;
8598
- };
8599
8831
  showApply: {
8600
8832
  type: import("vue").PropType<boolean>;
8601
8833
  default: boolean;
@@ -8615,7 +8847,7 @@ declare const _default: {
8615
8847
  }>> & {
8616
8848
  "onUpdate:modelValue"?: (value: string | number) => any;
8617
8849
  onApply?: () => any;
8618
- } & 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">;
8619
8851
  $attrs: {
8620
8852
  [x: string]: unknown;
8621
8853
  };
@@ -8686,6 +8918,10 @@ declare const _default: {
8686
8918
  type: import("vue").PropType<"success" | "warning" | "error">;
8687
8919
  default: any;
8688
8920
  };
8921
+ maxLength: {
8922
+ type: import("vue").PropType<number>;
8923
+ default: any;
8924
+ };
8689
8925
  viewOnly: {
8690
8926
  type: import("vue").PropType<boolean>;
8691
8927
  default: boolean;
@@ -8710,10 +8946,6 @@ declare const _default: {
8710
8946
  type: import("vue").PropType<string>;
8711
8947
  default: string;
8712
8948
  };
8713
- maxLength: {
8714
- type: import("vue").PropType<number>;
8715
- default: any;
8716
- };
8717
8949
  showApply: {
8718
8950
  type: import("vue").PropType<boolean>;
8719
8951
  default: boolean;
@@ -8753,13 +8985,13 @@ declare const _default: {
8753
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";
8754
8986
  feedbackText: string;
8755
8987
  feedbackVariant: "success" | "warning" | "error";
8988
+ maxLength: number;
8756
8989
  viewOnly: boolean;
8757
8990
  labelDirection: "top" | "inside";
8758
8991
  hideNumberArrows: boolean;
8759
8992
  step: number;
8760
8993
  onlyDigits: boolean;
8761
8994
  suffix: string;
8762
- maxLength: number;
8763
8995
  showApply: boolean;
8764
8996
  inlineError: boolean;
8765
8997
  inlineErrorText: string;
@@ -8841,6 +9073,10 @@ declare const _default: {
8841
9073
  type: import("vue").PropType<"success" | "warning" | "error">;
8842
9074
  default: any;
8843
9075
  };
9076
+ maxLength: {
9077
+ type: import("vue").PropType<number>;
9078
+ default: any;
9079
+ };
8844
9080
  viewOnly: {
8845
9081
  type: import("vue").PropType<boolean>;
8846
9082
  default: boolean;
@@ -8865,10 +9101,6 @@ declare const _default: {
8865
9101
  type: import("vue").PropType<string>;
8866
9102
  default: string;
8867
9103
  };
8868
- maxLength: {
8869
- type: import("vue").PropType<number>;
8870
- default: any;
8871
- };
8872
9104
  showApply: {
8873
9105
  type: import("vue").PropType<boolean>;
8874
9106
  default: boolean;
@@ -8951,6 +9183,10 @@ declare const _default: {
8951
9183
  type: import("vue").PropType<"success" | "warning" | "error">;
8952
9184
  default: any;
8953
9185
  };
9186
+ maxLength: {
9187
+ type: import("vue").PropType<number>;
9188
+ default: any;
9189
+ };
8954
9190
  viewOnly: {
8955
9191
  type: import("vue").PropType<boolean>;
8956
9192
  default: boolean;
@@ -8975,10 +9211,6 @@ declare const _default: {
8975
9211
  type: import("vue").PropType<string>;
8976
9212
  default: string;
8977
9213
  };
8978
- maxLength: {
8979
- type: import("vue").PropType<number>;
8980
- default: any;
8981
- };
8982
9214
  showApply: {
8983
9215
  type: import("vue").PropType<boolean>;
8984
9216
  default: boolean;
@@ -9018,13 +9250,13 @@ declare const _default: {
9018
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";
9019
9251
  feedbackText: string;
9020
9252
  feedbackVariant: "success" | "warning" | "error";
9253
+ maxLength: number;
9021
9254
  viewOnly: boolean;
9022
9255
  labelDirection: "top" | "inside";
9023
9256
  hideNumberArrows: boolean;
9024
9257
  step: number;
9025
9258
  onlyDigits: boolean;
9026
9259
  suffix: string;
9027
- maxLength: number;
9028
9260
  showApply: boolean;
9029
9261
  inlineError: boolean;
9030
9262
  inlineErrorText: string;
@@ -17358,7 +17590,6 @@ declare const _default: {
17358
17590
  }))[];
17359
17591
  };
17360
17592
  export default _default;
17361
- export * from '@/components/textArea';
17362
17593
  export * from '@/composables/useToggle';
17363
17594
  export * from '@/composables/useSearch';
17364
17595
  export * from '@/composables/useFormValidation';