@flux-ui/components 3.0.0-next.57 → 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.
Files changed (306) hide show
  1. package/dist/component/FluxButtonStack.vue.d.ts +1 -1
  2. package/dist/component/FluxCalendar.vue.d.ts +63 -2
  3. package/dist/component/{FluxCalendarEvent.vue.d.ts → FluxCalendarItem.vue.d.ts} +9 -7
  4. package/dist/component/FluxClickablePane.vue.d.ts +1 -1
  5. package/dist/component/FluxDivider.vue.d.ts +1 -1
  6. package/dist/component/FluxFilter.vue.d.ts +1 -1
  7. package/dist/component/FluxFilterBar.vue.d.ts +1 -1
  8. package/dist/component/FluxFormInput.vue.d.ts +2 -2
  9. package/dist/component/FluxFormInputAddition.vue.d.ts +1 -1
  10. package/dist/component/FluxFormTreeViewSelect.vue.d.ts +3 -3
  11. package/dist/component/FluxGallery.vue.d.ts +1 -1
  12. package/dist/component/FluxInfo.vue.d.ts +1 -1
  13. package/dist/component/FluxKanban.vue.d.ts +17 -5
  14. package/dist/component/FluxKanbanColumn.vue.d.ts +13 -2
  15. package/dist/component/{FluxKanbanCard.vue.d.ts → FluxKanbanItem.vue.d.ts} +2 -1
  16. package/dist/component/FluxMenuItem.vue.d.ts +1 -1
  17. package/dist/component/FluxNotice.vue.d.ts +1 -1
  18. package/dist/component/FluxPaneHeader.vue.d.ts +1 -1
  19. package/dist/component/FluxPressable.vue.d.ts +1 -1
  20. package/dist/component/FluxPrompt.vue.d.ts +3 -3
  21. package/dist/component/FluxSplitButton.vue.d.ts +1 -1
  22. package/dist/component/FluxStack.vue.d.ts +1 -1
  23. package/dist/component/FluxTab.vue.d.ts +1 -1
  24. package/dist/component/FluxTabBar.vue.d.ts +4 -1
  25. package/dist/component/FluxTabs.vue.d.ts +4 -1
  26. package/dist/component/FluxTimelineItem.vue.d.ts +1 -1
  27. package/dist/component/calendar/FluxCalendarItemDisplay.vue.d.ts +9 -0
  28. package/dist/component/calendar/FluxCalendarMonthView.vue.d.ts +19 -0
  29. package/dist/component/calendar/FluxCalendarTimeGridView.vue.d.ts +36 -0
  30. package/dist/component/calendar/index.d.ts +3 -0
  31. package/dist/component/index.d.ts +2 -2
  32. package/dist/component/primitive/DialogLayout.vue.d.ts +1 -1
  33. package/dist/component/primitive/SelectBase.vue.d.ts +3 -3
  34. package/dist/composable/index.d.ts +3 -0
  35. package/dist/composable/private/index.d.ts +5 -8
  36. package/dist/composable/private/useAsyncFilterOptions.d.ts +1 -1
  37. package/dist/composable/private/useKanban.d.ts +14 -4
  38. package/dist/composable/private/useKanbanAutoScroll.d.ts +13 -0
  39. package/dist/composable/useCalendarInjection.d.ts +2 -0
  40. package/dist/composable/useKanbanInjection.d.ts +2 -0
  41. package/dist/composable/useTabBarInjection.d.ts +2 -0
  42. package/dist/data/di.d.ts +80 -9
  43. package/dist/data/i18n.d.ts +4 -0
  44. package/dist/index.css +1603 -1204
  45. package/dist/index.js +4567 -2819
  46. package/dist/index.js.map +1 -1
  47. package/package.json +6 -6
  48. package/src/component/FluxAction.vue +1 -1
  49. package/src/component/FluxActionBar.vue +2 -2
  50. package/src/component/FluxActionPane.vue +1 -1
  51. package/src/component/FluxAdaptiveGroup.vue +2 -2
  52. package/src/component/FluxAdaptiveSlot.vue +2 -2
  53. package/src/component/FluxAlert.vue +1 -1
  54. package/src/component/FluxAnimatedColors.vue +1 -1
  55. package/src/component/FluxAspectRatio.vue +1 -1
  56. package/src/component/FluxAvatar.vue +2 -2
  57. package/src/component/FluxBadge.vue +2 -2
  58. package/src/component/FluxBorderShine.vue +1 -1
  59. package/src/component/FluxBoxedIcon.vue +1 -1
  60. package/src/component/FluxButton.vue +2 -2
  61. package/src/component/FluxButtonGroup.vue +1 -1
  62. package/src/component/FluxButtonStack.vue +1 -1
  63. package/src/component/FluxCalendar.vue +588 -179
  64. package/src/component/FluxCalendarItem.vue +79 -0
  65. package/src/component/FluxCheckbox.vue +2 -2
  66. package/src/component/FluxChip.vue +2 -2
  67. package/src/component/FluxClickablePane.vue +2 -2
  68. package/src/component/FluxColorPicker.vue +2 -2
  69. package/src/component/FluxColorSelect.vue +3 -3
  70. package/src/component/FluxColumn.vue +1 -1
  71. package/src/component/FluxCommandPalette.vue +4 -4
  72. package/src/component/FluxCommandPaletteGroup.vue +1 -1
  73. package/src/component/FluxCommandPaletteItem.vue +1 -1
  74. package/src/component/FluxComment.vue +2 -2
  75. package/src/component/FluxConfirm.vue +1 -1
  76. package/src/component/FluxContainer.vue +1 -1
  77. package/src/component/FluxDataTable.vue +1 -2
  78. package/src/component/FluxDatePicker.vue +3 -3
  79. package/src/component/FluxDestructiveButton.vue +1 -1
  80. package/src/component/FluxDisabled.vue +1 -1
  81. package/src/component/FluxDivider.vue +2 -2
  82. package/src/component/FluxDotPattern.vue +1 -1
  83. package/src/component/FluxDropZone.vue +4 -4
  84. package/src/component/FluxExpandable.vue +3 -3
  85. package/src/component/FluxExpandableGroup.vue +2 -2
  86. package/src/component/FluxFader.vue +1 -1
  87. package/src/component/FluxFaderItem.vue +1 -1
  88. package/src/component/FluxFilter.vue +2 -2
  89. package/src/component/FluxFilterBar.vue +5 -6
  90. package/src/component/FluxFilterBase.vue +2 -2
  91. package/src/component/FluxFilterDate.vue +2 -2
  92. package/src/component/FluxFilterDateRange.vue +2 -2
  93. package/src/component/FluxFilterOption.vue +2 -2
  94. package/src/component/FluxFilterOptionAsync.vue +1 -1
  95. package/src/component/FluxFilterOptions.vue +2 -2
  96. package/src/component/FluxFilterOptionsAsync.vue +1 -1
  97. package/src/component/FluxFilterRange.vue +2 -2
  98. package/src/component/FluxFilterWindow.vue +3 -3
  99. package/src/component/FluxFlickeringGrid.vue +1 -1
  100. package/src/component/FluxFlyout.vue +2 -2
  101. package/src/component/FluxFocalPointEditor.vue +3 -3
  102. package/src/component/FluxFocalPointImage.vue +1 -1
  103. package/src/component/FluxForm.vue +1 -1
  104. package/src/component/FluxFormColumn.vue +1 -1
  105. package/src/component/FluxFormDateInput.vue +3 -3
  106. package/src/component/FluxFormDateRangeInput.vue +4 -4
  107. package/src/component/FluxFormDateTimeInput.vue +3 -3
  108. package/src/component/FluxFormField.vue +3 -3
  109. package/src/component/FluxFormFieldAddition.vue +1 -1
  110. package/src/component/FluxFormGrid.vue +1 -1
  111. package/src/component/FluxFormInput.vue +3 -3
  112. package/src/component/FluxFormInputAddition.vue +2 -2
  113. package/src/component/FluxFormInputGroup.vue +2 -2
  114. package/src/component/FluxFormPinInput.vue +3 -3
  115. package/src/component/FluxFormRangeSlider.vue +3 -3
  116. package/src/component/FluxFormRow.vue +1 -1
  117. package/src/component/FluxFormSection.vue +1 -1
  118. package/src/component/FluxFormSelect.vue +4 -4
  119. package/src/component/FluxFormSelectAsync.vue +6 -6
  120. package/src/component/FluxFormSlider.vue +2 -2
  121. package/src/component/FluxFormTextArea.vue +2 -2
  122. package/src/component/FluxFormTimeZonePicker.vue +4 -4
  123. package/src/component/FluxFormTreeViewSelect.vue +9 -12
  124. package/src/component/FluxGallery.vue +3 -3
  125. package/src/component/FluxGalleryItem.vue +1 -1
  126. package/src/component/FluxGrid.vue +1 -1
  127. package/src/component/FluxGridColumn.vue +1 -1
  128. package/src/component/FluxGridPattern.vue +1 -1
  129. package/src/component/FluxIcon.vue +2 -2
  130. package/src/component/FluxInfo.vue +2 -2
  131. package/src/component/FluxItem.vue +1 -1
  132. package/src/component/FluxItemActions.vue +1 -1
  133. package/src/component/FluxItemContent.vue +1 -1
  134. package/src/component/FluxItemMedia.vue +1 -1
  135. package/src/component/FluxItemStack.vue +1 -1
  136. package/src/component/FluxKanban.vue +78 -7
  137. package/src/component/FluxKanbanColumn.vue +225 -32
  138. package/src/component/FluxKanbanItem.vue +162 -0
  139. package/src/component/FluxLayerPane.vue +1 -1
  140. package/src/component/FluxLayerPaneSecondary.vue +1 -1
  141. package/src/component/FluxLegend.vue +1 -1
  142. package/src/component/FluxLink.vue +1 -1
  143. package/src/component/FluxMenu.vue +1 -1
  144. package/src/component/FluxMenuCollapsible.vue +3 -3
  145. package/src/component/FluxMenuGroup.vue +1 -1
  146. package/src/component/FluxMenuItem.vue +2 -2
  147. package/src/component/FluxMenuSubHeader.vue +1 -1
  148. package/src/component/FluxMenuTitle.vue +1 -1
  149. package/src/component/FluxNotice.vue +3 -3
  150. package/src/component/FluxOverflowBar.vue +1 -1
  151. package/src/component/FluxOverlay.vue +3 -3
  152. package/src/component/FluxOverlayProvider.vue +2 -2
  153. package/src/component/FluxPagination.vue +3 -3
  154. package/src/component/FluxPaginationBar.vue +2 -2
  155. package/src/component/FluxPaginationButton.vue +1 -1
  156. package/src/component/FluxPane.vue +1 -1
  157. package/src/component/FluxPaneBody.vue +1 -1
  158. package/src/component/FluxPaneFooter.vue +1 -1
  159. package/src/component/FluxPaneGroup.vue +1 -1
  160. package/src/component/FluxPaneHeader.vue +2 -2
  161. package/src/component/FluxPaneIllustration.vue +1 -1
  162. package/src/component/FluxPaneMedia.vue +1 -1
  163. package/src/component/FluxPercentageBar.vue +1 -1
  164. package/src/component/FluxPersona.vue +1 -1
  165. package/src/component/FluxPlaceholder.vue +1 -1
  166. package/src/component/FluxPressable.vue +1 -1
  167. package/src/component/FluxPrimaryButton.vue +1 -1
  168. package/src/component/FluxPrimaryLinkButton.vue +1 -1
  169. package/src/component/FluxProgressBar.vue +2 -2
  170. package/src/component/FluxPrompt.vue +1 -1
  171. package/src/component/FluxPublishButton.vue +1 -1
  172. package/src/component/FluxQuantitySelector.vue +2 -2
  173. package/src/component/FluxRemove.vue +2 -2
  174. package/src/component/FluxRoot.vue +2 -2
  175. package/src/component/FluxRow.vue +1 -1
  176. package/src/component/FluxSecondaryButton.vue +1 -1
  177. package/src/component/FluxSecondaryLinkButton.vue +1 -1
  178. package/src/component/FluxSegmentedControl.vue +1 -1
  179. package/src/component/FluxSeparator.vue +1 -1
  180. package/src/component/FluxSlideOver.vue +3 -3
  181. package/src/component/FluxSnackbar.vue +2 -2
  182. package/src/component/FluxSnackbarProvider.vue +2 -2
  183. package/src/component/FluxSpacer.vue +1 -1
  184. package/src/component/FluxSpinner.vue +1 -1
  185. package/src/component/FluxSplitButton.vue +2 -2
  186. package/src/component/FluxStack.vue +2 -2
  187. package/src/component/FluxStatistic.vue +2 -2
  188. package/src/component/FluxStepper.vue +1 -1
  189. package/src/component/FluxStepperStep.vue +1 -1
  190. package/src/component/FluxStepperSteps.vue +2 -2
  191. package/src/component/FluxTab.vue +2 -2
  192. package/src/component/FluxTabBar.vue +75 -7
  193. package/src/component/FluxTabBarItem.vue +35 -4
  194. package/src/component/FluxTable.vue +3 -4
  195. package/src/component/FluxTableActions.vue +1 -1
  196. package/src/component/FluxTableBar.vue +3 -3
  197. package/src/component/FluxTableCell.vue +3 -3
  198. package/src/component/FluxTableHeader.vue +3 -3
  199. package/src/component/FluxTableRow.vue +1 -1
  200. package/src/component/FluxTabs.vue +10 -4
  201. package/src/component/FluxTag.vue +2 -2
  202. package/src/component/FluxTicks.vue +1 -1
  203. package/src/component/FluxTimeline.vue +1 -1
  204. package/src/component/FluxTimelineItem.vue +2 -2
  205. package/src/component/FluxToggle.vue +2 -2
  206. package/src/component/FluxToolbar.vue +2 -2
  207. package/src/component/FluxTooltip.vue +1 -1
  208. package/src/component/FluxTooltipProvider.vue +3 -3
  209. package/src/component/FluxTreeView.vue +3 -4
  210. package/src/component/FluxWindow.vue +1 -1
  211. package/src/component/calendar/FluxCalendarItemDisplay.vue +117 -0
  212. package/src/component/calendar/FluxCalendarMonthView.vue +134 -0
  213. package/src/component/calendar/FluxCalendarTimeGridView.vue +550 -0
  214. package/src/component/calendar/index.ts +3 -0
  215. package/src/component/index.ts +2 -2
  216. package/src/component/primitive/CoordinatePicker.vue +2 -2
  217. package/src/component/primitive/CoordinatePickerThumb.vue +2 -2
  218. package/src/component/primitive/DialogLayout.vue +1 -1
  219. package/src/component/primitive/FilterBadge.vue +2 -2
  220. package/src/component/primitive/FilterItem.vue +1 -1
  221. package/src/component/primitive/FilterMenuRenderer.ts +2 -2
  222. package/src/component/primitive/FilterOptionBase.vue +6 -6
  223. package/src/component/primitive/SelectBase.vue +13 -13
  224. package/src/component/primitive/SliderBase.vue +3 -3
  225. package/src/component/primitive/SliderThumb.vue +2 -2
  226. package/src/component/primitive/SliderTrack.vue +1 -1
  227. package/src/component/primitive/TreeNodeRenderer.vue +3 -4
  228. package/src/component/primitive/VNodeRenderer.ts +1 -2
  229. package/src/composable/index.ts +3 -0
  230. package/src/composable/private/index.ts +5 -8
  231. package/src/composable/private/useAsyncFilterOptions.ts +9 -15
  232. package/src/composable/private/useCommandPalette.ts +2 -2
  233. package/src/composable/private/useDateFlyout.ts +1 -1
  234. package/src/composable/private/useDropdownPopup.ts +1 -1
  235. package/src/composable/private/useFilterOption.ts +2 -2
  236. package/src/composable/private/useFormSelect.ts +2 -3
  237. package/src/composable/private/useKanban.ts +528 -25
  238. package/src/composable/private/useKanbanAutoScroll.ts +95 -0
  239. package/src/composable/private/useTranslate.ts +1 -2
  240. package/src/composable/private/useTreeView.ts +1 -1
  241. package/src/composable/useAdaptiveGroupInjection.ts +1 -1
  242. package/src/composable/useBreakpoints.ts +1 -2
  243. package/src/composable/useCalendarInjection.ts +6 -0
  244. package/src/composable/useDisabled.ts +1 -2
  245. package/src/composable/useDisabledInjection.ts +1 -1
  246. package/src/composable/useExpandableGroupInjection.ts +1 -1
  247. package/src/composable/useFilterInjection.ts +1 -1
  248. package/src/composable/useFlyoutInjection.ts +1 -1
  249. package/src/composable/useFormFieldInjection.ts +1 -1
  250. package/src/composable/useKanbanInjection.ts +12 -0
  251. package/src/composable/useTabBarInjection.ts +10 -0
  252. package/src/composable/useTableInjection.ts +1 -1
  253. package/src/composable/useTooltipInjection.ts +1 -1
  254. package/src/css/component/Action.module.scss +1 -1
  255. package/src/css/component/AdaptiveSlot.module.scss +5 -7
  256. package/src/css/component/Avatar.module.scss +1 -1
  257. package/src/css/component/Badge.module.scss +1 -1
  258. package/src/css/component/Button.module.scss +1 -1
  259. package/src/css/component/Calendar.module.scss +274 -44
  260. package/src/css/component/Chip.module.scss +1 -1
  261. package/src/css/component/Color.module.scss +1 -1
  262. package/src/css/component/CommandPalette.module.scss +1 -1
  263. package/src/css/component/DatePicker.module.scss +1 -1
  264. package/src/css/component/Expandable.module.scss +1 -1
  265. package/src/css/component/Form.module.scss +1 -1
  266. package/src/css/component/Gallery.module.scss +1 -1
  267. package/src/css/component/Grid.module.scss +1 -1
  268. package/src/css/component/Item.module.scss +1 -1
  269. package/src/css/component/Kanban.module.scss +189 -0
  270. package/src/css/component/Layout.module.scss +1 -1
  271. package/src/css/component/Menu.module.scss +1 -1
  272. package/src/css/component/Notice.module.scss +1 -1
  273. package/src/css/component/Overlay.module.scss +4 -4
  274. package/src/css/component/Pagination.module.scss +1 -1
  275. package/src/css/component/Pane.module.scss +2 -1
  276. package/src/css/component/Placeholder.module.scss +1 -1
  277. package/src/css/component/Remove.module.scss +1 -1
  278. package/src/css/component/SegmentedControl.module.scss +1 -1
  279. package/src/css/component/Snackbar.module.scss +1 -1
  280. package/src/css/component/Tab.module.scss +138 -34
  281. package/src/css/component/Table.module.scss +1 -1
  282. package/src/css/component/TreeView.module.scss +1 -1
  283. package/src/css/component/TreeViewSelect.module.scss +1 -1
  284. package/src/css/component/base/Button.module.scss +1 -1
  285. package/src/css/component/primitive/Slider.module.scss +1 -1
  286. package/src/css/component/primitive/TreeNode.module.scss +1 -1
  287. package/src/css/variables.scss +2 -2
  288. package/src/data/di.ts +94 -8
  289. package/src/data/filter.ts +4 -4
  290. package/src/data/i18n.ts +4 -0
  291. package/src/data/store.ts +1 -2
  292. package/src/transition/FluxBreakthroughTransition.vue +1 -1
  293. package/src/transition/FluxFadeTransition.vue +1 -1
  294. package/src/transition/FluxOverlayTransition.vue +1 -1
  295. package/src/transition/FluxRouteTransition.vue +1 -1
  296. package/src/transition/FluxSlideOverTransition.vue +1 -1
  297. package/src/transition/FluxTooltipTransition.vue +1 -1
  298. package/src/transition/FluxVerticalWindowTransition.vue +1 -1
  299. package/src/transition/FluxWindowTransition.vue +1 -1
  300. package/src/util/createDialogRenderer.ts +3 -4
  301. package/src/util/createLabelForDateRange.ts +1 -1
  302. package/src/component/FluxCalendarEvent.vue +0 -42
  303. package/src/component/FluxKanbanCard.vue +0 -105
  304. package/src/css/component/FluxKanban.module.scss +0 -7
  305. package/src/css/component/FluxKanbanCard.module.scss +0 -35
  306. package/src/css/component/FluxKanbanColumn.module.scss +0 -49
