@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,5 +1,5 @@
1
- import { type Country } from '../../../constants/countries.ts';
2
- declare const _default: import("vue").DefineComponent<{
1
+ import { Country } from '../../../constants/countries.ts';
2
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3
3
  id: {
4
4
  type: StringConstructor;
5
5
  default: null;
@@ -60,7 +60,7 @@ declare const _default: import("vue").DefineComponent<{
60
60
  type: BooleanConstructor;
61
61
  default: boolean;
62
62
  };
63
- }, unknown, {
63
+ }>, {}, {
64
64
  inputPhoneNumber: string;
65
65
  inputCountryCode: string;
66
66
  interactionStates: {
@@ -102,7 +102,7 @@ declare const _default: import("vue").DefineComponent<{
102
102
  toggleSelectPanel(): void;
103
103
  handleCountrySearch(searchText: string): void;
104
104
  closePanel(): void;
105
- }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input:blur" | "input:focus" | "keydown:enter" | "update:countryCode" | "update:phoneNumber")[], "input:blur" | "input:focus" | "keydown:enter" | "update:countryCode" | "update:phoneNumber", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
105
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("input:focus" | "input:blur" | "keydown:enter" | "update:countryCode" | "update:phoneNumber")[], "input:focus" | "input:blur" | "keydown:enter" | "update:countryCode" | "update:phoneNumber", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
106
106
  id: {
107
107
  type: StringConstructor;
108
108
  default: null;
@@ -163,26 +163,604 @@ declare const _default: import("vue").DefineComponent<{
163
163
  type: BooleanConstructor;
164
164
  default: boolean;
165
165
  };
166
- }>> & {
167
- "onInput:blur"?: ((...args: any[]) => any) | undefined;
166
+ }>> & Readonly<{
168
167
  "onInput:focus"?: ((...args: any[]) => any) | undefined;
168
+ "onInput:blur"?: ((...args: any[]) => any) | undefined;
169
169
  "onKeydown:enter"?: ((...args: any[]) => any) | undefined;
170
170
  "onUpdate:countryCode"?: ((...args: any[]) => any) | undefined;
171
171
  "onUpdate:phoneNumber"?: ((...args: any[]) => any) | undefined;
172
- }, {
172
+ }>, {
173
+ dataTest: string;
173
174
  label: string;
174
175
  title: string;
175
176
  id: string;
176
- dataTest: string;
177
- disabled: boolean;
178
177
  required: boolean;
178
+ disabled: boolean;
179
179
  placeholder: string;
180
- readonly: boolean;
181
- autocomplete: string;
182
180
  helperLabel: string;
183
181
  errorLabel: string;
182
+ readonly: boolean;
184
183
  tabIndex: number;
184
+ autocomplete: string;
185
185
  phoneNumber: string;
186
186
  countryCode: string;
187
- }, {}>;
187
+ }, {}, {
188
+ CountrySelectList: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
189
+ searchText: {
190
+ type: StringConstructor;
191
+ default: string;
192
+ };
193
+ selectedCountry: {
194
+ type: () => Country;
195
+ default: {
196
+ code: string;
197
+ dialCode: number;
198
+ name: string;
199
+ flag: string;
200
+ };
201
+ };
202
+ dataTest: {
203
+ type: StringConstructor;
204
+ default: string;
205
+ };
206
+ }>, {}, {
207
+ countriesList: {
208
+ code: string;
209
+ dialCode: number;
210
+ name: string;
211
+ flag: string;
212
+ }[];
213
+ }, {
214
+ filteredCountriesList(): Country[];
215
+ }, {
216
+ handleSelectedCountry(country: Country): void;
217
+ handleKeydownSelect: (event: KeyboardEvent, country: Country) => void;
218
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("select:country" | "selected:country")[], "select:country" | "selected:country", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
219
+ searchText: {
220
+ type: StringConstructor;
221
+ default: string;
222
+ };
223
+ selectedCountry: {
224
+ type: () => Country;
225
+ default: {
226
+ code: string;
227
+ dialCode: number;
228
+ name: string;
229
+ flag: string;
230
+ };
231
+ };
232
+ dataTest: {
233
+ type: StringConstructor;
234
+ default: string;
235
+ };
236
+ }>> & Readonly<{
237
+ "onSelect:country"?: ((...args: any[]) => any) | undefined;
238
+ "onSelected:country"?: ((...args: any[]) => any) | undefined;
239
+ }>, {
240
+ dataTest: string;
241
+ searchText: string;
242
+ selectedCountry: Country;
243
+ }, {}, {
244
+ CountryFlag: any;
245
+ FusionMenuItem: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
246
+ disabled: {
247
+ type: BooleanConstructor;
248
+ default: boolean;
249
+ };
250
+ selectable: {
251
+ type: BooleanConstructor;
252
+ default: boolean;
253
+ };
254
+ selected: {
255
+ type: BooleanConstructor;
256
+ default: boolean;
257
+ };
258
+ href: {
259
+ type: StringConstructor;
260
+ default: string;
261
+ };
262
+ target: {
263
+ type: StringConstructor;
264
+ default: string;
265
+ };
266
+ }>, {}, {
267
+ isHovered: boolean;
268
+ isPressed: boolean;
269
+ }, {
270
+ componentTag(): string;
271
+ linkAttributes(): {
272
+ href: string;
273
+ target: string;
274
+ role: string;
275
+ "aria-checked": boolean | undefined;
276
+ "aria-disabled": boolean;
277
+ } | {
278
+ role: string;
279
+ "aria-checked": boolean | undefined;
280
+ "aria-disabled": boolean;
281
+ href?: undefined;
282
+ target?: undefined;
283
+ };
284
+ }, {
285
+ handleClick(): void;
286
+ handleKeydown(event: KeyboardEvent): void;
287
+ handleMouseOver(): void;
288
+ handleMouseOut(): void;
289
+ handleMouseDown(): void;
290
+ handleMouseUp(): void;
291
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:selected"[], "update:selected", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
292
+ disabled: {
293
+ type: BooleanConstructor;
294
+ default: boolean;
295
+ };
296
+ selectable: {
297
+ type: BooleanConstructor;
298
+ default: boolean;
299
+ };
300
+ selected: {
301
+ type: BooleanConstructor;
302
+ default: boolean;
303
+ };
304
+ href: {
305
+ type: StringConstructor;
306
+ default: string;
307
+ };
308
+ target: {
309
+ type: StringConstructor;
310
+ default: string;
311
+ };
312
+ }>> & Readonly<{
313
+ "onUpdate:selected"?: ((...args: any[]) => any) | undefined;
314
+ }>, {
315
+ disabled: boolean;
316
+ href: string;
317
+ target: string;
318
+ selectable: boolean;
319
+ selected: boolean;
320
+ }, {}, {
321
+ SVGTick: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
322
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
323
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
324
+ FusionPanel: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
325
+ theme: {
326
+ type: import('vue').PropType<keyof import('../../../../types/Themes').Themes>;
327
+ default: string;
328
+ };
329
+ selectId: {
330
+ type: StringConstructor;
331
+ required: true;
332
+ };
333
+ options: {
334
+ type: () => import('../select/FusionSelect').FusionSelectOption[];
335
+ default: () => never[];
336
+ };
337
+ searchText: {
338
+ type: StringConstructor;
339
+ default: string;
340
+ };
341
+ searchDisabled: {
342
+ type: BooleanConstructor;
343
+ default: boolean;
344
+ };
345
+ searchPlaceholder: {
346
+ type: StringConstructor;
347
+ default: string;
348
+ };
349
+ searchLoading: {
350
+ type: BooleanConstructor;
351
+ default: boolean;
352
+ };
353
+ searchErrorTitle: {
354
+ type: StringConstructor;
355
+ default: string;
356
+ };
357
+ searchErrorDescription: {
358
+ type: StringConstructor;
359
+ default: string;
360
+ };
361
+ selected: {
362
+ type: import('vue').PropType<import('../select/FusionSelect').FusionSelectOption>;
363
+ default: () => import('../select/FusionSelect').FusionSelectOption;
364
+ };
365
+ dataTest: {
366
+ type: StringConstructor;
367
+ default: string;
368
+ };
369
+ }>, {}, {
370
+ searchInputValue: string;
371
+ }, {}, {
372
+ closePanel(): void;
373
+ handleSelect(option: import('../select/FusionSelect').FusionSelectOption): void;
374
+ handleInput(inputValue: string): void;
375
+ handleKeydownSelect(event: KeyboardEvent, option?: import('../select/FusionSelect').FusionSelectOption | undefined): void;
376
+ }, 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<{
377
+ theme: {
378
+ type: import('vue').PropType<keyof import('../../../../types/Themes').Themes>;
379
+ default: string;
380
+ };
381
+ selectId: {
382
+ type: StringConstructor;
383
+ required: true;
384
+ };
385
+ options: {
386
+ type: () => import('../select/FusionSelect').FusionSelectOption[];
387
+ default: () => never[];
388
+ };
389
+ searchText: {
390
+ type: StringConstructor;
391
+ default: string;
392
+ };
393
+ searchDisabled: {
394
+ type: BooleanConstructor;
395
+ default: boolean;
396
+ };
397
+ searchPlaceholder: {
398
+ type: StringConstructor;
399
+ default: string;
400
+ };
401
+ searchLoading: {
402
+ type: BooleanConstructor;
403
+ default: boolean;
404
+ };
405
+ searchErrorTitle: {
406
+ type: StringConstructor;
407
+ default: string;
408
+ };
409
+ searchErrorDescription: {
410
+ type: StringConstructor;
411
+ default: string;
412
+ };
413
+ selected: {
414
+ type: import('vue').PropType<import('../select/FusionSelect').FusionSelectOption>;
415
+ default: () => import('../select/FusionSelect').FusionSelectOption;
416
+ };
417
+ dataTest: {
418
+ type: StringConstructor;
419
+ default: string;
420
+ };
421
+ }>> & Readonly<{
422
+ "onHandle:select"?: ((...args: any[]) => any) | undefined;
423
+ "onHandle:search"?: ((...args: any[]) => any) | undefined;
424
+ "onHandle:close"?: ((...args: any[]) => any) | undefined;
425
+ }>, {
426
+ dataTest: string;
427
+ selected: import('../select/FusionSelect').FusionSelectOption;
428
+ options: import('../select/FusionSelect').FusionSelectOption[];
429
+ theme: keyof import('../../../../types/Themes').Themes;
430
+ searchText: string;
431
+ searchDisabled: boolean;
432
+ searchPlaceholder: string;
433
+ searchLoading: boolean;
434
+ searchErrorTitle: string;
435
+ searchErrorDescription: string;
436
+ }, {}, {
437
+ SVGSearch: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
438
+ CheckCircle: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
439
+ FusionLoadingSpinner: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
440
+ spinnerColour: {
441
+ type: StringConstructor;
442
+ default: string;
443
+ };
444
+ dataTest: {
445
+ type: StringConstructor;
446
+ default: string;
447
+ };
448
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
449
+ spinnerColour: {
450
+ type: StringConstructor;
451
+ default: string;
452
+ };
453
+ dataTest: {
454
+ type: StringConstructor;
455
+ default: string;
456
+ };
457
+ }>> & Readonly<{}>, {
458
+ spinnerColour: string;
459
+ dataTest: string;
460
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
461
+ SVGInbox: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
462
+ FusionInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
463
+ id: {
464
+ type: StringConstructor;
465
+ required: true;
466
+ };
467
+ name: {
468
+ type: StringConstructor;
469
+ required: true;
470
+ };
471
+ label: {
472
+ type: StringConstructor;
473
+ default: string;
474
+ };
475
+ placeholder: {
476
+ type: StringConstructor;
477
+ default: string;
478
+ };
479
+ helperLabel: {
480
+ type: StringConstructor;
481
+ default: string;
482
+ };
483
+ errorLabel: {
484
+ type: StringConstructor;
485
+ default: string;
486
+ };
487
+ input: {
488
+ type: StringConstructor;
489
+ default: string;
490
+ };
491
+ required: {
492
+ type: BooleanConstructor;
493
+ default: boolean;
494
+ };
495
+ tabIndex: {
496
+ type: NumberConstructor;
497
+ default: number;
498
+ };
499
+ autocomplete: {
500
+ type: StringConstructor;
501
+ default: string;
502
+ };
503
+ title: {
504
+ type: StringConstructor;
505
+ default: string;
506
+ };
507
+ disabled: {
508
+ type: BooleanConstructor;
509
+ default: boolean;
510
+ };
511
+ readonly: {
512
+ type: BooleanConstructor;
513
+ default: boolean;
514
+ };
515
+ type: {
516
+ type: StringConstructor;
517
+ default: string;
518
+ };
519
+ dataTest: {
520
+ type: StringConstructor;
521
+ default: string;
522
+ };
523
+ }>, {}, {
524
+ inputValue: string;
525
+ styleVariables: {};
526
+ interactionStates: {
527
+ focused: boolean;
528
+ hover: boolean;
529
+ };
530
+ }, {
531
+ stateClasses(): {
532
+ disabled: boolean;
533
+ error: boolean;
534
+ icon: boolean;
535
+ };
536
+ }, {
537
+ updateInput(): void;
538
+ handleFocus(): void;
539
+ handleBlur(): void;
540
+ handleKeydownEnter(): void;
541
+ handleMouseover(): void;
542
+ handleMouseleave(): void;
543
+ focus(): void;
544
+ }, 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<{
545
+ id: {
546
+ type: StringConstructor;
547
+ required: true;
548
+ };
549
+ name: {
550
+ type: StringConstructor;
551
+ required: true;
552
+ };
553
+ label: {
554
+ type: StringConstructor;
555
+ default: string;
556
+ };
557
+ placeholder: {
558
+ type: StringConstructor;
559
+ default: string;
560
+ };
561
+ helperLabel: {
562
+ type: StringConstructor;
563
+ default: string;
564
+ };
565
+ errorLabel: {
566
+ type: StringConstructor;
567
+ default: string;
568
+ };
569
+ input: {
570
+ type: StringConstructor;
571
+ default: string;
572
+ };
573
+ required: {
574
+ type: BooleanConstructor;
575
+ default: boolean;
576
+ };
577
+ tabIndex: {
578
+ type: NumberConstructor;
579
+ default: number;
580
+ };
581
+ autocomplete: {
582
+ type: StringConstructor;
583
+ default: string;
584
+ };
585
+ title: {
586
+ type: StringConstructor;
587
+ default: string;
588
+ };
589
+ disabled: {
590
+ type: BooleanConstructor;
591
+ default: boolean;
592
+ };
593
+ readonly: {
594
+ type: BooleanConstructor;
595
+ default: boolean;
596
+ };
597
+ type: {
598
+ type: StringConstructor;
599
+ default: string;
600
+ };
601
+ dataTest: {
602
+ type: StringConstructor;
603
+ default: string;
604
+ };
605
+ }>> & Readonly<{
606
+ "onInput:focus"?: ((...args: any[]) => any) | undefined;
607
+ "onInput:blur"?: ((...args: any[]) => any) | undefined;
608
+ "onKeydown:enter"?: ((...args: any[]) => any) | undefined;
609
+ "onUpdate:input"?: ((...args: any[]) => any) | undefined;
610
+ }>, {
611
+ type: string;
612
+ dataTest: string;
613
+ input: string;
614
+ label: string;
615
+ title: string;
616
+ required: boolean;
617
+ disabled: boolean;
618
+ placeholder: string;
619
+ helperLabel: string;
620
+ errorLabel: string;
621
+ readonly: boolean;
622
+ tabIndex: number;
623
+ autocomplete: string;
624
+ }, {}, {
625
+ SVGExclamationTriangle: 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
+ 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>;
628
+ FusionMenuItem: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
629
+ disabled: {
630
+ type: BooleanConstructor;
631
+ default: boolean;
632
+ };
633
+ selectable: {
634
+ type: BooleanConstructor;
635
+ default: boolean;
636
+ };
637
+ selected: {
638
+ type: BooleanConstructor;
639
+ default: boolean;
640
+ };
641
+ href: {
642
+ type: StringConstructor;
643
+ default: string;
644
+ };
645
+ target: {
646
+ type: StringConstructor;
647
+ default: string;
648
+ };
649
+ }>, {}, {
650
+ isHovered: boolean;
651
+ isPressed: boolean;
652
+ }, {
653
+ componentTag(): string;
654
+ linkAttributes(): {
655
+ href: string;
656
+ target: string;
657
+ role: string;
658
+ "aria-checked": boolean | undefined;
659
+ "aria-disabled": boolean;
660
+ } | {
661
+ role: string;
662
+ "aria-checked": boolean | undefined;
663
+ "aria-disabled": boolean;
664
+ href?: undefined;
665
+ target?: undefined;
666
+ };
667
+ }, {
668
+ handleClick(): void;
669
+ handleKeydown(event: KeyboardEvent): void;
670
+ handleMouseOver(): void;
671
+ handleMouseOut(): void;
672
+ handleMouseDown(): void;
673
+ handleMouseUp(): void;
674
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:selected"[], "update:selected", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
675
+ disabled: {
676
+ type: BooleanConstructor;
677
+ default: boolean;
678
+ };
679
+ selectable: {
680
+ type: BooleanConstructor;
681
+ default: boolean;
682
+ };
683
+ selected: {
684
+ type: BooleanConstructor;
685
+ default: boolean;
686
+ };
687
+ href: {
688
+ type: StringConstructor;
689
+ default: string;
690
+ };
691
+ target: {
692
+ type: StringConstructor;
693
+ default: string;
694
+ };
695
+ }>> & Readonly<{
696
+ "onUpdate:selected"?: ((...args: any[]) => any) | undefined;
697
+ }>, {
698
+ disabled: boolean;
699
+ href: string;
700
+ target: string;
701
+ selectable: boolean;
702
+ selected: boolean;
703
+ }, {}, {
704
+ SVGTick: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
705
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
706
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
707
+ CountrySelectDropdown: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
708
+ country: {
709
+ type: () => Country;
710
+ default: {
711
+ code: string;
712
+ dialCode: number;
713
+ name: string;
714
+ flag: string;
715
+ };
716
+ };
717
+ disabled: {
718
+ type: BooleanConstructor;
719
+ default: boolean;
720
+ };
721
+ dataTest: {
722
+ type: StringConstructor;
723
+ default: string;
724
+ };
725
+ isOpen: {
726
+ type: BooleanConstructor;
727
+ default: boolean;
728
+ };
729
+ }>, {}, {}, {}, {
730
+ handleToggle(): void;
731
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "toggle:select"[], "toggle:select", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
732
+ country: {
733
+ type: () => Country;
734
+ default: {
735
+ code: string;
736
+ dialCode: number;
737
+ name: string;
738
+ flag: string;
739
+ };
740
+ };
741
+ disabled: {
742
+ type: BooleanConstructor;
743
+ default: boolean;
744
+ };
745
+ dataTest: {
746
+ type: StringConstructor;
747
+ default: string;
748
+ };
749
+ isOpen: {
750
+ type: BooleanConstructor;
751
+ default: boolean;
752
+ };
753
+ }>> & Readonly<{
754
+ "onToggle:select"?: ((...args: any[]) => any) | undefined;
755
+ }>, {
756
+ dataTest: string;
757
+ disabled: boolean;
758
+ country: Country;
759
+ isOpen: boolean;
760
+ }, {}, {
761
+ SVGArrowDown: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
762
+ CountryFlag: any;
763
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
764
+ SVGExclamationTriangle: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
765
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
188
766
  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;
@@ -39,7 +39,7 @@ declare const _default: import("vue").DefineComponent<{
39
39
  type: StringConstructor;
40
40
  default: string;
41
41
  };
42
- }, unknown, {
42
+ }>, {}, {
43
43
  inputValue: string;
44
44
  }, {
45
45
  stateClasses: () => {
@@ -51,7 +51,7 @@ declare const _default: import("vue").DefineComponent<{
51
51
  handleChange: () => void;
52
52
  handleFocus: () => void;
53
53
  handleBlur: () => void;
54
- }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input:blur" | "input:focus" | "update:modelValue")[], "input:blur" | "input:focus" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
54
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("update:modelValue" | "input:focus" | "input:blur")[], "update:modelValue" | "input:focus" | "input:blur", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
55
55
  id: {
56
56
  type: StringConstructor;
57
57
  required: true;
@@ -92,16 +92,16 @@ declare const _default: import("vue").DefineComponent<{
92
92
  type: StringConstructor;
93
93
  default: string;
94
94
  };
95
- }>> & {
96
- "onInput:blur"?: ((...args: any[]) => any) | undefined;
97
- "onInput:focus"?: ((...args: any[]) => any) | undefined;
95
+ }>> & Readonly<{
98
96
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
99
- }, {
97
+ "onInput:focus"?: ((...args: any[]) => any) | undefined;
98
+ "onInput:blur"?: ((...args: any[]) => any) | undefined;
99
+ }>, {
100
100
  dataTest: string;
101
- disabled: boolean;
102
101
  required: boolean;
103
- error: boolean;
104
- modelValue: string;
102
+ disabled: boolean;
105
103
  helperLabel: string;
106
- }, {}>;
104
+ modelValue: string;
105
+ error: boolean;
106
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
107
107
  export default _default;