@oub/fusion 0.2.106 → 0.2.107

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 (85) hide show
  1. package/dist/fusion.js +6885 -7131
  2. package/dist/fusion.umd.cjs +7 -7
  3. package/dist/lib/base/classes/BaseTokens.d.ts +2 -2
  4. package/dist/lib/components/common/banner/FusionBanner.vue.d.ts +141 -9
  5. package/dist/lib/components/common/bars/action-bar/FusionActionBar.vue.d.ts +1 -1
  6. package/dist/lib/components/common/bars/footer/FusionFooterBar.vue.d.ts +136 -8
  7. package/dist/lib/components/common/bars/subheading-bar/FusionSubheadingBar.vue.d.ts +3 -3
  8. package/dist/lib/components/common/bars/toolbar/FusionToolBar.vue.d.ts +134 -6
  9. package/dist/lib/components/common/card/FusionCard.vue.d.ts +10 -8
  10. package/dist/lib/components/common/circular-progress-bar/FusionCircularProgressIndicatorLabelCollection.vue.d.ts +122 -7
  11. package/dist/lib/components/common/circular-progress-bar/circular-progress-indicator/FusionCircularProgressIndicator.vue.d.ts +7 -7
  12. package/dist/lib/components/common/circular-progress-bar/circular-progress-indicator-label/FusionCircularProgressIndicatorLabel.vue.d.ts +7 -4
  13. package/dist/lib/components/common/circular-progress-bar/circular-progress-indicator-label/FusionCircularProgressIndicatorLabelChecklist.vue.d.ts +32 -7
  14. package/dist/lib/components/common/country/CountrySelectDropdown.vue.d.ts +11 -8
  15. package/dist/lib/components/common/country/CountrySelectList.vue.d.ts +87 -7
  16. package/dist/lib/components/common/date-picker/FusionDatePicker.vue.d.ts +17 -13
  17. package/dist/lib/components/common/date-picker/FusionMonthDatePicker.vue.d.ts +17 -13
  18. package/dist/lib/components/common/date-picker/FusionRangeDatePicker.vue.d.ts +18 -14
  19. package/dist/lib/components/common/divider/FusionDivider.vue.d.ts +1 -1
  20. package/dist/lib/components/common/key-value-pair/FusionKeyValuePair.vue.d.ts +172 -10
  21. package/dist/lib/components/common/list/FusionListItem.vue.d.ts +10 -8
  22. package/dist/lib/components/common/loading-spinner/FusionLoadingSpinner.vue.d.ts +4 -4
  23. package/dist/lib/components/common/menu/FusionContextMenu.vue.d.ts +4 -2
  24. package/dist/lib/components/common/menu/menu-item/FusionMenuItem.vue.d.ts +10 -8
  25. package/dist/lib/components/common/modal/FusionModal.vue.d.ts +406 -9
  26. package/dist/lib/components/common/modal/modal-footer/FusionModalFooter.vue.d.ts +137 -9
  27. package/dist/lib/components/common/modal/modal-header/FusionModalHeader.vue.d.ts +134 -6
  28. package/dist/lib/components/common/numeric-input-stepper/FusionNumericInputStepper.vue.d.ts +137 -8
  29. package/dist/lib/components/common/panel/FusionPanel.vue.d.ts +280 -10
  30. package/dist/lib/components/common/platform-bar/FusionPlatformBar.vue.d.ts +1 -1
  31. package/dist/lib/components/common/progress-bar/FusionProgressBar.vue.d.ts +55 -8
  32. package/dist/lib/components/common/progress-bar/FusionProgressBarStep.vue.d.ts +4 -4
  33. package/dist/lib/components/common/side-navigation/FusionSideNavigation.vue.d.ts +134 -6
  34. package/dist/lib/components/common/side-navigation/side-navigation-item/FusionSideNavigationItem.vue.d.ts +6 -6
  35. package/dist/lib/components/common/tag/FusionTag.vue.d.ts +7 -7
  36. package/dist/lib/components/common/toast/FusionToastMessage.vue.d.ts +15 -9
  37. package/dist/lib/components/common/widget/FusionWidget.vue.d.ts +6 -4
  38. package/dist/lib/components/form/button/FusionButton.vue.d.ts +35 -12
  39. package/dist/lib/components/form/checkbox/FusionCheckbox.vue.d.ts +11 -9
  40. package/dist/lib/components/form/checkbox/FusionCheckboxGroup.vue.d.ts +129 -7
  41. package/dist/lib/components/form/file-uploader/button/FusionFileUploaderButton.vue.d.ts +429 -11
  42. package/dist/lib/components/form/file-uploader/components/FileUploaderList.vue.d.ts +272 -7
  43. package/dist/lib/components/form/file-uploader/components/FileUploaderListItem.vue.d.ts +239 -9
  44. package/dist/lib/components/form/icon-button/FusionIconButton.vue.d.ts +34 -11
  45. package/dist/lib/components/form/input/FusionInput.d.ts +1 -2
  46. package/dist/lib/components/form/input/FusionInput.vue.d.ts +14 -12
  47. package/dist/lib/components/form/password-input/FusionPasswordInput.d.ts +1 -2
  48. package/dist/lib/components/form/password-input/FusionPasswordInput.vue.d.ts +296 -10
  49. package/dist/lib/components/form/phone/FusionPhoneInput.d.ts +1 -2
  50. package/dist/lib/components/form/phone/FusionPhoneInput.vue.d.ts +590 -12
  51. package/dist/lib/components/form/radio/FusionRadio.vue.d.ts +11 -11
  52. package/dist/lib/components/form/radio/FusionRadioGroup.vue.d.ts +115 -7
  53. package/dist/lib/components/form/searchable-input/FusionSearchableInput.d.ts +1 -2
  54. package/dist/lib/components/form/searchable-input/FusionSearchableInput.vue.d.ts +566 -16
  55. package/dist/lib/components/form/select/FusionSelect.vue.d.ts +401 -15
  56. package/dist/lib/components/form/textarea/FusionTextarea.vue.d.ts +17 -15
  57. package/dist/lib/components/link/text/FusionTextLink.d.ts +1 -2
  58. package/dist/lib/components/link/text/FusionTextLink.vue.d.ts +13 -13
  59. package/dist/lib/components/svgs/SVGArrowDown.vue.d.ts +1 -1
  60. package/dist/lib/components/svgs/SVGArrowLeft.vue.d.ts +1 -1
  61. package/dist/lib/components/svgs/SVGArrowRight.vue.d.ts +1 -1
  62. package/dist/lib/components/svgs/SVGBin.vue.d.ts +1 -1
  63. package/dist/lib/components/svgs/SVGCalendar.vue.d.ts +1 -1
  64. package/dist/lib/components/svgs/SVGCheckCircle.vue.d.ts +1 -1
  65. package/dist/lib/components/svgs/SVGClose.vue.d.ts +1 -1
  66. package/dist/lib/components/svgs/SVGDecrement.vue.d.ts +1 -1
  67. package/dist/lib/components/svgs/SVGExclamationCircle.vue.d.ts +1 -1
  68. package/dist/lib/components/svgs/SVGExclamationTriangle.vue.d.ts +1 -1
  69. package/dist/lib/components/svgs/SVGImagePlaceholder.vue.d.ts +1 -1
  70. package/dist/lib/components/svgs/SVGInbox.vue.d.ts +1 -1
  71. package/dist/lib/components/svgs/SVGIncrement.vue.d.ts +1 -1
  72. package/dist/lib/components/svgs/SVGInformationCircle.vue.d.ts +1 -1
  73. package/dist/lib/components/svgs/SVGSearch.vue.d.ts +1 -1
  74. package/dist/lib/components/svgs/SVGTick.vue.d.ts +1 -1
  75. package/dist/lib/components/svgs/SVGXMark.vue.d.ts +1 -1
  76. package/dist/lib/main.d.ts +42 -42
  77. package/dist/style.css +1 -1
  78. package/dist/types/Global.d.ts +1 -2
  79. package/dist/types/Themes.d.ts +1 -2
  80. package/dist/types/components/FusionCheckboxGroup.d.ts +1 -2
  81. package/dist/types/components/FusionFileUploader.d.ts +1 -2
  82. package/dist/types/components/FusionRadioGroup.d.ts +1 -2
  83. package/dist/types/index.d.ts +1 -0
  84. package/dist/utilities.css +1 -1
  85. package/package.json +14 -18
