@vuetify/nightly 3.8.3-master.2025-05-04 → 3.8.4-dev.2025-05-07
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/CHANGELOG.md +14 -24
- package/dist/json/attributes.json +2834 -2826
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +156 -156
- package/dist/json/tags.json +2 -0
- package/dist/json/web-types.json +5151 -5131
- package/dist/vuetify-labs.cjs +163 -73
- package/dist/vuetify-labs.css +4647 -4620
- package/dist/vuetify-labs.d.ts +154 -377
- package/dist/vuetify-labs.esm.js +164 -74
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +163 -73
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +142 -40
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +5041 -5014
- package/dist/vuetify.d.ts +183 -406
- package/dist/vuetify.esm.js +143 -41
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +142 -40
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1182 -1173
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +3 -3
- package/lib/components/VAutocomplete/VAutocomplete.js +5 -0
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VBottomNavigation/VBottomNavigation.d.ts +6 -6
- package/lib/components/VBtnGroup/VBtnGroup.css +30 -7
- package/lib/components/VBtnGroup/VBtnGroup.d.ts +58 -32
- package/lib/components/VBtnGroup/VBtnGroup.js +7 -3
- package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.sass +44 -17
- package/lib/components/VBtnToggle/VBtnToggle.d.ts +25 -0
- package/lib/components/VCombobox/VCombobox.d.ts +3 -3
- package/lib/components/VDataTable/VDataTable.d.ts +110 -110
- package/lib/components/VDataTable/VDataTableHeaders.js +1 -2
- package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.d.ts +62 -189
- package/lib/components/VDataTable/VDataTableServer.js.map +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.d.ts +62 -189
- package/lib/components/VDataTable/VDataTableVirtual.js.map +1 -1
- package/lib/components/VDataTable/composables/headers.d.ts +75 -75
- package/lib/components/VDatePicker/VDatePicker.d.ts +3 -3
- package/lib/components/VDatePicker/VDatePickerMonth.d.ts +6 -6
- package/lib/components/VDialog/VDialog.js +1 -1
- package/lib/components/VDialog/VDialog.js.map +1 -1
- package/lib/components/VFileInput/VFileInput.css +4 -0
- package/lib/components/VFileInput/VFileInput.js +21 -3
- package/lib/components/VFileInput/VFileInput.js.map +1 -1
- package/lib/components/VFileInput/VFileInput.sass +4 -0
- package/lib/components/VInput/VInput.d.ts +1 -1
- package/lib/components/VNumberInput/VNumberInput.d.ts +3 -3
- package/lib/components/VOverlay/VOverlay.css +1 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/components/VOverlay/locationStrategies.js +1 -1
- package/lib/components/VOverlay/locationStrategies.js.map +1 -1
- package/lib/components/VSelect/VSelect.d.ts +3 -3
- package/lib/components/VTabs/VTabs.d.ts +6 -6
- package/lib/components/transitions/dialog-transition.js +3 -3
- package/lib/components/transitions/dialog-transition.js.map +1 -1
- package/lib/composables/calendar.d.ts +1 -0
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/theme.d.ts +6 -1
- package/lib/composables/theme.js +94 -26
- package/lib/composables/theme.js.map +1 -1
- package/lib/composables/virtual.js +6 -1
- package/lib/composables/virtual.js.map +1 -1
- package/lib/entry-bundler.d.ts +6 -6
- package/lib/entry-bundler.js +1 -1
- package/lib/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +65 -60
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/labs/VCalendar/VCalendar.d.ts +3 -3
- package/lib/labs/VCalendar/VCalendarDay.d.ts +3 -3
- package/lib/labs/VCalendar/VCalendarInterval.d.ts +3 -3
- package/lib/labs/VCalendar/VCalendarMonthDay.d.ts +3 -3
- package/lib/labs/VDateInput/VDateInput.d.ts +9 -9
- package/lib/labs/VFileUpload/VFileUpload.js +19 -31
- package/lib/labs/VFileUpload/VFileUpload.js.map +1 -1
- package/lib/labs/VTimePicker/VTimePickerClock.js +2 -2
- package/lib/labs/VTimePicker/VTimePickerClock.js.map +1 -1
- package/lib/util/globals.d.ts +1 -0
- package/lib/util/globals.js +1 -0
- package/lib/util/globals.js.map +1 -1
- package/lib/util/helpers.js.map +1 -1
- package/package.json +6 -6
package/lib/framework.d.ts
CHANGED
@@ -147,11 +147,12 @@ type DeepPartial<T> = T extends object ? {
|
|
147
147
|
} : T;
|
148
148
|
type ThemeOptions = false | {
|
149
149
|
cspNonce?: string;
|
150
|
-
defaultTheme?: string;
|
150
|
+
defaultTheme?: 'light' | 'dark' | 'system' | string;
|
151
151
|
variations?: false | VariationsOptions;
|
152
152
|
themes?: Record<string, ThemeDefinition>;
|
153
153
|
stylesheetId?: string;
|
154
154
|
scope?: string;
|
155
|
+
unimportant?: boolean;
|
155
156
|
};
|
156
157
|
type ThemeDefinition = DeepPartial<InternalThemeDefinition>;
|
157
158
|
interface VariationsOptions {
|
@@ -188,11 +189,15 @@ interface OnColors {
|
|
188
189
|
'on-info': string;
|
189
190
|
}
|
190
191
|
interface ThemeInstance {
|
192
|
+
change: (themeName: string) => void;
|
193
|
+
cycle: (themeArray?: string[]) => void;
|
194
|
+
toggle: (themeArray?: [string, string]) => void;
|
191
195
|
readonly isDisabled: boolean;
|
192
196
|
readonly themes: Ref<Record<string, InternalThemeDefinition>>;
|
193
197
|
readonly name: Readonly<Ref<string>>;
|
194
198
|
readonly current: DeepReadonly<Ref<InternalThemeDefinition>>;
|
195
199
|
readonly computedThemes: DeepReadonly<Ref<Record<string, InternalThemeDefinition>>>;
|
200
|
+
readonly prefix: string;
|
196
201
|
readonly themeClasses: Readonly<Ref<string | undefined>>;
|
197
202
|
readonly styles: Readonly<Ref<string>>;
|
198
203
|
readonly global: {
|
@@ -2537,39 +2542,39 @@ declare module 'vue' {
|
|
2537
2542
|
$children?: VNodeChild
|
2538
2543
|
}
|
2539
2544
|
export interface GlobalComponents {
|
2540
|
-
|
2541
|
-
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
2542
|
-
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
2543
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
2545
|
+
VApp: typeof import('vuetify/components')['VApp']
|
2544
2546
|
VAlert: typeof import('vuetify/components')['VAlert']
|
2545
2547
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
2546
|
-
VApp: typeof import('vuetify/components')['VApp']
|
2547
2548
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
2548
2549
|
VBadge: typeof import('vuetify/components')['VBadge']
|
2550
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
2549
2551
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
2550
2552
|
VBanner: typeof import('vuetify/components')['VBanner']
|
2551
2553
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
2552
2554
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
2553
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2554
2555
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
2555
2556
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
2556
2557
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
2558
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2559
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
2557
2560
|
VCard: typeof import('vuetify/components')['VCard']
|
2558
2561
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
2559
2562
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
2560
2563
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
2561
2564
|
VCardText: typeof import('vuetify/components')['VCardText']
|
2562
2565
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
2563
|
-
|
2564
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2565
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2566
|
-
VChip: typeof import('vuetify/components')['VChip']
|
2566
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
2567
2567
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
2568
2568
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
2569
|
-
|
2569
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2570
|
+
VChip: typeof import('vuetify/components')['VChip']
|
2571
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
2572
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2570
2573
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
2571
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
2572
2574
|
VCode: typeof import('vuetify/components')['VCode']
|
2575
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
2576
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
2577
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
2573
2578
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
2574
2579
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
2575
2580
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -2577,7 +2582,6 @@ declare module 'vue' {
|
|
2577
2582
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
2578
2583
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
2579
2584
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
2580
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
2581
2585
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
2582
2586
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
2583
2587
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
@@ -2585,30 +2589,31 @@ declare module 'vue' {
|
|
2585
2589
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
2586
2590
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
2587
2591
|
VDialog: typeof import('vuetify/components')['VDialog']
|
2588
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
2589
|
-
VField: typeof import('vuetify/components')['VField']
|
2590
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
2591
2592
|
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
2593
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2594
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
2595
|
+
VFab: typeof import('vuetify/components')['VFab']
|
2592
2596
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
2593
2597
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
2594
2598
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
2595
2599
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
2596
|
-
VFab: typeof import('vuetify/components')['VFab']
|
2597
2600
|
VFooter: typeof import('vuetify/components')['VFooter']
|
2598
|
-
|
2599
|
-
|
2600
|
-
VInput: typeof import('vuetify/components')['VInput']
|
2601
|
-
VImg: typeof import('vuetify/components')['VImg']
|
2602
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
2601
|
+
VField: typeof import('vuetify/components')['VField']
|
2602
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
2603
2603
|
VIcon: typeof import('vuetify/components')['VIcon']
|
2604
2604
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
2605
2605
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
2606
2606
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
2607
2607
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
2608
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2608
2609
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
2609
2610
|
VItem: typeof import('vuetify/components')['VItem']
|
2611
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
2612
|
+
VAppBar: typeof import('vuetify/components')['VAppBar']
|
2613
|
+
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
2614
|
+
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
2615
|
+
VInput: typeof import('vuetify/components')['VInput']
|
2610
2616
|
VLabel: typeof import('vuetify/components')['VLabel']
|
2611
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
2612
2617
|
VList: typeof import('vuetify/components')['VList']
|
2613
2618
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
2614
2619
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -2619,66 +2624,71 @@ declare module 'vue' {
|
|
2619
2624
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
2620
2625
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
2621
2626
|
VMain: typeof import('vuetify/components')['VMain']
|
2622
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
2623
2627
|
VMessages: typeof import('vuetify/components')['VMessages']
|
2628
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
2629
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
2624
2630
|
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
2625
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
2626
2631
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
2627
|
-
|
2628
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
2629
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
2632
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
2630
2633
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
2634
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
2635
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
2631
2636
|
VRating: typeof import('vuetify/components')['VRating']
|
2632
2637
|
VSelect: typeof import('vuetify/components')['VSelect']
|
2633
|
-
|
2634
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
2638
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
2635
2639
|
VSheet: typeof import('vuetify/components')['VSheet']
|
2636
|
-
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
2637
|
-
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
2638
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2639
2640
|
VSlider: typeof import('vuetify/components')['VSlider']
|
2641
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
2640
2642
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
2641
|
-
|
2643
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2644
|
+
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
2645
|
+
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
2646
|
+
VStepper: typeof import('vuetify/components')['VStepper']
|
2647
|
+
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
2648
|
+
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
2649
|
+
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
2650
|
+
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
2651
|
+
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
2642
2652
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
2653
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
2643
2654
|
VTab: typeof import('vuetify/components')['VTab']
|
2644
2655
|
VTabs: typeof import('vuetify/components')['VTabs']
|
2645
2656
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
2646
2657
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
2647
2658
|
VTable: typeof import('vuetify/components')['VTable']
|
2648
2659
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
2649
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
2650
2660
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
2651
2661
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
2652
2662
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
2653
|
-
|
2654
|
-
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
2663
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
2655
2664
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
2656
2665
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
2657
2666
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
2658
|
-
|
2667
|
+
VWindow: typeof import('vuetify/components')['VWindow']
|
2668
|
+
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
2659
2669
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
2670
|
+
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
2660
2671
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
2661
2672
|
VContainer: typeof import('vuetify/components')['VContainer']
|
2662
2673
|
VCol: typeof import('vuetify/components')['VCol']
|
2663
2674
|
VRow: typeof import('vuetify/components')['VRow']
|
2664
2675
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
2665
|
-
VHover: typeof import('vuetify/components')['VHover']
|
2666
2676
|
VForm: typeof import('vuetify/components')['VForm']
|
2667
|
-
|
2677
|
+
VHover: typeof import('vuetify/components')['VHover']
|
2668
2678
|
VLayout: typeof import('vuetify/components')['VLayout']
|
2669
2679
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
2670
|
-
|
2680
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
2671
2681
|
VParallax: typeof import('vuetify/components')['VParallax']
|
2682
|
+
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
2672
2683
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
2673
2684
|
VRadio: typeof import('vuetify/components')['VRadio']
|
2674
2685
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
2675
2686
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
2676
|
-
VSparkline: typeof import('vuetify/components')['VSparkline']
|
2677
2687
|
VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
|
2688
|
+
VSparkline: typeof import('vuetify/components')['VSparkline']
|
2689
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
2678
2690
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
2679
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
2680
2691
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
2681
|
-
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
2682
2692
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
2683
2693
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
2684
2694
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -2695,35 +2705,30 @@ declare module 'vue' {
|
|
2695
2705
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
2696
2706
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
2697
2707
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
2698
|
-
|
2699
|
-
|
2700
|
-
|
2701
|
-
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
2702
|
-
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
2703
|
-
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
2704
|
-
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
2705
|
-
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
2708
|
+
VImg: typeof import('vuetify/components')['VImg']
|
2709
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
2710
|
+
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
2706
2711
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
2707
2712
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
2708
2713
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
2709
2714
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
2710
2715
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
2711
2716
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
2717
|
+
VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
|
2712
2718
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
2713
2719
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
2714
|
-
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2715
|
-
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2716
2720
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
2717
2721
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
2718
2722
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
2719
|
-
VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
|
2720
|
-
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
2721
|
-
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
2722
|
-
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
2723
2723
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
2724
2724
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
2725
2725
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
2726
|
-
|
2726
|
+
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2727
|
+
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2728
|
+
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
2729
|
+
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
2730
|
+
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
2727
2731
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
2732
|
+
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
2728
2733
|
}
|
2729
2734
|
}
|
package/lib/framework.js
CHANGED
package/lib/framework.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"framework.js","names":["createDate","DateAdapterSymbol","DateOptionsSymbol","createDefaults","DefaultsSymbol","createDisplay","DisplaySymbol","createGoTo","GoToSymbol","createIcons","IconSymbol","createLocale","LocaleSymbol","createTheme","ThemeSymbol","effectScope","nextTick","reactive","defineComponent","IN_BROWSER","mergeDeep","createVuetify","vuetify","arguments","length","undefined","blueprint","rest","options","aliases","components","directives","scope","run","defaults","display","ssr","theme","icons","locale","date","goTo","install","app","key","directive","component","name","aliasName","appScope","onUnmount","stop","provide","instance","$nuxt","hook","update","mount","vm","__VUE_OPTIONS_API__","mixin","computed","$vuetify","inject","call","unmount","version","$","provides","parent","vnode","appContext"],"sources":["../src/framework.ts"],"sourcesContent":["// Composables\nimport { createDate, DateAdapterSymbol, DateOptionsSymbol } from '@/composables/date/date'\nimport { createDefaults, DefaultsSymbol } from '@/composables/defaults'\nimport { createDisplay, DisplaySymbol } from '@/composables/display'\nimport { createGoTo, GoToSymbol } from '@/composables/goto'\nimport { createIcons, IconSymbol } from '@/composables/icons'\nimport { createLocale, LocaleSymbol } from '@/composables/locale'\nimport { createTheme, ThemeSymbol } from '@/composables/theme'\n\n// Utilities\nimport { effectScope, nextTick, reactive } from 'vue'\nimport { defineComponent, IN_BROWSER, mergeDeep } from '@/util'\n\n// Types\nimport type { App, ComponentPublicInstance, InjectionKey } from 'vue'\nimport type { DateOptions } from '@/composables/date'\nimport type { DefaultsOptions } from '@/composables/defaults'\nimport type { DisplayOptions, SSROptions } from '@/composables/display'\nimport type { GoToOptions } from '@/composables/goto'\nimport type { IconOptions } from '@/composables/icons'\nimport type { LocaleOptions, RtlOptions } from '@/composables/locale'\nimport type { ThemeOptions } from '@/composables/theme'\n\n// Exports\nexport * from './composables'\nexport * from './types'\n\nexport interface VuetifyOptions {\n aliases?: Record<string, any>\n blueprint?: Blueprint\n components?: Record<string, any>\n date?: DateOptions\n directives?: Record<string, any>\n defaults?: DefaultsOptions\n display?: DisplayOptions\n goTo?: GoToOptions\n theme?: ThemeOptions\n icons?: IconOptions\n locale?: LocaleOptions & RtlOptions\n ssr?: SSROptions\n}\n\nexport interface Blueprint extends Omit<VuetifyOptions, 'blueprint'> {}\n\nexport function createVuetify (vuetify: VuetifyOptions = {}) {\n const { blueprint, ...rest } = vuetify\n const options: VuetifyOptions = mergeDeep(blueprint, rest)\n const {\n aliases = {},\n components = {},\n directives = {},\n } = options\n\n const scope = effectScope()\n return scope.run(() => {\n const defaults = createDefaults(options.defaults)\n const display = createDisplay(options.display, options.ssr)\n const theme = createTheme(options.theme)\n const icons = createIcons(options.icons)\n const locale = createLocale(options.locale)\n const date = createDate(options.date, locale)\n const goTo = createGoTo(options.goTo, locale)\n\n function install (app: App) {\n for (const key in directives) {\n app.directive(key, directives[key])\n }\n\n for (const key in components) {\n app.component(key, components[key])\n }\n\n for (const key in aliases) {\n app.component(key, defineComponent({\n ...aliases[key],\n name: key,\n aliasName: aliases[key].name,\n }))\n }\n\n const appScope = effectScope()\n appScope.run(() => {\n theme.install(app)\n })\n app.onUnmount(() => appScope.stop())\n\n app.provide(DefaultsSymbol, defaults)\n app.provide(DisplaySymbol, display)\n app.provide(ThemeSymbol, theme)\n app.provide(IconSymbol, icons)\n app.provide(LocaleSymbol, locale)\n app.provide(DateOptionsSymbol, date.options)\n app.provide(DateAdapterSymbol, date.instance)\n app.provide(GoToSymbol, goTo)\n\n if (IN_BROWSER && options.ssr) {\n if (app.$nuxt) {\n app.$nuxt.hook('app:suspense:resolve', () => {\n display.update()\n })\n } else {\n const { mount } = app\n app.mount = (...args) => {\n const vm = mount(...args)\n nextTick(() => display.update())\n app.mount = mount\n return vm\n }\n }\n }\n\n if (typeof __VUE_OPTIONS_API__ !== 'boolean' || __VUE_OPTIONS_API__) {\n app.mixin({\n computed: {\n $vuetify () {\n return reactive({\n defaults: inject.call(this, DefaultsSymbol),\n display: inject.call(this, DisplaySymbol),\n theme: inject.call(this, ThemeSymbol),\n icons: inject.call(this, IconSymbol),\n locale: inject.call(this, LocaleSymbol),\n date: inject.call(this, DateAdapterSymbol),\n })\n },\n },\n })\n }\n }\n\n function unmount () {\n scope.stop()\n }\n\n return {\n install,\n unmount,\n defaults,\n display,\n theme,\n icons,\n locale,\n date,\n goTo,\n }\n })!\n}\n\nexport const version = __VUETIFY_VERSION__\ncreateVuetify.version = version\n\n// Vue's inject() can only be used in setup\nfunction inject (this: ComponentPublicInstance, key: InjectionKey<any> | string) {\n const vm = this.$\n\n const provides = vm.parent?.provides ?? vm.vnode.appContext?.provides\n\n if (provides && (key as any) in provides) {\n return provides[(key as string)]\n }\n}\n"],"mappings":"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
|
1
|
+
{"version":3,"file":"framework.js","names":["createDate","DateAdapterSymbol","DateOptionsSymbol","createDefaults","DefaultsSymbol","createDisplay","DisplaySymbol","createGoTo","GoToSymbol","createIcons","IconSymbol","createLocale","LocaleSymbol","createTheme","ThemeSymbol","effectScope","nextTick","reactive","defineComponent","IN_BROWSER","mergeDeep","createVuetify","vuetify","arguments","length","undefined","blueprint","rest","options","aliases","components","directives","scope","run","defaults","display","ssr","theme","icons","locale","date","goTo","install","app","key","directive","component","name","aliasName","appScope","onUnmount","stop","provide","instance","$nuxt","hook","update","mount","vm","__VUE_OPTIONS_API__","mixin","computed","$vuetify","inject","call","unmount","version","$","provides","parent","vnode","appContext"],"sources":["../src/framework.ts"],"sourcesContent":["// Composables\nimport { createDate, DateAdapterSymbol, DateOptionsSymbol } from '@/composables/date/date'\nimport { createDefaults, DefaultsSymbol } from '@/composables/defaults'\nimport { createDisplay, DisplaySymbol } from '@/composables/display'\nimport { createGoTo, GoToSymbol } from '@/composables/goto'\nimport { createIcons, IconSymbol } from '@/composables/icons'\nimport { createLocale, LocaleSymbol } from '@/composables/locale'\nimport { createTheme, ThemeSymbol } from '@/composables/theme'\n\n// Utilities\nimport { effectScope, nextTick, reactive } from 'vue'\nimport { defineComponent, IN_BROWSER, mergeDeep } from '@/util'\n\n// Types\nimport type { App, ComponentPublicInstance, InjectionKey } from 'vue'\nimport type { DateOptions } from '@/composables/date'\nimport type { DefaultsOptions } from '@/composables/defaults'\nimport type { DisplayOptions, SSROptions } from '@/composables/display'\nimport type { GoToOptions } from '@/composables/goto'\nimport type { IconOptions } from '@/composables/icons'\nimport type { LocaleOptions, RtlOptions } from '@/composables/locale'\nimport type { ThemeOptions } from '@/composables/theme'\n\n// Exports\nexport * from './composables'\nexport * from './types'\n\nexport interface VuetifyOptions {\n aliases?: Record<string, any>\n blueprint?: Blueprint\n components?: Record<string, any>\n date?: DateOptions\n directives?: Record<string, any>\n defaults?: DefaultsOptions\n display?: DisplayOptions\n goTo?: GoToOptions\n theme?: ThemeOptions\n icons?: IconOptions\n locale?: LocaleOptions & RtlOptions\n ssr?: SSROptions\n}\n\nexport interface Blueprint extends Omit<VuetifyOptions, 'blueprint'> {}\n\nexport function createVuetify (vuetify: VuetifyOptions = {}) {\n const { blueprint, ...rest } = vuetify\n const options: VuetifyOptions = mergeDeep(blueprint, rest)\n const {\n aliases = {},\n components = {},\n directives = {},\n } = options\n\n const scope = effectScope()\n return scope.run(() => {\n const defaults = createDefaults(options.defaults)\n const display = createDisplay(options.display, options.ssr)\n const theme = createTheme(options.theme)\n const icons = createIcons(options.icons)\n const locale = createLocale(options.locale)\n const date = createDate(options.date, locale)\n const goTo = createGoTo(options.goTo, locale)\n\n function install (app: App) {\n for (const key in directives) {\n app.directive(key, directives[key])\n }\n\n for (const key in components) {\n app.component(key, components[key])\n }\n\n for (const key in aliases) {\n app.component(key, defineComponent({\n ...aliases[key],\n name: key,\n aliasName: aliases[key].name,\n }))\n }\n\n const appScope = effectScope()\n appScope.run(() => {\n theme.install(app)\n })\n app.onUnmount(() => appScope.stop())\n\n app.provide(DefaultsSymbol, defaults)\n app.provide(DisplaySymbol, display)\n app.provide(ThemeSymbol, theme)\n app.provide(IconSymbol, icons)\n app.provide(LocaleSymbol, locale)\n app.provide(DateOptionsSymbol, date.options)\n app.provide(DateAdapterSymbol, date.instance)\n app.provide(GoToSymbol, goTo)\n\n if (IN_BROWSER && options.ssr) {\n if (app.$nuxt) {\n app.$nuxt.hook('app:suspense:resolve', () => {\n display.update()\n })\n } else {\n const { mount } = app\n app.mount = (...args) => {\n const vm = mount(...args)\n nextTick(() => display.update())\n app.mount = mount\n return vm\n }\n }\n }\n\n if (typeof __VUE_OPTIONS_API__ !== 'boolean' || __VUE_OPTIONS_API__) {\n app.mixin({\n computed: {\n $vuetify () {\n return reactive({\n defaults: inject.call(this, DefaultsSymbol),\n display: inject.call(this, DisplaySymbol),\n theme: inject.call(this, ThemeSymbol),\n icons: inject.call(this, IconSymbol),\n locale: inject.call(this, LocaleSymbol),\n date: inject.call(this, DateAdapterSymbol),\n })\n },\n },\n })\n }\n }\n\n function unmount () {\n scope.stop()\n }\n\n return {\n install,\n unmount,\n defaults,\n display,\n theme,\n icons,\n locale,\n date,\n goTo,\n }\n })!\n}\n\nexport const version = __VUETIFY_VERSION__\ncreateVuetify.version = version\n\n// Vue's inject() can only be used in setup\nfunction inject (this: ComponentPublicInstance, key: InjectionKey<any> | string) {\n const vm = this.$\n\n const provides = vm.parent?.provides ?? vm.vnode.appContext?.provides\n\n if (provides && (key as any) in provides) {\n return provides[(key as string)]\n }\n}\n"],"mappings":"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","ignoreList":[]}
|
@@ -102,7 +102,7 @@ export declare const makeVCalendarProps: <Defaults extends {
|
|
102
102
|
from<T, U_1>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U_1, thisArg?: any): U_1[];
|
103
103
|
of<T>(...items: T[]): T[];
|
104
104
|
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
105
|
-
fromAsync<T, U_2>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T
|
105
|
+
fromAsync<T, U_2>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U_2, thisArg?: any): Promise<Awaited<U_2>[]>;
|
106
106
|
readonly [Symbol.species]: ArrayConstructor;
|
107
107
|
} : {
|
108
108
|
type: import("vue").PropType<unknown extends Defaults["events"] ? any[] : any[] | Defaults["events"]>;
|
@@ -1144,7 +1144,7 @@ export declare const VCalendar: {
|
|
1144
1144
|
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
1145
1145
|
of<T>(...items: T[]): T[];
|
1146
1146
|
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
1147
|
-
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T
|
1147
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
1148
1148
|
readonly [Symbol.species]: ArrayConstructor;
|
1149
1149
|
};
|
1150
1150
|
intervalDivisions: {
|
@@ -1234,7 +1234,7 @@ export declare const VCalendar: {
|
|
1234
1234
|
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
1235
1235
|
of<T>(...items: T[]): T[];
|
1236
1236
|
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
1237
|
-
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T
|
1237
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
1238
1238
|
readonly [Symbol.species]: ArrayConstructor;
|
1239
1239
|
};
|
1240
1240
|
intervalDivisions: {
|
@@ -41,7 +41,7 @@ export declare const makeVCalendarDayProps: <Defaults extends {
|
|
41
41
|
from<T, U_1>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U_1, thisArg?: any): U_1[];
|
42
42
|
of<T>(...items: T[]): T[];
|
43
43
|
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
44
|
-
fromAsync<T, U_2>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T
|
44
|
+
fromAsync<T, U_2>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U_2, thisArg?: any): Promise<Awaited<U_2>[]>;
|
45
45
|
readonly [Symbol.species]: ArrayConstructor;
|
46
46
|
} : {
|
47
47
|
type: import("vue").PropType<unknown extends Defaults["events"] ? any[] : any[] | Defaults["events"]>;
|
@@ -551,7 +551,7 @@ export declare const VCalendarDay: {
|
|
551
551
|
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
552
552
|
of<T>(...items: T[]): T[];
|
553
553
|
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
554
|
-
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T
|
554
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
555
555
|
readonly [Symbol.species]: ArrayConstructor;
|
556
556
|
};
|
557
557
|
intervalDivisions: {
|
@@ -598,7 +598,7 @@ export declare const VCalendarDay: {
|
|
598
598
|
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
599
599
|
of<T>(...items: T[]): T[];
|
600
600
|
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
601
|
-
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T
|
601
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
602
602
|
readonly [Symbol.species]: ArrayConstructor;
|
603
603
|
};
|
604
604
|
intervalDivisions: {
|
@@ -56,7 +56,7 @@ export declare const makeVCalendarIntervalProps: <Defaults extends {
|
|
56
56
|
from<T, U_1>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U_1, thisArg?: any): U_1[];
|
57
57
|
of<T>(...items: T[]): T[];
|
58
58
|
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
59
|
-
fromAsync<T, U_2>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T
|
59
|
+
fromAsync<T, U_2>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U_2, thisArg?: any): Promise<Awaited<U_2>[]>;
|
60
60
|
readonly [Symbol.species]: ArrayConstructor;
|
61
61
|
} : {
|
62
62
|
type: import("vue").PropType<unknown extends Defaults["events"] ? any[] : any[] | Defaults["events"]>;
|
@@ -382,7 +382,7 @@ export declare const VCalendarInterval: {
|
|
382
382
|
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
383
383
|
of<T>(...items: T[]): T[];
|
384
384
|
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
385
|
-
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T
|
385
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
386
386
|
readonly [Symbol.species]: ArrayConstructor;
|
387
387
|
};
|
388
388
|
intervalDivisions: {
|
@@ -428,7 +428,7 @@ export declare const VCalendarInterval: {
|
|
428
428
|
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
429
429
|
of<T>(...items: T[]): T[];
|
430
430
|
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
431
|
-
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T
|
431
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
432
432
|
readonly [Symbol.species]: ArrayConstructor;
|
433
433
|
};
|
434
434
|
intervalDivisions: {
|
@@ -55,7 +55,7 @@ export declare const makeVCalendarMonthDayProps: <Defaults extends {
|
|
55
55
|
from<T, U_1>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U_1, thisArg?: any): U_1[];
|
56
56
|
of<T>(...items: T[]): T[];
|
57
57
|
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
58
|
-
fromAsync<T, U_2>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T
|
58
|
+
fromAsync<T, U_2>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U_2, thisArg?: any): Promise<Awaited<U_2>[]>;
|
59
59
|
readonly [Symbol.species]: ArrayConstructor;
|
60
60
|
} : {
|
61
61
|
type: PropType<unknown extends Defaults["events"] ? any[] : any[] | Defaults["events"]>;
|
@@ -283,7 +283,7 @@ export declare const VCalendarMonthDay: {
|
|
283
283
|
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
284
284
|
of<T>(...items: T[]): T[];
|
285
285
|
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
286
|
-
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T
|
286
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
287
287
|
readonly [Symbol.species]: ArrayConstructor;
|
288
288
|
};
|
289
289
|
title: (StringConstructor | NumberConstructor)[];
|
@@ -307,7 +307,7 @@ export declare const VCalendarMonthDay: {
|
|
307
307
|
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
308
308
|
of<T>(...items: T[]): T[];
|
309
309
|
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
310
|
-
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T
|
310
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
311
311
|
readonly [Symbol.species]: ArrayConstructor;
|
312
312
|
};
|
313
313
|
title: (StringConstructor | NumberConstructor)[];
|