Browse Source

Rlsnotes

pull/1845/merge 1.9.1
jlukic 9 years ago
parent
commit
761daab891
1 changed files with 4 additions and 4 deletions
  1. 8
      RELEASE-NOTES.md

8
RELEASE-NOTES.md

@ -2,18 +2,18 @@
### Version 1.9.1 - February 18, 2015 ### Version 1.9.1 - February 18, 2015
**Changes**
**LESS Changes**
Importing individual components into other less files now requires scoping. This is to prevent issues with variable scope that cannot be resolved inside definitions.
Importing individual components into other less requires namespacing:
```less ```less
/* Import a specific component */ /* Import a specific component */
& { @import 'src/definitions/elements/button'; } & { @import 'src/definitions/elements/button'; }
``` ```
Importing `semantic.less` still does not require this
Importing `semantic.less` still does not require any special syntax
@import 'src/semantic'; @import 'src/semantic';
This is to prevent issues with variable scope that cannot be resolved inside definitions.
**Bugs** **Bugs**
- Fixed issue directly importing `semantic.less` caused by variable scoping in `.loadOverrides()`. - Fixed issue directly importing `semantic.less` caused by variable scoping in `.loadOverrides()`.

Loading…
Cancel
Save