- [jss-plugin-expand] Fix attributes spread for
border-bottom,border-top,border-leftandborder-right(#1083) - [jss-plugin-props-sort] Fix sorting in Node 11 (#1085)
- [jss] Fix escaping keyframes names (#1100)
- [jss-plugin-template] Add nesting support (#1103)
- [jss-plugin-camel-case] Fix some IE 11 regression (#1065)
- [jss-vendor-prefixer] Fix value prefixing, in particular
position: sticky(#1068)
- [jss] Add support for multiple referenced keyframes (#1063)
- [jss] Fix SSR aggregation regression (#1064)
- [react-jss] Replace spaces inside the display name with hyphens (#1049)
- [jss] Remove VirtualRenderer and the option
virtual: true. Now to simulate a non-browser environment, passcreate({Renderer: null})when creating a Jss instance. - [react-jss] Add dynamic rules to the static sheet (#1048)
- [jss] Fix using function values with scoped keyframes (#1043)
- [jss] Fix removing styles from function rules (#1046)
- [jss] Fix dynamic values inside of @global plugin (#664)
- [all] All packages except of react-jss can now be used as ESM modules directly from unpkg.com (1029)
- [jss] Improve TS typings (#973)
- [jss] Simplify cloneStyle function (#1003)
- [jss] Use WeakMap inside SheetsManager (#1019)
- [internal] Improve publish script for creating github release (#999)
- [react-jss] Warn about themed styles misuse (#1006)
- [jss-starter-kit] Fix react-jss exports and add missing jss exports (#1001)
- [jss-plugin-camel-case] Fix hyphenating css variables (#1017)
- [all] Move jss dependencies to normal dependencies instead of peer and dev dependencies (#993)
- [internal] Upgrade lerna (#992)
- [react-jss] Move @types/react to dev dependencies (#990)
- [react-jss] Upgrade theming package to v3.0.3 (#994)
- [docs] Fix demo links for jss-plugin-extend (#992)
- [internal] Add script for building readme for packages (#996)
- [all] Fix npm repo urls (#983)
- [jss] Declare ES classes as TypeScript classes instead of interfaces (#971)
- [all] Remove warning from production (#980)
- [react-jss] Move JssContext to new React Context, deprecate the
sheetOptionsprop on the JssProvider and support amediaprop (#924) - [react-jss] Remove inject option (#934)
- [react-jss] Extend classes instead of overwriting theme (#946)
- [react-jss] Add forwardRef support (#943)
- [react-jss] Upgrade to theming version 3 (#942)
- [jss] Fix IE 11 injection order
Republish of alpha 5 with properly building the code.
- [jss] Fix warning dependency
- [all] Fix peer dependencies warnings (#957)
- [all] Use smaller version of the warning package (#953)
- [all] Improve documentation (#958)
- [internal] Upgrade lerna (#962)
- [all] Fix building packages
- [internal] Fix changelog.md
- [jss] Fix class name white space escaping in dev mode (938)
- [jss] Fix multiple cases where linking CSS rules didn't work (#815, #710, #664)
- [jss] Fix sheet ordering when the last sheet was the last sibling in the head element (#819)
- [jss-plugin-syntax-nested] Fix referencing rules inside media queries (#900)
- [jss-plugin-syntax-global] Fix TypeError: Cannot read property '@global' of undefined (#905)
- [jss-starter-kit] Introduce
jss-starter-kit.bundle.js, which packages all the other libraries into one import for playgrounds like Codepen. (#936) - [jss] Add support for Typed CSSOM values (#882)
- [jss] Function values and function rules support now fallbacks, media queries, nesting, global styles (#682)
- [react-jss] Remove old lifecycle hooks (#834)
- [react-jss] Add flow types (#818)
- [all] Migrate to a monorepo using yarn workspaces and lerna (#729)
- [all] Add TypeScript definitions to all packages (#889)
- [jss] Observables, function values and rules are now standalone packages, not part of the core. They are still part of the default preset though.
- [jss] Function values, rules and observables apply plugins by default now, which means they can support all plugin defined syntaxes, but they are also slower by default. To speed them up use
sheet.update(data, {process: false})for fn values/rules andjss.use(pluginObservable({process: false}))when setting up observables plugin. (#682) - [jss] Rule @keyframes has now scoped name by default, which means that you can access it using
$reffrom the same sheet and generate global one as before using@globalrule (#346). - [jss] Add scoped keyframes support (#346)
- [jss|react-jss] Options
createGenerateClassNameandgenerateClassNameare renamed tocreateGenerateIdandgenerateIdbecause the same function is now used to scope @keyframes rules. - [react-jss] Drop support for older React versions, require v16.3 or higher (#868, #851)