hs-uix 1.2.2 → 1.2.3

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/form.js CHANGED
@@ -1899,7 +1899,7 @@ var FormBuilder = (0, import_react.forwardRef)(function FormBuilder2(props, ref)
1899
1899
  const elements = [];
1900
1900
  let currentRow = [];
1901
1901
  let currentRowSpan = 0;
1902
- const gridColumnWidth = Math.floor(100 / columns);
1902
+ const gridColumnWidth = 200;
1903
1903
  const flushRow = () => {
1904
1904
  if (currentRow.length === 0) return;
1905
1905
  const allUniform = currentRow.every((f) => getFieldColSpan(f) === 1);
package/dist/form.mjs CHANGED
@@ -1903,7 +1903,7 @@ var FormBuilder = forwardRef(function FormBuilder2(props, ref) {
1903
1903
  const elements = [];
1904
1904
  let currentRow = [];
1905
1905
  let currentRowSpan = 0;
1906
- const gridColumnWidth = Math.floor(100 / columns);
1906
+ const gridColumnWidth = 200;
1907
1907
  const flushRow = () => {
1908
1908
  if (currentRow.length === 0) return;
1909
1909
  const allUniform = currentRow.every((f) => getFieldColSpan(f) === 1);
package/dist/index.js CHANGED
@@ -2970,7 +2970,7 @@ var FormBuilder = (0, import_react2.forwardRef)(function FormBuilder2(props, ref
2970
2970
  const elements = [];
2971
2971
  let currentRow = [];
2972
2972
  let currentRowSpan = 0;
2973
- const gridColumnWidth = Math.floor(100 / columns);
2973
+ const gridColumnWidth = 200;
2974
2974
  const flushRow = () => {
2975
2975
  if (currentRow.length === 0) return;
2976
2976
  const allUniform = currentRow.every((f) => getFieldColSpan(f) === 1);
package/dist/index.mjs CHANGED
@@ -3003,7 +3003,7 @@ var FormBuilder = forwardRef(function FormBuilder2(props, ref) {
3003
3003
  const elements = [];
3004
3004
  let currentRow = [];
3005
3005
  let currentRowSpan = 0;
3006
- const gridColumnWidth = Math.floor(100 / columns);
3006
+ const gridColumnWidth = 200;
3007
3007
  const flushRow = () => {
3008
3008
  if (currentRow.length === 0) return;
3009
3009
  const allUniform = currentRow.every((f) => getFieldColSpan(f) === 1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hs-uix",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "Production-ready UI components for HubSpot UI Extensions — DataTable, FormBuilder, and more",
5
5
  "license": "MIT",
6
6
  "main": "./dist/index.js",