Browse Source

Fixes #3858 issue with gulp rtl tasks

pull/3879/merge
Jack Lukic 8 years ago
parent
commit
7333ca8044
3 changed files with 8 additions and 6 deletions
  1. 2
      RELEASE-NOTES.md
  2. 6
      gulpfile.js
  3. 6
      tasks/config/npm/gulpfile.js

2
RELEASE-NOTES.md

@ -24,6 +24,8 @@
**Bugs** **Bugs**
- **API** - Using `onResponse` with `dataType` other than JSON or JSONP would cause an error. (Not allowing plain text responses to be translated) #3653 - **API** - Using `onResponse` with `dataType` other than JSON or JSONP would cause an error. (Not allowing plain text responses to be translated) #3653
- **Button** - `right icon` like `right arrow icon` would have additional margin inside an `icon button` #3525 - **Button** - `right icon` like `right arrow icon` would have additional margin inside an `icon button` #3525
- **Build Tools** - Fixed gulp help text incorrect for RTL tasks in build tools #3858
- **Button** - Fixed typo in `green inverted button` #3873
- **Button** - Fixed issue where `disabled loading button` would not remove `pointer-events` #2933 - **Button** - Fixed issue where `disabled loading button` would not remove `pointer-events` #2933
- **Checkbox** - Radio buttons received `indeterminate` styles when user has not yet interacted with the page in Chrome - **Checkbox** - Radio buttons received `indeterminate` styles when user has not yet interacted with the page in Chrome
- **Dropdown** - `apiSettings` was not defaulting to use `cache: 'local'` as specified in the docs - **Dropdown** - `apiSettings` was not defaulting to use `cache: 'local'` as specified in the docs

6
gulpfile.js

@ -74,11 +74,11 @@ gulp.task('build-docs', 'Build all files and add to SUI Docs', buildDocs);
---------------*/ ---------------*/
if(config.rtl) { if(config.rtl) {
gulp.task('watch-rtl', 'Build all files as RTL', watchRTL);
gulp.task('build-rtl', 'Watch files as RTL ', buildRTL);
gulp.task('watch-rtl', 'Watch files as RTL', watchRTL);
gulp.task('build-rtl', 'Build all files as RTL', buildRTL);
} }
/* Admin Tasks */ /* Admin Tasks */
if(config.admin) { if(config.admin) {
require('./tasks/collections/admin')(gulp); require('./tasks/collections/admin')(gulp);
}
}

6
tasks/config/npm/gulpfile.js

@ -67,6 +67,6 @@ gulp.task('build-docs', 'Build all files and add to SUI Docs', buildDocs);
---------------*/ ---------------*/
if(config.rtl) { if(config.rtl) {
gulp.task('watch-rtl', 'Build all files as RTL', watchRTL);
gulp.task('build-rtl', 'Watch files as RTL ', buildRTL);
}
gulp.task('watch-rtl', 'Watch files as RTL', watchRTL);
gulp.task('build-rtl', 'Build all files as RTL', buildRTL);
}
Loading…
Cancel
Save