@q2devel/q2-storybook 1.0.103 → 1.0.104

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.
@@ -161,7 +161,7 @@ export default function ContactForm({ title, darkMode = false, backgroundColor,
161
161
  }, onInput: (e) => {
162
162
  const target = e.target;
163
163
  target.setCustomValidity("");
164
- }, className: `pl-8 pt-2 w-full ${styles.placeholder} ${errors.message ? 'border-red-500' : ''}` }), errors.message && (_jsx("p", { className: `text-xs mt-1 ${styles.error}`, children: errors.message }))] })] }), _jsxs("div", { className: "flex items-center space-x-3 mb-1", children: [_jsx("input", { id: "agree", type: "checkbox", required: true, checked: consent, onChange: () => {
164
+ }, className: `pl-8 pt-2 w-full ${styles.placeholder} ${errors.message ? 'border-red-500' : ''}` }), errors.message && (_jsx("p", { className: `text-xs mt-1 ${styles.error}`, children: errors.message }))] })] }), _jsxs("div", { className: "flex items-center space-x-3 mb-8", children: [_jsx("input", { id: "agree", type: "checkbox", required: true, checked: consent, onChange: () => {
165
165
  setConsent(!consent);
166
166
  handleInputChange("consent", !consent);
167
167
  }, onInvalid: (e) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@q2devel/q2-storybook",
3
- "version": "1.0.103",
3
+ "version": "1.0.104",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -75,7 +75,8 @@
75
75
  "express": "^5.1.0",
76
76
  "html-react-parser": "^5.2.3",
77
77
  "react-select": "^5.10.1",
78
- "tailwind-merge": "^3.2.0"
78
+ "tailwind-merge": "^3.2.0",
79
+ "zod": "^4.0.14"
79
80
  },
80
81
  "overrides": {
81
82
  "storybook": "$storybook"