@blockle/blocks-core 0.21.11 → 0.21.12

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.
@@ -3,12 +3,15 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
3
  const fileScope = require("@vanilla-extract/css/fileScope");
4
4
  const css = require("@vanilla-extract/css");
5
5
  fileScope.setFileScope("src/css/layers.css.ts", "@blockle/blocks-core");
6
- const blocksLayerComponent = css.layer("blocks-component");
7
- const blocksLayerAtom = css.layer(
6
+ const blocksLayerAtom = css.layer("blocks-atom");
7
+ const blocksLayerComponent = css.layer(
8
+ { parent: blocksLayerAtom },
9
+ "blocks-component"
10
+ );
11
+ const blocksLayer = css.layer(
8
12
  { parent: blocksLayerComponent },
9
- "blocks-atom"
13
+ "blockle-blocks"
10
14
  );
11
- const blocksLayer = css.layer({ parent: blocksLayerAtom }, "blockle-blocks");
12
15
  fileScope.endFileScope();
13
16
  exports.blocksLayer = blocksLayer;
14
17
  exports.blocksLayerAtom = blocksLayerAtom;
@@ -1,3 +1,3 @@
1
- export declare const blocksLayerComponent: string;
2
1
  export declare const blocksLayerAtom: string;
2
+ export declare const blocksLayerComponent: string;
3
3
  export declare const blocksLayer: string;
@@ -1,12 +1,15 @@
1
1
  import { setFileScope, endFileScope } from "@vanilla-extract/css/fileScope";
2
2
  import { layer } from "@vanilla-extract/css";
3
3
  setFileScope("src/css/layers.css.ts", "@blockle/blocks-core");
4
- const blocksLayerComponent = layer("blocks-component");
5
- const blocksLayerAtom = layer(
4
+ const blocksLayerAtom = layer("blocks-atom");
5
+ const blocksLayerComponent = layer(
6
+ { parent: blocksLayerAtom },
7
+ "blocks-component"
8
+ );
9
+ const blocksLayer = layer(
6
10
  { parent: blocksLayerComponent },
7
- "blocks-atom"
11
+ "blockle-blocks"
8
12
  );
9
- const blocksLayer = layer({ parent: blocksLayerAtom }, "blockle-blocks");
10
13
  endFileScope();
11
14
  export {
12
15
  blocksLayer,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockle/blocks-core",
3
- "version": "0.21.11",
3
+ "version": "0.21.12",
4
4
  "description": "Core for Blocks",
5
5
  "type": "module",
6
6
  "sideEffects": false,