@vuetify/nightly 3.6.14-master.2024-08-03 → 3.6.14-master.2024-08-04
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.
- package/dist/json/importMap-labs.json +18 -18
- package/dist/json/importMap.json +136 -136
- package/dist/json/web-types.json +1 -1
- package/dist/vuetify-labs.css +2989 -2989
- package/dist/vuetify-labs.esm.js +4 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +4 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +948 -948
- package/dist/vuetify.d.ts +47 -47
- package/dist/vuetify.esm.js +4 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +4 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +4 -4
- package/dist/vuetify.min.js.map +1 -1
- package/lib/composables/teleport.mjs +1 -1
- package/lib/composables/teleport.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +47 -47
- package/package.json +1 -1
@@ -10,7 +10,7 @@ export function useTeleport(target) {
|
|
10
10
|
warn(`Unable to locate target ${_target}`);
|
11
11
|
return undefined;
|
12
12
|
}
|
13
|
-
let container = targetElement.
|
13
|
+
let container = [...targetElement.children].find(el => el.matches('.v-overlay-container'));
|
14
14
|
if (!container) {
|
15
15
|
container = document.createElement('div');
|
16
16
|
container.className = 'v-overlay-container';
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"teleport.mjs","names":["computed","warn","IN_BROWSER","useTeleport","target","teleportTarget","_target","undefined","targetElement","document","body","querySelector","container","createElement","className","appendChild"],"sources":["../../src/composables/teleport.ts"],"sourcesContent":["// Utilities\nimport { computed, warn } from 'vue'\nimport { IN_BROWSER } from '@/util'\n\nexport function useTeleport (target: () => (boolean | string | ParentNode)) {\n const teleportTarget = computed(() => {\n const _target = target()\n\n if (_target === true || !IN_BROWSER) return undefined\n\n const targetElement =\n _target === false ? document.body\n : typeof _target === 'string' ? document.querySelector(_target)\n : _target\n\n if (targetElement == null) {\n warn(`Unable to locate target ${_target}`)\n return undefined\n }\n\n let container = targetElement.
|
1
|
+
{"version":3,"file":"teleport.mjs","names":["computed","warn","IN_BROWSER","useTeleport","target","teleportTarget","_target","undefined","targetElement","document","body","querySelector","container","children","find","el","matches","createElement","className","appendChild"],"sources":["../../src/composables/teleport.ts"],"sourcesContent":["// Utilities\nimport { computed, warn } from 'vue'\nimport { IN_BROWSER } from '@/util'\n\nexport function useTeleport (target: () => (boolean | string | ParentNode)) {\n const teleportTarget = computed(() => {\n const _target = target()\n\n if (_target === true || !IN_BROWSER) return undefined\n\n const targetElement =\n _target === false ? document.body\n : typeof _target === 'string' ? document.querySelector(_target)\n : _target\n\n if (targetElement == null) {\n warn(`Unable to locate target ${_target}`)\n return undefined\n }\n\n let container = [...targetElement.children].find(el => el.matches('.v-overlay-container'))\n\n if (!container) {\n container = document.createElement('div')\n container.className = 'v-overlay-container'\n targetElement.appendChild(container)\n }\n\n return container\n })\n\n return { teleportTarget }\n}\n"],"mappings":"AAAA;AACA,SAASA,QAAQ,EAAEC,IAAI,QAAQ,KAAK;AAAA,SAC3BC,UAAU;AAEnB,OAAO,SAASC,WAAWA,CAAEC,MAA6C,EAAE;EAC1E,MAAMC,cAAc,GAAGL,QAAQ,CAAC,MAAM;IACpC,MAAMM,OAAO,GAAGF,MAAM,CAAC,CAAC;IAExB,IAAIE,OAAO,KAAK,IAAI,IAAI,CAACJ,UAAU,EAAE,OAAOK,SAAS;IAErD,MAAMC,aAAa,GACjBF,OAAO,KAAK,KAAK,GAAGG,QAAQ,CAACC,IAAI,GAC/B,OAAOJ,OAAO,KAAK,QAAQ,GAAGG,QAAQ,CAACE,aAAa,CAACL,OAAO,CAAC,GAC7DA,OAAO;IAEX,IAAIE,aAAa,IAAI,IAAI,EAAE;MACzBP,IAAI,CAAC,2BAA2BK,OAAO,EAAE,CAAC;MAC1C,OAAOC,SAAS;IAClB;IAEA,IAAIK,SAAS,GAAG,CAAC,GAAGJ,aAAa,CAACK,QAAQ,CAAC,CAACC,IAAI,CAACC,EAAE,IAAIA,EAAE,CAACC,OAAO,CAAC,sBAAsB,CAAC,CAAC;IAE1F,IAAI,CAACJ,SAAS,EAAE;MACdA,SAAS,GAAGH,QAAQ,CAACQ,aAAa,CAAC,KAAK,CAAC;MACzCL,SAAS,CAACM,SAAS,GAAG,qBAAqB;MAC3CV,aAAa,CAACW,WAAW,CAACP,SAAS,CAAC;IACtC;IAEA,OAAOA,SAAS;EAClB,CAAC,CAAC;EAEF,OAAO;IAAEP;EAAe,CAAC;AAC3B","ignoreList":[]}
|
package/lib/entry-bundler.mjs
CHANGED
@@ -16,7 +16,7 @@ export const createVuetify = function () {
|
|
16
16
|
...options
|
17
17
|
});
|
18
18
|
};
|
19
|
-
export const version = "3.6.14-master.2024-08-
|
19
|
+
export const version = "3.6.14-master.2024-08-04";
|
20
20
|
createVuetify.version = version;
|
21
21
|
export { blueprints, components, directives };
|
22
22
|
export * from "./composables/index.mjs";
|
package/lib/framework.mjs
CHANGED
package/lib/index.d.mts
CHANGED
@@ -464,43 +464,41 @@ declare global {
|
|
464
464
|
}
|
465
465
|
}
|
466
466
|
interface _GlobalComponents {
|
467
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
468
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
469
467
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
470
468
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
471
469
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
472
470
|
VApp: typeof import('vuetify/components')['VApp']
|
471
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
473
472
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
473
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
474
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
474
475
|
VBanner: typeof import('vuetify/components')['VBanner']
|
475
476
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
476
477
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
477
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
478
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
479
478
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
480
479
|
VBadge: typeof import('vuetify/components')['VBadge']
|
481
480
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
482
481
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
483
482
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
483
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
484
484
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
485
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
486
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
487
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
488
485
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
489
|
-
|
486
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
490
487
|
VCard: typeof import('vuetify/components')['VCard']
|
491
488
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
492
489
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
493
490
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
494
491
|
VCardText: typeof import('vuetify/components')['VCardText']
|
495
492
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
493
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
494
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
496
495
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
497
496
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
498
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
499
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
500
497
|
VCode: typeof import('vuetify/components')['VCode']
|
498
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
499
|
+
VChip: typeof import('vuetify/components')['VChip']
|
500
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
501
501
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
502
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
503
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
504
502
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
505
503
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
506
504
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -508,37 +506,36 @@ interface _GlobalComponents {
|
|
508
506
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
509
507
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
510
508
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
509
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
511
510
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
512
511
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
513
512
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
514
513
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
515
514
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
516
515
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
516
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
517
517
|
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
518
518
|
VDivider: typeof import('vuetify/components')['VDivider']
|
519
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
520
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
519
521
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
520
522
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
521
523
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
522
524
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
523
|
-
VFab: typeof import('vuetify/components')['VFab']
|
524
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
525
525
|
VField: typeof import('vuetify/components')['VField']
|
526
526
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
527
|
-
|
527
|
+
VFab: typeof import('vuetify/components')['VFab']
|
528
528
|
VIcon: typeof import('vuetify/components')['VIcon']
|
529
529
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
530
530
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
531
531
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
532
532
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
533
|
-
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
534
|
-
VItem: typeof import('vuetify/components')['VItem']
|
535
|
-
VImg: typeof import('vuetify/components')['VImg']
|
536
533
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
537
|
-
|
538
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
539
|
-
VMain: typeof import('vuetify/components')['VMain']
|
534
|
+
VImg: typeof import('vuetify/components')['VImg']
|
540
535
|
VInput: typeof import('vuetify/components')['VInput']
|
541
|
-
|
536
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
537
|
+
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
538
|
+
VItem: typeof import('vuetify/components')['VItem']
|
542
539
|
VList: typeof import('vuetify/components')['VList']
|
543
540
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
544
541
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -548,70 +545,73 @@ interface _GlobalComponents {
|
|
548
545
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
549
546
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
550
547
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
548
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
549
|
+
VMain: typeof import('vuetify/components')['VMain']
|
551
550
|
VMenu: typeof import('vuetify/components')['VMenu']
|
551
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
552
552
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
553
|
-
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
554
553
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
554
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
555
555
|
VPagination: typeof import('vuetify/components')['VPagination']
|
556
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
557
556
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
557
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
558
558
|
VRating: typeof import('vuetify/components')['VRating']
|
559
559
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
560
560
|
VSelect: typeof import('vuetify/components')['VSelect']
|
561
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
561
562
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
563
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
562
564
|
VSheet: typeof import('vuetify/components')['VSheet']
|
565
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
563
566
|
VSlider: typeof import('vuetify/components')['VSlider']
|
564
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
565
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
566
567
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
567
568
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
568
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
569
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
570
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
571
569
|
VStepper: typeof import('vuetify/components')['VStepper']
|
572
570
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
573
571
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
574
572
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
575
573
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
576
574
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
577
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
578
575
|
VTab: typeof import('vuetify/components')['VTab']
|
579
576
|
VTabs: typeof import('vuetify/components')['VTabs']
|
580
577
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
581
578
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
579
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
580
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
581
|
+
VTable: typeof import('vuetify/components')['VTable']
|
582
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
586
583
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
587
584
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
588
|
-
VTable: typeof import('vuetify/components')['VTable']
|
589
585
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
586
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
587
|
+
VToolbar: typeof import('vuetify/components')['VToolbar']
|
588
|
+
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
589
|
+
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
590
590
|
VWindow: typeof import('vuetify/components')['VWindow']
|
591
591
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
592
592
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
593
593
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
594
594
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
595
|
-
VForm: typeof import('vuetify/components')['VForm']
|
596
|
-
VHover: typeof import('vuetify/components')['VHover']
|
597
595
|
VContainer: typeof import('vuetify/components')['VContainer']
|
598
596
|
VCol: typeof import('vuetify/components')['VCol']
|
599
597
|
VRow: typeof import('vuetify/components')['VRow']
|
600
598
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
599
|
+
VForm: typeof import('vuetify/components')['VForm']
|
600
|
+
VHover: typeof import('vuetify/components')['VHover']
|
601
601
|
VLayout: typeof import('vuetify/components')['VLayout']
|
602
602
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
603
603
|
VLazy: typeof import('vuetify/components')['VLazy']
|
604
604
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
605
605
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
606
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
607
606
|
VRadio: typeof import('vuetify/components')['VRadio']
|
608
|
-
|
607
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
609
608
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
610
|
-
|
609
|
+
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
611
610
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
611
|
+
VSparkline: typeof import('vuetify/components')['VSparkline']
|
612
612
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
613
|
-
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
614
613
|
VValidation: typeof import('vuetify/components')['VValidation']
|
614
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
615
615
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
616
616
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
617
617
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -634,21 +634,21 @@ interface _GlobalComponents {
|
|
634
634
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
635
635
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
636
636
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
637
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
638
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
637
639
|
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
638
|
-
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
639
|
-
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
640
|
-
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
641
640
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
642
641
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
643
642
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
644
|
-
|
645
|
-
|
643
|
+
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
644
|
+
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
645
|
+
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
646
646
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
647
647
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
648
648
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
649
649
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
650
|
-
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
651
650
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
651
|
+
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
652
652
|
}
|
653
653
|
declare module 'vue' {
|
654
654
|
export type JSXComponent<Props = any> = { new (): ComponentPublicInstance<Props> } | FunctionalComponent<Props>
|
package/package.json
CHANGED