Skip to content

Commit 655b954

Browse files
committed
chore: wip
1 parent 287f6fa commit 655b954

File tree

9 files changed

+14
-9
lines changed

9 files changed

+14
-9
lines changed

storage/framework/core/components/dropdown/src/components/Position.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ async function handleCopyCode() {
6161
{{ position }}
6262
</button>
6363
</div>
64-
<div class="code-block group relative">
64+
<div class="group code-block relative">
6565
<Highlight
6666
language="javascript"
6767
class-name="rounded-md text-xs"

storage/framework/core/components/dropdown/src/components/Usage.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ async function handleCopyCode() {
3535
<p class="my-3 text-base">
3636
Render the toaster in the root of your app.
3737
</p>
38-
<div class="code-block group relative">
38+
<div class="group code-block relative">
3939
<Highlight
4040
class-name="rounded-md text-xs"
4141
language="xml"

storage/framework/core/components/notification/src/components/Position.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ async function handleCopyCode() {
6161
{{ position }}
6262
</button>
6363
</div>
64-
<div class="code-block group relative">
64+
<div class="group code-block relative">
6565
<Highlight
6666
language="javascript"
6767
class-name="rounded-md text-xs"

storage/framework/core/storage/src/files.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export async function writeTextFile(file: TextFile): Promise<number> {
8989
/**
9090
* Determine whether a path exists.
9191
*/
92-
export function isFile(path: string): boolean {
92+
function isFile(path: string): boolean {
9393
return fs.existsSync(path)
9494
}
9595

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
export { AwsS3StorageAdapter, DefaultAwsPublicUrlGenerator, HostStyleAwsPublicUrlGenerator } from '@flystorage/aws-s3'
2+
export { checksumFromStream, closeReadable, DirectoryListing, FileStorage, isDirectory, isFile, normalizeExpiryToDate, normalizeExpiryToMilliseconds, readableToString, readableToUint8Array, toReadable } from '@flystorage/file-storage'
3+
export { InMemoryStorageAdapter, resolveMimeType } from '@flystorage/in-memory'
4+
export { BaseUrlLocalPublicUrlGenerator, FailingLocalTemporaryUrlGenerator, LocalStorageAdapter } from '@flystorage/local-fs'

storage/framework/core/storage/src/folders.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ export function isFolder(path: string): boolean {
1313
}
1414
}
1515

16-
export function isDirectory(path: string): boolean {
17-
return isFolder(path)
18-
}
16+
// export function isDirectory(path: string): boolean {
17+
// return isFolder(path)
18+
// }
1919

2020
export function isDir(path: string): boolean {
2121
return isFolder(path)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
export * from './copy'
22
export * from './delete'
33
export * from './files'
4+
export * from './flystorage'
45
export * from './folders'
56
export * from './fs'
67
export * from './glob'
78
export * from './hash'
89
export * from './helpers'
910
export * as storage from './storage'
10-
1111
export * from './zip'

storage/framework/core/ui/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ import { ui } from '@stacksjs/config'
33
import * as Store from 'pinia'
44
import * as CssEngine from 'unocss'
55
import * as UiEngine from 'vue'
6-
import UnocssConfig from './unocss.config'
6+
import UnocssConfig from './uno.config'
77

88
export { CssEngine, presetForms, Store, ui, UiEngine, UnocssConfig }

storage/framework/ide/dictionary.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ filesize
112112
flareapp
113113
flowconfig
114114
FLUSHALL
115+
flystorage
115116
fontshare
116117
formkit
117118
foxundermoon

0 commit comments

Comments
 (0)