@fox-js/foxui-pad 4.1.1-29 → 4.1.1-30
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/index.cjs.js +1 -1
- package/dist/index.esm.js +6 -1
- package/dist/index.umd.js +1 -1
- package/dist/style.css +2 -1
- package/dist/style.js +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -3906,6 +3906,11 @@ var { componentName: b2, create: w2, scope: S2 } = he("slot-item"), x2 = w2(y2(b
|
|
|
3906
3906
|
gutter: {
|
|
3907
3907
|
type: [String, Number],
|
|
3908
3908
|
required: !1
|
|
3909
|
+
},
|
|
3910
|
+
wrap: {
|
|
3911
|
+
type: [String],
|
|
3912
|
+
required: !1,
|
|
3913
|
+
default: "nowrap"
|
|
3909
3914
|
}
|
|
3910
3915
|
};
|
|
3911
3916
|
function N2(e, t) {
|
|
@@ -3933,7 +3938,7 @@ function N2(e, t) {
|
|
|
3933
3938
|
Object.assign(f, d);
|
|
3934
3939
|
} else a.width && (f.width = Oe(a.width));
|
|
3935
3940
|
}
|
|
3936
|
-
return a.gutter && (f.gap = Oe(a.gutter)), f;
|
|
3941
|
+
return a.gutter && (f.gap = Oe(a.gutter)), a.wrap && (f["flex-wrap"] = a.wrap), f;
|
|
3937
3942
|
});
|
|
3938
3943
|
return () => {
|
|
3939
3944
|
const f = [];
|