@abraca/nuxt 1.8.2 → 2.0.0
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/README.md +27 -2
- package/dist/module.d.mts +4 -3
- package/dist/module.json +1 -1
- package/dist/module.mjs +50 -4
- package/dist/runtime/components/ADocumentTree.vue +1 -1
- package/dist/runtime/components/AEditor.d.vue.ts +26 -1
- package/dist/runtime/components/AEditor.vue +153 -4
- package/dist/runtime/components/AEditor.vue.d.ts +26 -1
- package/dist/runtime/components/AIdentityModal.d.vue.ts +46 -0
- package/dist/runtime/components/AIdentityModal.vue +157 -0
- package/dist/runtime/components/AIdentityModal.vue.d.ts +46 -0
- package/dist/runtime/components/AMnemonicLoginModal.d.vue.ts +35 -0
- package/dist/runtime/components/AMnemonicLoginModal.vue +173 -0
- package/dist/runtime/components/AMnemonicLoginModal.vue.d.ts +35 -0
- package/dist/runtime/components/ANodePanel.d.vue.ts +29 -2
- package/dist/runtime/components/ANodePanel.vue +148 -27
- package/dist/runtime/components/ANodePanel.vue.d.ts +29 -2
- package/dist/runtime/components/ANodePanelHeader.d.vue.ts +64 -0
- package/dist/runtime/components/ANodePanelHeader.vue +105 -0
- package/dist/runtime/components/ANodePanelHeader.vue.d.ts +64 -0
- package/dist/runtime/components/ANodeSettingsPanel.d.vue.ts +49 -0
- package/dist/runtime/components/ANodeSettingsPanel.vue +59 -0
- package/dist/runtime/components/ANodeSettingsPanel.vue.d.ts +49 -0
- package/dist/runtime/components/ANotificationBell.d.vue.ts +26 -0
- package/dist/runtime/components/ANotificationBell.vue +55 -0
- package/dist/runtime/components/ANotificationBell.vue.d.ts +26 -0
- package/dist/runtime/components/AOfflineSync.d.vue.ts +11 -0
- package/dist/runtime/components/AOfflineSync.vue +217 -0
- package/dist/runtime/components/AOfflineSync.vue.d.ts +11 -0
- package/dist/runtime/components/ARecoveryPhraseDisplay.d.vue.ts +26 -0
- package/dist/runtime/components/ARecoveryPhraseDisplay.vue +94 -0
- package/dist/runtime/components/ARecoveryPhraseDisplay.vue.d.ts +26 -0
- package/dist/runtime/components/AServerInfoModal.d.vue.ts +43 -0
- package/dist/runtime/components/AServerInfoModal.vue +150 -0
- package/dist/runtime/components/AServerInfoModal.vue.d.ts +43 -0
- package/dist/runtime/components/ASpaceFormModal.vue +1 -1
- package/dist/runtime/components/aware/AAccordion.d.vue.ts +25 -0
- package/dist/runtime/components/aware/AAccordion.vue +107 -0
- package/dist/runtime/components/aware/AAccordion.vue.d.ts +25 -0
- package/dist/runtime/components/aware/AArea.vue +24 -11
- package/dist/runtime/components/aware/AAvatar.d.vue.ts +6 -0
- package/dist/runtime/components/aware/AAvatar.vue +33 -3
- package/dist/runtime/components/aware/AAvatar.vue.d.ts +6 -0
- package/dist/runtime/components/aware/AAvatarGroup.d.vue.ts +10 -0
- package/dist/runtime/components/aware/AAvatarGroup.vue +30 -0
- package/dist/runtime/components/aware/AAvatarGroup.vue.d.ts +10 -0
- package/dist/runtime/components/aware/AButton.d.vue.ts +4 -2
- package/dist/runtime/components/aware/AButton.vue +46 -14
- package/dist/runtime/components/aware/AButton.vue.d.ts +4 -2
- package/dist/runtime/components/aware/ACalendar.d.vue.ts +17 -0
- package/dist/runtime/components/aware/ACalendar.vue +145 -0
- package/dist/runtime/components/aware/ACalendar.vue.d.ts +17 -0
- package/dist/runtime/components/aware/ACarousel.d.vue.ts +25 -0
- package/dist/runtime/components/aware/ACarousel.vue +39 -0
- package/dist/runtime/components/aware/ACarousel.vue.d.ts +25 -0
- package/dist/runtime/components/aware/ACheckbox.d.vue.ts +11 -0
- package/dist/runtime/components/aware/ACheckbox.vue +74 -0
- package/dist/runtime/components/aware/ACheckbox.vue.d.ts +11 -0
- package/dist/runtime/components/aware/ACheckboxGroup.d.vue.ts +27 -0
- package/dist/runtime/components/aware/ACheckboxGroup.vue +79 -0
- package/dist/runtime/components/aware/ACheckboxGroup.vue.d.ts +27 -0
- package/dist/runtime/components/aware/ACollapsible.d.vue.ts +25 -0
- package/dist/runtime/components/aware/ACollapsible.vue +45 -0
- package/dist/runtime/components/aware/ACollapsible.vue.d.ts +25 -0
- package/dist/runtime/components/aware/AColorPicker.d.vue.ts +15 -0
- package/dist/runtime/components/aware/AColorPicker.vue +48 -0
- package/dist/runtime/components/aware/AColorPicker.vue.d.ts +15 -0
- package/dist/runtime/components/aware/ACommandPalette.d.vue.ts +33 -0
- package/dist/runtime/components/aware/ACommandPalette.vue +123 -0
- package/dist/runtime/components/aware/ACommandPalette.vue.d.ts +33 -0
- package/dist/runtime/components/aware/AContextMenu.d.vue.ts +25 -0
- package/dist/runtime/components/aware/AContextMenu.vue +63 -0
- package/dist/runtime/components/aware/AContextMenu.vue.d.ts +25 -0
- package/dist/runtime/components/aware/ADrawer.d.vue.ts +25 -0
- package/dist/runtime/components/aware/ADrawer.vue +57 -0
- package/dist/runtime/components/aware/ADrawer.vue.d.ts +25 -0
- package/dist/runtime/components/aware/ADropdownMenu.d.vue.ts +25 -0
- package/dist/runtime/components/aware/ADropdownMenu.vue +63 -0
- package/dist/runtime/components/aware/ADropdownMenu.vue.d.ts +25 -0
- package/dist/runtime/components/aware/AFileUpload.d.vue.ts +27 -0
- package/dist/runtime/components/aware/AFileUpload.vue +67 -0
- package/dist/runtime/components/aware/AFileUpload.vue.d.ts +27 -0
- package/dist/runtime/components/aware/AFollowBar.d.vue.ts +21 -0
- package/dist/runtime/components/aware/AFollowBar.vue +62 -0
- package/dist/runtime/components/aware/AFollowBar.vue.d.ts +21 -0
- package/dist/runtime/components/aware/AFollowScroll.d.vue.ts +7 -0
- package/dist/runtime/components/aware/AFollowScroll.vue +17 -0
- package/dist/runtime/components/aware/AFollowScroll.vue.d.ts +7 -0
- package/dist/runtime/components/aware/AFormSync.d.vue.ts +21 -0
- package/dist/runtime/components/aware/AFormSync.vue +52 -0
- package/dist/runtime/components/aware/AFormSync.vue.d.ts +21 -0
- package/dist/runtime/components/aware/AGlobalFocusLayer.d.vue.ts +3 -0
- package/dist/runtime/components/aware/AGlobalFocusLayer.vue +90 -0
- package/dist/runtime/components/aware/AGlobalFocusLayer.vue.d.ts +3 -0
- package/dist/runtime/components/aware/AHoverItem.d.vue.ts +27 -0
- package/dist/runtime/components/aware/AHoverItem.vue +124 -0
- package/dist/runtime/components/aware/AHoverItem.vue.d.ts +27 -0
- package/dist/runtime/components/aware/AInput.d.vue.ts +12 -2
- package/dist/runtime/components/aware/AInput.vue +72 -19
- package/dist/runtime/components/aware/AInput.vue.d.ts +12 -2
- package/dist/runtime/components/aware/AInputMenu.d.vue.ts +17 -0
- package/dist/runtime/components/aware/AInputMenu.vue +138 -0
- package/dist/runtime/components/aware/AInputMenu.vue.d.ts +17 -0
- package/dist/runtime/components/aware/AInputNumber.d.vue.ts +15 -0
- package/dist/runtime/components/aware/AInputNumber.vue +67 -0
- package/dist/runtime/components/aware/AInputNumber.vue.d.ts +15 -0
- package/dist/runtime/components/aware/AInputTags.d.vue.ts +15 -0
- package/dist/runtime/components/aware/AInputTags.vue +67 -0
- package/dist/runtime/components/aware/AInputTags.vue.d.ts +15 -0
- package/dist/runtime/components/aware/AKeyHint.d.vue.ts +3 -0
- package/dist/runtime/components/aware/AKeyHint.vue +23 -0
- package/dist/runtime/components/aware/AKeyHint.vue.d.ts +3 -0
- package/dist/runtime/components/aware/AMedia.d.vue.ts +19 -0
- package/dist/runtime/components/aware/AMedia.vue +85 -0
- package/dist/runtime/components/aware/AMedia.vue.d.ts +19 -0
- package/dist/runtime/components/aware/AModal.d.vue.ts +33 -0
- package/dist/runtime/components/aware/AModal.vue +110 -0
- package/dist/runtime/components/aware/AModal.vue.d.ts +33 -0
- package/dist/runtime/components/aware/ANavigationMenu.d.vue.ts +25 -0
- package/dist/runtime/components/aware/ANavigationMenu.vue +82 -0
- package/dist/runtime/components/aware/ANavigationMenu.vue.d.ts +25 -0
- package/dist/runtime/components/aware/APagination.d.vue.ts +13 -0
- package/dist/runtime/components/aware/APagination.vue +53 -0
- package/dist/runtime/components/aware/APagination.vue.d.ts +13 -0
- package/dist/runtime/components/aware/APeerCaretLayer.d.vue.ts +10 -0
- package/dist/runtime/components/aware/APeerCaretLayer.vue +133 -0
- package/dist/runtime/components/aware/APeerCaretLayer.vue.d.ts +10 -0
- package/dist/runtime/components/aware/APinInput.d.vue.ts +15 -0
- package/dist/runtime/components/aware/APinInput.vue +48 -0
- package/dist/runtime/components/aware/APinInput.vue.d.ts +15 -0
- package/dist/runtime/components/aware/APopover.d.vue.ts +25 -0
- package/dist/runtime/components/aware/APopover.vue +57 -0
- package/dist/runtime/components/aware/APopover.vue.d.ts +25 -0
- package/dist/runtime/components/aware/APresenceBlobs.d.vue.ts +3 -0
- package/dist/runtime/components/aware/APresenceBlobs.vue +69 -0
- package/dist/runtime/components/aware/APresenceBlobs.vue.d.ts +3 -0
- package/dist/runtime/components/aware/APresenceCursors.d.vue.ts +20 -0
- package/dist/runtime/components/aware/APresenceCursors.vue +47 -0
- package/dist/runtime/components/aware/APresenceCursors.vue.d.ts +20 -0
- package/dist/runtime/components/aware/ARadioGroup.d.vue.ts +27 -0
- package/dist/runtime/components/aware/ARadioGroup.vue +86 -0
- package/dist/runtime/components/aware/ARadioGroup.vue.d.ts +27 -0
- package/dist/runtime/components/aware/AScroll.d.vue.ts +25 -0
- package/dist/runtime/components/aware/AScroll.vue +87 -0
- package/dist/runtime/components/aware/AScroll.vue.d.ts +25 -0
- package/dist/runtime/components/aware/ASelect.d.vue.ts +12 -2
- package/dist/runtime/components/aware/ASelect.vue +146 -22
- package/dist/runtime/components/aware/ASelect.vue.d.ts +12 -2
- package/dist/runtime/components/aware/ASelectMenu.d.vue.ts +17 -0
- package/dist/runtime/components/aware/ASelectMenu.vue +139 -0
- package/dist/runtime/components/aware/ASelectMenu.vue.d.ts +17 -0
- package/dist/runtime/components/aware/ASlideover.d.vue.ts +33 -0
- package/dist/runtime/components/aware/ASlideover.vue +110 -0
- package/dist/runtime/components/aware/ASlideover.vue.d.ts +33 -0
- package/dist/runtime/components/aware/ASlider.d.vue.ts +19 -0
- package/dist/runtime/components/aware/ASlider.vue +77 -0
- package/dist/runtime/components/aware/ASlider.vue.d.ts +19 -0
- package/dist/runtime/components/aware/AStepper.d.vue.ts +25 -0
- package/dist/runtime/components/aware/AStepper.vue +82 -0
- package/dist/runtime/components/aware/AStepper.vue.d.ts +25 -0
- package/dist/runtime/components/aware/ASwitch.d.vue.ts +11 -0
- package/dist/runtime/components/aware/ASwitch.vue +75 -0
- package/dist/runtime/components/aware/ASwitch.vue.d.ts +11 -0
- package/dist/runtime/components/aware/ATable.d.vue.ts +23 -0
- package/dist/runtime/components/aware/ATable.vue +97 -0
- package/dist/runtime/components/aware/ATable.vue.d.ts +23 -0
- package/dist/runtime/components/aware/ATabs.d.vue.ts +27 -0
- package/dist/runtime/components/aware/ATabs.vue +128 -0
- package/dist/runtime/components/aware/ATabs.vue.d.ts +27 -0
- package/dist/runtime/components/aware/ATextarea.d.vue.ts +12 -2
- package/dist/runtime/components/aware/ATextarea.vue +72 -19
- package/dist/runtime/components/aware/ATextarea.vue.d.ts +12 -2
- package/dist/runtime/components/aware/AToggleGroup.d.vue.ts +27 -0
- package/dist/runtime/components/aware/AToggleGroup.vue +79 -0
- package/dist/runtime/components/aware/AToggleGroup.vue.d.ts +27 -0
- package/dist/runtime/components/aware/ATree.d.vue.ts +27 -0
- package/dist/runtime/components/aware/ATree.vue +111 -0
- package/dist/runtime/components/aware/ATree.vue.d.ts +27 -0
- package/dist/runtime/components/chat/AChatPanel.d.vue.ts +6 -6
- package/dist/runtime/components/chat/AChatPanel.vue.d.ts +6 -6
- package/dist/runtime/components/chat/ANodeChatPanel.d.vue.ts +42 -0
- package/dist/runtime/components/chat/ANodeChatPanel.vue +53 -0
- package/dist/runtime/components/chat/ANodeChatPanel.vue.d.ts +42 -0
- package/dist/runtime/components/docs/ADocsNavigation.d.vue.ts +155 -0
- package/dist/runtime/components/docs/ADocsNavigation.vue +154 -0
- package/dist/runtime/components/docs/ADocsNavigation.vue.d.ts +155 -0
- package/dist/runtime/components/docs/ADocsSearch.d.vue.ts +249 -0
- package/dist/runtime/components/docs/ADocsSearch.vue +187 -0
- package/dist/runtime/components/docs/ADocsSearch.vue.d.ts +249 -0
- package/dist/runtime/components/docs/ADocsSearchButton.d.vue.ts +253 -0
- package/dist/runtime/components/docs/ADocsSearchButton.vue +99 -0
- package/dist/runtime/components/docs/ADocsSearchButton.vue.d.ts +253 -0
- package/dist/runtime/components/docs/ADocsSurround.d.vue.ts +56 -0
- package/dist/runtime/components/docs/ADocsSurround.vue +68 -0
- package/dist/runtime/components/docs/ADocsSurround.vue.d.ts +56 -0
- package/dist/runtime/components/docs/ADocsToc.d.vue.ts +117 -0
- package/dist/runtime/components/docs/ADocsToc.vue +194 -0
- package/dist/runtime/components/docs/ADocsToc.vue.d.ts +117 -0
- package/dist/runtime/components/editor/ADocLinkPopover.vue +1 -5
- package/dist/runtime/components/editor/AEditorRedoButton.d.vue.ts +26 -0
- package/dist/runtime/components/editor/AEditorRedoButton.vue +38 -0
- package/dist/runtime/components/editor/AEditorRedoButton.vue.d.ts +26 -0
- package/dist/runtime/components/editor/AEditorUndoButton.d.vue.ts +26 -0
- package/dist/runtime/components/editor/AEditorUndoButton.vue +38 -0
- package/dist/runtime/components/editor/AEditorUndoButton.vue.d.ts +26 -0
- package/dist/runtime/components/editor/AIconPickerPopover.d.vue.ts +24 -0
- package/dist/runtime/components/editor/AIconPickerPopover.vue +113 -0
- package/dist/runtime/components/editor/AIconPickerPopover.vue.d.ts +24 -0
- package/dist/runtime/components/editor/ANodeInlineLabel.d.vue.ts +24 -0
- package/dist/runtime/components/editor/ANodeInlineLabel.vue +101 -0
- package/dist/runtime/components/editor/ANodeInlineLabel.vue.d.ts +24 -0
- package/dist/runtime/components/renderers/ADocLoadError.d.vue.ts +3 -0
- package/dist/runtime/components/renderers/ADocLoadError.vue +11 -0
- package/dist/runtime/components/renderers/ADocLoadError.vue.d.ts +3 -0
- package/dist/runtime/components/renderers/ADocLoadingSkeleton.d.vue.ts +3 -0
- package/dist/runtime/components/renderers/ADocLoadingSkeleton.vue +5 -0
- package/dist/runtime/components/renderers/ADocLoadingSkeleton.vue.d.ts +3 -0
- package/dist/runtime/components/renderers/AMediaRenderer.vue +1 -1
- package/dist/runtime/components/renderers/AOverviewRenderer.d.vue.ts +22 -0
- package/dist/runtime/components/renderers/AOverviewRenderer.vue +1041 -0
- package/dist/runtime/components/renderers/AOverviewRenderer.vue.d.ts +22 -0
- package/dist/runtime/components/renderers/AProseRenderer.d.vue.ts +23 -0
- package/dist/runtime/components/renderers/AProseRenderer.vue +31 -0
- package/dist/runtime/components/renderers/AProseRenderer.vue.d.ts +23 -0
- package/dist/runtime/components/renderers/ASheetsRenderer.client.d.vue.ts +19 -0
- package/dist/runtime/components/renderers/ASheetsRenderer.client.vue +865 -0
- package/dist/runtime/components/renderers/ASheetsRenderer.client.vue.d.ts +19 -0
- package/dist/runtime/components/renderers/calendar/ACalendarDayCell.d.vue.ts +14 -0
- package/dist/runtime/components/renderers/calendar/ACalendarDayCell.vue +45 -15
- package/dist/runtime/components/renderers/calendar/ACalendarDayCell.vue.d.ts +14 -0
- package/dist/runtime/components/renderers/calendar/ACalendarDayView.d.vue.ts +15 -0
- package/dist/runtime/components/renderers/calendar/ACalendarDayView.vue +93 -20
- package/dist/runtime/components/renderers/calendar/ACalendarDayView.vue.d.ts +15 -0
- package/dist/runtime/components/renderers/calendar/ACalendarEventChip.d.vue.ts +9 -0
- package/dist/runtime/components/renderers/calendar/ACalendarEventChip.vue +31 -2
- package/dist/runtime/components/renderers/calendar/ACalendarEventChip.vue.d.ts +9 -0
- package/dist/runtime/components/renderers/calendar/ACalendarToolbar.d.vue.ts +4 -4
- package/dist/runtime/components/renderers/calendar/ACalendarToolbar.vue.d.ts +4 -4
- package/dist/runtime/components/renderers/calendar/ACalendarWeekView.d.vue.ts +15 -0
- package/dist/runtime/components/renderers/calendar/ACalendarWeekView.vue +94 -21
- package/dist/runtime/components/renderers/calendar/ACalendarWeekView.vue.d.ts +15 -0
- package/dist/runtime/components/renderers/media/MediaTransportBar.d.vue.ts +2 -2
- package/dist/runtime/components/renderers/media/MediaTransportBar.vue.d.ts +2 -2
- package/dist/runtime/components/renderers/sheets/ASheetsCell.d.vue.ts +45 -0
- package/dist/runtime/components/renderers/sheets/ASheetsCell.vue +123 -0
- package/dist/runtime/components/renderers/sheets/ASheetsCell.vue.d.ts +45 -0
- package/dist/runtime/components/renderers/sheets/ASheetsGrid.d.vue.ts +111 -0
- package/dist/runtime/components/renderers/sheets/ASheetsGrid.vue +737 -0
- package/dist/runtime/components/renderers/sheets/ASheetsGrid.vue.d.ts +111 -0
- package/dist/runtime/components/renderers/sheets/ASheetsMobileActionBar.d.vue.ts +26 -0
- package/dist/runtime/components/renderers/sheets/ASheetsMobileActionBar.vue +100 -0
- package/dist/runtime/components/renderers/sheets/ASheetsMobileActionBar.vue.d.ts +26 -0
- package/dist/runtime/components/renderers/sheets/ASheetsToolbar.d.vue.ts +48 -0
- package/dist/runtime/components/renderers/sheets/ASheetsToolbar.vue +243 -0
- package/dist/runtime/components/renderers/sheets/ASheetsToolbar.vue.d.ts +48 -0
- package/dist/runtime/components/renderers/table/cells/ATableCellColor.d.vue.ts +1 -0
- package/dist/runtime/components/renderers/table/cells/ATableCellColor.vue +13 -32
- package/dist/runtime/components/renderers/table/cells/ATableCellColor.vue.d.ts +1 -0
- package/dist/runtime/components/renderers/timeline/ATimelineBar.d.vue.ts +6 -0
- package/dist/runtime/components/renderers/timeline/ATimelineBar.vue +34 -4
- package/dist/runtime/components/renderers/timeline/ATimelineBar.vue.d.ts +6 -0
- package/dist/runtime/components/renderers/timeline/ATimelineBarArea.d.vue.ts +16 -0
- package/dist/runtime/components/renderers/timeline/ATimelineBarArea.vue +14 -3
- package/dist/runtime/components/renderers/timeline/ATimelineBarArea.vue.d.ts +16 -0
- package/dist/runtime/components/renderers/timeline/ATimelineLabelPanel.d.vue.ts +13 -1
- package/dist/runtime/components/renderers/timeline/ATimelineLabelPanel.vue +114 -47
- package/dist/runtime/components/renderers/timeline/ATimelineLabelPanel.vue.d.ts +13 -1
- package/dist/runtime/components/renderers/timeline/ATimelineMilestone.d.vue.ts +4 -0
- package/dist/runtime/components/renderers/timeline/ATimelineMilestone.vue +21 -4
- package/dist/runtime/components/renderers/timeline/ATimelineMilestone.vue.d.ts +4 -0
- package/dist/runtime/components/renderers/timeline/ATimelineToolbar.d.vue.ts +2 -2
- package/dist/runtime/components/renderers/timeline/ATimelineToolbar.vue.d.ts +2 -2
- package/dist/runtime/components/settings/ASettingsSpacesPanel.vue +7 -25
- package/dist/runtime/components/shell/ADocPanelSettings.d.vue.ts +34 -4
- package/dist/runtime/components/shell/ADocPanelSettings.vue +289 -2
- package/dist/runtime/components/shell/ADocPanelSettings.vue.d.ts +34 -4
- package/dist/runtime/components/shell/ASyncStatus.d.vue.ts +1 -1
- package/dist/runtime/components/shell/ASyncStatus.vue.d.ts +1 -1
- package/dist/runtime/components/shell/AUserMenu.d.vue.ts +2 -2
- package/dist/runtime/components/shell/AUserMenu.vue.d.ts +2 -2
- package/dist/runtime/components/shell/AWelcomeScreen.d.vue.ts +1 -1
- package/dist/runtime/components/shell/AWelcomeScreen.vue.d.ts +1 -1
- package/dist/runtime/composables/useAACaret.d.ts +29 -0
- package/dist/runtime/composables/useAACaret.js +64 -0
- package/dist/runtime/composables/useAAEphemeral.d.ts +32 -0
- package/dist/runtime/composables/useAAEphemeral.js +33 -0
- package/dist/runtime/composables/useAAField.d.ts +10 -2
- package/dist/runtime/composables/useAAField.js +31 -2
- package/dist/runtime/composables/useAAFieldValue.d.ts +26 -0
- package/dist/runtime/composables/useAAFieldValue.js +32 -0
- package/dist/runtime/composables/useAAFocus.d.ts +68 -0
- package/dist/runtime/composables/useAAFocus.js +174 -0
- package/dist/runtime/composables/useAAFollowAnchor.d.ts +25 -0
- package/dist/runtime/composables/useAAFollowAnchor.js +69 -0
- package/dist/runtime/composables/useAAFollowPeer.d.ts +29 -0
- package/dist/runtime/composables/useAAFollowPeer.js +75 -0
- package/dist/runtime/composables/useAAKey.d.ts +22 -0
- package/dist/runtime/composables/useAAKey.js +24 -0
- package/dist/runtime/composables/useAAPointer.d.ts +30 -0
- package/dist/runtime/composables/useAAPointer.js +53 -0
- package/dist/runtime/composables/useAAUIState.d.ts +29 -0
- package/dist/runtime/composables/useAAUIState.js +28 -0
- package/dist/runtime/composables/useAAViewport.d.ts +22 -0
- package/dist/runtime/composables/useAAViewport.js +50 -0
- package/dist/runtime/composables/useAbraAdmin.d.ts +54 -0
- package/dist/runtime/composables/useAbraAdmin.js +115 -0
- package/dist/runtime/composables/useAbracadabraAuth.d.ts +8 -0
- package/dist/runtime/composables/useAbracadabraAuth.js +8 -0
- package/dist/runtime/composables/useAggregatedPresence.d.ts +23 -0
- package/dist/runtime/composables/useAggregatedPresence.js +140 -0
- package/dist/runtime/composables/useChat.d.ts +16 -2
- package/dist/runtime/composables/useChat.js +257 -66
- package/dist/runtime/composables/useChatUsers.d.ts +2 -0
- package/dist/runtime/composables/useChatUsers.js +2 -1
- package/dist/runtime/composables/useDocLookup.d.ts +4 -0
- package/dist/runtime/composables/useDocLookup.js +25 -0
- package/dist/runtime/composables/useDocSnapshots.d.ts +79 -0
- package/dist/runtime/composables/useDocSnapshots.js +234 -0
- package/dist/runtime/composables/useDocsSearch.d.ts +24 -0
- package/dist/runtime/composables/useDocsSearch.js +34 -0
- package/dist/runtime/composables/useEditorDragHandle.d.ts +7 -0
- package/dist/runtime/composables/useEditorDragHandle.js +19 -1
- package/dist/runtime/composables/useEditorSuggestions.js +26 -1
- package/dist/runtime/composables/useEditorToolbar.js +9 -1
- package/dist/runtime/composables/useEmailVerification.d.ts +33 -0
- package/dist/runtime/composables/useEmailVerification.js +58 -0
- package/dist/runtime/composables/useIdentityDoc.js +0 -3
- package/dist/runtime/composables/useItemPresence.d.ts +47 -0
- package/dist/runtime/composables/useItemPresence.js +73 -0
- package/dist/runtime/composables/useResizableWidth.d.ts +24 -0
- package/dist/runtime/composables/useResizableWidth.js +87 -0
- package/dist/runtime/composables/useServerInfo.d.ts +17 -2
- package/dist/runtime/composables/useServerInfo.js +30 -6
- package/dist/runtime/composables/useServerSearch.d.ts +36 -0
- package/dist/runtime/composables/useServerSearch.js +91 -0
- package/dist/runtime/composables/useServerTrash.d.ts +67 -0
- package/dist/runtime/composables/useServerTrash.js +128 -0
- package/dist/runtime/composables/useSheetsClipboard.d.ts +42 -0
- package/dist/runtime/composables/useSheetsClipboard.js +109 -0
- package/dist/runtime/composables/useSheetsFormulas.d.ts +38 -0
- package/dist/runtime/composables/useSheetsFormulas.js +725 -0
- package/dist/runtime/composables/useSheetsSelection.d.ts +68 -0
- package/dist/runtime/composables/useSheetsSelection.js +390 -0
- package/dist/runtime/composables/useSheetsView.d.ts +31 -0
- package/dist/runtime/composables/useSheetsView.js +77 -0
- package/dist/runtime/composables/useSpaceConnections.d.ts +43 -0
- package/dist/runtime/composables/useSpaceConnections.js +72 -0
- package/dist/runtime/composables/useSpaces.d.ts +1 -3
- package/dist/runtime/composables/useSpaces.js +2 -5
- package/dist/runtime/composables/useTiptapHistory.d.ts +22 -0
- package/dist/runtime/composables/useTiptapHistory.js +12 -0
- package/dist/runtime/composables/useTreeExpansion.d.ts +28 -0
- package/dist/runtime/composables/useTreeExpansion.js +94 -0
- package/dist/runtime/composables/useYDoc.js +12 -1
- package/dist/runtime/extensions/button.d.ts +3 -0
- package/dist/runtime/extensions/button.js +62 -0
- package/dist/runtime/extensions/color-swatch.d.ts +2 -0
- package/dist/runtime/extensions/color-swatch.js +34 -0
- package/dist/runtime/extensions/diff.d.ts +2 -0
- package/dist/runtime/extensions/diff.js +40 -0
- package/dist/runtime/extensions/divider.d.ts +2 -0
- package/dist/runtime/extensions/divider.js +33 -0
- package/dist/runtime/extensions/doc-embed.js +2 -1
- package/dist/runtime/extensions/doc-link-drop.js +4 -4
- package/dist/runtime/extensions/doc-link.d.ts +12 -0
- package/dist/runtime/extensions/doc-link.js +60 -0
- package/dist/runtime/extensions/embed.d.ts +2 -0
- package/dist/runtime/extensions/embed.js +40 -0
- package/dist/runtime/extensions/figure.d.ts +2 -0
- package/dist/runtime/extensions/figure.js +49 -0
- package/dist/runtime/extensions/math.d.ts +15 -0
- package/dist/runtime/extensions/math.js +66 -0
- package/dist/runtime/extensions/progress.d.ts +2 -0
- package/dist/runtime/extensions/progress.js +43 -0
- package/dist/runtime/extensions/quote.d.ts +2 -0
- package/dist/runtime/extensions/quote.js +39 -0
- package/dist/runtime/extensions/spoiler.d.ts +2 -0
- package/dist/runtime/extensions/spoiler.js +36 -0
- package/dist/runtime/extensions/stat.d.ts +3 -0
- package/dist/runtime/extensions/stat.js +58 -0
- package/dist/runtime/extensions/video.d.ts +2 -0
- package/dist/runtime/extensions/video.js +40 -0
- package/dist/runtime/extensions/views/ButtonGroupView.d.vue.ts +4 -0
- package/dist/runtime/extensions/views/ButtonGroupView.vue +25 -0
- package/dist/runtime/extensions/views/ButtonGroupView.vue.d.ts +4 -0
- package/dist/runtime/extensions/views/ButtonView.d.vue.ts +4 -0
- package/dist/runtime/extensions/views/ButtonView.vue +171 -0
- package/dist/runtime/extensions/views/ButtonView.vue.d.ts +4 -0
- package/dist/runtime/extensions/views/ColorSwatchView.d.vue.ts +4 -0
- package/dist/runtime/extensions/views/ColorSwatchView.vue +134 -0
- package/dist/runtime/extensions/views/ColorSwatchView.vue.d.ts +4 -0
- package/dist/runtime/extensions/views/DiffView.d.vue.ts +4 -0
- package/dist/runtime/extensions/views/DiffView.vue +163 -0
- package/dist/runtime/extensions/views/DiffView.vue.d.ts +4 -0
- package/dist/runtime/extensions/views/DividerView.d.vue.ts +4 -0
- package/dist/runtime/extensions/views/DividerView.vue +40 -0
- package/dist/runtime/extensions/views/DividerView.vue.d.ts +4 -0
- package/dist/runtime/extensions/views/DocEmbedView.vue +18 -3
- package/dist/runtime/extensions/views/DocLinkView.d.vue.ts +4 -0
- package/dist/runtime/extensions/views/DocLinkView.vue +71 -0
- package/dist/runtime/extensions/views/DocLinkView.vue.d.ts +4 -0
- package/dist/runtime/extensions/views/EmbedView.d.vue.ts +4 -0
- package/dist/runtime/extensions/views/EmbedView.vue +166 -0
- package/dist/runtime/extensions/views/EmbedView.vue.d.ts +4 -0
- package/dist/runtime/extensions/views/FigureView.d.vue.ts +4 -0
- package/dist/runtime/extensions/views/FigureView.vue +122 -0
- package/dist/runtime/extensions/views/FigureView.vue.d.ts +4 -0
- package/dist/runtime/extensions/views/FileNodeView.vue +21 -24
- package/dist/runtime/extensions/views/MathBlockView.d.vue.ts +4 -0
- package/dist/runtime/extensions/views/MathBlockView.vue +151 -0
- package/dist/runtime/extensions/views/MathBlockView.vue.d.ts +4 -0
- package/dist/runtime/extensions/views/MathInlineView.d.vue.ts +4 -0
- package/dist/runtime/extensions/views/MathInlineView.vue +149 -0
- package/dist/runtime/extensions/views/MathInlineView.vue.d.ts +4 -0
- package/dist/runtime/extensions/views/MetaFieldView.vue +1129 -550
- package/dist/runtime/extensions/views/ProgressView.d.vue.ts +4 -0
- package/dist/runtime/extensions/views/ProgressView.vue +156 -0
- package/dist/runtime/extensions/views/ProgressView.vue.d.ts +4 -0
- package/dist/runtime/extensions/views/QuoteView.d.vue.ts +4 -0
- package/dist/runtime/extensions/views/QuoteView.vue +128 -0
- package/dist/runtime/extensions/views/QuoteView.vue.d.ts +4 -0
- package/dist/runtime/extensions/views/SpoilerView.d.vue.ts +4 -0
- package/dist/runtime/extensions/views/SpoilerView.vue +62 -0
- package/dist/runtime/extensions/views/SpoilerView.vue.d.ts +4 -0
- package/dist/runtime/extensions/views/StatGroupView.d.vue.ts +4 -0
- package/dist/runtime/extensions/views/StatGroupView.vue +25 -0
- package/dist/runtime/extensions/views/StatGroupView.vue.d.ts +4 -0
- package/dist/runtime/extensions/views/StatView.d.vue.ts +4 -0
- package/dist/runtime/extensions/views/StatView.vue +89 -0
- package/dist/runtime/extensions/views/StatView.vue.d.ts +4 -0
- package/dist/runtime/extensions/views/VideoView.d.vue.ts +4 -0
- package/dist/runtime/extensions/views/VideoView.vue +190 -0
- package/dist/runtime/extensions/views/VideoView.vue.d.ts +4 -0
- package/dist/runtime/locale.d.ts +133 -0
- package/dist/runtime/locale.js +121 -2
- package/dist/runtime/plugin-abracadabra.client.js +251 -38
- package/dist/runtime/plugin-abracadabra.server.js +0 -1
- package/dist/runtime/plugins/core.plugin.js +76 -4
- package/dist/runtime/server/plugins/abracadabra-service.js +4 -2
- package/dist/runtime/server/utils/rpcHandler.d.ts +74 -0
- package/dist/runtime/server/utils/rpcHandler.js +74 -0
- package/dist/runtime/server/utils/spaceManager.js +10 -9
- package/dist/runtime/theme/content/_shared.d.ts +6 -0
- package/dist/runtime/theme/content/_shared.js +6 -0
- package/dist/runtime/theme/content/content-navigation.d.ts +120 -0
- package/dist/runtime/theme/content/content-navigation.js +155 -0
- package/dist/runtime/theme/content/content-search-button.d.ts +16 -0
- package/dist/runtime/theme/content/content-search-button.js +15 -0
- package/dist/runtime/theme/content/content-search.d.ts +24 -0
- package/dist/runtime/theme/content/content-search.js +23 -0
- package/dist/runtime/theme/content/content-surround.d.ts +22 -0
- package/dist/runtime/theme/content/content-surround.js +23 -0
- package/dist/runtime/theme/content/content-toc.d.ts +84 -0
- package/dist/runtime/theme/content/content-toc.js +94 -0
- package/dist/runtime/theme/content/index.d.ts +5 -0
- package/dist/runtime/theme/content/index.js +5 -0
- package/dist/runtime/types.d.ts +63 -10
- package/dist/runtime/utils/awareRingStyle.d.ts +22 -0
- package/dist/runtime/utils/awareRingStyle.js +16 -0
- package/dist/runtime/utils/caretCoordinates.d.ts +41 -0
- package/dist/runtime/utils/caretCoordinates.js +126 -0
- package/dist/runtime/utils/content.d.ts +19 -0
- package/dist/runtime/utils/content.js +23 -0
- package/dist/runtime/utils/docReferenceEdges.js +1 -1
- package/dist/runtime/utils/docTypes.js +44 -13
- package/dist/runtime/utils/domPath.d.ts +42 -0
- package/dist/runtime/utils/domPath.js +89 -0
- package/dist/runtime/utils/loadKatex.d.ts +1 -0
- package/dist/runtime/utils/loadKatex.js +29 -0
- package/dist/runtime/utils/lucideIcons.d.ts +16 -0
- package/dist/runtime/utils/lucideIcons.js +451 -0
- package/dist/runtime/utils/time.d.ts +15 -0
- package/dist/runtime/utils/time.js +5 -0
- package/dist/types.d.mts +4 -0
- package/package.json +38 -20
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import type { TreeEntry } from '../../../composables/useChildTree.js';
|
|
2
|
+
import type { CellAddress, SelectionRange } from '../../../composables/useSheetsSelection.js';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
columnPositions: {
|
|
5
|
+
idx: number;
|
|
6
|
+
id: string;
|
|
7
|
+
label: string;
|
|
8
|
+
start: number;
|
|
9
|
+
size: number;
|
|
10
|
+
letter: string;
|
|
11
|
+
}[];
|
|
12
|
+
dataColumns: TreeEntry[];
|
|
13
|
+
rowCount: number;
|
|
14
|
+
displayRowCount: number;
|
|
15
|
+
getRowHeight: (rowIdx: number) => number;
|
|
16
|
+
defaultRowHeight: number;
|
|
17
|
+
getCellValue: (colIdx: number, rowIdx: number) => string;
|
|
18
|
+
getCellEntry: (colIdx: number, rowIdx: number) => TreeEntry | undefined;
|
|
19
|
+
activeCell: CellAddress | null;
|
|
20
|
+
editMode: boolean;
|
|
21
|
+
editValue: string;
|
|
22
|
+
selectionRange: SelectionRange | null;
|
|
23
|
+
cutRange: SelectionRange | null;
|
|
24
|
+
showGridlines: boolean;
|
|
25
|
+
editable: boolean;
|
|
26
|
+
remoteEditors: Map<string, {
|
|
27
|
+
name: string;
|
|
28
|
+
color: string;
|
|
29
|
+
}>;
|
|
30
|
+
remoteActiveCells?: Map<string, {
|
|
31
|
+
name: string;
|
|
32
|
+
color: string;
|
|
33
|
+
}>;
|
|
34
|
+
remoteSelections?: Array<{
|
|
35
|
+
name: string;
|
|
36
|
+
color: string;
|
|
37
|
+
minCol: number;
|
|
38
|
+
maxCol: number;
|
|
39
|
+
minRow: number;
|
|
40
|
+
maxRow: number;
|
|
41
|
+
}>;
|
|
42
|
+
cellContextItems: any[][];
|
|
43
|
+
colHeaderContextItems: (colIdx: number) => any[][];
|
|
44
|
+
rowHeaderContextItems: (rowIdx: number) => any[][];
|
|
45
|
+
formulaRefMode: boolean;
|
|
46
|
+
formulaRefHighlights: Map<string, string>;
|
|
47
|
+
fillPreview: {
|
|
48
|
+
startCol: number;
|
|
49
|
+
endCol: number;
|
|
50
|
+
fromRow: number;
|
|
51
|
+
toRow: number;
|
|
52
|
+
} | null;
|
|
53
|
+
};
|
|
54
|
+
declare function scrollToCell(colIdx: number, rowIdx: number): void;
|
|
55
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {
|
|
56
|
+
scrollToCell: typeof scrollToCell;
|
|
57
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
58
|
+
copy: (e: ClipboardEvent) => any;
|
|
59
|
+
cut: (e: ClipboardEvent) => any;
|
|
60
|
+
keydown: (e: KeyboardEvent) => any;
|
|
61
|
+
paste: (e: ClipboardEvent) => any;
|
|
62
|
+
renameColumn: (colId: string, label: string) => any;
|
|
63
|
+
commitEdit: () => any;
|
|
64
|
+
"update:editValue": (value: string) => any;
|
|
65
|
+
selectCell: (colIdx: number, rowIdx: number, shiftKey: boolean) => any;
|
|
66
|
+
activateCell: (colIdx: number, rowIdx: number) => any;
|
|
67
|
+
cancelEdit: () => any;
|
|
68
|
+
resizeColumn: (colId: string, width: number) => any;
|
|
69
|
+
selectRow: (rowIdx: number) => any;
|
|
70
|
+
selectColumn: (colIdx: number) => any;
|
|
71
|
+
beginDrag: (colIdx: number, rowIdx: number) => any;
|
|
72
|
+
continueDrag: (colIdx: number, rowIdx: number) => any;
|
|
73
|
+
endDrag: () => any;
|
|
74
|
+
setRange: (startCol: number, startRow: number, endCol: number, endRow: number) => any;
|
|
75
|
+
formulaRefClick: (colIdx: number, rowIdx: number) => any;
|
|
76
|
+
formulaRefDragStart: (colIdx: number, rowIdx: number) => any;
|
|
77
|
+
formulaRefDragMove: (colIdx: number, rowIdx: number) => any;
|
|
78
|
+
formulaRefDragEnd: () => any;
|
|
79
|
+
fillDragStart: (rowIdx: number) => any;
|
|
80
|
+
fillDragMove: (rowIdx: number) => any;
|
|
81
|
+
fillDragEnd: () => any;
|
|
82
|
+
autoFitColumn: (colId: string) => any;
|
|
83
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
84
|
+
onCopy?: ((e: ClipboardEvent) => any) | undefined;
|
|
85
|
+
onCut?: ((e: ClipboardEvent) => any) | undefined;
|
|
86
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
|
87
|
+
onPaste?: ((e: ClipboardEvent) => any) | undefined;
|
|
88
|
+
onRenameColumn?: ((colId: string, label: string) => any) | undefined;
|
|
89
|
+
onCommitEdit?: (() => any) | undefined;
|
|
90
|
+
"onUpdate:editValue"?: ((value: string) => any) | undefined;
|
|
91
|
+
onSelectCell?: ((colIdx: number, rowIdx: number, shiftKey: boolean) => any) | undefined;
|
|
92
|
+
onActivateCell?: ((colIdx: number, rowIdx: number) => any) | undefined;
|
|
93
|
+
onCancelEdit?: (() => any) | undefined;
|
|
94
|
+
onResizeColumn?: ((colId: string, width: number) => any) | undefined;
|
|
95
|
+
onSelectRow?: ((rowIdx: number) => any) | undefined;
|
|
96
|
+
onSelectColumn?: ((colIdx: number) => any) | undefined;
|
|
97
|
+
onBeginDrag?: ((colIdx: number, rowIdx: number) => any) | undefined;
|
|
98
|
+
onContinueDrag?: ((colIdx: number, rowIdx: number) => any) | undefined;
|
|
99
|
+
onEndDrag?: (() => any) | undefined;
|
|
100
|
+
onSetRange?: ((startCol: number, startRow: number, endCol: number, endRow: number) => any) | undefined;
|
|
101
|
+
onFormulaRefClick?: ((colIdx: number, rowIdx: number) => any) | undefined;
|
|
102
|
+
onFormulaRefDragStart?: ((colIdx: number, rowIdx: number) => any) | undefined;
|
|
103
|
+
onFormulaRefDragMove?: ((colIdx: number, rowIdx: number) => any) | undefined;
|
|
104
|
+
onFormulaRefDragEnd?: (() => any) | undefined;
|
|
105
|
+
onFillDragStart?: ((rowIdx: number) => any) | undefined;
|
|
106
|
+
onFillDragMove?: ((rowIdx: number) => any) | undefined;
|
|
107
|
+
onFillDragEnd?: (() => any) | undefined;
|
|
108
|
+
onAutoFitColumn?: ((colId: string) => any) | undefined;
|
|
109
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
110
|
+
declare const _default: typeof __VLS_export;
|
|
111
|
+
export default _default;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
visible: boolean;
|
|
3
|
+
editable: boolean;
|
|
4
|
+
cellRef: string;
|
|
5
|
+
hasRange: boolean;
|
|
6
|
+
cellContextItems: any[][];
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
+
copy: () => any;
|
|
10
|
+
cut: () => any;
|
|
11
|
+
paste: () => any;
|
|
12
|
+
clear: () => any;
|
|
13
|
+
edit: () => any;
|
|
14
|
+
toggleBold: () => any;
|
|
15
|
+
toggleItalic: () => any;
|
|
16
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
17
|
+
onCopy?: (() => any) | undefined;
|
|
18
|
+
onCut?: (() => any) | undefined;
|
|
19
|
+
onPaste?: (() => any) | undefined;
|
|
20
|
+
onClear?: (() => any) | undefined;
|
|
21
|
+
onEdit?: (() => any) | undefined;
|
|
22
|
+
onToggleBold?: (() => any) | undefined;
|
|
23
|
+
onToggleItalic?: (() => any) | undefined;
|
|
24
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
|
+
declare const _default: typeof __VLS_export;
|
|
26
|
+
export default _default;
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
defineProps({
|
|
3
|
+
visible: { type: Boolean, required: true },
|
|
4
|
+
editable: { type: Boolean, required: true },
|
|
5
|
+
cellRef: { type: String, required: true },
|
|
6
|
+
hasRange: { type: Boolean, required: true },
|
|
7
|
+
cellContextItems: { type: Array, required: true }
|
|
8
|
+
});
|
|
9
|
+
const emit = defineEmits(["edit", "copy", "cut", "paste", "clear", "toggleBold", "toggleItalic"]);
|
|
10
|
+
</script>
|
|
11
|
+
|
|
12
|
+
<template>
|
|
13
|
+
<Transition
|
|
14
|
+
enter-active-class="transition duration-150 ease-out"
|
|
15
|
+
enter-from-class="translate-y-full opacity-0"
|
|
16
|
+
enter-to-class="translate-y-0 opacity-100"
|
|
17
|
+
leave-active-class="transition duration-100 ease-in"
|
|
18
|
+
leave-from-class="translate-y-0 opacity-100"
|
|
19
|
+
leave-to-class="translate-y-full opacity-0"
|
|
20
|
+
>
|
|
21
|
+
<div
|
|
22
|
+
v-if="visible"
|
|
23
|
+
class="absolute inset-x-0 bottom-0 z-40 flex items-center justify-between gap-1 px-2 py-1.5 bg-(--ui-bg)/95 backdrop-blur border-t border-(--ui-border) pb-[max(0.375rem,env(safe-area-inset-bottom))]"
|
|
24
|
+
role="toolbar"
|
|
25
|
+
aria-label="Sheet selection actions"
|
|
26
|
+
>
|
|
27
|
+
<div class="flex items-center gap-1">
|
|
28
|
+
<span class="text-xs font-medium text-(--ui-text-muted) px-1.5 select-none">
|
|
29
|
+
{{ hasRange ? cellRef + "\u2026" : cellRef }}
|
|
30
|
+
</span>
|
|
31
|
+
</div>
|
|
32
|
+
|
|
33
|
+
<div class="flex items-center gap-0.5">
|
|
34
|
+
<UButton
|
|
35
|
+
v-if="editable"
|
|
36
|
+
icon="i-lucide-pencil"
|
|
37
|
+
size="sm"
|
|
38
|
+
variant="ghost"
|
|
39
|
+
color="neutral"
|
|
40
|
+
square
|
|
41
|
+
aria-label="Edit cell"
|
|
42
|
+
@click="emit('edit')"
|
|
43
|
+
/>
|
|
44
|
+
<UButton
|
|
45
|
+
icon="i-lucide-copy"
|
|
46
|
+
size="sm"
|
|
47
|
+
variant="ghost"
|
|
48
|
+
color="neutral"
|
|
49
|
+
square
|
|
50
|
+
aria-label="Copy"
|
|
51
|
+
@click="emit('copy')"
|
|
52
|
+
/>
|
|
53
|
+
<UButton
|
|
54
|
+
v-if="editable"
|
|
55
|
+
icon="i-lucide-scissors"
|
|
56
|
+
size="sm"
|
|
57
|
+
variant="ghost"
|
|
58
|
+
color="neutral"
|
|
59
|
+
square
|
|
60
|
+
aria-label="Cut"
|
|
61
|
+
@click="emit('cut')"
|
|
62
|
+
/>
|
|
63
|
+
<UButton
|
|
64
|
+
v-if="editable"
|
|
65
|
+
icon="i-lucide-clipboard-paste"
|
|
66
|
+
size="sm"
|
|
67
|
+
variant="ghost"
|
|
68
|
+
color="neutral"
|
|
69
|
+
square
|
|
70
|
+
aria-label="Paste"
|
|
71
|
+
@click="emit('paste')"
|
|
72
|
+
/>
|
|
73
|
+
<UButton
|
|
74
|
+
v-if="editable"
|
|
75
|
+
icon="i-lucide-eraser"
|
|
76
|
+
size="sm"
|
|
77
|
+
variant="ghost"
|
|
78
|
+
color="neutral"
|
|
79
|
+
square
|
|
80
|
+
aria-label="Clear"
|
|
81
|
+
@click="emit('clear')"
|
|
82
|
+
/>
|
|
83
|
+
<UDropdownMenu
|
|
84
|
+
v-if="editable && cellContextItems.length"
|
|
85
|
+
:items="cellContextItems"
|
|
86
|
+
:popper="{ placement: 'top-end' }"
|
|
87
|
+
>
|
|
88
|
+
<UButton
|
|
89
|
+
icon="i-lucide-more-vertical"
|
|
90
|
+
size="sm"
|
|
91
|
+
variant="ghost"
|
|
92
|
+
color="neutral"
|
|
93
|
+
square
|
|
94
|
+
aria-label="More actions"
|
|
95
|
+
/>
|
|
96
|
+
</UDropdownMenu>
|
|
97
|
+
</div>
|
|
98
|
+
</div>
|
|
99
|
+
</Transition>
|
|
100
|
+
</template>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
visible: boolean;
|
|
3
|
+
editable: boolean;
|
|
4
|
+
cellRef: string;
|
|
5
|
+
hasRange: boolean;
|
|
6
|
+
cellContextItems: any[][];
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
+
copy: () => any;
|
|
10
|
+
cut: () => any;
|
|
11
|
+
paste: () => any;
|
|
12
|
+
clear: () => any;
|
|
13
|
+
edit: () => any;
|
|
14
|
+
toggleBold: () => any;
|
|
15
|
+
toggleItalic: () => any;
|
|
16
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
17
|
+
onCopy?: (() => any) | undefined;
|
|
18
|
+
onCut?: (() => any) | undefined;
|
|
19
|
+
onPaste?: (() => any) | undefined;
|
|
20
|
+
onClear?: (() => any) | undefined;
|
|
21
|
+
onEdit?: (() => any) | undefined;
|
|
22
|
+
onToggleBold?: (() => any) | undefined;
|
|
23
|
+
onToggleItalic?: (() => any) | undefined;
|
|
24
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
|
+
declare const _default: typeof __VLS_export;
|
|
26
|
+
export default _default;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import type { CellAddress } from '../../../composables/useSheetsSelection.js';
|
|
2
|
+
import { type AbracadabraLocale } from '../../../locale.js';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
activeCell: CellAddress | null;
|
|
5
|
+
editMode: boolean;
|
|
6
|
+
editValue: string;
|
|
7
|
+
cellDisplayValue: string;
|
|
8
|
+
cellRef: string;
|
|
9
|
+
colCount: number;
|
|
10
|
+
rowCount: number;
|
|
11
|
+
editable: boolean;
|
|
12
|
+
selectionBold: boolean;
|
|
13
|
+
selectionItalic: boolean;
|
|
14
|
+
selectionAlign: string | undefined;
|
|
15
|
+
selectionTextColor: string | undefined;
|
|
16
|
+
selectionBgColor: string | undefined;
|
|
17
|
+
selectionNumberFormat: string | undefined;
|
|
18
|
+
labels?: Partial<AbracadabraLocale['renderers']['sheets']>;
|
|
19
|
+
};
|
|
20
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21
|
+
toggleBold: () => any;
|
|
22
|
+
toggleItalic: () => any;
|
|
23
|
+
addColumn: () => any;
|
|
24
|
+
addRow: () => any;
|
|
25
|
+
"update:editValue": (value: string) => any;
|
|
26
|
+
commitFormulaBar: () => any;
|
|
27
|
+
cancelFormulaBar: () => any;
|
|
28
|
+
startEditFromBar: () => any;
|
|
29
|
+
setTextColor: (color: string | undefined) => any;
|
|
30
|
+
setBgColor: (color: string | undefined) => any;
|
|
31
|
+
setAlign: (align: string) => any;
|
|
32
|
+
setNumberFormat: (format: string | undefined) => any;
|
|
33
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
34
|
+
onToggleBold?: (() => any) | undefined;
|
|
35
|
+
onToggleItalic?: (() => any) | undefined;
|
|
36
|
+
onAddColumn?: (() => any) | undefined;
|
|
37
|
+
onAddRow?: (() => any) | undefined;
|
|
38
|
+
"onUpdate:editValue"?: ((value: string) => any) | undefined;
|
|
39
|
+
onCommitFormulaBar?: (() => any) | undefined;
|
|
40
|
+
onCancelFormulaBar?: (() => any) | undefined;
|
|
41
|
+
onStartEditFromBar?: (() => any) | undefined;
|
|
42
|
+
onSetTextColor?: ((color: string | undefined) => any) | undefined;
|
|
43
|
+
onSetBgColor?: ((color: string | undefined) => any) | undefined;
|
|
44
|
+
onSetAlign?: ((align: string) => any) | undefined;
|
|
45
|
+
onSetNumberFormat?: ((format: string | undefined) => any) | undefined;
|
|
46
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
47
|
+
declare const _default: typeof __VLS_export;
|
|
48
|
+
export default _default;
|
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { ref, computed } from "vue";
|
|
3
|
+
import { useRuntimeConfig } from "#imports";
|
|
4
|
+
import { DEFAULT_LOCALE } from "../../../locale";
|
|
5
|
+
const props = defineProps({
|
|
6
|
+
activeCell: { type: [Object, null], required: true },
|
|
7
|
+
editMode: { type: Boolean, required: true },
|
|
8
|
+
editValue: { type: String, required: true },
|
|
9
|
+
cellDisplayValue: { type: String, required: true },
|
|
10
|
+
cellRef: { type: String, required: true },
|
|
11
|
+
colCount: { type: Number, required: true },
|
|
12
|
+
rowCount: { type: Number, required: true },
|
|
13
|
+
editable: { type: Boolean, required: true },
|
|
14
|
+
selectionBold: { type: Boolean, required: true },
|
|
15
|
+
selectionItalic: { type: Boolean, required: true },
|
|
16
|
+
selectionAlign: { type: null, required: true },
|
|
17
|
+
selectionTextColor: { type: null, required: true },
|
|
18
|
+
selectionBgColor: { type: null, required: true },
|
|
19
|
+
selectionNumberFormat: { type: null, required: true },
|
|
20
|
+
labels: { type: Object, required: false }
|
|
21
|
+
});
|
|
22
|
+
const emit = defineEmits(["addColumn", "addRow", "update:editValue", "commitFormulaBar", "cancelFormulaBar", "startEditFromBar", "toggleBold", "toggleItalic", "setTextColor", "setBgColor", "setAlign", "setNumberFormat"]);
|
|
23
|
+
const config = useRuntimeConfig();
|
|
24
|
+
const locale = computed(() => ({
|
|
25
|
+
...DEFAULT_LOCALE.renderers.sheets,
|
|
26
|
+
...config.public?.abracadabra?.locale?.renderers?.sheets ?? {},
|
|
27
|
+
...props.labels ?? {}
|
|
28
|
+
}));
|
|
29
|
+
const formulaBarRef = ref();
|
|
30
|
+
function onFormulaBarFocus() {
|
|
31
|
+
if (!props.editMode && props.activeCell) {
|
|
32
|
+
emit("startEditFromBar");
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
function onFormulaBarKeydown(e) {
|
|
36
|
+
if (e.key === "Enter") {
|
|
37
|
+
e.preventDefault();
|
|
38
|
+
emit("commitFormulaBar");
|
|
39
|
+
}
|
|
40
|
+
if (e.key === "Escape") {
|
|
41
|
+
e.preventDefault();
|
|
42
|
+
emit("cancelFormulaBar");
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
const COLOR_SWATCHES = [
|
|
46
|
+
"#000000",
|
|
47
|
+
"#434343",
|
|
48
|
+
"#666666",
|
|
49
|
+
"#999999",
|
|
50
|
+
"#cccccc",
|
|
51
|
+
"#ffffff",
|
|
52
|
+
"#ef4444",
|
|
53
|
+
"#f97316",
|
|
54
|
+
"#eab308",
|
|
55
|
+
"#22c55e",
|
|
56
|
+
"#3b82f6",
|
|
57
|
+
"#a855f7",
|
|
58
|
+
"#fca5a5",
|
|
59
|
+
"#fdba74",
|
|
60
|
+
"#fde047",
|
|
61
|
+
"#86efac",
|
|
62
|
+
"#93c5fd",
|
|
63
|
+
"#d8b4fe"
|
|
64
|
+
];
|
|
65
|
+
const numberFormatItems = computed(() => [
|
|
66
|
+
[
|
|
67
|
+
{ label: locale.value.formatGeneral, icon: "i-lucide-hash", onSelect: () => emit("setNumberFormat", void 0) },
|
|
68
|
+
{ label: locale.value.formatNumber, icon: "i-lucide-calculator", onSelect: () => emit("setNumberFormat", "number") },
|
|
69
|
+
{ label: locale.value.formatCurrency, icon: "i-lucide-dollar-sign", onSelect: () => emit("setNumberFormat", "currency") },
|
|
70
|
+
{ label: locale.value.formatPercent, icon: "i-lucide-percent", onSelect: () => emit("setNumberFormat", "percent") },
|
|
71
|
+
{ label: locale.value.formatDate, icon: "i-lucide-calendar", onSelect: () => emit("setNumberFormat", "date") }
|
|
72
|
+
]
|
|
73
|
+
]);
|
|
74
|
+
const numberFormatLabel = computed(() => {
|
|
75
|
+
switch (props.selectionNumberFormat) {
|
|
76
|
+
case "number":
|
|
77
|
+
return locale.value.formatNumber;
|
|
78
|
+
case "currency":
|
|
79
|
+
return locale.value.formatCurrency;
|
|
80
|
+
case "percent":
|
|
81
|
+
return locale.value.formatPercent;
|
|
82
|
+
case "date":
|
|
83
|
+
return locale.value.formatDate;
|
|
84
|
+
default:
|
|
85
|
+
return locale.value.formatGeneral;
|
|
86
|
+
}
|
|
87
|
+
});
|
|
88
|
+
</script>
|
|
89
|
+
|
|
90
|
+
<template>
|
|
91
|
+
<div class="flex items-center gap-1 px-2 py-1 border-b border-(--ui-border) bg-(--ui-bg) shrink-0 flex-wrap">
|
|
92
|
+
<!-- Cell reference -->
|
|
93
|
+
<div class="w-14 shrink-0 text-center text-xs font-mono text-(--ui-text-muted) bg-(--ui-bg-elevated) rounded px-1.5 py-1">
|
|
94
|
+
{{ cellRef || "\u2014" }}
|
|
95
|
+
</div>
|
|
96
|
+
|
|
97
|
+
<!-- Formula / value bar -->
|
|
98
|
+
<div class="flex-1 min-w-0">
|
|
99
|
+
<input
|
|
100
|
+
ref="formulaBarRef"
|
|
101
|
+
class="w-full bg-(--ui-bg-elevated) rounded px-2 py-1 text-sm text-(--ui-text) outline-none focus:ring-1 focus:ring-(--ui-primary) font-mono"
|
|
102
|
+
:value="editMode ? editValue : cellDisplayValue"
|
|
103
|
+
:placeholder="locale.formulaBar"
|
|
104
|
+
:readonly="!editable || !activeCell"
|
|
105
|
+
@input="emit('update:editValue', $event.target.value)"
|
|
106
|
+
@focus="onFormulaBarFocus"
|
|
107
|
+
@keydown="onFormulaBarKeydown"
|
|
108
|
+
>
|
|
109
|
+
</div>
|
|
110
|
+
|
|
111
|
+
<!-- Formatting buttons -->
|
|
112
|
+
<template v-if="editable && activeCell">
|
|
113
|
+
<div class="flex items-center gap-0.5 border-l border-(--ui-border) pl-1 ml-0.5">
|
|
114
|
+
<!-- Bold -->
|
|
115
|
+
<UButton
|
|
116
|
+
icon="i-lucide-bold"
|
|
117
|
+
size="xs"
|
|
118
|
+
:variant="selectionBold ? 'soft' : 'ghost'"
|
|
119
|
+
@click="emit('toggleBold')"
|
|
120
|
+
/>
|
|
121
|
+
<!-- Italic -->
|
|
122
|
+
<UButton
|
|
123
|
+
icon="i-lucide-italic"
|
|
124
|
+
size="xs"
|
|
125
|
+
:variant="selectionItalic ? 'soft' : 'ghost'"
|
|
126
|
+
@click="emit('toggleItalic')"
|
|
127
|
+
/>
|
|
128
|
+
|
|
129
|
+
<!-- Text color -->
|
|
130
|
+
<UPopover>
|
|
131
|
+
<UButton
|
|
132
|
+
icon="i-lucide-palette"
|
|
133
|
+
size="xs"
|
|
134
|
+
variant="ghost"
|
|
135
|
+
:style="selectionTextColor ? { color: selectionTextColor } : void 0"
|
|
136
|
+
/>
|
|
137
|
+
<template #content>
|
|
138
|
+
<div class="grid grid-cols-6 gap-1 p-2">
|
|
139
|
+
<button
|
|
140
|
+
v-for="color in COLOR_SWATCHES"
|
|
141
|
+
:key="color"
|
|
142
|
+
class="size-5 rounded-sm border border-(--ui-border) hover:scale-110 transition-transform"
|
|
143
|
+
:style="{ backgroundColor: color }"
|
|
144
|
+
@click="emit('setTextColor', color)"
|
|
145
|
+
/>
|
|
146
|
+
<button
|
|
147
|
+
class="size-5 rounded-sm border border-(--ui-border) hover:scale-110 transition-transform flex items-center justify-center text-xs"
|
|
148
|
+
@click="emit('setTextColor', void 0)"
|
|
149
|
+
>
|
|
150
|
+
<UIcon name="i-lucide-x" class="size-3" />
|
|
151
|
+
</button>
|
|
152
|
+
</div>
|
|
153
|
+
</template>
|
|
154
|
+
</UPopover>
|
|
155
|
+
|
|
156
|
+
<!-- Bg color -->
|
|
157
|
+
<UPopover>
|
|
158
|
+
<UButton
|
|
159
|
+
icon="i-lucide-paint-bucket"
|
|
160
|
+
size="xs"
|
|
161
|
+
variant="ghost"
|
|
162
|
+
:style="selectionBgColor ? { color: selectionBgColor } : void 0"
|
|
163
|
+
/>
|
|
164
|
+
<template #content>
|
|
165
|
+
<div class="grid grid-cols-6 gap-1 p-2">
|
|
166
|
+
<button
|
|
167
|
+
v-for="color in COLOR_SWATCHES"
|
|
168
|
+
:key="color"
|
|
169
|
+
class="size-5 rounded-sm border border-(--ui-border) hover:scale-110 transition-transform"
|
|
170
|
+
:style="{ backgroundColor: color }"
|
|
171
|
+
@click="emit('setBgColor', color)"
|
|
172
|
+
/>
|
|
173
|
+
<button
|
|
174
|
+
class="size-5 rounded-sm border border-(--ui-border) hover:scale-110 transition-transform flex items-center justify-center text-xs"
|
|
175
|
+
@click="emit('setBgColor', void 0)"
|
|
176
|
+
>
|
|
177
|
+
<UIcon name="i-lucide-x" class="size-3" />
|
|
178
|
+
</button>
|
|
179
|
+
</div>
|
|
180
|
+
</template>
|
|
181
|
+
</UPopover>
|
|
182
|
+
|
|
183
|
+
<!-- Alignment -->
|
|
184
|
+
<div class="flex items-center gap-0">
|
|
185
|
+
<UButton
|
|
186
|
+
icon="i-lucide-align-left"
|
|
187
|
+
size="xs"
|
|
188
|
+
:variant="selectionAlign === 'left' ? 'soft' : 'ghost'"
|
|
189
|
+
@click="emit('setAlign', 'left')"
|
|
190
|
+
/>
|
|
191
|
+
<UButton
|
|
192
|
+
icon="i-lucide-align-center"
|
|
193
|
+
size="xs"
|
|
194
|
+
:variant="selectionAlign === 'center' ? 'soft' : 'ghost'"
|
|
195
|
+
@click="emit('setAlign', 'center')"
|
|
196
|
+
/>
|
|
197
|
+
<UButton
|
|
198
|
+
icon="i-lucide-align-right"
|
|
199
|
+
size="xs"
|
|
200
|
+
:variant="selectionAlign === 'right' ? 'soft' : 'ghost'"
|
|
201
|
+
@click="emit('setAlign', 'right')"
|
|
202
|
+
/>
|
|
203
|
+
</div>
|
|
204
|
+
|
|
205
|
+
<!-- Number format -->
|
|
206
|
+
<div class="border-l border-(--ui-border) pl-1 ml-0.5">
|
|
207
|
+
<UDropdownMenu :items="numberFormatItems">
|
|
208
|
+
<UButton
|
|
209
|
+
size="xs"
|
|
210
|
+
variant="ghost"
|
|
211
|
+
icon="i-lucide-hash"
|
|
212
|
+
:label="numberFormatLabel"
|
|
213
|
+
trailing-icon="i-lucide-chevron-down"
|
|
214
|
+
/>
|
|
215
|
+
</UDropdownMenu>
|
|
216
|
+
</div>
|
|
217
|
+
</div>
|
|
218
|
+
</template>
|
|
219
|
+
|
|
220
|
+
<!-- Counts -->
|
|
221
|
+
<span class="text-xs text-(--ui-text-dimmed) tabular-nums shrink-0">
|
|
222
|
+
{{ locale.colCount(colCount) }} · {{ locale.rowCount(rowCount) }}
|
|
223
|
+
</span>
|
|
224
|
+
|
|
225
|
+
<!-- Actions -->
|
|
226
|
+
<template v-if="editable">
|
|
227
|
+
<UButton
|
|
228
|
+
icon="i-lucide-columns-3"
|
|
229
|
+
size="xs"
|
|
230
|
+
variant="ghost"
|
|
231
|
+
:label="locale.addColumn"
|
|
232
|
+
@click="emit('addColumn')"
|
|
233
|
+
/>
|
|
234
|
+
<UButton
|
|
235
|
+
icon="i-lucide-rows-3"
|
|
236
|
+
size="xs"
|
|
237
|
+
variant="ghost"
|
|
238
|
+
:label="locale.addRow"
|
|
239
|
+
@click="emit('addRow')"
|
|
240
|
+
/>
|
|
241
|
+
</template>
|
|
242
|
+
</div>
|
|
243
|
+
</template>
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import type { CellAddress } from '../../../composables/useSheetsSelection.js';
|
|
2
|
+
import { type AbracadabraLocale } from '../../../locale.js';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
activeCell: CellAddress | null;
|
|
5
|
+
editMode: boolean;
|
|
6
|
+
editValue: string;
|
|
7
|
+
cellDisplayValue: string;
|
|
8
|
+
cellRef: string;
|
|
9
|
+
colCount: number;
|
|
10
|
+
rowCount: number;
|
|
11
|
+
editable: boolean;
|
|
12
|
+
selectionBold: boolean;
|
|
13
|
+
selectionItalic: boolean;
|
|
14
|
+
selectionAlign: string | undefined;
|
|
15
|
+
selectionTextColor: string | undefined;
|
|
16
|
+
selectionBgColor: string | undefined;
|
|
17
|
+
selectionNumberFormat: string | undefined;
|
|
18
|
+
labels?: Partial<AbracadabraLocale['renderers']['sheets']>;
|
|
19
|
+
};
|
|
20
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21
|
+
toggleBold: () => any;
|
|
22
|
+
toggleItalic: () => any;
|
|
23
|
+
addColumn: () => any;
|
|
24
|
+
addRow: () => any;
|
|
25
|
+
"update:editValue": (value: string) => any;
|
|
26
|
+
commitFormulaBar: () => any;
|
|
27
|
+
cancelFormulaBar: () => any;
|
|
28
|
+
startEditFromBar: () => any;
|
|
29
|
+
setTextColor: (color: string | undefined) => any;
|
|
30
|
+
setBgColor: (color: string | undefined) => any;
|
|
31
|
+
setAlign: (align: string) => any;
|
|
32
|
+
setNumberFormat: (format: string | undefined) => any;
|
|
33
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
34
|
+
onToggleBold?: (() => any) | undefined;
|
|
35
|
+
onToggleItalic?: (() => any) | undefined;
|
|
36
|
+
onAddColumn?: (() => any) | undefined;
|
|
37
|
+
onAddRow?: (() => any) | undefined;
|
|
38
|
+
"onUpdate:editValue"?: ((value: string) => any) | undefined;
|
|
39
|
+
onCommitFormulaBar?: (() => any) | undefined;
|
|
40
|
+
onCancelFormulaBar?: (() => any) | undefined;
|
|
41
|
+
onStartEditFromBar?: (() => any) | undefined;
|
|
42
|
+
onSetTextColor?: ((color: string | undefined) => any) | undefined;
|
|
43
|
+
onSetBgColor?: ((color: string | undefined) => any) | undefined;
|
|
44
|
+
onSetAlign?: ((align: string) => any) | undefined;
|
|
45
|
+
onSetNumberFormat?: ((format: string | undefined) => any) | undefined;
|
|
46
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
47
|
+
declare const _default: typeof __VLS_export;
|
|
48
|
+
export default _default;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
type __VLS_Props = {
|
|
2
2
|
value: unknown;
|
|
3
|
+
metaType?: string;
|
|
3
4
|
};
|
|
4
5
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5
6
|
"update:modelValue": (value: unknown) => any;
|