Skip to content

Commit

Permalink
Merge branch 'dev_bbs' of github.com:siliconflow/BizyAir into dev_bbs
Browse files Browse the repository at this point in the history
  • Loading branch information
dantegarden committed Nov 26, 2024
2 parents c00f724 + 4e80e65 commit 5d3e0ce
Show file tree
Hide file tree
Showing 48 changed files with 4,802 additions and 403 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# BizyAir

- [2024/11/22] 🌩️ BizyAir supports FLUX Fill, ControlNet and Redux modes. [canny](./examples/bizyair-flux1-tools-canny.json) [depth](./examples/bizyair-flux1-tools-depth.json) [fill](./examples/bizyair-flux-fill1-inpaint.json) [redux](./examples/bizyair-flux1-tools-redux.json)
- [2024/11/06] 🌩️ BizyAir PixelWave Flux.1-dev Text to Image node is released. [PixelWave Flux.1-dev Text to Image](./examples/bizyair_flux_pixelwave_txt2img.json)
- [2024/10/30] 🌩️ BizyAir Segment-Anything nodes has been released. [text_guided_segment-anything](./examples/bizyair_text_guided_segment-anything.json) and [box_point_guided_segment-anything](./examples/bizyair_box_point_guided_segment-anything.json)
- [2024/10/24] 🌩️ BizyAir supports stable Diffusion 3.5. [Stable Diffusion 3.5 Text to Image](./examples/bizyair_sd3_5_txt2img.json)
Expand Down
1 change: 1 addition & 0 deletions biz_lib_frontend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ dist-ssr
*.njsproj
*.sln
*.sw?
*.d.ts
5 changes: 0 additions & 5 deletions biz_lib_frontend/README.md

This file was deleted.

175 changes: 175 additions & 0 deletions biz_lib_frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions biz_lib_frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
"@types/node": "^22.8.4",
"@vitejs/plugin-vue": "^5.1.4",
"autoprefixer": "^10.4.20",
"less": "^4.2.0",
"tailwindcss": "^3.4.14",
"typescript": "~5.6.2",
"unplugin-auto-import": "^0.18.3",
Expand Down
1 change: 0 additions & 1 deletion biz_lib_frontend/public/vite.svg

This file was deleted.

14 changes: 8 additions & 6 deletions biz_lib_frontend/src/App.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
<template>
<btnExample />
<btnProfile v-if="statusStore.isLogin" />
<btnApiKey v-else />
<btnModel />
<btnNews />
<apiKeyDialog />
<div class="shadcn-root flex w-full">
<btnExample />
<btnProfile v-if="statusStore.isLogin" />
<btnApiKey v-else />
<btnModel />
<btnNews />
<apiKeyDialog />
</div>
</template>
<script setup lang="ts">
import btnExample from '@/views/btnExample/index.vue'
Expand Down
7 changes: 2 additions & 5 deletions biz_lib_frontend/src/assets/index.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/* src/styles/globals.css */

@tailwind base;
@tailwind components;
@tailwind utilities;
Expand Down Expand Up @@ -40,10 +41,6 @@

/* 强制使用暗色主题,移除 .dark 选择器的限制 */
@layer base {
* {
@apply border-border;
}

body {
@apply bg-background text-foreground;
}
Expand All @@ -70,4 +67,4 @@
margin: 10px 0;
}
}
}
}
Loading

0 comments on commit 5d3e0ce

Please sign in to comment.