@directus/composables 11.2.6 → 11.2.8

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 (2) hide show
  1. package/dist/index.js +2 -1
  2. package/package.json +8 -8
package/dist/index.js CHANGED
@@ -1182,7 +1182,8 @@ function createLayoutWrapper(layout) {
1182
1182
  setup(props, { emit }) {
1183
1183
  const state = reactive({
1184
1184
  ...layout.setup(props, { emit }),
1185
- ...toRefs(props)
1185
+ ...toRefs(props),
1186
+ sidebarShadow: layout.sidebarShadow ?? false
1186
1187
  });
1187
1188
  for (const key in state) state[`onUpdate:${key}`] = (value) => {
1188
1189
  if (isWritableProp(key)) emit(`update:${key}`, value);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@directus/composables",
3
- "version": "11.2.6",
3
+ "version": "11.2.8",
4
4
  "description": "Shared Vue composables for Directus use",
5
5
  "homepage": "https://directus.io",
6
6
  "repository": {
@@ -25,8 +25,8 @@
25
25
  "axios": "1.12.2",
26
26
  "lodash-es": "4.17.21",
27
27
  "nanoid": "5.1.6",
28
- "@directus/constants": "14.0.0",
29
- "@directus/utils": "13.0.12"
28
+ "@directus/utils": "13.1.0",
29
+ "@directus/constants": "14.0.0"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@directus/tsconfig": "3.0.0",
@@ -36,13 +36,13 @@
36
36
  "tsdown": "0.15.11",
37
37
  "typescript": "5.9.3",
38
38
  "vitest": "3.2.4",
39
- "vue": "3.5.22",
40
- "@directus/sdk": "20.1.1",
41
- "@directus/extensions": "3.0.13",
42
- "@directus/types": "13.3.1"
39
+ "vue": "3.5.24",
40
+ "@directus/extensions": "3.0.15",
41
+ "@directus/sdk": "20.3.0",
42
+ "@directus/types": "13.5.0"
43
43
  },
44
44
  "peerDependencies": {
45
- "vue": "3.5.22"
45
+ "vue": "3.5.24"
46
46
  },
47
47
  "scripts": {
48
48
  "build": "tsdown src/index.ts --dts",