Nathan Lee
Nathan Lee
Resolves #1240
**Describe the bug** In cases where CSS vars are not produced, error will be thrown if props parameter is named anything other than "props", for example: `color: ${(propz) => propz.isSelected...
As discussed here: https://github.com/atlassian-labs/compiled/pull/1046#discussion_r787295960 The flow in which we code mod components with attrs is not kosher with the rest of code mod logic.
Resolves #1292 - Update loki - Give a name to CSS var used for empty values
Resolves #1295 - Fixes bug where more than one import cannot be used in template literal object property key - Support string binary operation in object property keys
**Describe the bug** ``` import { hiddenClass } from './hidden'; import { itemClass } from './item'; // Output selector becomes .hidden, itemClass const Comp = styled.div({ [`${hiddenClass}, ${itemClass}`] { ......
**Describe the bug** Current Chrome as of posting (105.0.5195.102) will ignore CSS var defined with no name (i.e. `--`) ``` /* Will be stripped by chrome */ --: black; /*...