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 +1 -1
- package/dist/form.mjs +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
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 =
|
|
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 =
|
|
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 =
|
|
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 =
|
|
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);
|