-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature: - added clearable default setting - added state handling to UIFile - added UIFileInput component - added input types to UIInput and moved some attributes to props for clarity - added library version constant Fix: - fixed button focus - improved fade transition customisability - styling improvements - added missing transition to input Refactor: - use library as plugin in demo board - removed autofocus - renamed icon - config changes - removed unnecessary css classes - moved shim files
- Loading branch information
Showing
79 changed files
with
13,573 additions
and
9,558 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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/** | ||
* @type {import('@commitlint/types').UserConfig} | ||
*/ | ||
module.exports = { | ||
extends: ['@commitlint/config-conventional'], | ||
|
||
rules: { | ||
'scope-enum': [ | ||
2, | ||
'always', | ||
[ | ||
// add scopes as required | ||
'avatar', | ||
'badge', | ||
'button', | ||
'button-group', | ||
'button-toggle', | ||
'checkbox', | ||
'dropdown', | ||
'file-input', | ||
'file-uploader', | ||
'input', | ||
'loader-linear', | ||
'loader-spinner', | ||
'modal', | ||
'panel', | ||
'pill', | ||
'radio', | ||
'range-slider', | ||
'select', | ||
'table', | ||
'textarea', | ||
'toggle', | ||
'transitions', | ||
'tooltip', | ||
'outer-html', | ||
'click-away', | ||
'intersect', | ||
'deps', | ||
'dev-deps' | ||
] | ||
], | ||
} | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Lint Commit Messages | ||
on: [pull_request] | ||
|
||
jobs: | ||
commitlint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- uses: wagoid/commitlint-github-action@v3 | ||
with: | ||
configFile: .commitlintrc.js |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npx --no-install commitlint --edit $1 |
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.