@shopito/design-system-fe 0.1.27 → 0.1.29
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/common/Grid/Grid.d.ts +1 -1
- package/dist/common/Grid/Grid.d.ts.map +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +7 -2
package/dist/index.js
CHANGED
|
@@ -555,7 +555,13 @@ var ne = ({ direction: e = "row", gap: t, alignItems: n = "start", justifyItems:
|
|
|
555
555
|
2: "grid-cols-2",
|
|
556
556
|
3: "grid-cols-3",
|
|
557
557
|
4: "grid-cols-4",
|
|
558
|
+
5: "grid-cols-5",
|
|
558
559
|
6: "grid-cols-6",
|
|
560
|
+
7: "grid-cols-7",
|
|
561
|
+
8: "grid-cols-8",
|
|
562
|
+
9: "grid-cols-9",
|
|
563
|
+
10: "grid-cols-10",
|
|
564
|
+
11: "grid-cols-11",
|
|
559
565
|
12: "grid-cols-12"
|
|
560
566
|
}, ie = {
|
|
561
567
|
0: "gap-0",
|
|
@@ -719,7 +725,7 @@ var ne = ({ direction: e = "row", gap: t, alignItems: n = "start", justifyItems:
|
|
|
719
725
|
10: "xl:col-start-11",
|
|
720
726
|
11: "xl:col-start-12"
|
|
721
727
|
}, G = ({ children: e, cols: t = 12, gap: n, rowGap: r, colGap: i, as: a = "div", className: o }) => /* @__PURE__ */ u(a, {
|
|
722
|
-
className: (0, w.default)("grid",
|
|
728
|
+
className: (0, w.default)("grid", re[t], n !== void 0 && ie[n], r !== void 0 && ae[r], i !== void 0 && oe[i], o),
|
|
723
729
|
children: e
|
|
724
730
|
});
|
|
725
731
|
G.displayName = "Grid";
|