@douglasneuroinformatics/libui 2.2.1 → 2.2.2

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.
@@ -1,2 +1,2 @@
1
1
  import React from 'react';
2
- export const FieldGroupRoot = ({ children }) => (React.createElement("div", { className: "flex flex-col gap-3.5 @container" }, children));
2
+ export const FieldGroupRoot = ({ children }) => (React.createElement("div", { className: "flex flex-col gap-3 @container" }, children));
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@douglasneuroinformatics/libui",
3
3
  "type": "module",
4
- "version": "2.2.1",
4
+ "version": "2.2.2",
5
5
  "packageManager": "pnpm@8.15.3",
6
6
  "description": "Generic UI components for DNP projects, built using React and TailwindCSS",
7
7
  "author": {
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
2
 
3
3
  export const FieldGroupRoot: React.FC<{ children: React.ReactNode }> = ({ children }) => (
4
- <div className="flex flex-col gap-3.5 @container">{children}</div>
4
+ <div className="flex flex-col gap-3 @container">{children}</div>
5
5
  );