qstd 0.3.36 → 0.3.37
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/dist/react/index.cjs +2 -2
- package/dist/react/index.js +2 -2
- package/package.json +1 -1
package/dist/react/index.cjs
CHANGED
|
@@ -2025,7 +2025,7 @@ function Textarea(props) {
|
|
|
2025
2025
|
return () => form.removeEventListener("reset", onReset);
|
|
2026
2026
|
}, [isControlled]);
|
|
2027
2027
|
const resize = props.resize ?? "none";
|
|
2028
|
-
const hasDebug = rest.debug !== void 0;
|
|
2028
|
+
const hasDebug = "debug" in rest && rest.debug !== void 0;
|
|
2029
2029
|
return /* @__PURE__ */ jsxRuntime.jsxs(Base3, { grid: true, rows: "/ 4", children: [
|
|
2030
2030
|
/* @__PURE__ */ jsxRuntime.jsxs(Base3, { grid: true, relative: true, children: [
|
|
2031
2031
|
labelWithProps,
|
|
@@ -2173,7 +2173,7 @@ function Input(props) {
|
|
|
2173
2173
|
onAnimationComplete: _onAnimationComplete,
|
|
2174
2174
|
...rest
|
|
2175
2175
|
} = props;
|
|
2176
|
-
const hasDebug = rest.debug !== void 0;
|
|
2176
|
+
const hasDebug = "debug" in rest && rest.debug !== void 0;
|
|
2177
2177
|
const label = findChildrenByDisplayName(
|
|
2178
2178
|
children,
|
|
2179
2179
|
LabelNameKey2
|
package/dist/react/index.js
CHANGED
|
@@ -2002,7 +2002,7 @@ function Textarea(props) {
|
|
|
2002
2002
|
return () => form.removeEventListener("reset", onReset);
|
|
2003
2003
|
}, [isControlled]);
|
|
2004
2004
|
const resize = props.resize ?? "none";
|
|
2005
|
-
const hasDebug = rest.debug !== void 0;
|
|
2005
|
+
const hasDebug = "debug" in rest && rest.debug !== void 0;
|
|
2006
2006
|
return /* @__PURE__ */ jsxs(Base3, { grid: true, rows: "/ 4", children: [
|
|
2007
2007
|
/* @__PURE__ */ jsxs(Base3, { grid: true, relative: true, children: [
|
|
2008
2008
|
labelWithProps,
|
|
@@ -2150,7 +2150,7 @@ function Input(props) {
|
|
|
2150
2150
|
onAnimationComplete: _onAnimationComplete,
|
|
2151
2151
|
...rest
|
|
2152
2152
|
} = props;
|
|
2153
|
-
const hasDebug = rest.debug !== void 0;
|
|
2153
|
+
const hasDebug = "debug" in rest && rest.debug !== void 0;
|
|
2154
2154
|
const label = findChildrenByDisplayName(
|
|
2155
2155
|
children,
|
|
2156
2156
|
LabelNameKey2
|