@@ -9,7 +9,7 @@
9
9
  setup>
10
10
  import type { VNode } from 'vue';
11
11
  import FluxActionStack from './FluxActionStack.vue';
12
- import $style from '$flux/css/component/Table.module.scss';
12
+ import $style from '~flux/components/css/component/Table.module.scss';
13
13
 
14
14
  defineSlots<{
15
15
  default(): VNode[];
@@ -20,10 +20,10 @@
20
20
  <script
21
21
  lang="ts"
22
22
  setup>
23
- import type { VNode } from 'vue';
24
- import { useTableInjection } from '$flux/composable';
25
23
  import { clsx } from 'clsx';
26
- import $style from '$flux/css/component/Table.module.scss';
24
+ import type { VNode } from 'vue';
25
+ import { useTableInjection } from '~flux/components/composable';
26
+ import $style from '~flux/components/css/component/Table.module.scss';
27
27
 
28
28
  defineSlots<{
29
29
  default(): VNode[];
@@ -24,10 +24,10 @@
24
24
  <script
25
25
  lang="ts"
26
26
  setup>
27
- import type { VNode } from 'vue';
28
27
  import { clsx } from 'clsx';
29
- import { useTableInjection } from '$flux/composable';
30
- import $style from '$flux/css/component/Table.module.scss';
28
+ import type { VNode } from 'vue';
29
+ import { useTableInjection } from '~flux/components/composable';
30
+ import $style from '~flux/components/css/component/Table.module.scss';
31
31
 
32
32
  const {
33
33
  contentDirection = 'row'
@@ -66,15 +66,15 @@
66
66
  import type { FluxIconName } from '@flux-ui/types';
67
67
  import { clsx } from 'clsx';
68
68
  import { computed, type VNode } from 'vue';
69
- import { useTableInjection } from '$flux/composable';
70
- import { useTranslate } from '$flux/composable/private';
69
+ import { useTableInjection } from '~flux/components/composable';
70
+ import { useTranslate } from '~flux/components/composable/private';
71
71
  import FluxFlyout from './FluxFlyout.vue';
72
72
  import FluxIcon from './FluxIcon.vue';
73
73
  import FluxMenu from './FluxMenu.vue';
74
74
  import FluxMenuGroup from './FluxMenuGroup.vue';
75
75
  import FluxMenuItem from './FluxMenuItem.vue';
76
76
  import FluxSeparator from './FluxSeparator.vue';
77
- import $style from '$flux/css/component/Table.module.scss';
77
+ import $style from '~flux/components/css/component/Table.module.scss';
78
78
 
79
79
  defineEmits<{
80
80
  sort: ['ascending' | 'descending' | null];
@@ -8,7 +8,7 @@
8
8
  lang="ts"
9
9
  setup>
10
10
  import type { VNode } from 'vue';
11
- import $style from '$flux/css/component/Table.module.scss';
11
+ import $style from '~flux/components/css/component/Table.module.scss';
12
12
 
13
13
  defineSlots<{
14
14
  default(): VNode[];
@@ -3,7 +3,9 @@
3
3
  <slot
4
4
  v-bind="{children, modelValue, tabs, activate}"
5
5
  name="tabs">
6
- <FluxTabBar :class="$style.tabsBar">
6
+ <FluxTabBar
7
+ :class="$style.tabsBar"
8
+ :is-pills="isPills">
7
9
  <template
8
10
  v-for="(tab, index) of tabs"
9
11
  :key="index">
@@ -36,16 +38,20 @@
36
38
  import { flattenVNodeTree, getComponentProps } from '@flux-ui/internals';
37
39
  import type { FluxIconName } from '@flux-ui/types';
38
40
  import { cloneVNode, computed, ref, unref, useId, type VNode, watch } from 'vue';
39
- import { FluxWindowTransition } from '$flux/transition';
40
- import { VNodeRenderer } from './primitive';
41
+ import { FluxWindowTransition } from '~flux/components/transition';
41
42
  import FluxTabBar from './FluxTabBar.vue';
42
43
  import FluxTabBarItem from './FluxTabBarItem.vue';
43
- import $style from '$flux/css/component/Tab.module.scss';
44
+ import { VNodeRenderer } from './primitive';
45
+ import $style from '~flux/components/css/component/Tab.module.scss';
44
46
 
45
47
  const modelValue = defineModel<number>({
46
48
  default: 0
47
49
  });
48
50
 
51
+ defineProps<{
52
+ readonly isPills?: boolean;
53
+ }>();
54
+
49
55
  const slots = defineSlots<{
50
56
  default(): VNode[];
51
57
 
@@ -53,11 +53,11 @@
53
53
  setup>
54
54
  import type { FluxButtonEmits, FluxColor, FluxIconName, FluxPressableType, FluxTo } from '@flux-ui/types';
55
55
  import { clsx } from 'clsx';
56
- import { useTranslate } from '$flux/composable/private';
56
+ import { useTranslate } from '~flux/components/composable/private';
57
57
  import FluxIcon from './FluxIcon.vue';
58
58
  import FluxPressable from './FluxPressable.vue';
59
59
  import FluxSpinner from './FluxSpinner.vue';
60
- import $style from '$flux/css/component/Badge.module.scss';
60
+ import $style from '~flux/components/css/component/Badge.module.scss';
61
61
 
62
62
  const emit = defineEmits<FluxButtonEmits & {
63
63
  delete: [];
@@ -29,7 +29,7 @@
29
29
  setup>
30
30
  import { generateStepTicks } from '@basmilius/utils';
31
31
  import { computed } from 'vue';
32
- import $style from '$flux/css/component/primitive/Slider.module.scss';
32
+ import $style from '~flux/components/css/component/primitive/Slider.module.scss';
33
33
 
34
34
  const {
35
35
  lower,
@@ -10,7 +10,7 @@
10
10
  lang="ts"
11
11
  setup>
12
12
  import type { VNode } from 'vue';
13
- import $style from '$flux/css/component/Timeline.module.scss';
13
+ import $style from '~flux/components/css/component/Timeline.module.scss';
14
14
 
15
15
  defineSlots<{
16
16
  default(): VNode[];
@@ -52,11 +52,11 @@
52
52
  <script
53
53
  lang="ts"
54
54
  setup>
55
- import type { VNode } from 'vue';
56
55
  import type { FluxColor, FluxIconName } from '@flux-ui/types';
57
56
  import { clsx } from 'clsx';
57
+ import type { VNode } from 'vue';
58
58
  import FluxIcon from './FluxIcon.vue';
59
- import $style from '$flux/css/component/Timeline.module.scss';
59
+ import $style from '~flux/components/css/component/Timeline.module.scss';
60
60
 
61
61
  const {
62
62
  color = 'gray'
@@ -43,9 +43,9 @@
43
43
  import type { FluxFormInputBaseProps, FluxIconName } from '@flux-ui/types';
44
44
  import { clsx } from 'clsx';
45
45
  import { toRef } from 'vue';
46
- import { useDisabled, useFormFieldInjection } from '$flux/composable';
46
+ import { useDisabled, useFormFieldInjection } from '~flux/components/composable';
47
47
  import FluxIcon from './FluxIcon.vue';
48
- import $style from '$flux/css/component/Form.module.scss';
48
+ import $style from '~flux/components/css/component/Form.module.scss';
49
49
 
50
50
  const modelValue = defineModel<boolean>({
51
51
  default: false
@@ -18,10 +18,10 @@
18
18
  <script
19
19
  lang="ts"
20
20
  setup>
21
- import type { VNode } from 'vue';
22
21
  import { clsx } from 'clsx';
22
+ import type { VNode } from 'vue';
23
23
  import FluxStack from './FluxStack.vue';
24
- import $style from '$flux/css/component/Toolbar.module.scss';
24
+ import $style from '~flux/components/css/component/Toolbar.module.scss';
25
25
 
26
26
  defineProps<{
27
27
  readonly floatingMode?: 'free' | 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end';
@@ -1,6 +1,6 @@
1
1
  <script lang="ts">
2
2
  import { defineComponent, getCurrentInstance, onMounted, onUnmounted, type PropType, ref, type SlotsType, type VNode } from 'vue';
3
- import { addTooltip, removeTooltip } from '$flux/data';
3
+ import { addTooltip, removeTooltip } from '~flux/components/data';
4
4
 
5
5
  export default defineComponent({
6
6
  props: {
@@ -2,9 +2,9 @@
2
2
  import { unrefTemplateElement } from '@flux-ui/internals';
3
3
  import { clsx } from 'clsx';
4
4
  import { computed, defineComponent, h, provide, ref, unref, watch } from 'vue';
5
- import { FluxTooltipInjectionKey, useFluxStore } from '$flux/data';
6
- import { FluxTooltipTransition } from '$flux/transition';
7
- import $style from '$flux/css/component/Tooltip.module.scss';
5
+ import { FluxTooltipInjectionKey, useFluxStore } from '~flux/components/data';
6
+ import { FluxTooltipTransition } from '~flux/components/transition';
7
+ import $style from '~flux/components/css/component/Tooltip.module.scss';
8
8
 
9
9
  type Transition = 'above' | 'below' | 'end' | 'start';
10
10
 
@@ -35,10 +35,9 @@
35
35
  import type { FluxColor, FluxTreeViewOption } from '@flux-ui/types';
36
36
  import { clsx } from 'clsx';
37
37
  import { computed, ref, unref, useTemplateRef } from 'vue';
38
- import type { TreeFlatNode } from '$flux/composable/private';
39
- import { flattenVisible, useTreeView } from '$flux/composable/private';
40
- import TreeNodeRenderer from '$flux/component/primitive/TreeNodeRenderer.vue';
41
- import $style from '$flux/css/component/TreeView.module.scss';
38
+ import { flattenVisible, type TreeFlatNode, useTreeView } from '~flux/components/composable/private';
39
+ import { TreeNodeRenderer } from './primitive';
40
+ import $style from '~flux/components/css/component/TreeView.module.scss';
42
41
 
43
42
  type FlatNode = TreeFlatNode<FluxTreeViewOption>;
44
43
 
@@ -13,7 +13,7 @@
13
13
  lang="ts"
14
14
  setup>
15
15
  import { ref, type VNode } from 'vue';
16
- import { FluxWindowTransition } from '$flux/transition';
16
+ import { FluxWindowTransition } from '~flux/components/transition';
17
17
 
18
18
  const slots = defineSlots<{
19
19
  default(props: {
@@ -0,0 +1,117 @@
1
+ <script
2
+ lang="ts"
3
+ setup>
4
+ import { useKeyboardGrab } from '@flux-ui/internals';
5
+ import { clsx } from 'clsx';
6
+ import { computed, defineComponent, onBeforeUnmount, onMounted, ref, toRef, watch } from 'vue';
7
+ import { useCalendarInjection } from '~flux/components/composable';
8
+ import type { FluxCalendarItemData } from '~flux/components/data';
9
+ import $style from '~flux/components/css/component/Calendar.module.scss';
10
+
11
+ const {data} = defineProps<{
12
+ readonly data: FluxCalendarItemData;
13
+ }>();
14
+
15
+ const dragContext = useCalendarInjection();
16
+ const root = ref<HTMLButtonElement | null>(null);
17
+
18
+ const canDrag = computed(() => dragContext?.isDraggable.value === true);
19
+
20
+ const RenderItemContent = defineComponent({
21
+ props: {
22
+ render: {
23
+ type: Function,
24
+ required: true
25
+ }
26
+ },
27
+ setup: (props) => () => (props.render as () => unknown)()
28
+ });
29
+
30
+ const {
31
+ isGrabbed,
32
+ handleKeyDown,
33
+ release: releaseKeyboardGrab
34
+ } = useKeyboardGrab({
35
+ isDraggable: canDrag,
36
+ itemId: toRef(() => data.id),
37
+ grabbedId: dragContext?.grabbedId ?? ref<string | number | null>(null),
38
+ onGrab() {
39
+ dragContext?.onItemKeyboardGrab(data.id, data.date);
40
+ return data.date;
41
+ },
42
+ onMove(direction) {
43
+ dragContext?.onItemKeyboardMove(direction);
44
+ },
45
+ onCommit() {
46
+ dragContext?.onItemKeyboardCommit();
47
+ },
48
+ onCancel() {
49
+ dragContext?.onItemKeyboardCancel();
50
+ }
51
+ });
52
+
53
+ const itemClasses = computed(() => clsx(
54
+ $style.calendarItem,
55
+ data.isClickable && $style.isClickable,
56
+ canDrag.value && $style.isDraggable,
57
+ isGrabbed.value && $style.isGrabbed,
58
+ data.allDay && $style.isAllDay
59
+ ));
60
+
61
+ function onClick(evt: MouseEvent): void {
62
+ data.handleClick(evt);
63
+ }
64
+
65
+ function onDragStart(evt: DragEvent): void {
66
+ if (!canDrag.value || !dragContext) {
67
+ return;
68
+ }
69
+
70
+ if (isGrabbed.value) {
71
+ dragContext.onItemKeyboardCancel();
72
+ releaseKeyboardGrab();
73
+ }
74
+
75
+ dragContext.onItemDragStart(data.id, data.date, evt);
76
+ }
77
+
78
+ function onDragEnd(): void {
79
+ dragContext?.onItemDragEnd(data.id);
80
+ }
81
+
82
+ onMounted(() => {
83
+ if (root.value) {
84
+ dragContext?.registerItemElement(root.value, data.id);
85
+ }
86
+ });
87
+
88
+ onBeforeUnmount(() => {
89
+ if (root.value) {
90
+ dragContext?.unregisterItemElement(root.value);
91
+ }
92
+ });
93
+
94
+ watch(() => data.id, (_newId, _oldId) => {
95
+ if (!root.value) {
96
+ return;
97
+ }
98
+
99
+ dragContext?.unregisterItemElement(root.value);
100
+ dragContext?.registerItemElement(root.value, data.id);
101
+ });
102
+ </script>
103
+
104
+ <template>
105
+ <button
106
+ ref="root"
107
+ :class="itemClasses"
108
+ :draggable="canDrag"
109
+ :tabindex="canDrag ? 0 : undefined"
110
+ type="button"
111
+ @click="onClick"
112
+ @dragstart="onDragStart"
113
+ @dragend="onDragEnd"
114
+ @keydown="handleKeyDown">
115
+ <RenderItemContent :render="data.renderContent"/>
116
+ </button>
117
+ </template>
@@ -0,0 +1,134 @@
1
+ <template>
2
+ <FluxWindowTransition :is-back="isTransitioningToPast">
3
+ <div
4
+ :key="viewDate.month"
5
+ :class="$style.calendarCells"
6
+ role="grid">
7
+ <template v-for="day of days">
8
+ <div :class="$style.calendarDay">
9
+ {{ day }}
10
+ </div>
11
+ </template>
12
+
13
+ <template v-for="date of dates">
14
+ <div
15
+ :class="clsx(
16
+ $style.calendarEntry,
17
+ viewDate.month !== date.month && $style.isDisabled,
18
+ isToday(date) && $style.isToday,
19
+ focusedDate && date.toSQLDate() === focusedDate.toSQLDate() && $style.isFocused,
20
+ draggable && dropTargetDate === date.toSQLDate() && $style.isDropTarget
21
+ )"
22
+ role="gridcell"
23
+ @dragover="draggable ? onCellDragOver(date, $event) : undefined"
24
+ @dragleave="draggable ? onCellDragLeave(date) : undefined"
25
+ @drop="draggable ? onCellDrop(date, $event) : undefined">
26
+ <div :class="$style.calendarEvents">
27
+ <FluxCalendarItemDisplay
28
+ v-for="item of getItemsForDate(date)"
29
+ :key="item.id"
30
+ :data="item"/>
31
+ </div>
32
+
33
+ <span :class="$style.calendarEntryDate">
34
+ {{ date.toLocaleString({day: 'numeric'}) }}
35
+ </span>
36
+ </div>
37
+ </template>
38
+ </div>
39
+ </FluxWindowTransition>
40
+ </template>
41
+
42
+ <script
43
+ lang="ts"
44
+ setup>
45
+ import { clsx } from 'clsx';
46
+ import { DateTime } from 'luxon';
47
+ import { computed, ref, unref } from 'vue';
48
+ import type { FluxCalendarItemData } from '~flux/components/data';
49
+ import { FluxWindowTransition } from '~flux/components/transition';
50
+ import FluxCalendarItemDisplay from './FluxCalendarItemDisplay.vue';
51
+ import $style from '~flux/components/css/component/Calendar.module.scss';
52
+
53
+ const emit = defineEmits<{
54
+ cellDrop: [DateTime];
55
+ }>();
56
+
57
+ const {
58
+ dates,
59
+ days,
60
+ viewDate,
61
+ draggable,
62
+ items,
63
+ hasActiveDrag,
64
+ focusedDate
65
+ } = defineProps<{
66
+ readonly dates: DateTime[];
67
+ readonly days: string[];
68
+ readonly viewDate: DateTime;
69
+ readonly isTransitioningToPast: boolean;
70
+ readonly draggable: boolean;
71
+ readonly items: FluxCalendarItemData[];
72
+ readonly hasActiveDrag: boolean;
73
+ readonly focusedDate?: DateTime | null;
74
+ }>();
75
+
76
+ const dropTargetDate = ref<string | null>(null);
77
+
78
+ function isToday(date: DateTime): boolean {
79
+ return date.hasSame(DateTime.now(), 'day');
80
+ }
81
+
82
+ const itemsByDate = computed(() => {
83
+ const map = new Map<string, FluxCalendarItemData[]>();
84
+
85
+ items.forEach(item => {
86
+ const dateKey = item.date.toSQLDate();
87
+
88
+ if (!dateKey) {
89
+ return;
90
+ }
91
+
92
+ const list = map.get(dateKey);
93
+
94
+ if (list) {
95
+ list.push(item);
96
+ } else {
97
+ map.set(dateKey, [item]);
98
+ }
99
+ });
100
+
101
+ return map;
102
+ });
103
+
104
+ function getItemsForDate(forDate: DateTime): FluxCalendarItemData[] {
105
+ const key = forDate.toSQLDate();
106
+ return key ? unref(itemsByDate).get(key) ?? [] : [];
107
+ }
108
+
109
+ function onCellDragOver(date: DateTime, evt: DragEvent): void {
110
+ if (!hasActiveDrag) {
111
+ return;
112
+ }
113
+
114
+ evt.preventDefault();
115
+
116
+ if (evt.dataTransfer) {
117
+ evt.dataTransfer.dropEffect = 'move';
118
+ }
119
+
120
+ dropTargetDate.value = date.toSQLDate();
121
+ }
122
+
123
+ function onCellDragLeave(date: DateTime): void {
124
+ if (unref(dropTargetDate) === date.toSQLDate()) {
125
+ dropTargetDate.value = null;
126
+ }
127
+ }
128
+
129
+ function onCellDrop(date: DateTime, evt: DragEvent): void {
130
+ evt.preventDefault();
131
+ emit('cellDrop', date.startOf('day'));
132
+ dropTargetDate.value = null;
133
+ }
134
+ </script>