@q2devel/q2-storybook 1.0.105 → 1.0.108

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.
@@ -171,5 +171,5 @@ export default function ContactForm({ title, darkMode = false, backgroundColor,
171
171
  }, onInput: (e) => {
172
172
  const target = e.target;
173
173
  target.setCustomValidity("");
174
- }, className: `bg-transparent border cursor-pointer ${styles.border} rounded-sm ${styles.checkbox} ${errors.consent ? 'border-red-500' : ''}` }), _jsx("label", { htmlFor: "agree", className: "text-sm cursor-pointer", children: label })] }), errors.consent && (_jsx("p", { className: `text-xs ${styles.error}`, children: errors.consent })), _jsx("button", { type: "submit", className: `px-6 py-2 uppercase text-sm ${styles.button}`, children: buttonText })] }));
174
+ }, className: `bg-transparent border cursor-pointer ${styles.border} rounded-sm ${styles.checkbox} ${errors.consent ? 'border-red-500' : ''}` }), _jsx("label", { htmlFor: "agree", className: "text-sm cursor-pointer", children: label })] }), errors.consent && (_jsx("p", { className: `text-xs ${styles.error}`, children: errors.consent })), _jsx("button", { type: "submit", className: `px-6 py-2 uppercase text-sm cursor-pointer ${styles.button}`, children: buttonText })] }));
175
175
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@q2devel/q2-storybook",
3
- "version": "1.0.105",
3
+ "version": "1.0.108",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -21,7 +21,7 @@
21
21
  "build": "tsc && npm run build:css",
22
22
  "build:css": "postcss src/global.css -o dist/style.css",
23
23
  "prepublishOnly": "npm version patch && npm run build",
24
- "publish:patch": "npm publish",
24
+ "publish:patch": "npm publish && npm run build",
25
25
  "publish:minor": "npm version minor && npm run build && npm publish",
26
26
  "publish:major": "npm version major && npm run build && npm publish",
27
27
  "chromatic": "chromatic --project-token=chpt_371d8e65041a19e "