@pandacss/studio 0.0.0-dev-20230702075205 → 0.0.0-dev-20230702193821

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": "@pandacss/studio",
3
- "version": "0.0.0-dev-20230702075205",
3
+ "version": "0.0.0-dev-20230702193821",
4
4
  "description": "The automated token documentation for Panda CSS",
5
5
  "main": "dist/studio.js",
6
6
  "module": "dist/studio.mjs",
@@ -32,19 +32,19 @@
32
32
  "react": "18.2.0",
33
33
  "react-dom": "18.2.0",
34
34
  "vite": "4.3.9",
35
- "@pandacss/types": "0.0.0-dev-20230702075205",
36
- "@pandacss/config": "0.0.0-dev-20230702075205",
37
- "@pandacss/shared": "0.0.0-dev-20230702075205",
38
- "@pandacss/token-dictionary": "0.0.0-dev-20230702075205",
39
- "@pandacss/logger": "0.0.0-dev-20230702075205",
40
- "@pandacss/node": "0.0.0-dev-20230702075205"
35
+ "@pandacss/types": "0.0.0-dev-20230702193821",
36
+ "@pandacss/config": "0.0.0-dev-20230702193821",
37
+ "@pandacss/shared": "0.0.0-dev-20230702193821",
38
+ "@pandacss/token-dictionary": "0.0.0-dev-20230702193821",
39
+ "@pandacss/logger": "0.0.0-dev-20230702193821",
40
+ "@pandacss/node": "0.0.0-dev-20230702193821"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/react": "18.2.14",
44
44
  "@types/react-dom": "18.2.6",
45
45
  "@vitejs/plugin-react": "4.0.1",
46
46
  "execa": "7.1.1",
47
- "@pandacss/dev": "0.0.0-dev-20230702075205"
47
+ "@pandacss/dev": "0.0.0-dev-20230702193821"
48
48
  },
49
49
  "scripts": {
50
50
  "codegen": "panda",
@@ -73,7 +73,6 @@ function mergeProps(...sources) {
73
73
  }
74
74
 
75
75
  // src/walk-object.ts
76
- var isNotNullish = (element) => element != null
77
76
  function walkObject(target, predicate, options = {}) {
78
77
  const { stop, getKey } = options
79
78
  function inner(value, path = []) {
@@ -85,10 +84,7 @@ function walkObject(target, predicate, options = {}) {
85
84
  if (stop?.(value, childPath)) {
86
85
  return predicate(value, path)
87
86
  }
88
- const next = inner(child, childPath)
89
- if (isNotNullish(next)) {
90
- result[key] = next
91
- }
87
+ result[key] = inner(child, childPath)
92
88
  }
93
89
  return result
94
90
  }
@@ -1,11 +1,11 @@
1
1
  @layer reset, base, tokens, recipes, utilities;
2
2
 
3
+ @import './reset.css';
4
+
3
5
  @import './global.css';
4
6
 
5
7
  @import './static.css';
6
8
 
7
- @import './reset.css';
8
-
9
9
  @import './tokens/index.css';
10
10
 
11
11
  @import './tokens/keyframes.css';