@directus/composables 11.2.7 → 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.
- package/dist/index.js +2 -1
- package/package.json +6 -6
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.
|
|
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/
|
|
29
|
-
"@directus/
|
|
28
|
+
"@directus/utils": "13.1.0",
|
|
29
|
+
"@directus/constants": "14.0.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@directus/tsconfig": "3.0.0",
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"typescript": "5.9.3",
|
|
38
38
|
"vitest": "3.2.4",
|
|
39
39
|
"vue": "3.5.24",
|
|
40
|
-
"@directus/extensions": "3.0.
|
|
41
|
-
"@directus/sdk": "20.
|
|
42
|
-
"@directus/types": "13.
|
|
40
|
+
"@directus/extensions": "3.0.15",
|
|
41
|
+
"@directus/sdk": "20.3.0",
|
|
42
|
+
"@directus/types": "13.5.0"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"vue": "3.5.24"
|