@pandacss/studio 0.53.3 → 0.53.4

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.53.3",
3
+ "version": "0.53.4",
4
4
  "description": "The automated token documentation for Panda CSS",
5
5
  "main": "dist/studio.js",
6
6
  "module": "dist/studio.mjs",
@@ -43,17 +43,17 @@
43
43
  "author": "Segun Adebayo <joseshegs@gmail.com>",
44
44
  "license": "MIT",
45
45
  "dependencies": {
46
- "@astrojs/react": "3.6.3",
47
- "astro": "4.16.18",
46
+ "@astrojs/react": "4.2.2",
47
+ "astro": "5.5.5",
48
48
  "react": "18.2.0",
49
49
  "react-dom": "18.2.0",
50
- "vite": "6.2.0",
51
- "@pandacss/config": "0.53.3",
52
- "@pandacss/logger": "0.53.3",
53
- "@pandacss/shared": "0.53.3",
54
- "@pandacss/token-dictionary": "0.53.3",
55
- "@pandacss/types": "0.53.3",
56
- "@pandacss/astro-plugin-studio": "0.53.3"
50
+ "vite": "6.2.5",
51
+ "@pandacss/config": "0.53.4",
52
+ "@pandacss/logger": "0.53.4",
53
+ "@pandacss/shared": "0.53.4",
54
+ "@pandacss/token-dictionary": "0.53.4",
55
+ "@pandacss/types": "0.53.4",
56
+ "@pandacss/astro-plugin-studio": "0.53.4"
57
57
  },
58
58
  "devDependencies": {
59
59
  "@types/react": "18.2.55",
@@ -64,11 +64,14 @@ var memo = (fn) => {
64
64
  };
65
65
 
66
66
  // src/merge-props.ts
67
+ var MERGE_OMIT = /* @__PURE__ */ new Set(["__proto__", "constructor", "prototype"]);
67
68
  function mergeProps(...sources) {
68
69
  return sources.reduce((prev, obj) => {
69
70
  if (!obj)
70
71
  return prev;
71
72
  Object.keys(obj).forEach((key) => {
73
+ if (MERGE_OMIT.has(key))
74
+ return;
72
75
  const prevValue = prev[key];
73
76
  const value = obj[key];
74
77
  if (isObject(prevValue) && isObject(value)) {
@@ -19,7 +19,7 @@
19
19
  box-sizing: border-box;
20
20
  border-width: 0px;
21
21
  border-style: solid;
22
- border-color: var(--global-color-border, currentColor);
22
+ border-color: var(--global-color-border, currentcolor);
23
23
  }
24
24
 
25
25
  hr {
@@ -77,10 +77,16 @@
77
77
 
78
78
  ::placeholder {
79
79
  opacity: 1;
80
- --placeholder-fallback: color-mix(in srgb, currentColor 50%, transparent);
80
+ --placeholder-fallback: rgba(0, 0, 0, 0.5);
81
81
  color: var(--global-color-placeholder, var(--placeholder-fallback));
82
82
  }
83
83
 
84
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
85
+ ::placeholder {
86
+ --placeholder-fallback: color-mix(in oklab, currentcolor 50%, transparent);
87
+ }
88
+ }
89
+
84
90
  textarea {
85
91
  resize: vertical;
86
92
  }