Skip to content

Commit 015afbe

Browse files
committed
Demo for asset-gen
1 parent 2e399f1 commit 015afbe

File tree

75 files changed

+5333
-117
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+5333
-117
lines changed

spx-gui/.github/instructions/vue-coding.instructions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ Apply the [general coding guidelines](./general-coding.instructions.md) to all c
77
Here are instructions for Vue Component development in spx-gui:
88

99
* Generate accessibility info for interactive elements using `v-radar` directive.
10+
* Check `src/components/ui/tokens/` for all design tokens, they can be used as CSS variables. For example: `--ui-gap-middle`, `--ui-color-primary`.

spx-gui/src/apis/asset.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import type { FileCollection, ByPage, PaginationParams } from './common'
22
import { client, Visibility } from './common'
3+
import type { ProjectSettings } from './project'
34

45
export { Visibility }
56

@@ -9,6 +10,8 @@ export enum AssetType {
910
Sound = 'sound'
1011
}
1112

13+
export type AssetSettings = ProjectSettings
14+
1215
export type AssetData = {
1316
/** Unique identifier */
1417
id: string

0 commit comments

Comments
 (0)