-
-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ feat(icon): add Icon spin prop and ActionIcon loading state
- Loading branch information
1 parent
60fcc75
commit 9adcda4
Showing
12 changed files
with
192 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
module.exports = require('@lobehub/lint/dist/commitlint'); | ||
module.exports = require('@lobehub/lint/dist/changelog'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,28 @@ | ||
/lambda/mock/** | ||
/scripts | ||
/config | ||
/example | ||
# Eslintignore for LobeHub | ||
################################################################ | ||
|
||
# dependencies | ||
node_modules | ||
|
||
# ci | ||
.coverage | ||
|
||
# test | ||
jest* | ||
_test_ | ||
__test__ | ||
|
||
/node_modules | ||
**/node_modules | ||
# umi | ||
.umi | ||
.umi-production | ||
.umi-test | ||
.dumi/tmp* | ||
|
||
jest* | ||
/es | ||
/lib | ||
/docs | ||
/dist | ||
**/dist | ||
# production | ||
dist | ||
es | ||
lib | ||
logs | ||
|
||
# misc | ||
# add other ignore file below |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,43 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
# Gitignore for LobeHub | ||
################################################################ | ||
|
||
# dependencies | ||
**/node_modules | ||
# roadhog-api-doc ignore | ||
/src/utils/request-temp.js | ||
_roadhog-api-doc | ||
|
||
# production | ||
**/dist | ||
/.vscode | ||
/es | ||
/lib | ||
|
||
# misc | ||
# general | ||
.DS_Store | ||
storybook-static | ||
npm-debug.log* | ||
yarn-error.log | ||
|
||
/coverage | ||
.idea | ||
package-lock.json | ||
*bak | ||
.vscode | ||
|
||
# visual studio code | ||
.history | ||
.temp | ||
.env.local | ||
venv | ||
temp | ||
tmp | ||
|
||
# dependencies | ||
node_modules | ||
*.log | ||
functions/* | ||
lambda/mock/index.js | ||
.temp/** | ||
*.lock | ||
package-lock.json | ||
|
||
# ci | ||
.coverage | ||
.eslintcache | ||
.stylelintcache | ||
|
||
# production | ||
dist | ||
es | ||
lib | ||
logs | ||
test-output | ||
|
||
# umi | ||
.umi | ||
.umi-production | ||
.umi-test | ||
.dumi/tmp* | ||
|
||
# screenshot | ||
screenshot | ||
.firebase | ||
example/.temp/* | ||
.eslintcache | ||
techUI* | ||
# husky | ||
.husky/prepare-commit-msg | ||
server | ||
|
||
# misc | ||
# add other ignore file below |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
lockfile=false | ||
resolution-mode=highest | ||
public-hoist-pattern[]=*@umijs/lint* | ||
public-hoist-pattern[]=*remark* | ||
public-hoist-pattern[]=*eslint* | ||
public-hoist-pattern[]=*stylelint* | ||
public-hoist-pattern[]=*prettier* | ||
public-hoist-pattern[]=*changelog* | ||
public-hoist-pattern[]=*commitlint* | ||
public-hoist-pattern[]=*eslint* | ||
public-hoist-pattern[]=*postcss* | ||
public-hoist-pattern[]=*semantic-release* | ||
public-hoist-pattern[]=*prettier* | ||
public-hoist-pattern[]=*remark* | ||
public-hoist-pattern[]=*semantic-release* | ||
public-hoist-pattern[]=*stylelint* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,57 @@ | ||
**/*.svg | ||
.umi | ||
.umi-production | ||
.idea | ||
.husky | ||
/dist | ||
.dockerignore | ||
# Prettierignore for LobeHub | ||
################################################################ | ||
|
||
# general | ||
.DS_Store | ||
.eslintignore | ||
*.png | ||
*.toml | ||
docker | ||
.editorconfig | ||
Dockerfile* | ||
.gitignore | ||
.prettierignore | ||
.idea | ||
.vscode | ||
.history | ||
.temp | ||
.env.local | ||
.husky | ||
.npmrc | ||
venv | ||
temp | ||
tmp | ||
LICENSE | ||
.eslintcache | ||
|
||
# dependencies | ||
node_modules | ||
*.log | ||
*.lock | ||
yarn-error.log | ||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,6 +37,7 @@ export default () => { | |
], | ||
}, | ||
spotlight: false, | ||
loading: false, | ||
}), | ||
}, | ||
{ store }, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
9adcda4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
lobe-ui – ./
lobe-ui-git-master-lobehub.vercel.app
lobe-ui-lobehub.vercel.app
lobe-ui.vercel.app
ui.lobehub.com