@axium/storage 0.13.2 → 0.13.4
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/common.d.ts +0 -1
- package/dist/common.js +0 -2
- package/package.json +2 -3
- package/routes/files/+layout.svelte +7 -58
package/dist/common.d.ts
CHANGED
|
@@ -131,7 +131,6 @@ export declare const StorageConfig: z.ZodObject<{
|
|
|
131
131
|
chunk: z.ZodBoolean;
|
|
132
132
|
max_transfer_size: z.ZodInt;
|
|
133
133
|
max_chunks: z.ZodInt;
|
|
134
|
-
app_enabled: z.ZodBoolean;
|
|
135
134
|
cas: z.ZodObject<{
|
|
136
135
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
137
136
|
include: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
package/dist/common.js
CHANGED
|
@@ -86,8 +86,6 @@ export const StoragePublicConfig = z.object({
|
|
|
86
86
|
max_chunks: z.int().positive(),
|
|
87
87
|
});
|
|
88
88
|
export const StorageConfig = StoragePublicConfig.safeExtend({
|
|
89
|
-
/** Whether the files app is enabled. Requires `enabled` */
|
|
90
|
-
app_enabled: z.boolean(),
|
|
91
89
|
/** Content Addressable Storage (CAS) configuration */
|
|
92
90
|
cas: z
|
|
93
91
|
.object({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axium/storage",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.4",
|
|
4
4
|
"author": "James Prevett <axium@jamespre.dev>",
|
|
5
5
|
"description": "User file storage for Axium",
|
|
6
6
|
"funding": {
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"build": "tsc"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"@axium/client": ">=0.12.
|
|
42
|
+
"@axium/client": ">=0.12.3",
|
|
43
43
|
"@axium/core": ">=0.18.0",
|
|
44
44
|
"@axium/server": ">=0.30.0",
|
|
45
45
|
"@sveltejs/kit": "^2.27.3",
|
|
@@ -70,7 +70,6 @@
|
|
|
70
70
|
],
|
|
71
71
|
"update_checks": true,
|
|
72
72
|
"config": {
|
|
73
|
-
"app_enabled": true,
|
|
74
73
|
"batch": {
|
|
75
74
|
"enabled": false,
|
|
76
75
|
"max_items": 100,
|
|
@@ -1,65 +1,14 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
|
-
import
|
|
2
|
+
import SidebarLayout from '@axium/client/components/SidebarLayout';
|
|
3
3
|
import { StorageUsage } from '@axium/storage/components';
|
|
4
|
-
import { capitalize } from 'utilium';
|
|
5
4
|
|
|
6
5
|
let { children, data } = $props();
|
|
7
6
|
</script>
|
|
8
7
|
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
-
{
|
|
12
|
-
|
|
13
|
-
{/each}
|
|
8
|
+
<SidebarLayout tabs={data.tabs}>
|
|
9
|
+
{#snippet bottom()}
|
|
10
|
+
<StorageUsage userId={data.session?.userId} />
|
|
11
|
+
{/snippet}
|
|
14
12
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
</div>
|
|
18
|
-
</div>
|
|
19
|
-
|
|
20
|
-
<div class="files-content">
|
|
21
|
-
{@render children()}
|
|
22
|
-
</div>
|
|
23
|
-
</div>
|
|
24
|
-
|
|
25
|
-
<style>
|
|
26
|
-
.app {
|
|
27
|
-
display: grid;
|
|
28
|
-
grid-template-columns: 15em 1fr;
|
|
29
|
-
height: 100%;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.sidebar {
|
|
33
|
-
grid-column: 1;
|
|
34
|
-
width: 100%;
|
|
35
|
-
display: inline-flex;
|
|
36
|
-
flex-direction: column;
|
|
37
|
-
gap: 0.5em;
|
|
38
|
-
padding-left: 1em;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.item {
|
|
42
|
-
padding: 0.3em 0.5em;
|
|
43
|
-
border-radius: 0.25em 1em 1em 0.25em;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.item:hover {
|
|
47
|
-
background-color: var(--bg-accent);
|
|
48
|
-
cursor: pointer;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.item.active {
|
|
52
|
-
background-color: var(--bg-accent);
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.usage {
|
|
56
|
-
margin-top: auto;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.files-content {
|
|
60
|
-
grid-column: 2;
|
|
61
|
-
padding: 1em;
|
|
62
|
-
overflow-x: hidden;
|
|
63
|
-
overflow-y: scroll;
|
|
64
|
-
}
|
|
65
|
-
</style>
|
|
13
|
+
{@render children()}
|
|
14
|
+
</SidebarLayout>
|