All Versions
49
Latest Version
Avg Release Cycle
36 days
Latest Release
-

Changelog History
Page 5

  • v10.0.0-alpha.18 Changes

    ๐Ÿ”‹ Features

    • ๐Ÿ’… [react-jss] New experimental styled API (undocumented intentionally)(#1094)
    • [react-jss] JSX pragma for css prop (undocumented intentionally)(#1130)
    • [css-jss] New experimental css() API (undocumented intentionally)(#1129)

    ๐Ÿ› Bug fixes

    • [jss] After attempting to insert an invalid rule, JSS is now able to insert a valid one (#1123)
    • [react-jss] Fix TS type optional theming property (#1121)
    • [react-jss] Export useTheme in TypeScript declaration (#1124)
  • v10.0.0-alpha.17 Changes

    ๐Ÿ”‹ Features

    • ๐Ÿšš [react-jss] New hooks based API is out. HOC based API is deprecated. It will stay in v10 but will be removed in v11. (#1089)

    ๐Ÿ’ฅ Breaking Changes

    • [jss] Add option for opt-in minification of class names. (#1075)

    ๐Ÿ› Bug fixes

    • ๐Ÿ”Œ [jss-plugin-expand] Fix attributes spread for border-bottom, border-top, border-left and border-right (#1083)
    • ๐Ÿ”Œ [jss-plugin-props-sort] Fix sorting in Node 11 (#1084)
    • [jss] Fix escaping keyframes names (#1100)
  • v10.0.0-alpha.16 Changes

    ๐Ÿ› Bug fixes

    • ๐Ÿ”Œ [jss-plugin-camel-case] Fix some IE 11 regression (#1065)
    • [jss-vendor-prefixer] Fix value prefixing, in particular position: sticky (#1068)
  • v10.0.0-alpha.14 Changes

    ๐Ÿ‘Œ Improvements

    • ๐Ÿ‘ [jss] Add support for multiple referenced keyframes (#1063)

    ๐Ÿ› Bug fixes

    • [jss] Fix SSR aggregation regression (#1064)
  • v10.0.0-alpha.13 Changes

    ๐Ÿ› Bug fixes

    • [react-jss] Replace spaces inside the display name with hyphens (#1049)

    ๐Ÿ‘Œ Improvements

    • ๐Ÿšš [jss] Remove VirtualRenderer and the option virtual: true. Now to simulate a non-browser environment, pass create({Renderer: null}) when creating a Jss instance.
    • [react-jss] Add dynamic rules to the static sheet (#1048)
  • v10.0.0-alpha.12 Changes

    ๐Ÿ› Bug fixes

    • [jss] Fix using function values with scoped keyframes (#1043)
    • ๐Ÿ’… [jss] Fix removing styles from function rules (#1046)
  • v10.0.0-alpha.11 Changes

    ๐Ÿ› Bug fixes

    • ๐Ÿ”Œ [jss] Fix dynamic values inside of @global plugin (#664)

    ๐Ÿ‘Œ Improvements

    • ๐Ÿ“ฆ [all] All packages except of react-jss can now be used as ESM modules directly from unpkg.com (1029)
    • [jss][ts] Improve typings (#973)
  • v10.0.0-alpha.10 Changes

    ๐Ÿ‘Œ Improvements

    • ๐Ÿ’… [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)

    ๐Ÿ› Bug fixes

    • [jss-starter-kit] Fix react-jss exports and add missing jss exports (#1001)
    • ๐Ÿ”Œ [jss-plugin-camel-case] Fix hyphenating css variables (#1017)
  • v10.0.0-alpha.1 Changes

    December 26, 2018

    ๐Ÿ› Bug fixes

    • [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)

    ๐Ÿ‘Œ Improvements

    • ๐Ÿ“ฆ [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)

    ๐Ÿ’ฅ Breaking changes

    • ๐Ÿ“ฆ [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 and jss.use(pluginObservable({process: false})) when setting up observables plugin. (#682)
    • 0๏ธโƒฃ [jss] Rule @keyframes has now scoped name by default, which means that you can access it using $ref from the same sheet and generate global one as before using @global rule (#346).
    • ๐Ÿ‘ [jss] Add scoped keyframes support (#346)
    • [jss|react-jss] Options createGenerateClassName and generateClassName are renamed to createGenerateId and generateId because 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)