Plumeria 0.10.4

2025/06/11

pseudo(ps) are now separated from their css class. To use ps you need to import it.

import { css, ps } from '@plumeria/core';
const styles css.create({
    key: {
        [ps.hover]: {
            color: css.color.lightsalmon,
        },
    },
});

Please use compiler and core versions that are as close as possible.
eg, core: 0.10.4 and compiler: 0.10.0.

APIs have been added and changed.

Other Fixed:

  • The bug where camel case would separate consecutive uppercase letters has been fixed.
  • cx will no longer output the same string twice.
;