shelving 1.218.0 → 1.218.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shelving",
3
- "version": "1.218.0",
3
+ "version": "1.218.1",
4
4
  "author": "Dave Houlbrooke <dave@shax.com>",
5
5
  "repository": {
6
6
  "type": "git",
package/ui/block/Flex.js CHANGED
@@ -5,6 +5,6 @@ import FLEX_CSS from "./Flex.module.css";
5
5
  /** Block with flex children. */
6
6
  export function Flex({ children, ...variants }) {
7
7
  return (_jsx("div", { className: getClass(BLOCK_CLASS, //
8
- getModuleClass(FLEX_CSS, "elements", variants)), children: children }));
8
+ getModuleClass(FLEX_CSS, "flex", variants)), children: children }));
9
9
  }
10
10
  export { FLEX_CSS };
package/ui/block/Flex.tsx CHANGED
@@ -33,7 +33,7 @@ export function Flex({ children, ...variants }: FlexProps): ReactElement {
33
33
  <div
34
34
  className={getClass(
35
35
  BLOCK_CLASS, //
36
- getModuleClass(FLEX_CSS, "elements", variants),
36
+ getModuleClass(FLEX_CSS, "flex", variants),
37
37
  )}
38
38
  >
39
39
  {children}