@flux-ui/components 3.0.0-next.58 → 3.0.0-next.59
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/component/FluxButtonStack.vue.d.ts +1 -1
- package/dist/component/FluxCalendar.vue.d.ts +63 -2
- package/dist/component/{FluxCalendarEvent.vue.d.ts → FluxCalendarItem.vue.d.ts} +9 -7
- package/dist/component/FluxClickablePane.vue.d.ts +1 -1
- package/dist/component/FluxDivider.vue.d.ts +1 -1
- package/dist/component/FluxFilter.vue.d.ts +1 -1
- package/dist/component/FluxFilterBar.vue.d.ts +1 -1
- package/dist/component/FluxFormInput.vue.d.ts +2 -2
- package/dist/component/FluxFormInputAddition.vue.d.ts +1 -1
- package/dist/component/FluxFormTreeViewSelect.vue.d.ts +3 -3
- package/dist/component/FluxGallery.vue.d.ts +1 -1
- package/dist/component/FluxInfo.vue.d.ts +1 -1
- package/dist/component/FluxKanbanColumn.vue.d.ts +2 -2
- package/dist/component/{FluxKanbanCard.vue.d.ts → FluxKanbanItem.vue.d.ts} +1 -1
- package/dist/component/FluxMenuItem.vue.d.ts +1 -1
- package/dist/component/FluxNotice.vue.d.ts +1 -1
- package/dist/component/FluxPaneHeader.vue.d.ts +1 -1
- package/dist/component/FluxPressable.vue.d.ts +1 -1
- package/dist/component/FluxPrompt.vue.d.ts +3 -3
- package/dist/component/FluxSplitButton.vue.d.ts +1 -1
- package/dist/component/FluxStack.vue.d.ts +1 -1
- package/dist/component/FluxTab.vue.d.ts +1 -1
- package/dist/component/FluxTabBar.vue.d.ts +4 -1
- package/dist/component/FluxTabs.vue.d.ts +4 -1
- package/dist/component/FluxTimelineItem.vue.d.ts +1 -1
- package/dist/component/calendar/FluxCalendarItemDisplay.vue.d.ts +9 -0
- package/dist/component/calendar/FluxCalendarMonthView.vue.d.ts +19 -0
- package/dist/component/calendar/FluxCalendarTimeGridView.vue.d.ts +36 -0
- package/dist/component/calendar/index.d.ts +3 -0
- package/dist/component/index.d.ts +2 -2
- package/dist/component/primitive/DialogLayout.vue.d.ts +1 -1
- package/dist/component/primitive/SelectBase.vue.d.ts +3 -3
- package/dist/composable/index.d.ts +3 -0
- package/dist/composable/private/index.d.ts +5 -8
- package/dist/composable/private/useKanban.d.ts +2 -2
- package/dist/composable/private/useKanbanAutoScroll.d.ts +13 -0
- package/dist/composable/useCalendarInjection.d.ts +2 -0
- package/dist/composable/useKanbanInjection.d.ts +2 -0
- package/dist/composable/useTabBarInjection.d.ts +2 -0
- package/dist/data/di.d.ts +54 -12
- package/dist/data/i18n.d.ts +4 -0
- package/dist/index.css +1500 -1221
- package/dist/index.js +9339 -8216
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
- package/src/component/FluxAction.vue +1 -1
- package/src/component/FluxActionBar.vue +2 -2
- package/src/component/FluxActionPane.vue +1 -1
- package/src/component/FluxAdaptiveGroup.vue +2 -2
- package/src/component/FluxAdaptiveSlot.vue +2 -2
- package/src/component/FluxAlert.vue +1 -1
- package/src/component/FluxAnimatedColors.vue +1 -1
- package/src/component/FluxAspectRatio.vue +1 -1
- package/src/component/FluxAvatar.vue +2 -2
- package/src/component/FluxBadge.vue +2 -2
- package/src/component/FluxBorderShine.vue +1 -1
- package/src/component/FluxBoxedIcon.vue +1 -1
- package/src/component/FluxButton.vue +2 -2
- package/src/component/FluxButtonGroup.vue +1 -1
- package/src/component/FluxButtonStack.vue +1 -1
- package/src/component/FluxCalendar.vue +588 -179
- package/src/component/FluxCalendarItem.vue +79 -0
- package/src/component/FluxCheckbox.vue +2 -2
- package/src/component/FluxChip.vue +2 -2
- package/src/component/FluxClickablePane.vue +2 -2
- package/src/component/FluxColorPicker.vue +2 -2
- package/src/component/FluxColorSelect.vue +3 -3
- package/src/component/FluxColumn.vue +1 -1
- package/src/component/FluxCommandPalette.vue +4 -4
- package/src/component/FluxCommandPaletteGroup.vue +1 -1
- package/src/component/FluxCommandPaletteItem.vue +1 -1
- package/src/component/FluxComment.vue +2 -2
- package/src/component/FluxConfirm.vue +1 -1
- package/src/component/FluxContainer.vue +1 -1
- package/src/component/FluxDataTable.vue +1 -2
- package/src/component/FluxDatePicker.vue +3 -3
- package/src/component/FluxDestructiveButton.vue +1 -1
- package/src/component/FluxDisabled.vue +1 -1
- package/src/component/FluxDivider.vue +2 -2
- package/src/component/FluxDotPattern.vue +1 -1
- package/src/component/FluxDropZone.vue +4 -4
- package/src/component/FluxExpandable.vue +3 -3
- package/src/component/FluxExpandableGroup.vue +2 -2
- package/src/component/FluxFader.vue +1 -1
- package/src/component/FluxFaderItem.vue +1 -1
- package/src/component/FluxFilter.vue +2 -2
- package/src/component/FluxFilterBar.vue +5 -6
- package/src/component/FluxFilterBase.vue +2 -2
- package/src/component/FluxFilterDate.vue +2 -2
- package/src/component/FluxFilterDateRange.vue +2 -2
- package/src/component/FluxFilterOption.vue +2 -2
- package/src/component/FluxFilterOptionAsync.vue +1 -1
- package/src/component/FluxFilterOptions.vue +2 -2
- package/src/component/FluxFilterOptionsAsync.vue +1 -1
- package/src/component/FluxFilterRange.vue +2 -2
- package/src/component/FluxFilterWindow.vue +3 -3
- package/src/component/FluxFlickeringGrid.vue +1 -1
- package/src/component/FluxFlyout.vue +2 -2
- package/src/component/FluxFocalPointEditor.vue +3 -3
- package/src/component/FluxFocalPointImage.vue +1 -1
- package/src/component/FluxForm.vue +1 -1
- package/src/component/FluxFormColumn.vue +1 -1
- package/src/component/FluxFormDateInput.vue +3 -3
- package/src/component/FluxFormDateRangeInput.vue +4 -4
- package/src/component/FluxFormDateTimeInput.vue +3 -3
- package/src/component/FluxFormField.vue +3 -3
- package/src/component/FluxFormFieldAddition.vue +1 -1
- package/src/component/FluxFormGrid.vue +1 -1
- package/src/component/FluxFormInput.vue +3 -3
- package/src/component/FluxFormInputAddition.vue +2 -2
- package/src/component/FluxFormInputGroup.vue +2 -2
- package/src/component/FluxFormPinInput.vue +3 -3
- package/src/component/FluxFormRangeSlider.vue +3 -3
- package/src/component/FluxFormRow.vue +1 -1
- package/src/component/FluxFormSection.vue +1 -1
- package/src/component/FluxFormSelect.vue +4 -4
- package/src/component/FluxFormSelectAsync.vue +6 -6
- package/src/component/FluxFormSlider.vue +2 -2
- package/src/component/FluxFormTextArea.vue +2 -2
- package/src/component/FluxFormTimeZonePicker.vue +4 -4
- package/src/component/FluxFormTreeViewSelect.vue +9 -12
- package/src/component/FluxGallery.vue +3 -3
- package/src/component/FluxGalleryItem.vue +1 -1
- package/src/component/FluxGrid.vue +1 -1
- package/src/component/FluxGridColumn.vue +1 -1
- package/src/component/FluxGridPattern.vue +1 -1
- package/src/component/FluxIcon.vue +2 -2
- package/src/component/FluxInfo.vue +2 -2
- package/src/component/FluxItem.vue +1 -1
- package/src/component/FluxItemActions.vue +1 -1
- package/src/component/FluxItemContent.vue +1 -1
- package/src/component/FluxItemMedia.vue +1 -1
- package/src/component/FluxItemStack.vue +1 -1
- package/src/component/FluxKanban.vue +6 -13
- package/src/component/FluxKanbanColumn.vue +42 -36
- package/src/component/FluxKanbanItem.vue +162 -0
- package/src/component/FluxLayerPane.vue +1 -1
- package/src/component/FluxLayerPaneSecondary.vue +1 -1
- package/src/component/FluxLegend.vue +1 -1
- package/src/component/FluxLink.vue +1 -1
- package/src/component/FluxMenu.vue +1 -1
- package/src/component/FluxMenuCollapsible.vue +3 -3
- package/src/component/FluxMenuGroup.vue +1 -1
- package/src/component/FluxMenuItem.vue +2 -2
- package/src/component/FluxMenuSubHeader.vue +1 -1
- package/src/component/FluxMenuTitle.vue +1 -1
- package/src/component/FluxNotice.vue +3 -3
- package/src/component/FluxOverflowBar.vue +1 -1
- package/src/component/FluxOverlay.vue +3 -3
- package/src/component/FluxOverlayProvider.vue +2 -2
- package/src/component/FluxPagination.vue +3 -3
- package/src/component/FluxPaginationBar.vue +2 -2
- package/src/component/FluxPaginationButton.vue +1 -1
- package/src/component/FluxPane.vue +1 -1
- package/src/component/FluxPaneBody.vue +1 -1
- package/src/component/FluxPaneFooter.vue +1 -1
- package/src/component/FluxPaneGroup.vue +1 -1
- package/src/component/FluxPaneHeader.vue +2 -2
- package/src/component/FluxPaneIllustration.vue +1 -1
- package/src/component/FluxPaneMedia.vue +1 -1
- package/src/component/FluxPercentageBar.vue +1 -1
- package/src/component/FluxPersona.vue +1 -1
- package/src/component/FluxPlaceholder.vue +1 -1
- package/src/component/FluxPressable.vue +1 -1
- package/src/component/FluxPrimaryButton.vue +1 -1
- package/src/component/FluxPrimaryLinkButton.vue +1 -1
- package/src/component/FluxProgressBar.vue +2 -2
- package/src/component/FluxPrompt.vue +1 -1
- package/src/component/FluxPublishButton.vue +1 -1
- package/src/component/FluxQuantitySelector.vue +2 -2
- package/src/component/FluxRemove.vue +2 -2
- package/src/component/FluxRoot.vue +2 -2
- package/src/component/FluxRow.vue +1 -1
- package/src/component/FluxSecondaryButton.vue +1 -1
- package/src/component/FluxSecondaryLinkButton.vue +1 -1
- package/src/component/FluxSegmentedControl.vue +1 -1
- package/src/component/FluxSeparator.vue +1 -1
- package/src/component/FluxSlideOver.vue +3 -3
- package/src/component/FluxSnackbar.vue +2 -2
- package/src/component/FluxSnackbarProvider.vue +2 -2
- package/src/component/FluxSpacer.vue +1 -1
- package/src/component/FluxSpinner.vue +1 -1
- package/src/component/FluxSplitButton.vue +2 -2
- package/src/component/FluxStack.vue +2 -2
- package/src/component/FluxStatistic.vue +2 -2
- package/src/component/FluxStepper.vue +1 -1
- package/src/component/FluxStepperStep.vue +1 -1
- package/src/component/FluxStepperSteps.vue +2 -2
- package/src/component/FluxTab.vue +2 -2
- package/src/component/FluxTabBar.vue +75 -7
- package/src/component/FluxTabBarItem.vue +35 -4
- package/src/component/FluxTable.vue +3 -4
- package/src/component/FluxTableActions.vue +1 -1
- package/src/component/FluxTableBar.vue +3 -3
- package/src/component/FluxTableCell.vue +3 -3
- package/src/component/FluxTableHeader.vue +3 -3
- package/src/component/FluxTableRow.vue +1 -1
- package/src/component/FluxTabs.vue +10 -4
- package/src/component/FluxTag.vue +2 -2
- package/src/component/FluxTicks.vue +1 -1
- package/src/component/FluxTimeline.vue +1 -1
- package/src/component/FluxTimelineItem.vue +2 -2
- package/src/component/FluxToggle.vue +2 -2
- package/src/component/FluxToolbar.vue +2 -2
- package/src/component/FluxTooltip.vue +1 -1
- package/src/component/FluxTooltipProvider.vue +3 -3
- package/src/component/FluxTreeView.vue +3 -4
- package/src/component/FluxWindow.vue +1 -1
- package/src/component/calendar/FluxCalendarItemDisplay.vue +117 -0
- package/src/component/calendar/FluxCalendarMonthView.vue +134 -0
- package/src/component/calendar/FluxCalendarTimeGridView.vue +550 -0
- package/src/component/calendar/index.ts +3 -0
- package/src/component/index.ts +2 -2
- package/src/component/primitive/CoordinatePicker.vue +2 -2
- package/src/component/primitive/CoordinatePickerThumb.vue +2 -2
- package/src/component/primitive/DialogLayout.vue +1 -1
- package/src/component/primitive/FilterBadge.vue +2 -2
- package/src/component/primitive/FilterItem.vue +1 -1
- package/src/component/primitive/FilterMenuRenderer.ts +2 -2
- package/src/component/primitive/FilterOptionBase.vue +6 -6
- package/src/component/primitive/SelectBase.vue +13 -13
- package/src/component/primitive/SliderBase.vue +3 -3
- package/src/component/primitive/SliderThumb.vue +2 -2
- package/src/component/primitive/SliderTrack.vue +1 -1
- package/src/component/primitive/TreeNodeRenderer.vue +3 -4
- package/src/component/primitive/VNodeRenderer.ts +1 -2
- package/src/composable/index.ts +3 -0
- package/src/composable/private/index.ts +5 -8
- package/src/composable/private/useAsyncFilterOptions.ts +2 -2
- package/src/composable/private/useCommandPalette.ts +2 -2
- package/src/composable/private/useDateFlyout.ts +1 -1
- package/src/composable/private/useDropdownPopup.ts +1 -1
- package/src/composable/private/useFilterOption.ts +2 -2
- package/src/composable/private/useFormSelect.ts +2 -3
- package/src/composable/private/useKanban.ts +167 -244
- package/src/composable/private/useKanbanAutoScroll.ts +95 -0
- package/src/composable/private/useTranslate.ts +1 -2
- package/src/composable/private/useTreeView.ts +1 -1
- package/src/composable/useAdaptiveGroupInjection.ts +1 -1
- package/src/composable/useBreakpoints.ts +1 -2
- package/src/composable/useCalendarInjection.ts +6 -0
- package/src/composable/useDisabled.ts +1 -2
- package/src/composable/useDisabledInjection.ts +1 -1
- package/src/composable/useExpandableGroupInjection.ts +1 -1
- package/src/composable/useFilterInjection.ts +1 -1
- package/src/composable/useFlyoutInjection.ts +1 -1
- package/src/composable/useFormFieldInjection.ts +1 -1
- package/src/composable/useKanbanInjection.ts +12 -0
- package/src/composable/useTabBarInjection.ts +10 -0
- package/src/composable/useTableInjection.ts +1 -1
- package/src/composable/useTooltipInjection.ts +1 -1
- package/src/css/component/Action.module.scss +1 -1
- package/src/css/component/AdaptiveSlot.module.scss +5 -7
- package/src/css/component/Avatar.module.scss +1 -1
- package/src/css/component/Badge.module.scss +1 -1
- package/src/css/component/Button.module.scss +1 -1
- package/src/css/component/Calendar.module.scss +274 -44
- package/src/css/component/Chip.module.scss +1 -1
- package/src/css/component/Color.module.scss +1 -1
- package/src/css/component/CommandPalette.module.scss +1 -1
- package/src/css/component/DatePicker.module.scss +1 -1
- package/src/css/component/Expandable.module.scss +1 -1
- package/src/css/component/Form.module.scss +1 -1
- package/src/css/component/Gallery.module.scss +1 -1
- package/src/css/component/Grid.module.scss +1 -1
- package/src/css/component/Item.module.scss +1 -1
- package/src/css/component/{FluxKanban.module.scss → Kanban.module.scss} +56 -79
- package/src/css/component/Layout.module.scss +1 -1
- package/src/css/component/Menu.module.scss +1 -1
- package/src/css/component/Notice.module.scss +1 -1
- package/src/css/component/Overlay.module.scss +4 -4
- package/src/css/component/Pagination.module.scss +1 -1
- package/src/css/component/Pane.module.scss +2 -1
- package/src/css/component/Placeholder.module.scss +1 -1
- package/src/css/component/Remove.module.scss +1 -1
- package/src/css/component/SegmentedControl.module.scss +1 -1
- package/src/css/component/Snackbar.module.scss +1 -1
- package/src/css/component/Tab.module.scss +138 -34
- package/src/css/component/Table.module.scss +1 -1
- package/src/css/component/TreeView.module.scss +1 -1
- package/src/css/component/TreeViewSelect.module.scss +1 -1
- package/src/css/component/base/Button.module.scss +1 -1
- package/src/css/component/primitive/Slider.module.scss +1 -1
- package/src/css/component/primitive/TreeNode.module.scss +1 -1
- package/src/css/variables.scss +2 -2
- package/src/data/di.ts +64 -11
- package/src/data/filter.ts +3 -3
- package/src/data/i18n.ts +4 -0
- package/src/data/store.ts +1 -2
- package/src/transition/FluxBreakthroughTransition.vue +1 -1
- package/src/transition/FluxFadeTransition.vue +1 -1
- package/src/transition/FluxOverlayTransition.vue +1 -1
- package/src/transition/FluxRouteTransition.vue +1 -1
- package/src/transition/FluxSlideOverTransition.vue +1 -1
- package/src/transition/FluxTooltipTransition.vue +1 -1
- package/src/transition/FluxVerticalWindowTransition.vue +1 -1
- package/src/transition/FluxWindowTransition.vue +1 -1
- package/src/util/createDialogRenderer.ts +3 -4
- package/src/util/createLabelForDateRange.ts +1 -1
- package/src/component/FluxCalendarEvent.vue +0 -42
- package/src/component/FluxKanbanCard.vue +0 -199
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
1
|
import { FluxDirection } from '@flux-ui/types';
|
|
2
|
+
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
readonly direction?: FluxDirection;
|
|
5
5
|
readonly gap?: number;
|
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
import { DateTime } from 'luxon';
|
|
2
2
|
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
import { FluxCalendarView } from '../data';
|
|
3
4
|
type __VLS_Props = {
|
|
4
5
|
readonly initialDate?: DateTime;
|
|
5
6
|
readonly isLoading?: boolean;
|
|
7
|
+
readonly draggable?: boolean;
|
|
8
|
+
readonly view?: FluxCalendarView;
|
|
9
|
+
readonly hourRange?: readonly [number, number];
|
|
10
|
+
readonly pixelsPerMinute?: number;
|
|
6
11
|
};
|
|
7
12
|
declare function __VLS_template(): {
|
|
8
13
|
attrs: Partial<{}>;
|
|
@@ -11,15 +16,71 @@ declare function __VLS_template(): {
|
|
|
11
16
|
}> & {
|
|
12
17
|
default?(): VNode[];
|
|
13
18
|
};
|
|
14
|
-
refs: {
|
|
19
|
+
refs: {
|
|
20
|
+
root: HTMLDivElement;
|
|
21
|
+
};
|
|
15
22
|
rootEl: HTMLDivElement;
|
|
16
23
|
};
|
|
17
24
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
18
25
|
declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
26
|
+
resize: (args_0: {
|
|
27
|
+
id: string | number;
|
|
28
|
+
fromDate: DateTime;
|
|
29
|
+
toDate: DateTime;
|
|
30
|
+
fromDuration: number;
|
|
31
|
+
toDuration: number;
|
|
32
|
+
}) => any;
|
|
19
33
|
navigate: (args_0: DateTime<boolean>, args_1: DateTime<boolean>, args_2: DateTime<boolean>) => any;
|
|
34
|
+
reschedule: (args_0: {
|
|
35
|
+
id: string | number;
|
|
36
|
+
fromDate: DateTime;
|
|
37
|
+
toDate: DateTime;
|
|
38
|
+
}) => any;
|
|
39
|
+
dragStart: (args_0: {
|
|
40
|
+
id: string | number;
|
|
41
|
+
fromDate: DateTime;
|
|
42
|
+
}) => any;
|
|
43
|
+
dragEnd: (args_0: {
|
|
44
|
+
id: string | number;
|
|
45
|
+
}) => any;
|
|
46
|
+
keyboardGrab: (args_0: {
|
|
47
|
+
id: string | number;
|
|
48
|
+
fromDate: DateTime;
|
|
49
|
+
}) => any;
|
|
50
|
+
keyboardCancel: (args_0: {
|
|
51
|
+
id: string | number;
|
|
52
|
+
}) => any;
|
|
20
53
|
}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
54
|
+
onResize?: (args_0: {
|
|
55
|
+
id: string | number;
|
|
56
|
+
fromDate: DateTime;
|
|
57
|
+
toDate: DateTime;
|
|
58
|
+
fromDuration: number;
|
|
59
|
+
toDuration: number;
|
|
60
|
+
}) => any;
|
|
21
61
|
onNavigate?: (args_0: DateTime<boolean>, args_1: DateTime<boolean>, args_2: DateTime<boolean>) => any;
|
|
22
|
-
|
|
62
|
+
onReschedule?: (args_0: {
|
|
63
|
+
id: string | number;
|
|
64
|
+
fromDate: DateTime;
|
|
65
|
+
toDate: DateTime;
|
|
66
|
+
}) => any;
|
|
67
|
+
onDragStart?: (args_0: {
|
|
68
|
+
id: string | number;
|
|
69
|
+
fromDate: DateTime;
|
|
70
|
+
}) => any;
|
|
71
|
+
onDragEnd?: (args_0: {
|
|
72
|
+
id: string | number;
|
|
73
|
+
}) => any;
|
|
74
|
+
onKeyboardGrab?: (args_0: {
|
|
75
|
+
id: string | number;
|
|
76
|
+
fromDate: DateTime;
|
|
77
|
+
}) => any;
|
|
78
|
+
onKeyboardCancel?: (args_0: {
|
|
79
|
+
id: string | number;
|
|
80
|
+
}) => any;
|
|
81
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
82
|
+
root: HTMLDivElement;
|
|
83
|
+
}, HTMLDivElement>;
|
|
23
84
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
24
85
|
export default _default;
|
|
25
86
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,25 +1,27 @@
|
|
|
1
|
-
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
1
|
import { DateTime } from 'luxon';
|
|
2
|
+
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
3
|
type __VLS_Props = {
|
|
4
|
-
readonly date: DateTime
|
|
5
|
-
readonly
|
|
4
|
+
readonly date: DateTime;
|
|
5
|
+
readonly id?: string | number;
|
|
6
|
+
readonly duration?: number;
|
|
7
|
+
readonly allDay?: boolean;
|
|
6
8
|
};
|
|
7
9
|
declare function __VLS_template(): {
|
|
8
10
|
attrs: Partial<{}>;
|
|
9
11
|
slots: Readonly<{
|
|
10
|
-
|
|
12
|
+
default(): VNode[];
|
|
11
13
|
}> & {
|
|
12
|
-
|
|
14
|
+
default(): VNode[];
|
|
13
15
|
};
|
|
14
16
|
refs: {};
|
|
15
|
-
rootEl:
|
|
17
|
+
rootEl: HTMLSpanElement;
|
|
16
18
|
};
|
|
17
19
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
18
20
|
declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
19
21
|
click: (args_0: MouseEvent) => any;
|
|
20
22
|
}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
21
23
|
onClick?: (args_0: MouseEvent) => any;
|
|
22
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
|
24
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
23
25
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
24
26
|
export default _default;
|
|
25
27
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
1
|
import { FluxPressableType, FluxTo } from '@flux-ui/types';
|
|
2
|
+
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
readonly isLoading?: boolean;
|
|
5
5
|
readonly tag?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
1
|
import { FluxDirection } from '@flux-ui/types';
|
|
2
|
+
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
readonly contentPlacement?: 'start' | 'center' | 'end';
|
|
5
5
|
readonly direction?: FluxDirection;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
1
|
import { FluxFilterState } from '@flux-ui/types';
|
|
2
|
+
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
readonly resettable?: string[];
|
|
5
5
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
1
|
import { FluxFilterState } from '@flux-ui/types';
|
|
2
|
+
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
readonly isSearchable?: boolean;
|
|
5
5
|
readonly resettable?: string[];
|
|
@@ -22,13 +22,13 @@ declare const _default: DefineComponent<__VLS_PublicProps, {
|
|
|
22
22
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
23
23
|
blur: () => any;
|
|
24
24
|
focus: () => any;
|
|
25
|
-
showPicker: () => any;
|
|
26
25
|
"update:modelValue": (value: string | number | object) => any;
|
|
26
|
+
showPicker: () => any;
|
|
27
27
|
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
28
28
|
onBlur?: () => any;
|
|
29
29
|
onFocus?: () => any;
|
|
30
|
-
onShowPicker?: () => any;
|
|
31
30
|
"onUpdate:modelValue"?: (value: string | number | object) => any;
|
|
31
|
+
onShowPicker?: () => any;
|
|
32
32
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
33
33
|
input: HTMLInputElement;
|
|
34
34
|
}, HTMLDivElement>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
1
|
import { FluxIconName } from '@flux-ui/types';
|
|
2
|
+
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
readonly icon?: FluxIconName;
|
|
5
5
|
readonly label?: string;
|
|
@@ -142,16 +142,16 @@ declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, Compo
|
|
|
142
142
|
}> & Readonly<{
|
|
143
143
|
onBlur?: () => any;
|
|
144
144
|
onFocus?: () => any;
|
|
145
|
-
onShowPicker?: () => any;
|
|
146
145
|
"onUpdate:modelValue"?: (value: string | number | object) => any;
|
|
146
|
+
onShowPicker?: () => any;
|
|
147
147
|
}>, {
|
|
148
148
|
blur: () => void;
|
|
149
149
|
focus: () => void;
|
|
150
150
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
151
151
|
blur: () => any;
|
|
152
152
|
focus: () => any;
|
|
153
|
-
showPicker: () => any;
|
|
154
153
|
"update:modelValue": (value: string | number | object) => any;
|
|
154
|
+
showPicker: () => any;
|
|
155
155
|
}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
156
156
|
input: HTMLInputElement;
|
|
157
157
|
}, HTMLDivElement, ComponentProvideOptions, {
|
|
@@ -176,8 +176,8 @@ declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, Compo
|
|
|
176
176
|
}> & Readonly<{
|
|
177
177
|
onBlur?: () => any;
|
|
178
178
|
onFocus?: () => any;
|
|
179
|
-
onShowPicker?: () => any;
|
|
180
179
|
"onUpdate:modelValue"?: (value: string | number | object) => any;
|
|
180
|
+
onShowPicker?: () => any;
|
|
181
181
|
}>, {
|
|
182
182
|
blur: () => void;
|
|
183
183
|
focus: () => void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
1
|
import { FluxFocalPointObject } from '@flux-ui/types';
|
|
2
|
+
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
readonly isEditable?: boolean;
|
|
5
5
|
readonly items?: (string | (FluxFocalPointObject & {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
1
|
import { FluxIconName } from '@flux-ui/types';
|
|
2
|
+
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
readonly icon?: FluxIconName;
|
|
5
5
|
};
|
|
@@ -21,14 +21,14 @@ declare function __VLS_template(): {
|
|
|
21
21
|
};
|
|
22
22
|
refs: {
|
|
23
23
|
root: HTMLDivElement;
|
|
24
|
-
body:
|
|
24
|
+
body: HTMLElement;
|
|
25
25
|
};
|
|
26
26
|
rootEl: HTMLDivElement;
|
|
27
27
|
};
|
|
28
28
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
29
29
|
declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
30
30
|
root: HTMLDivElement;
|
|
31
|
-
body:
|
|
31
|
+
body: HTMLElement;
|
|
32
32
|
}, HTMLDivElement>;
|
|
33
33
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
34
34
|
export default _default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
2
|
type __VLS_Props = {
|
|
3
|
-
readonly cardId: string | number;
|
|
4
3
|
readonly columnId: string | number;
|
|
5
4
|
readonly disabled?: boolean;
|
|
5
|
+
readonly itemId: string | number;
|
|
6
6
|
};
|
|
7
7
|
declare function __VLS_template(): {
|
|
8
8
|
attrs: Partial<{}>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
1
|
import { FluxButtonProps, FluxIconName } from '@flux-ui/types';
|
|
2
|
+
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
3
|
type __VLS_Props = Omit<FluxButtonProps, 'isFilled' | 'isSubmit' | 'size'> & {
|
|
4
4
|
readonly command?: string;
|
|
5
5
|
readonly commandIcon?: FluxIconName;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
1
|
import { FluxColor, FluxIconName } from '@flux-ui/types';
|
|
2
|
+
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
readonly color?: FluxColor;
|
|
5
5
|
readonly icon?: FluxIconName;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
1
|
import { FluxIconName } from '@flux-ui/types';
|
|
2
|
+
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
readonly icon?: FluxIconName;
|
|
5
5
|
readonly subtitle?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
1
|
import { FluxPressableType, FluxTo } from '@flux-ui/types';
|
|
2
|
+
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
readonly componentType?: FluxPressableType;
|
|
5
5
|
readonly href?: string;
|
|
@@ -19,16 +19,16 @@ declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOp
|
|
|
19
19
|
}> & Readonly<{
|
|
20
20
|
onBlur?: () => any;
|
|
21
21
|
onFocus?: () => any;
|
|
22
|
-
onShowPicker?: () => any;
|
|
23
22
|
"onUpdate:modelValue"?: (value: string | number | object) => any;
|
|
23
|
+
onShowPicker?: () => any;
|
|
24
24
|
}>, {
|
|
25
25
|
blur: () => void;
|
|
26
26
|
focus: () => void;
|
|
27
27
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
28
28
|
blur: () => any;
|
|
29
29
|
focus: () => any;
|
|
30
|
-
showPicker: () => any;
|
|
31
30
|
"update:modelValue": (value: string | number | object) => any;
|
|
31
|
+
showPicker: () => any;
|
|
32
32
|
}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
33
33
|
input: HTMLInputElement;
|
|
34
34
|
}, HTMLDivElement, ComponentProvideOptions, {
|
|
@@ -53,8 +53,8 @@ declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOp
|
|
|
53
53
|
}> & Readonly<{
|
|
54
54
|
onBlur?: () => any;
|
|
55
55
|
onFocus?: () => any;
|
|
56
|
-
onShowPicker?: () => any;
|
|
57
56
|
"onUpdate:modelValue"?: (value: string | number | object) => any;
|
|
57
|
+
onShowPicker?: () => any;
|
|
58
58
|
}>, {
|
|
59
59
|
blur: () => void;
|
|
60
60
|
focus: () => void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
1
|
import { FluxDirection, FluxIconName } from '@flux-ui/types';
|
|
2
|
+
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
readonly buttonIcon?: FluxIconName;
|
|
5
5
|
readonly flyoutDirection?: FluxDirection;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
1
|
import { FluxDirection } from '@flux-ui/types';
|
|
2
|
+
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
readonly direction?: FluxDirection;
|
|
5
5
|
readonly gap?: number;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
1
|
import { FluxIconName } from '@flux-ui/types';
|
|
2
|
+
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
readonly icon?: FluxIconName;
|
|
5
5
|
readonly label?: string;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
readonly isPills?: boolean;
|
|
4
|
+
};
|
|
2
5
|
declare function __VLS_template(): {
|
|
3
6
|
attrs: Partial<{}>;
|
|
4
7
|
slots: Readonly<{
|
|
@@ -12,7 +15,7 @@ declare function __VLS_template(): {
|
|
|
12
15
|
rootEl: HTMLElement;
|
|
13
16
|
};
|
|
14
17
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
-
declare const __VLS_component: DefineComponent<
|
|
18
|
+
declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
16
19
|
tabBar: HTMLDivElement;
|
|
17
20
|
}, HTMLElement>;
|
|
18
21
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { FluxIconName } from '@flux-ui/types';
|
|
2
2
|
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
readonly isPills?: boolean;
|
|
5
|
+
};
|
|
3
6
|
type __VLS_PublicProps = {
|
|
4
7
|
modelValue?: number;
|
|
5
|
-
};
|
|
8
|
+
} & __VLS_Props;
|
|
6
9
|
declare function __VLS_template(): {
|
|
7
10
|
attrs: Partial<{}>;
|
|
8
11
|
slots: Readonly<{
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
1
|
import { FluxColor, FluxIconName } from '@flux-ui/types';
|
|
2
|
+
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
readonly color?: FluxColor;
|
|
5
5
|
readonly icon?: FluxIconName;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { FluxCalendarItemData } from '../../data';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
readonly data: FluxCalendarItemData;
|
|
5
|
+
};
|
|
6
|
+
declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
7
|
+
root: HTMLButtonElement;
|
|
8
|
+
}, HTMLButtonElement>;
|
|
9
|
+
export default _default;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { DateTime } from 'luxon';
|
|
2
|
+
import { FluxCalendarItemData } from '../../data';
|
|
3
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
4
|
+
type __VLS_Props = {
|
|
5
|
+
readonly dates: DateTime[];
|
|
6
|
+
readonly days: string[];
|
|
7
|
+
readonly viewDate: DateTime;
|
|
8
|
+
readonly isTransitioningToPast: boolean;
|
|
9
|
+
readonly draggable: boolean;
|
|
10
|
+
readonly items: FluxCalendarItemData[];
|
|
11
|
+
readonly hasActiveDrag: boolean;
|
|
12
|
+
readonly focusedDate?: DateTime | null;
|
|
13
|
+
};
|
|
14
|
+
declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
15
|
+
cellDrop: (args_0: DateTime<boolean>) => any;
|
|
16
|
+
}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
17
|
+
onCellDrop?: (args_0: DateTime<boolean>) => any;
|
|
18
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
19
|
+
export default _default;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { DateTime } from 'luxon';
|
|
2
|
+
import { FluxCalendarItemData } from '../../data';
|
|
3
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
4
|
+
type __VLS_Props = {
|
|
5
|
+
readonly viewDates: DateTime[];
|
|
6
|
+
readonly isTransitioningToPast: boolean;
|
|
7
|
+
readonly draggable: boolean;
|
|
8
|
+
readonly items: FluxCalendarItemData[];
|
|
9
|
+
readonly hasActiveDrag: boolean;
|
|
10
|
+
readonly hourRange: readonly [number, number];
|
|
11
|
+
readonly pixelsPerMinute: number;
|
|
12
|
+
readonly snapMinutes: number;
|
|
13
|
+
readonly dayCount: 1 | 2 | 7;
|
|
14
|
+
};
|
|
15
|
+
declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
16
|
+
resize: (args_0: {
|
|
17
|
+
id: string | number;
|
|
18
|
+
fromDate: DateTime;
|
|
19
|
+
toDate: DateTime;
|
|
20
|
+
fromDuration: number;
|
|
21
|
+
toDuration: number;
|
|
22
|
+
}) => any;
|
|
23
|
+
timeGridDrop: (args_0: DateTime<boolean>) => any;
|
|
24
|
+
allDayDrop: (args_0: DateTime<boolean>) => any;
|
|
25
|
+
}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
26
|
+
onResize?: (args_0: {
|
|
27
|
+
id: string | number;
|
|
28
|
+
fromDate: DateTime;
|
|
29
|
+
toDate: DateTime;
|
|
30
|
+
fromDuration: number;
|
|
31
|
+
toDuration: number;
|
|
32
|
+
}) => any;
|
|
33
|
+
onTimeGridDrop?: (args_0: DateTime<boolean>) => any;
|
|
34
|
+
onAllDayDrop?: (args_0: DateTime<boolean>) => any;
|
|
35
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
36
|
+
export default _default;
|
|
@@ -15,7 +15,7 @@ export { default as FluxButton } from './FluxButton.vue';
|
|
|
15
15
|
export { default as FluxButtonGroup } from './FluxButtonGroup.vue';
|
|
16
16
|
export { default as FluxButtonStack } from './FluxButtonStack.vue';
|
|
17
17
|
export { default as FluxCalendar } from './FluxCalendar.vue';
|
|
18
|
-
export { default as
|
|
18
|
+
export { default as FluxCalendarItem } from './FluxCalendarItem.vue';
|
|
19
19
|
export { default as FluxCheckbox } from './FluxCheckbox.vue';
|
|
20
20
|
export { default as FluxChip } from './FluxChip.vue';
|
|
21
21
|
export { default as FluxClickablePane } from './FluxClickablePane.vue';
|
|
@@ -81,8 +81,8 @@ export { default as FluxGridPattern } from './FluxGridPattern.vue';
|
|
|
81
81
|
export { default as FluxIcon } from './FluxIcon.vue';
|
|
82
82
|
export { default as FluxInfo } from './FluxInfo.vue';
|
|
83
83
|
export { default as FluxKanban } from './FluxKanban.vue';
|
|
84
|
-
export { default as FluxKanbanCard } from './FluxKanbanCard.vue';
|
|
85
84
|
export { default as FluxKanbanColumn } from './FluxKanbanColumn.vue';
|
|
85
|
+
export { default as FluxKanbanItem } from './FluxKanbanItem.vue';
|
|
86
86
|
export { default as FluxInfoStack } from './FluxInfoStack.vue';
|
|
87
87
|
export { default as FluxItem } from './FluxItem.vue';
|
|
88
88
|
export { default as FluxItemActions } from './FluxItemActions.vue';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
1
|
import { FluxIconName } from '@flux-ui/types';
|
|
2
|
+
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
readonly icon?: FluxIconName;
|
|
5
5
|
readonly message?: string;
|
|
@@ -157,16 +157,16 @@ declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, Compo
|
|
|
157
157
|
}> & Readonly<{
|
|
158
158
|
onBlur?: () => any;
|
|
159
159
|
onFocus?: () => any;
|
|
160
|
-
onShowPicker?: () => any;
|
|
161
160
|
"onUpdate:modelValue"?: (value: string | number | object) => any;
|
|
161
|
+
onShowPicker?: () => any;
|
|
162
162
|
}>, {
|
|
163
163
|
blur: () => void;
|
|
164
164
|
focus: () => void;
|
|
165
165
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
166
166
|
blur: () => any;
|
|
167
167
|
focus: () => any;
|
|
168
|
-
showPicker: () => any;
|
|
169
168
|
"update:modelValue": (value: string | number | object) => any;
|
|
169
|
+
showPicker: () => any;
|
|
170
170
|
}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
171
171
|
input: HTMLInputElement;
|
|
172
172
|
}, HTMLDivElement, ComponentProvideOptions, {
|
|
@@ -191,8 +191,8 @@ declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, Compo
|
|
|
191
191
|
}> & Readonly<{
|
|
192
192
|
onBlur?: () => any;
|
|
193
193
|
onFocus?: () => any;
|
|
194
|
-
onShowPicker?: () => any;
|
|
195
194
|
"onUpdate:modelValue"?: (value: string | number | object) => any;
|
|
195
|
+
onShowPicker?: () => any;
|
|
196
196
|
}>, {
|
|
197
197
|
blur: () => void;
|
|
198
198
|
focus: () => void;
|
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
export { default as useBreakpoints } from './useBreakpoints';
|
|
2
2
|
export { default as useDisabled } from './useDisabled';
|
|
3
3
|
export { default as useAdaptiveGroupInjection } from './useAdaptiveGroupInjection';
|
|
4
|
+
export { default as useCalendarInjection } from './useCalendarInjection';
|
|
4
5
|
export { default as useDisabledInjection } from './useDisabledInjection';
|
|
5
6
|
export { default as useExpandableGroupInjection } from './useExpandableGroupInjection';
|
|
6
7
|
export { default as useFilterInjection } from './useFilterInjection';
|
|
7
8
|
export { default as useFlyoutInjection } from './useFlyoutInjection';
|
|
8
9
|
export { default as useFormFieldInjection } from './useFormFieldInjection';
|
|
10
|
+
export { default as useKanbanInjection } from './useKanbanInjection';
|
|
11
|
+
export { default as useTabBarInjection } from './useTabBarInjection';
|
|
9
12
|
export { default as useTableInjection } from './useTableInjection';
|
|
10
13
|
export { default as useTooltipInjection } from './useTooltipInjection';
|
|
@@ -1,12 +1,9 @@
|
|
|
1
1
|
export { default as useAsyncFilterOptions } from './useAsyncFilterOptions';
|
|
2
2
|
export { default as useDateFlyout } from './useDateFlyout';
|
|
3
|
-
export { default as useDropdownPopup } from './useDropdownPopup';
|
|
4
|
-
export type { UseDropdownPopupOptions, UseDropdownPopupReturn } from './useDropdownPopup';
|
|
3
|
+
export { default as useDropdownPopup, type UseDropdownPopupOptions, type UseDropdownPopupReturn } from './useDropdownPopup';
|
|
5
4
|
export { default as useFormSelect } from './useFormSelect';
|
|
5
|
+
export { useKanban } from './useKanban';
|
|
6
6
|
export { default as useTranslate } from './useTranslate';
|
|
7
|
-
export { useCommandPalette } from './useCommandPalette';
|
|
8
|
-
export
|
|
9
|
-
export {
|
|
10
|
-
export type { FilterOptionMulti, FilterOptionSingle } from './useFilterOption';
|
|
11
|
-
export { flattenAll, flattenVisible, getLevelColor, INITIAL_HIGHLIGHTED_INDEX, useTreeView } from './useTreeView';
|
|
12
|
-
export type { TreeBaseOption, TreeFlatNode } from './useTreeView';
|
|
7
|
+
export { useCommandPalette, type CommandPaletteGroup, type CommandPaletteResultItem } from './useCommandPalette';
|
|
8
|
+
export { useFilterOptionMulti, useFilterOptionSingle, type FilterOptionMulti, type FilterOptionSingle } from './useFilterOption';
|
|
9
|
+
export { flattenAll, flattenVisible, getLevelColor, INITIAL_HIGHLIGHTED_INDEX, useTreeView, type TreeBaseOption, type TreeFlatNode } from './useTreeView';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { FluxKanbanMoveColumnEvent, FluxKanbanMoveEvent } from '@flux-ui/types';
|
|
2
2
|
import { Ref } from 'vue';
|
|
3
|
-
import { FluxKanbanInjection } from '../../data
|
|
3
|
+
import { FluxKanbanInjection } from '../../data';
|
|
4
4
|
export type UseKanbanOptions = {
|
|
5
5
|
readonly disabled: Ref<boolean>;
|
|
6
6
|
readonly reorderableColumns: Ref<boolean>;
|
|
@@ -11,7 +11,7 @@ export type UseKanbanOptions = {
|
|
|
11
11
|
};
|
|
12
12
|
/**
|
|
13
13
|
* Internal composable for managing kanban drag-and-drop state.
|
|
14
|
-
* Provides
|
|
14
|
+
* Provides item registration, drag tracking, drop target management,
|
|
15
15
|
* keyboard drag-and-drop, column reordering, drop validation and auto-scroll.
|
|
16
16
|
*/
|
|
17
17
|
export declare function useKanban(options: UseKanbanOptions): FluxKanbanInjection;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export type UseKanbanAutoScrollOptions = {
|
|
2
|
+
getBoardElement(): Element | null;
|
|
3
|
+
getVerticalTarget(): Element | null;
|
|
4
|
+
};
|
|
5
|
+
export type UseKanbanAutoScrollReturn = {
|
|
6
|
+
onPointerMove(clientX: number, clientY: number): void;
|
|
7
|
+
stop(): void;
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* Drives horizontal (board) and vertical (column body) auto-scroll while a drag
|
|
11
|
+
* is in progress. Reads the active scroll containers via the option callbacks.
|
|
12
|
+
*/
|
|
13
|
+
export declare function useKanbanAutoScroll(options: UseKanbanAutoScrollOptions): UseKanbanAutoScrollReturn;
|