👷 ci: update lint config
parent
0c5a6b7c8b
commit
56cf8f327b
|
|
@ -1 +1,4 @@
|
||||||
module.exports = require('@lobehub/lint/dist/changelog');
|
module.exports = {
|
||||||
|
...require('@lobehub/lint').changelog,
|
||||||
|
displayTypes: ['feat', 'fix', 'style', 'pref', 'refactor'],
|
||||||
|
};
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
module.exports = require('@lobehub/lint/dist/commitlint');
|
module.exports = require('@lobehub/lint').commitlint;
|
||||||
|
|
|
||||||
|
|
@ -1,14 +1,30 @@
|
||||||
/scripts
|
# Eslintignore for LobeHub
|
||||||
/config
|
################################################################
|
||||||
/example
|
|
||||||
|
# dependencies
|
||||||
|
node_modules
|
||||||
|
|
||||||
|
# ci
|
||||||
|
.coverage
|
||||||
|
|
||||||
|
# test
|
||||||
|
jest*
|
||||||
_test_
|
_test_
|
||||||
__test__
|
__test__
|
||||||
|
|
||||||
/node_modules
|
# umi
|
||||||
jest*
|
.umi
|
||||||
/es
|
.umi-production
|
||||||
/lib
|
.umi-test
|
||||||
/docs
|
.dumi/tmp*
|
||||||
/dist
|
|
||||||
/javascript
|
# production
|
||||||
|
dist
|
||||||
|
es
|
||||||
|
lib
|
||||||
|
logs
|
||||||
|
|
||||||
|
# misc
|
||||||
|
# add other ignore file below
|
||||||
|
javascript
|
||||||
style.css
|
style.css
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
module.exports = require('@lobehub/lint/dist/eslint');
|
module.exports = require('@lobehub/lint').eslint;
|
||||||
|
|
|
||||||
|
|
@ -1,42 +1,43 @@
|
||||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
# Gitignore for LobeHub
|
||||||
|
################################################################
|
||||||
|
|
||||||
# dependencies
|
# general
|
||||||
**/node_modules
|
|
||||||
npm-debug.log*
|
|
||||||
yarn-error.log
|
|
||||||
package-lock.json
|
|
||||||
|
|
||||||
# production
|
|
||||||
**/dist
|
|
||||||
/plugins/
|
|
||||||
/es
|
|
||||||
/lib
|
|
||||||
/logs
|
|
||||||
|
|
||||||
# misc
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.eslintcache
|
|
||||||
|
|
||||||
# umi
|
|
||||||
/src/.umi
|
|
||||||
/src/.umi-production
|
|
||||||
/src/.umi-test
|
|
||||||
/.env.local
|
|
||||||
|
|
||||||
# ide
|
|
||||||
.idea
|
.idea
|
||||||
.vscode
|
.vscode
|
||||||
.history
|
.history
|
||||||
*.log
|
.temp
|
||||||
functions/*
|
.env.local
|
||||||
lambda/mock/index.js
|
|
||||||
.temp/**
|
|
||||||
|
|
||||||
# test
|
|
||||||
**/test-output
|
|
||||||
config.yml
|
|
||||||
yarn.lock
|
|
||||||
venv
|
venv
|
||||||
temp
|
temp
|
||||||
|
tmp
|
||||||
|
|
||||||
|
# dependencies
|
||||||
|
node_modules
|
||||||
|
*.log
|
||||||
|
*.lock
|
||||||
|
package-lock.json
|
||||||
|
|
||||||
|
# ci
|
||||||
|
.coverage
|
||||||
|
.eslintcache
|
||||||
|
.stylelintcache
|
||||||
|
|
||||||
|
# production
|
||||||
|
dist
|
||||||
|
es
|
||||||
|
lib
|
||||||
|
logs
|
||||||
|
test-output
|
||||||
|
|
||||||
|
# umi
|
||||||
|
.umi
|
||||||
|
.umi-production
|
||||||
|
.umi-test
|
||||||
|
.dumi/tmp*
|
||||||
|
|
||||||
|
# husky
|
||||||
.husky/prepare-commit-msg
|
.husky/prepare-commit-msg
|
||||||
.husky/commit-msg
|
|
||||||
|
# misc
|
||||||
|
# add other ignore file below
|
||||||
|
|
|
||||||
3
.npmrc
3
.npmrc
|
|
@ -1,10 +1,11 @@
|
||||||
lockfile=false
|
lockfile=false
|
||||||
resolution-mode=highest
|
resolution-mode=highest
|
||||||
public-hoist-pattern[]=*@umijs/lint*
|
public-hoist-pattern[]=*@umijs/lint*
|
||||||
|
public-hoist-pattern[]=*changelog*
|
||||||
public-hoist-pattern[]=*remark*
|
public-hoist-pattern[]=*remark*
|
||||||
public-hoist-pattern[]=*eslint*
|
public-hoist-pattern[]=*eslint*
|
||||||
public-hoist-pattern[]=*stylelint*
|
public-hoist-pattern[]=*stylelint*
|
||||||
public-hoist-pattern[]=*prettier*
|
public-hoist-pattern[]=*prettier*
|
||||||
public-hoist-pattern[]=*commitlint*
|
public-hoist-pattern[]=*commitlint*
|
||||||
public-hoist-pattern[]=*postcss*
|
public-hoist-pattern[]=*postcss*
|
||||||
public-hoist-pattern[]=*semantic-release*
|
public-hoist-pattern[]=*semantic-release*
|
||||||
|
|
|
||||||
|
|
@ -1,29 +1,60 @@
|
||||||
**/*.svg
|
# Prettierignore for LobeHub
|
||||||
.umi
|
################################################################
|
||||||
.umi-production
|
|
||||||
/dist
|
# general
|
||||||
.dockerignore
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.eslintignore
|
|
||||||
*.png
|
|
||||||
*.jpg
|
|
||||||
*.webp
|
|
||||||
*.toml
|
|
||||||
*.py
|
|
||||||
docker
|
|
||||||
.editorconfig
|
.editorconfig
|
||||||
Dockerfile*
|
|
||||||
.gitignore
|
|
||||||
.prettierignore
|
|
||||||
LICENSE
|
|
||||||
.eslintcache
|
|
||||||
*.lock
|
|
||||||
yarn-error.log
|
|
||||||
.idea
|
.idea
|
||||||
|
.vscode
|
||||||
|
.history
|
||||||
|
.temp
|
||||||
|
.env.local
|
||||||
.husky
|
.husky
|
||||||
.npmrc
|
.npmrc
|
||||||
.env
|
venv
|
||||||
.env.local
|
temp
|
||||||
|
tmp
|
||||||
|
LICENSE
|
||||||
|
|
||||||
|
# dependencies
|
||||||
|
node_modules
|
||||||
|
*.log
|
||||||
|
*.lock
|
||||||
|
package-lock.json
|
||||||
|
|
||||||
|
# ci
|
||||||
|
.coverage
|
||||||
|
.eslintcache
|
||||||
|
.stylelintcache
|
||||||
|
test-output
|
||||||
|
|
||||||
|
# production
|
||||||
|
dist
|
||||||
|
es
|
||||||
|
lib
|
||||||
|
logs
|
||||||
|
|
||||||
|
# umi
|
||||||
|
.umi
|
||||||
|
.umi-production
|
||||||
|
.umi-test
|
||||||
|
.dumi/tmp*
|
||||||
|
|
||||||
|
# ignore files
|
||||||
|
.*ignore
|
||||||
|
|
||||||
|
# docker
|
||||||
|
docker
|
||||||
|
Dockerfile*
|
||||||
|
|
||||||
|
# image
|
||||||
|
*.webp
|
||||||
|
*.gif
|
||||||
|
*.png
|
||||||
|
*.jpg
|
||||||
|
|
||||||
|
# misc
|
||||||
|
# add other ignore file below
|
||||||
style.css
|
style.css
|
||||||
javascript/
|
javascript/
|
||||||
.stylelintignore
|
.stylelintignore
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
module.exports = require('@lobehub/lint/dist/prettier');
|
module.exports = require('@lobehub/lint').prettier;
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
module.exports = require('@lobehub/lint/dist/remarklint');
|
module.exports = require('@lobehub/lint').remarklint;
|
||||||
|
|
|
||||||
|
|
@ -1,2 +1 @@
|
||||||
style.css
|
style.css
|
||||||
/dist
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
extends: require.resolve('@lobehub/lint/dist/stylelint'),
|
...require('@lobehub/lint').stylelint,
|
||||||
rules: {
|
rules: {
|
||||||
'selector-class-pattern': null,
|
'selector-class-pattern': null,
|
||||||
'selector-id-pattern': null,
|
'selector-id-pattern': null,
|
||||||
|
|
|
||||||
870
CHANGELOG.md
870
CHANGELOG.md
|
|
@ -1,170 +1,858 @@
|
||||||
|
<a name="readme-top"></a>
|
||||||
|
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## [1.8.3](https://github.com/canisminor1990/sd-webui-kitchen-theme/compare/v1.8.2...v1.8.3) (2023-05-30)
|
### Version 1.8.3
|
||||||
|
|
||||||
## [1.8.2](https://github.com/canisminor1990/sd-webui-kitchen-theme/compare/v1.8.1...v1.8.2) (2023-05-30)
|
<sup>Released on **2023-05-30**</sup>
|
||||||
|
|
||||||
## [1.8.1](https://github.com/canisminor1990/sd-webui-kitchen-theme/compare/v1.8.0...v1.8.1) (2023-05-19)
|
#### 💄 Styles
|
||||||
|
|
||||||
### 🐛 Bug Fixes
|
- **misc**: Add remarkrc.js.
|
||||||
|
|
||||||
- **style**: header render ([35125b4](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/35125b4))
|
<br/>
|
||||||
|
|
||||||
# [1.8.0](https://github.com/canisminor1990/sd-webui-kitchen-theme/compare/v1.7.1...v1.8.0) (2023-05-19)
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
### ✨ Features
|
#### Styles
|
||||||
|
|
||||||
- **header**: better navbar ([37e2230](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/37e2230))
|
- **misc**: Add remarkrc.js ([32c7be2](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/32c7be2))
|
||||||
|
|
||||||
## [1.7.1](https://github.com/canisminor1990/sd-webui-kitchen-theme/compare/v1.7.0...v1.7.1) (2023-05-19)
|
</details>
|
||||||
|
|
||||||
### 🐛 Bug Fixes
|
<div align="right">
|
||||||
|
|
||||||
- **extranetworks**: card mode display ([1b3376e](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/1b3376e))
|
[](#readme-top)
|
||||||
|
|
||||||
# [1.7.0](https://github.com/canisminor1990/sd-webui-kitchen-theme/compare/v1.6.3...v1.7.0) (2023-04-26)
|
</div>
|
||||||
|
|
||||||
### ✨ Features
|
### Version 1.8.2
|
||||||
|
|
||||||
- add giscus feedback ([42c7590](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/42c7590))
|
<sup>Released on **2023-05-30**</sup>
|
||||||
|
|
||||||
### 🐛 Bug Fixes
|
#### 💄 Styles
|
||||||
|
|
||||||
- ci ([ed2401d](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/ed2401d))
|
- **misc**: Update ESLint configuration and add Prettier configuration.
|
||||||
- firefox scroll ([87e774d](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/87e774d))
|
|
||||||
- setting reset button ([2a0f468](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/2a0f468))
|
|
||||||
|
|
||||||
## [1.6.3](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/compare/v1.6.2...v1.6.3) (2023-04-23)
|
<br/>
|
||||||
|
|
||||||
### 🐛 Bug Fixes
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
- gradioApp append ([4751e78](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/4751e78))
|
#### Styles
|
||||||
|
|
||||||
## [1.6.2](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/compare/v1.6.1...v1.6.2) (2023-04-22)
|
- **misc**: Update ESLint configuration and add Prettier configuration ([fefad8c](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/fefad8c))
|
||||||
|
|
||||||
### 🐛 Bug Fixes
|
</details>
|
||||||
|
|
||||||
- setting crash ([4f1a030](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/4f1a030)), closes [#46](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/issues/46)
|
<div align="right">
|
||||||
- try to fix header bug ([afdbe53](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/afdbe53)), closes [#46](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/issues/46)
|
|
||||||
|
|
||||||
## [1.6.1](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/compare/v1.6.0...v1.6.1) (2023-04-22)
|
[](#readme-top)
|
||||||
|
|
||||||
### 🐛 Bug Fixes
|
</div>
|
||||||
|
|
||||||
- fix typo ([9faf33e](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/9faf33e))
|
### Version 1.8.1
|
||||||
|
|
||||||
# [1.6.0](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/compare/v1.5.2...v1.6.0) (2023-04-22)
|
<sup>Released on **2023-05-19**</sup>
|
||||||
|
|
||||||
### ✨ Features
|
#### 🐛 Bug Fixes
|
||||||
|
|
||||||
- add setting panel ([f2beaaa](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/f2beaaa)), closes [#44](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/issues/44)
|
- **style**: Header render.
|
||||||
|
|
||||||
## [1.5.2](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/compare/v1.5.1...v1.5.2) (2023-04-22)
|
<br/>
|
||||||
|
|
||||||
## [1.5.1](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/compare/v1.5.0...v1.5.1) (2023-04-22)
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
# [1.5.0](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/compare/v1.4.7...v1.5.0) (2023-04-22)
|
#### What's fixed
|
||||||
|
|
||||||
### ✨ Features
|
- **style**: Header render ([35125b4](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/35125b4))
|
||||||
|
|
||||||
- add extra network sidebar ([b6dc1f4](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/b6dc1f4))
|
</details>
|
||||||
|
|
||||||
## [1.4.7](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/compare/v1.4.6...v1.4.7) (2023-04-22)
|
<div align="right">
|
||||||
|
|
||||||
## [1.4.6](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/compare/v1.4.5...v1.4.6) (2023-04-22)
|
[](#readme-top)
|
||||||
|
|
||||||
## [1.4.5](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/compare/v1.4.4...v1.4.5) (2023-04-22)
|
</div>
|
||||||
|
|
||||||
### 🐛 Bug Fixes
|
## Version 1.8.0
|
||||||
|
|
||||||
- Bug Croped outpaint extention fiexed ([ee2765d](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/ee2765d)), closes [#41](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/issues/41)
|
<sup>Released on **2023-05-19**</sup>
|
||||||
- Bug Croped outpaint extention fixed ([157bd50](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/157bd50)), closes [#41](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/issues/41)
|
|
||||||
|
|
||||||
## [1.4.4](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/compare/v1.4.3...v1.4.4) (2023-04-21)
|
#### ✨ Features
|
||||||
|
|
||||||
## [1.4.3](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/compare/v1.4.2...v1.4.3) (2023-04-21)
|
- **header**: Better navbar.
|
||||||
|
|
||||||
## [1.4.2](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/compare/v1.4.1...v1.4.2) (2023-04-21)
|
<br/>
|
||||||
|
|
||||||
### 🐛 Bug Fixes
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
- init theme error ([edaa043](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/edaa043))
|
#### What's improved
|
||||||
|
|
||||||
## [1.4.1](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/compare/v1.4.0...v1.4.1) (2023-04-21)
|
- **header**: Better navbar ([37e2230](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/37e2230))
|
||||||
|
|
||||||
### 🐛 Bug Fixes
|
</details>
|
||||||
|
|
||||||
- dragpanel auto hide in mobile view, fixed ([a7e5d47](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/a7e5d47)), closes [#35](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/issues/35)
|
<div align="right">
|
||||||
|
|
||||||
# [1.4.0](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/compare/v1.3.2...v1.4.0) (2023-04-21)
|
[](#readme-top)
|
||||||
|
|
||||||
### ✨ Features
|
</div>
|
||||||
|
|
||||||
- add suggestions to prompt editor ([bebebe4](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/bebebe4))
|
### Version 1.7.1
|
||||||
|
|
||||||
## [1.3.2](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/compare/v1.3.1...v1.3.2) (2023-04-21)
|
<sup>Released on **2023-05-19**</sup>
|
||||||
|
|
||||||
### 🐛 Bug Fixes
|
#### 🐛 Bug Fixes
|
||||||
|
|
||||||
- sidebar height ([74a4d2c](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/74a4d2c))
|
- **extranetworks**: Card mode display.
|
||||||
|
|
||||||
## [1.3.1](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/compare/v1.3.0...v1.3.1) (2023-04-21)
|
<br/>
|
||||||
|
|
||||||
### 🐛 Bug Fixes
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
- send func, tags lost ([0be6f28](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/0be6f28))
|
#### What's fixed
|
||||||
|
|
||||||
# [1.3.0](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/compare/v1.2.2...v1.3.0) (2023-04-20)
|
- **extranetworks**: Card mode display ([1b3376e](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/1b3376e))
|
||||||
|
|
||||||
### ✨ Features
|
</details>
|
||||||
|
|
||||||
- add prompt editor ([1428cc1](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/1428cc1))
|
<div align="right">
|
||||||
|
|
||||||
## [1.2.2](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/compare/v1.2.1...v1.2.2) (2023-04-20)
|
[](#readme-top)
|
||||||
|
|
||||||
## [1.2.1](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/compare/v1.2.0...v1.2.1) (2023-04-20)
|
</div>
|
||||||
|
|
||||||
# [1.2.0](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/compare/v1.1.2...v1.2.0) (2023-04-20)
|
## Version 1.7.0
|
||||||
|
|
||||||
### ✨ Features
|
<sup>Released on **2023-04-26**</sup>
|
||||||
|
|
||||||
- add react layout ([b1b6263](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/b1b6263))
|
#### ✨ Features
|
||||||
|
|
||||||
### 🐛 Bug Fixes
|
- **misc**: Add giscus feedback.
|
||||||
|
|
||||||
- build ([c84f2cb](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/c84f2cb))
|
#### 🐛 Bug Fixes
|
||||||
|
|
||||||
## [1.1.2](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/compare/v1.1.1...v1.1.2) (2023-04-18)
|
- **misc**: Ci, firefox scroll fixed \[47], setting reset button.
|
||||||
|
|
||||||
## [1.1.1](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/compare/v1.1.0...v1.1.1) (2023-04-14)
|
<br/>
|
||||||
|
|
||||||
### 🐛 Bug Fixes
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
- scrollbar ([2dce630](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/2dce630))
|
#### What's improved
|
||||||
|
|
||||||
# [1.1.0](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/compare/v1.0.1...v1.1.0) (2023-04-14)
|
- **misc**: Add giscus feedback ([42c7590](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/42c7590))
|
||||||
|
|
||||||
### ✨ Features
|
#### What's fixed
|
||||||
|
|
||||||
- support light/dark mode ([135f4fc](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/135f4fc))
|
- **misc**: Ci ([ed2401d](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/ed2401d))
|
||||||
|
- **misc**: Firefox scroll fixed \[47] ([87e774d](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/87e774d))
|
||||||
|
- **misc**: Setting reset button ([2a0f468](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/2a0f468))
|
||||||
|
|
||||||
## [1.0.1](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/compare/v1.0.0...v1.0.1) (2023-04-10)
|
</details>
|
||||||
|
|
||||||
# 1.0.0 (2023-04-08)
|
<div align="right">
|
||||||
|
|
||||||
### ✨ Features
|
[](#readme-top)
|
||||||
|
|
||||||
- add antd token support ([6c71223](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/6c71223))
|
</div>
|
||||||
- **break-change**: full support gradio-3.23.0 ([0fb84da](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/0fb84da))
|
|
||||||
- **break-change**: full support gradio-3.23.0 ([e47578c](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/e47578c))
|
|
||||||
- update style ([9509e3d](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/9509e3d))
|
|
||||||
|
|
||||||
### 🐛 Bug Fixes
|
### Version 1.6.3
|
||||||
|
|
||||||
- ci ([c850bf1](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/c850bf1))
|
<sup>Released on **2023-04-23**</sup>
|
||||||
- ci ([87b56f2](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/87b56f2))
|
|
||||||
- ci ([bb22f1b](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/bb22f1b))
|
#### 🐛 Bug Fixes
|
||||||
- style ([1e4f99a](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/1e4f99a))
|
|
||||||
- style ([f237f16](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/f237f16))
|
- **misc**: GradioApp append.
|
||||||
- style ([56df1ae](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/56df1ae))
|
|
||||||
- style ([30e2b7b](https://github.com/canisminor1990/sd-web-ui-kitchen-theme/commit/30e2b7b))
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### What's fixed
|
||||||
|
|
||||||
|
- **misc**: GradioApp append ([4751e78](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/4751e78))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
### Version 1.6.2
|
||||||
|
|
||||||
|
<sup>Released on **2023-04-22**</sup>
|
||||||
|
|
||||||
|
#### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- **misc**: Setting crash, try to fix header bug.
|
||||||
|
|
||||||
|
#### 💄 Styles
|
||||||
|
|
||||||
|
- **misc**: Format of the code.
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### What's fixed
|
||||||
|
|
||||||
|
- **misc**: Setting crash, closes [#46](https://github.com/canisminor1990/sd-webui-kitchen-theme/issues/46) ([4f1a030](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/4f1a030))
|
||||||
|
- **misc**: Try to fix header bug, closes [#46](https://github.com/canisminor1990/sd-webui-kitchen-theme/issues/46) ([afdbe53](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/afdbe53))
|
||||||
|
|
||||||
|
#### Styles
|
||||||
|
|
||||||
|
- **misc**: Format of the code ([f6b11ae](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/f6b11ae))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
### Version 1.6.1
|
||||||
|
|
||||||
|
<sup>Released on **2023-04-22**</sup>
|
||||||
|
|
||||||
|
#### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- **misc**: Fix typo.
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### What's fixed
|
||||||
|
|
||||||
|
- **misc**: Fix typo ([9faf33e](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/9faf33e))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
## Version 1.6.0
|
||||||
|
|
||||||
|
<sup>Released on **2023-04-22**</sup>
|
||||||
|
|
||||||
|
#### ✨ Features
|
||||||
|
|
||||||
|
- **misc**: Add setting panel.
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### What's improved
|
||||||
|
|
||||||
|
- **misc**: Add setting panel, closes [#44](https://github.com/canisminor1990/sd-webui-kitchen-theme/issues/44) ([f2beaaa](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/f2beaaa))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
### Version 1.5.2
|
||||||
|
|
||||||
|
<sup>Released on **2023-04-22**</sup>
|
||||||
|
|
||||||
|
#### 💄 Styles
|
||||||
|
|
||||||
|
- **misc**: Update tags style.
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### Styles
|
||||||
|
|
||||||
|
- **misc**: Update tags style ([5f6185c](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/5f6185c))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
### Version 1.5.1
|
||||||
|
|
||||||
|
<sup>Released on **2023-04-22**</sup>
|
||||||
|
|
||||||
|
#### 💄 Styles
|
||||||
|
|
||||||
|
- **misc**: Fix sidebar style.
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### Styles
|
||||||
|
|
||||||
|
- **misc**: Fix sidebar style ([8738409](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/8738409))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
## Version 1.5.0
|
||||||
|
|
||||||
|
<sup>Released on **2023-04-22**</sup>
|
||||||
|
|
||||||
|
#### ✨ Features
|
||||||
|
|
||||||
|
- **misc**: Add extra network sidebar.
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### What's improved
|
||||||
|
|
||||||
|
- **misc**: Add extra network sidebar ([b6dc1f4](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/b6dc1f4))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
### Version 1.4.7
|
||||||
|
|
||||||
|
<sup>Released on **2023-04-22**</sup>
|
||||||
|
|
||||||
|
#### 💄 Styles
|
||||||
|
|
||||||
|
- **misc**: Better tool button.
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### Styles
|
||||||
|
|
||||||
|
- **misc**: Better tool button ([096acaf](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/096acaf))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
### Version 1.4.6
|
||||||
|
|
||||||
|
<sup>Released on **2023-04-22**</sup>
|
||||||
|
|
||||||
|
#### 💄 Styles
|
||||||
|
|
||||||
|
- **misc**: Fix tabs padding.
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### Styles
|
||||||
|
|
||||||
|
- **misc**: Fix tabs padding ([598ba55](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/598ba55))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
### Version 1.4.5
|
||||||
|
|
||||||
|
<sup>Released on **2023-04-22**</sup>
|
||||||
|
|
||||||
|
#### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- **misc**: Bug Croped outpaint extention fiexed, Bug Croped outpaint extention fixed.
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### What's fixed
|
||||||
|
|
||||||
|
- **misc**: Bug Croped outpaint extention fiexed, closes [#41](https://github.com/canisminor1990/sd-webui-kitchen-theme/issues/41) ([ee2765d](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/ee2765d))
|
||||||
|
- **misc**: Bug Croped outpaint extention fixed, closes [#41](https://github.com/canisminor1990/sd-webui-kitchen-theme/issues/41) ([157bd50](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/157bd50))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
### Version 1.4.4
|
||||||
|
|
||||||
|
<sup>Released on **2023-04-21**</sup>
|
||||||
|
|
||||||
|
#### 💄 Styles
|
||||||
|
|
||||||
|
- **misc**: Better block style.
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### Styles
|
||||||
|
|
||||||
|
- **misc**: Better block style ([c428e6e](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/c428e6e))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
### Version 1.4.3
|
||||||
|
|
||||||
|
<sup>Released on **2023-04-21**</sup>
|
||||||
|
|
||||||
|
#### 💄 Styles
|
||||||
|
|
||||||
|
- **misc**: Fix code format.
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### Styles
|
||||||
|
|
||||||
|
- **misc**: Fix code format ([560a768](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/560a768))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
### Version 1.4.2
|
||||||
|
|
||||||
|
<sup>Released on **2023-04-21**</sup>
|
||||||
|
|
||||||
|
#### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- **misc**: Init theme error.
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### What's fixed
|
||||||
|
|
||||||
|
- **misc**: Init theme error ([edaa043](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/edaa043))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
### Version 1.4.1
|
||||||
|
|
||||||
|
<sup>Released on **2023-04-21**</sup>
|
||||||
|
|
||||||
|
#### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- **misc**: Dragpanel auto hide in mobile view, fixed.
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### What's fixed
|
||||||
|
|
||||||
|
- **misc**: Dragpanel auto hide in mobile view, fixed, closes [#35](https://github.com/canisminor1990/sd-webui-kitchen-theme/issues/35) ([a7e5d47](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/a7e5d47))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
## Version 1.4.0
|
||||||
|
|
||||||
|
<sup>Released on **2023-04-21**</sup>
|
||||||
|
|
||||||
|
#### ✨ Features
|
||||||
|
|
||||||
|
- **misc**: Add suggestions to prompt editor.
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### What's improved
|
||||||
|
|
||||||
|
- **misc**: Add suggestions to prompt editor ([bebebe4](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/bebebe4))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
### Version 1.3.2
|
||||||
|
|
||||||
|
<sup>Released on **2023-04-21**</sup>
|
||||||
|
|
||||||
|
#### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- **misc**: Sidebar height.
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### What's fixed
|
||||||
|
|
||||||
|
- **misc**: Sidebar height ([74a4d2c](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/74a4d2c))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
### Version 1.3.1
|
||||||
|
|
||||||
|
<sup>Released on **2023-04-21**</sup>
|
||||||
|
|
||||||
|
#### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- **misc**: Send func, tags lost.
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### What's fixed
|
||||||
|
|
||||||
|
- **misc**: Send func, tags lost ([0be6f28](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/0be6f28))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
## Version 1.3.0
|
||||||
|
|
||||||
|
<sup>Released on **2023-04-20**</sup>
|
||||||
|
|
||||||
|
#### ✨ Features
|
||||||
|
|
||||||
|
- **misc**: Add prompt editor.
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### What's improved
|
||||||
|
|
||||||
|
- **misc**: Add prompt editor ([1428cc1](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/1428cc1))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
### Version 1.2.2
|
||||||
|
|
||||||
|
<sup>Released on **2023-04-20**</sup>
|
||||||
|
|
||||||
|
#### 💄 Styles
|
||||||
|
|
||||||
|
- **misc**: Update sidebar.
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### Styles
|
||||||
|
|
||||||
|
- **misc**: Update sidebar ([25665df](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/25665df))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
### Version 1.2.1
|
||||||
|
|
||||||
|
<sup>Released on **2023-04-20**</sup>
|
||||||
|
|
||||||
|
#### 💄 Styles
|
||||||
|
|
||||||
|
- **misc**: Update layout style.
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### Styles
|
||||||
|
|
||||||
|
- **misc**: Update layout style ([09f69da](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/09f69da))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
## Version 1.2.0
|
||||||
|
|
||||||
|
<sup>Released on **2023-04-20**</sup>
|
||||||
|
|
||||||
|
#### ✨ Features
|
||||||
|
|
||||||
|
- **misc**: Add react layout.
|
||||||
|
|
||||||
|
#### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- **misc**: Build.
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### What's improved
|
||||||
|
|
||||||
|
- **misc**: Add react layout ([b1b6263](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/b1b6263))
|
||||||
|
|
||||||
|
#### What's fixed
|
||||||
|
|
||||||
|
- **misc**: Build ([c84f2cb](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/c84f2cb))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
### Version 1.1.2
|
||||||
|
|
||||||
|
<sup>Released on **2023-04-18**</sup>
|
||||||
|
|
||||||
|
#### 💄 Styles
|
||||||
|
|
||||||
|
- **misc**: Update types.
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### Styles
|
||||||
|
|
||||||
|
- **misc**: Update types ([1830004](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/1830004))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
### Version 1.1.1
|
||||||
|
|
||||||
|
<sup>Released on **2023-04-14**</sup>
|
||||||
|
|
||||||
|
#### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- **misc**: Scrollbar.
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### What's fixed
|
||||||
|
|
||||||
|
- **misc**: Scrollbar ([2dce630](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/2dce630))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
## Version 1.1.0
|
||||||
|
|
||||||
|
<sup>Released on **2023-04-14**</sup>
|
||||||
|
|
||||||
|
#### ✨ Features
|
||||||
|
|
||||||
|
- **misc**: Support light/dark mode.
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### What's improved
|
||||||
|
|
||||||
|
- **misc**: Support light/dark mode ([135f4fc](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/135f4fc))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
### Version 1.0.1
|
||||||
|
|
||||||
|
<sup>Released on **2023-04-10**</sup>
|
||||||
|
|
||||||
|
#### 💄 Styles
|
||||||
|
|
||||||
|
- **misc**: Support mobile view.
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### Styles
|
||||||
|
|
||||||
|
- **misc**: Support mobile view ([38cb555](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/38cb555))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
## Version 1.0.0
|
||||||
|
|
||||||
|
<sup>Released on **2023-04-08**</sup>
|
||||||
|
|
||||||
|
#### ✨ Features
|
||||||
|
|
||||||
|
- **break-change**: Full support gradio-3.23.0, full support gradio-3.23.0.
|
||||||
|
- **misc**: Add antd token support, update style.
|
||||||
|
|
||||||
|
#### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- **misc**: Ci, ci, ci, style, style, style, style.
|
||||||
|
|
||||||
|
#### 💄 Styles
|
||||||
|
|
||||||
|
- **misc**: Add stylelint, update button/scroll/draopdown style and fix some bug.
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><kbd>Improvements and Fixes</kbd></summary>
|
||||||
|
|
||||||
|
#### What's improved
|
||||||
|
|
||||||
|
- **break-change**: Full support gradio-3.23.0 ([0fb84da](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/0fb84da))
|
||||||
|
- **break-change**: Full support gradio-3.23.0 ([e47578c](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/e47578c))
|
||||||
|
- **misc**: Add antd token support ([6c71223](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/6c71223))
|
||||||
|
- **misc**: Update style ([9509e3d](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/9509e3d))
|
||||||
|
|
||||||
|
#### What's fixed
|
||||||
|
|
||||||
|
- **misc**: Ci ([c850bf1](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/c850bf1))
|
||||||
|
- **misc**: Ci ([87b56f2](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/87b56f2))
|
||||||
|
- **misc**: Ci ([bb22f1b](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/bb22f1b))
|
||||||
|
- **misc**: Style ([1e4f99a](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/1e4f99a))
|
||||||
|
- **misc**: Style ([f237f16](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/f237f16))
|
||||||
|
- **misc**: Style ([56df1ae](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/56df1ae))
|
||||||
|
- **misc**: Style ([30e2b7b](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/30e2b7b))
|
||||||
|
|
||||||
|
#### Styles
|
||||||
|
|
||||||
|
- **misc**: Add stylelint ([d7b0b0a](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/d7b0b0a))
|
||||||
|
- **misc**: Update button/scroll/draopdown style and fix some bug ([71a8728](https://github.com/canisminor1990/sd-webui-kitchen-theme/commit/71a8728))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
|
||||||
|
[](#readme-top)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -33,6 +33,7 @@ const View = styled.div<{ type: PromptType }>`
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
display: block;
|
display: block;
|
||||||
|
|
||||||
width: var(--fill-available);
|
width: var(--fill-available);
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: var(--input-padding);
|
padding: var(--input-padding);
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@
|
||||||
|
|
||||||
span.svelte-1gfkn6j:not(.has-info) {
|
span.svelte-1gfkn6j:not(.has-info) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
width: var(--fill-available);
|
width: var(--fill-available);
|
||||||
margin-right: 12px;
|
margin-right: 12px;
|
||||||
margin-bottom: var(--spacing-lg);
|
margin-bottom: var(--spacing-lg);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue