@desafio-design-system_/reflow-ui 0.2.9 → 0.5.0
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 +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +10 -3
- package/dist/index.js.map +1 -1
- package/dist/styles/index.css +1 -1
- package/package.json +20 -12
package/dist/index.js
CHANGED
|
@@ -2820,7 +2820,8 @@ const we = (e) => typeof e == "boolean" ? `${e}` : e === 0 ? "0" : e, ve = Ce, A
|
|
|
2820
2820
|
variants: {
|
|
2821
2821
|
textColor: {
|
|
2822
2822
|
primary: "text-darker",
|
|
2823
|
-
secondary: "text-fg"
|
|
2823
|
+
secondary: "text-fg",
|
|
2824
|
+
bright: "text-typography-ice"
|
|
2824
2825
|
},
|
|
2825
2826
|
backgroundType: {
|
|
2826
2827
|
light: "bg-primary-base",
|
|
@@ -2830,7 +2831,7 @@ const we = (e) => typeof e == "boolean" ? `${e}` : e === 0 ? "0" : e, ve = Ce, A
|
|
|
2830
2831
|
primary: "flex flex-row items-center"
|
|
2831
2832
|
},
|
|
2832
2833
|
both: {
|
|
2833
|
-
primary: "flex flex-row items-center justify-
|
|
2834
|
+
primary: "flex flex-row items-center justify-center"
|
|
2834
2835
|
},
|
|
2835
2836
|
size: {
|
|
2836
2837
|
primaryTextonly: "pl-4 pr-4 font-inter h-9 min-w-36",
|
|
@@ -2850,6 +2851,11 @@ const we = (e) => typeof e == "boolean" ? `${e}` : e === 0 ? "0" : e, ve = Ce, A
|
|
|
2850
2851
|
fontWeight: {
|
|
2851
2852
|
medium: "font-normal",
|
|
2852
2853
|
bold: "font-bold"
|
|
2854
|
+
},
|
|
2855
|
+
gap: {
|
|
2856
|
+
small: "gap-1",
|
|
2857
|
+
medium: "gap-2",
|
|
2858
|
+
large: "gap-3"
|
|
2853
2859
|
}
|
|
2854
2860
|
}
|
|
2855
2861
|
}
|
|
@@ -2861,7 +2867,8 @@ function Mo({ icon: e, label: r, onClick: o, ...t }) {
|
|
|
2861
2867
|
both: t.both,
|
|
2862
2868
|
size: t.size,
|
|
2863
2869
|
textOnly: t.textOnly,
|
|
2864
|
-
fontSize: t.fontSize
|
|
2870
|
+
fontSize: t.fontSize,
|
|
2871
|
+
gap: t.gap
|
|
2865
2872
|
})), children: [
|
|
2866
2873
|
e && /* @__PURE__ */ B("span", { className: M(t.iconClassName), children: e }),
|
|
2867
2874
|
r && /* @__PURE__ */ B("span", { className: M(t.labelClassName), children: r })
|