@@ -1,6 +1,6 @@
1
- import { type PropType } from "vue";
2
- import type { FusionSelectOption } from './FusionSelect';
3
- declare const _default: import("vue").DefineComponent<{
1
+ import { PropType } from 'vue';
2
+ import { FusionSelectOption } from './FusionSelect';
3
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4
4
  id: {
5
5
  type: StringConstructor;
6
6
  required: true;
@@ -96,7 +96,7 @@ declare const _default: import("vue").DefineComponent<{
96
96
  type: StringConstructor;
97
97
  default: string;
98
98
  };
99
- }, unknown, {
99
+ }>, {}, {
100
100
  selected: FusionSelectOption;
101
101
  searchInputValue: string;
102
102
  styleVariables: {};
@@ -118,7 +118,7 @@ declare const _default: import("vue").DefineComponent<{
118
118
  handleBlur(): void;
119
119
  handleKeydownEnter(): void;
120
120
  closePanel(): void;
121
- }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "keydown:enter" | "select:blur" | "select:focus")[], "update:modelValue" | "keydown:enter" | "select:blur" | "select:focus", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
121
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("update:modelValue" | "keydown:enter" | "select:blur" | "select:focus")[], "update:modelValue" | "keydown:enter" | "select:blur" | "select:focus", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
122
122
  id: {
123
123
  type: StringConstructor;
124
124
  required: true;
@@ -214,31 +214,417 @@ declare const _default: import("vue").DefineComponent<{
214
214
  type: StringConstructor;
215
215
  default: string;
216
216
  };
217
- }>> & {
217
+ }>> & Readonly<{
218
218
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
219
219
  "onKeydown:enter"?: ((...args: any[]) => any) | undefined;
220
220
  "onSelect:blur"?: ((...args: any[]) => any) | undefined;
221
221
  "onSelect:focus"?: ((...args: any[]) => any) | undefined;
222
- }, {
222
+ }>, {
223
+ dataTest: string;
223
224
  label: string;
224
225
  title: string;
225
- dataTest: string;
226
- disabled: boolean;
227
- ariaLabel: string;
228
226
  required: boolean;
229
- searchText: string;
230
- modelValue: FusionSelectOption;
227
+ disabled: boolean;
231
228
  placeholder: string;
232
- readonly: boolean;
233
- autocomplete: string;
234
229
  helperLabel: string;
235
230
  errorLabel: string;
231
+ modelValue: FusionSelectOption;
232
+ readonly: boolean;
236
233
  tabIndex: number;
234
+ autocomplete: string;
235
+ searchText: string;
237
236
  searchDisabled: boolean;
238
237
  searchPlaceholder: string;
239
238
  searchLoading: boolean;
240
239
  searchErrorTitle: string;
241
240
  searchErrorDescription: string;
242
241
  autofocus: boolean;
243
- }, {}>;
242
+ ariaLabel: string;
243
+ }, {}, {
244
+ SVGArrowDown: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
245
+ FusionPanel: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
246
+ theme: {
247
+ type: PropType<keyof import('../../../../types/Themes').Themes>;
248
+ default: string;
249
+ };
250
+ selectId: {
251
+ type: StringConstructor;
252
+ required: true;
253
+ };
254
+ options: {
255
+ type: () => FusionSelectOption[];
256
+ default: () => never[];
257
+ };
258
+ searchText: {
259
+ type: StringConstructor;
260
+ default: string;
261
+ };
262
+ searchDisabled: {
263
+ type: BooleanConstructor;
264
+ default: boolean;
265
+ };
266
+ searchPlaceholder: {
267
+ type: StringConstructor;
268
+ default: string;
269
+ };
270
+ searchLoading: {
271
+ type: BooleanConstructor;
272
+ default: boolean;
273
+ };
274
+ searchErrorTitle: {
275
+ type: StringConstructor;
276
+ default: string;
277
+ };
278
+ searchErrorDescription: {
279
+ type: StringConstructor;
280
+ default: string;
281
+ };
282
+ selected: {
283
+ type: PropType<FusionSelectOption>;
284
+ default: () => FusionSelectOption;
285
+ };
286
+ dataTest: {
287
+ type: StringConstructor;
288
+ default: string;
289
+ };
290
+ }>, {}, {
291
+ searchInputValue: string;
292
+ }, {}, {
293
+ closePanel(): void;
294
+ handleSelect(option: FusionSelectOption): void;
295
+ handleInput(inputValue: string): void;
296
+ handleKeydownSelect(event: KeyboardEvent, option?: FusionSelectOption | undefined): void;
297
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("handle:select" | "handle:search" | "handle:close")[], "handle:select" | "handle:search" | "handle:close", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
298
+ theme: {
299
+ type: PropType<keyof import('../../../../types/Themes').Themes>;
300
+ default: string;
301
+ };
302
+ selectId: {
303
+ type: StringConstructor;
304
+ required: true;
305
+ };
306
+ options: {
307
+ type: () => FusionSelectOption[];
308
+ default: () => never[];
309
+ };
310
+ searchText: {
311
+ type: StringConstructor;
312
+ default: string;
313
+ };
314
+ searchDisabled: {
315
+ type: BooleanConstructor;
316
+ default: boolean;
317
+ };
318
+ searchPlaceholder: {
319
+ type: StringConstructor;
320
+ default: string;
321
+ };
322
+ searchLoading: {
323
+ type: BooleanConstructor;
324
+ default: boolean;
325
+ };
326
+ searchErrorTitle: {
327
+ type: StringConstructor;
328
+ default: string;
329
+ };
330
+ searchErrorDescription: {
331
+ type: StringConstructor;
332
+ default: string;
333
+ };
334
+ selected: {
335
+ type: PropType<FusionSelectOption>;
336
+ default: () => FusionSelectOption;
337
+ };
338
+ dataTest: {
339
+ type: StringConstructor;
340
+ default: string;
341
+ };
342
+ }>> & Readonly<{
343
+ "onHandle:select"?: ((...args: any[]) => any) | undefined;
344
+ "onHandle:search"?: ((...args: any[]) => any) | undefined;
345
+ "onHandle:close"?: ((...args: any[]) => any) | undefined;
346
+ }>, {
347
+ dataTest: string;
348
+ selected: FusionSelectOption;
349
+ options: FusionSelectOption[];
350
+ theme: keyof import('../../../../types/Themes').Themes;
351
+ searchText: string;
352
+ searchDisabled: boolean;
353
+ searchPlaceholder: string;
354
+ searchLoading: boolean;
355
+ searchErrorTitle: string;
356
+ searchErrorDescription: string;
357
+ }, {}, {
358
+ SVGSearch: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
359
+ CheckCircle: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
360
+ FusionLoadingSpinner: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
361
+ spinnerColour: {
362
+ type: StringConstructor;
363
+ default: string;
364
+ };
365
+ dataTest: {
366
+ type: StringConstructor;
367
+ default: string;
368
+ };
369
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
370
+ spinnerColour: {
371
+ type: StringConstructor;
372
+ default: string;
373
+ };
374
+ dataTest: {
375
+ type: StringConstructor;
376
+ default: string;
377
+ };
378
+ }>> & Readonly<{}>, {
379
+ spinnerColour: string;
380
+ dataTest: string;
381
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
382
+ SVGInbox: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
383
+ FusionInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
384
+ id: {
385
+ type: StringConstructor;
386
+ required: true;
387
+ };
388
+ name: {
389
+ type: StringConstructor;
390
+ required: true;
391
+ };
392
+ label: {
393
+ type: StringConstructor;
394
+ default: string;
395
+ };
396
+ placeholder: {
397
+ type: StringConstructor;
398
+ default: string;
399
+ };
400
+ helperLabel: {
401
+ type: StringConstructor;
402
+ default: string;
403
+ };
404
+ errorLabel: {
405
+ type: StringConstructor;
406
+ default: string;
407
+ };
408
+ input: {
409
+ type: StringConstructor;
410
+ default: string;
411
+ };
412
+ required: {
413
+ type: BooleanConstructor;
414
+ default: boolean;
415
+ };
416
+ tabIndex: {
417
+ type: NumberConstructor;
418
+ default: number;
419
+ };
420
+ autocomplete: {
421
+ type: StringConstructor;
422
+ default: string;
423
+ };
424
+ title: {
425
+ type: StringConstructor;
426
+ default: string;
427
+ };
428
+ disabled: {
429
+ type: BooleanConstructor;
430
+ default: boolean;
431
+ };
432
+ readonly: {
433
+ type: BooleanConstructor;
434
+ default: boolean;
435
+ };
436
+ type: {
437
+ type: StringConstructor;
438
+ default: string;
439
+ };
440
+ dataTest: {
441
+ type: StringConstructor;
442
+ default: string;
443
+ };
444
+ }>, {}, {
445
+ inputValue: string;
446
+ styleVariables: {};
447
+ interactionStates: {
448
+ focused: boolean;
449
+ hover: boolean;
450
+ };
451
+ }, {
452
+ stateClasses(): {
453
+ disabled: boolean;
454
+ error: boolean;
455
+ icon: boolean;
456
+ };
457
+ }, {
458
+ updateInput(): void;
459
+ handleFocus(): void;
460
+ handleBlur(): void;
461
+ handleKeydownEnter(): void;
462
+ handleMouseover(): void;
463
+ handleMouseleave(): void;
464
+ focus(): void;
465
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("input:focus" | "input:blur" | "keydown:enter" | "update:input")[], "input:focus" | "input:blur" | "keydown:enter" | "update:input", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
466
+ id: {
467
+ type: StringConstructor;
468
+ required: true;
469
+ };
470
+ name: {
471
+ type: StringConstructor;
472
+ required: true;
473
+ };
474
+ label: {
475
+ type: StringConstructor;
476
+ default: string;
477
+ };
478
+ placeholder: {
479
+ type: StringConstructor;
480
+ default: string;
481
+ };
482
+ helperLabel: {
483
+ type: StringConstructor;
484
+ default: string;
485
+ };
486
+ errorLabel: {
487
+ type: StringConstructor;
488
+ default: string;
489
+ };
490
+ input: {
491
+ type: StringConstructor;
492
+ default: string;
493
+ };
494
+ required: {
495
+ type: BooleanConstructor;
496
+ default: boolean;
497
+ };
498
+ tabIndex: {
499
+ type: NumberConstructor;
500
+ default: number;
501
+ };
502
+ autocomplete: {
503
+ type: StringConstructor;
504
+ default: string;
505
+ };
506
+ title: {
507
+ type: StringConstructor;
508
+ default: string;
509
+ };
510
+ disabled: {
511
+ type: BooleanConstructor;
512
+ default: boolean;
513
+ };
514
+ readonly: {
515
+ type: BooleanConstructor;
516
+ default: boolean;
517
+ };
518
+ type: {
519
+ type: StringConstructor;
520
+ default: string;
521
+ };
522
+ dataTest: {
523
+ type: StringConstructor;
524
+ default: string;
525
+ };
526
+ }>> & Readonly<{
527
+ "onInput:focus"?: ((...args: any[]) => any) | undefined;
528
+ "onInput:blur"?: ((...args: any[]) => any) | undefined;
529
+ "onKeydown:enter"?: ((...args: any[]) => any) | undefined;
530
+ "onUpdate:input"?: ((...args: any[]) => any) | undefined;
531
+ }>, {
532
+ type: string;
533
+ dataTest: string;
534
+ input: string;
535
+ label: string;
536
+ title: string;
537
+ required: boolean;
538
+ disabled: boolean;
539
+ placeholder: string;
540
+ helperLabel: string;
541
+ errorLabel: string;
542
+ readonly: boolean;
543
+ tabIndex: number;
544
+ autocomplete: string;
545
+ }, {}, {
546
+ SVGExclamationTriangle: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
547
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
548
+ OnClickOutside: import('vue').DefineComponent<import('@vueuse/components').OnClickOutsideProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('@vueuse/components').OnClickOutsideProps>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
549
+ FusionMenuItem: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
550
+ disabled: {
551
+ type: BooleanConstructor;
552
+ default: boolean;
553
+ };
554
+ selectable: {
555
+ type: BooleanConstructor;
556
+ default: boolean;
557
+ };
558
+ selected: {
559
+ type: BooleanConstructor;
560
+ default: boolean;
561
+ };
562
+ href: {
563
+ type: StringConstructor;
564
+ default: string;
565
+ };
566
+ target: {
567
+ type: StringConstructor;
568
+ default: string;
569
+ };
570
+ }>, {}, {
571
+ isHovered: boolean;
572
+ isPressed: boolean;
573
+ }, {
574
+ componentTag(): string;
575
+ linkAttributes(): {
576
+ href: string;
577
+ target: string;
578
+ role: string;
579
+ "aria-checked": boolean | undefined;
580
+ "aria-disabled": boolean;
581
+ } | {
582
+ role: string;
583
+ "aria-checked": boolean | undefined;
584
+ "aria-disabled": boolean;
585
+ href?: undefined;
586
+ target?: undefined;
587
+ };
588
+ }, {
589
+ handleClick(): void;
590
+ handleKeydown(event: KeyboardEvent): void;
591
+ handleMouseOver(): void;
592
+ handleMouseOut(): void;
593
+ handleMouseDown(): void;
594
+ handleMouseUp(): void;
595
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:selected"[], "update:selected", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
596
+ disabled: {
597
+ type: BooleanConstructor;
598
+ default: boolean;
599
+ };
600
+ selectable: {
601
+ type: BooleanConstructor;
602
+ default: boolean;
603
+ };
604
+ selected: {
605
+ type: BooleanConstructor;
606
+ default: boolean;
607
+ };
608
+ href: {
609
+ type: StringConstructor;
610
+ default: string;
611
+ };
612
+ target: {
613
+ type: StringConstructor;
614
+ default: string;
615
+ };
616
+ }>> & Readonly<{
617
+ "onUpdate:selected"?: ((...args: any[]) => any) | undefined;
618
+ }>, {
619
+ disabled: boolean;
620
+ href: string;
621
+ target: string;
622
+ selectable: boolean;
623
+ selected: boolean;
624
+ }, {}, {
625
+ SVGTick: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
626
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
627
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
628
+ SVGExclamationTriangle: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
629
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
244
630
  export default _default;
@@ -1,4 +1,4 @@
1
- declare const _default: import("vue").DefineComponent<{
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
2
  id: {
3
3
  type: StringConstructor;
4
4
  required: true;
@@ -71,7 +71,7 @@ declare const _default: import("vue").DefineComponent<{
71
71
  type: StringConstructor;
72
72
  default: string;
73
73
  };
74
- }, unknown, {
74
+ }>, {}, {
75
75
  inputValue: string;
76
76
  }, {
77
77
  stateClasses(): {
@@ -83,7 +83,7 @@ declare const _default: import("vue").DefineComponent<{
83
83
  handleFocus: () => void;
84
84
  handleBlur: () => void;
85
85
  handleKeydownEnter: () => void;
86
- }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input:blur" | "input:focus" | "update:modelValue" | "keydown:enter")[], "input:blur" | "input:focus" | "update:modelValue" | "keydown:enter", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
86
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("update:modelValue" | "input:focus" | "input:blur" | "keydown:enter")[], "update:modelValue" | "input:focus" | "input:blur" | "keydown:enter", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
87
87
  id: {
88
88
  type: StringConstructor;
89
89
  required: true;
@@ -156,25 +156,27 @@ declare const _default: import("vue").DefineComponent<{
156
156
  type: StringConstructor;
157
157
  default: string;
158
158
  };
159
- }>> & {
160
- "onInput:blur"?: ((...args: any[]) => any) | undefined;
161
- "onInput:focus"?: ((...args: any[]) => any) | undefined;
159
+ }>> & Readonly<{
162
160
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
161
+ "onInput:focus"?: ((...args: any[]) => any) | undefined;
162
+ "onInput:blur"?: ((...args: any[]) => any) | undefined;
163
163
  "onKeydown:enter"?: ((...args: any[]) => any) | undefined;
164
- }, {
164
+ }>, {
165
165
  dataTest: string;
166
- disabled: boolean;
167
166
  required: boolean;
168
- modelValue: string;
167
+ disabled: boolean;
168
+ rows: string;
169
+ cols: string;
169
170
  placeholder: string;
170
- readonly: boolean;
171
- autocomplete: string;
172
171
  helperLabel: string;
173
172
  errorLabel: string;
174
- tabIndex: number;
175
- rows: string;
176
- cols: string;
173
+ modelValue: string;
174
+ readonly: boolean;
177
175
  showCharLength: boolean;
178
176
  maxLength: number;
179
- }, {}>;
177
+ tabIndex: number;
178
+ autocomplete: string;
179
+ }, {}, {
180
+ SVGExclamationTriangle: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
181
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
180
182
  export default _default;
@@ -1,5 +1,4 @@
1
- import type { VariantTypes, Sizes, FusionElementStates } from '../../../../types/Global.d.ts';
2
-
1
+ import { VariantTypes, Sizes, FusionElementStates } from '../../../../types/Global.d.ts';
3
2
  export interface FusionTextLinkIconPlacement {
4
3
  right: string;
5
4
  left: string;
@@ -1,7 +1,7 @@
1
- import { type PropType } from "vue";
2
- import type { VariantTypes, Sizes } from '../../../../types/Global.d.ts';
3
- import type { FusionTextLinkIconPlacement, FusionTextLinkElement } from './FusionTextLink';
4
- declare const _default: import("vue").DefineComponent<{
1
+ import { PropType } from 'vue';
2
+ import { VariantTypes, Sizes } from '../../../../types/Global.d.ts';
3
+ import { FusionTextLinkIconPlacement, FusionTextLinkElement } from './FusionTextLink';
4
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
5
5
  id: {
6
6
  type: StringConstructor;
7
7
  required: false;
@@ -50,13 +50,13 @@ declare const _default: import("vue").DefineComponent<{
50
50
  type: PropType<FusionTextLinkElement>;
51
51
  default: string;
52
52
  };
53
- }, unknown, unknown, {
53
+ }>, {}, {}, {
54
54
  sizeClasses(): "fusion-text-link-small" | "fusion-text-link-regular";
55
55
  variationClasses(): "" | "fusion-text-link-primary" | "fusion-text-link-secondary";
56
56
  iconClasses(): "" | "fusion-text-link-icon-left" | "fusion-text-link-icon-right";
57
57
  buttonClasses(): "" | "fusion-text-link-button";
58
58
  isButton(): boolean;
59
- }, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input:blur" | "input:focus")[], "input:blur" | "input:focus", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
59
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("input:focus" | "input:blur")[], "input:focus" | "input:blur", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
60
60
  id: {
61
61
  type: StringConstructor;
62
62
  required: false;
@@ -105,19 +105,19 @@ declare const _default: import("vue").DefineComponent<{
105
105
  type: PropType<FusionTextLinkElement>;
106
106
  default: string;
107
107
  };
108
- }>> & {
109
- "onInput:blur"?: ((...args: any[]) => any) | undefined;
108
+ }>> & Readonly<{
110
109
  "onInput:focus"?: ((...args: any[]) => any) | undefined;
111
- }, {
112
- id: string;
110
+ "onInput:blur"?: ((...args: any[]) => any) | undefined;
111
+ }>, {
113
112
  dataTest: string;
113
+ id: string;
114
114
  variantType: keyof VariantTypes;
115
115
  size: keyof Sizes;
116
116
  disabled: boolean;
117
- target: string;
118
- href: string;
119
117
  tabIndex: string;
118
+ href: string;
119
+ target: string;
120
120
  iconPlacement: keyof FusionTextLinkIconPlacement;
121
121
  elementType: FusionTextLinkElement;
122
- }, {}>;
122
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
123
123
  export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
2
  export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
2
  export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
2
  export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
2
  export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
2
  export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
2
  export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
2
  export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
2
  export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
2
  export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
2
  export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
2
  export default _default;