@flux-ui/application 3.0.0-next.72 → 3.0.0-next.74

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@flux-ui/application",
3
3
  "description": "Contains components to create applications with Flux UI.",
4
- "version": "3.0.0-next.72",
4
+ "version": "3.0.0-next.74",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "funding": "https://github.com/sponsors/basmilius",
@@ -51,24 +51,24 @@
51
51
  "typings": "./dist/index.d.ts",
52
52
  "sideEffects": false,
53
53
  "dependencies": {
54
- "@flux-ui/components": "3.0.0-next.72",
55
- "@flux-ui/internals": "3.0.0-next.72",
56
- "@flux-ui/types": "3.0.0-next.72",
54
+ "@flux-ui/components": "3.0.0-next.74",
55
+ "@flux-ui/internals": "3.0.0-next.74",
56
+ "@flux-ui/types": "3.0.0-next.74",
57
57
  "clsx": "^2.1.1"
58
58
  },
59
59
  "peerDependencies": {
60
60
  "luxon": "^3.7.2",
61
- "vue": "^3.6.0-beta.12",
62
- "vue-router": "^5.0.7"
61
+ "vue": "^3.6.0-beta.13",
62
+ "vue-router": "^5.1.0"
63
63
  },
64
64
  "devDependencies": {
65
- "@basmilius/vite-preset": "^3.37.0",
65
+ "@basmilius/vite-preset": "^3.40.0",
66
66
  "@types/node": "^25.9.1",
67
67
  "@vitejs/plugin-vue": "^6.0.7",
68
68
  "@vue/tsconfig": "^0.9.1",
69
69
  "sass-embedded": "^1.100.0",
70
70
  "typescript": "^6.0.3",
71
- "vite": "^8.0.14",
72
- "vue-tsc": "^3.3.2"
71
+ "vite": "^8.0.16",
72
+ "vue-tsc": "^3.3.3"
73
73
  }
74
74
  }
@@ -15,7 +15,7 @@
15
15
  <script
16
16
  lang="ts"
17
17
  setup>
18
- import clsx from 'clsx';
18
+ import { clsx } from 'clsx';
19
19
  import { watch } from 'vue';
20
20
  import { useApplicationInjection } from '../composable';
21
21
  import type { FluxApplicationLayout } from '../data';
@@ -52,7 +52,7 @@
52
52
  import { FluxFadeTransition, FluxIcon, FluxRouteTransition, FluxSpacer, FluxTabBar } from '@flux-ui/components';
53
53
  import { useScrollPosition } from '@flux-ui/internals';
54
54
  import type { FluxIconName } from '@flux-ui/types';
55
- import clsx from 'clsx';
55
+ import { clsx } from 'clsx';
56
56
  import type { VNode } from 'vue';
57
57
  import { useApplicationInjection } from '../composable';
58
58
  import FluxApplicationMenuToggle from './FluxApplicationMenuToggle.vue';
@@ -5,7 +5,7 @@ export default function (name: string = 'menu'): UseApplicationContextMenu {
5
5
  const matches = useNamedRoutes(toRef(() => name));
6
6
 
7
7
  const hasContextMenu = computed(() => matches.value.length > 0);
8
- const contextMenuKey = computed(() => matches.value.map(m => m.record.path).join('|') || undefined);
8
+ const contextMenuKey = computed(() => matches.value.map(match => match.record.path).join('|') || undefined);
9
9
 
10
10
  return {
11
11
  contextMenuKey,