-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
253 changed files
with
5,570 additions
and
4,168 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,2 +1,3 @@ | ||
node_modules/ | ||
dist/ | ||
src/polyfills/ |
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ dist | |
|
||
# Local vs code settings | ||
.vscode/ | ||
.vs/ | ||
|
||
# Logs | ||
logs | ||
|
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 |
---|---|---|
|
@@ -3,3 +3,4 @@ dist/styles | |
*.md | ||
**/*.js | ||
**/*.snap.js | ||
src/less/core/normalize.less |
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,14 +1,48 @@ | ||
{ | ||
"extends": ["stylelint-config-standard"], | ||
"ignoreFiles": ["**/*.md", "**/*.js", "**/*.js.snap", "**/*.css"], | ||
"plugins": [ | ||
"stylelint-csstree-validator", | ||
"stylelint-declaration-block-no-ignored-properties" | ||
], | ||
"rules": { | ||
"indentation": 4, | ||
"selector-pseudo-element-colon-notation": "single", | ||
"no-descending-specificity": null, | ||
"at-rule-name-space-after": "always", | ||
"at-rule-no-unknown": null, | ||
"color-hex-case": [ "lower", { | ||
"message": "Lowercase letters are easier to distinguish from numbers" | ||
}], | ||
"color-named": "never", | ||
"csstree/validator": true, | ||
"declaration-block-semicolon-newline-after": "always-multi-line", | ||
"declaration-block-semicolon-newline-before": "never-multi-line", | ||
"declaration-block-semicolon-space-after": "always-single-line", | ||
"declaration-no-important": true, | ||
"color-hex-length": "long", | ||
"font-family-no-missing-generic-family-keyword": null, | ||
"font-family-name-quotes": "always-where-recommended", | ||
"indentation": 4, | ||
"length-zero-no-unit": true, | ||
"max-empty-lines": [2, { "ignore": ["comments"] }], | ||
"max-line-length": null, | ||
"media-feature-name-no-vendor-prefix": true, | ||
"media-feature-parentheses-space-inside": "never", | ||
"media-feature-range-operator-space-after": "always", | ||
"media-feature-range-operator-space-before": "never", | ||
"no-descending-specificity": null, | ||
"no-duplicate-selectors": true, | ||
"number-max-precision": 4, | ||
"plugin/declaration-block-no-ignored-properties": true, | ||
"selector-attribute-quotes": "always", | ||
"selector-list-comma-newline-after": "always", | ||
"selector-list-comma-newline-before": "never-multi-line", | ||
"selector-list-comma-space-after": "always-single-line", | ||
"selector-list-comma-space-before": "never-single-line", | ||
"selector-pseudo-element-colon-notation": "single", | ||
"string-quotes": "double", | ||
"font-family-no-missing-generic-family-keyword": null, | ||
"at-rule-no-unknown": null | ||
"unit-whitelist": ["%", "px", "rem", "vh", "vw", "s", "deg", "ch"], | ||
"value-keyword-case": "lower", | ||
"value-list-comma-newline-after": "never-multi-line", | ||
"value-list-comma-newline-before": "never-multi-line", | ||
"value-list-comma-space-after": "always" | ||
} | ||
} |
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,8 +1,33 @@ | ||
# Changelog | ||
|
||
## [0.11.1] - 2018-09-26 | ||
## [0.12.0] - 2018-10-10 | ||
|
||
### Added | ||
|
||
- Added class `.button-group`. | ||
- Added Step Bar component. | ||
- Added basic spacing utility classes with documentation section (spacing classes with breakpoints will be implemented later). | ||
|
||
### Changed | ||
|
||
- Updated readme with deploy/release procedure. | ||
- Reworked tabs. | ||
- Reworked form validation. | ||
- Removed `margin-bottom: 3px` from button component. | ||
- Adjusted spacing between status indicator and text in status component. | ||
|
||
### Fixed | ||
|
||
- Fixed issue with documentation page for toast crashing. | ||
- Fixed bug with topbar script crashing when topbar button does not contain an icon. | ||
- Fixed issue with item-list alignment. | ||
- Fixed issue with action list icon being visible through topbar. | ||
- Fixed an issue with topbar component where clicking anchor links does not close the open menu. | ||
- Fixed an issue with datepicker not displaying properly, or at all, when clicking on label. | ||
- Fixed an issue where alert close button got properties from the new `<a>` styling (blue border bottom). | ||
- Fixed a minor issue with toast not resetting its type, if called without a type after another toast with a type has already been called. | ||
- Fixed an issue with open tabs not closing on screen resize. | ||
- Fixed an issue with toast overlapping topbar. | ||
|
||
### Removed | ||
|
||
- Removed modal from designguide. | ||
- Removed styling for table within panel footer. |
Oops, something went wrong.