Skip to content

Releases: atlassian-labs/compiled

@compiled/webpack-loader@0.19.3

28 Jan 03:48
40a4548
Compare
Choose a tag to compare

Patch Changes

  • Updated dependencies [0f64c39]
    • @compiled/babel-plugin@0.36.0
    • @compiled/css@0.19.0
    • @compiled/babel-plugin-strip-runtime@0.36.0

@compiled/parcel-transformer@0.18.4

28 Jan 03:48
40a4548
Compare
Choose a tag to compare

Patch Changes

  • Updated dependencies [0f64c39]
    • @compiled/babel-plugin@0.36.0
    • @compiled/babel-plugin-strip-runtime@0.36.0

@compiled/parcel-optimizer@0.6.1

28 Jan 03:48
40a4548
Compare
Choose a tag to compare

Patch Changes

  • Updated dependencies [0f64c39]
    • @compiled/css@0.19.0

@compiled/css@0.19.0

28 Jan 03:48
40a4548
Compare
Choose a tag to compare

Minor Changes

  • 0f64c39: Added support for the @starting-style at-rule.

@compiled/babel-plugin@0.36.0

28 Jan 03:48
40a4548
Compare
Choose a tag to compare

Minor Changes

  • 0f64c39: Added support for the @starting-style at-rule.

Patch Changes

  • Updated dependencies [0f64c39]
    • @compiled/css@0.19.0

@compiled/babel-plugin-strip-runtime@0.36.0

28 Jan 03:48
40a4548
Compare
Choose a tag to compare

Patch Changes

  • Updated dependencies [0f64c39]
    • @compiled/css@0.19.0

@compiled/eslint-plugin@0.19.1

08 Jan 04:05
04f6280
Compare
Choose a tag to compare

Patch Changes

  • d75db85: Fix some false positives in shorthand-property-sorting with css and cssMap

@compiled/webpack-loader@0.19.2

02 Jan 23:56
a2eb963
Compare
Choose a tag to compare

Patch Changes

  • Updated dependencies [34e5339]
  • Updated dependencies [34e5339]
    • @compiled/babel-plugin@0.35.0

@compiled/parcel-transformer@0.18.3

02 Jan 23:56
a2eb963
Compare
Choose a tag to compare

Patch Changes

  • Updated dependencies [34e5339]
  • Updated dependencies [34e5339]
    • @compiled/babel-plugin@0.35.0

@compiled/babel-plugin@0.35.0

02 Jan 23:56
a2eb963
Compare
Choose a tag to compare

Minor Changes

  • 34e5339: Fix @compiled/babel-plugin to not require cssMap() to be called prior to use.

    Example, this failed before for no reason other than the fact that our state.cssMap was generated after JSXElement and JSXOpeningElement were ran.

    import { cssMap } from '@compiled/react';
    export default () => <div css={styles.root} />;
    const styles = cssMap({ root: { padding: 8 } });
  • 34e5339: Throw an error when compiling a cssMap object where we expect a css or nested cssMap object.

    Example of code that silently fails today, using styles directly:

    import { cssMap } from '@compiled/react';
    const styles = cssMap({ root: { padding: 8 } });
    export default () => <div css={styles} />;

    What we expect to see instead, using styles.root instead:

    import { cssMap } from '@compiled/react';
    const styles = cssMap({ root: { padding: 8 } });
    export default () => <div css={styles.root} />;