@marigold/system 15.1.0 → 15.3.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.d.mts +585 -565
- package/dist/index.d.ts +585 -565
- package/dist/index.js +18 -2
- package/dist/index.mjs +17 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -66,6 +66,7 @@ __export(index_exports, {
|
|
|
66
66
|
useSmallScreen: () => useSmallScreen,
|
|
67
67
|
useStateProps: () => useStateProps,
|
|
68
68
|
useTheme: () => useTheme,
|
|
69
|
+
whiteSpace: () => whiteSpace,
|
|
69
70
|
width: () => width
|
|
70
71
|
});
|
|
71
72
|
module.exports = __toCommonJS(index_exports);
|
|
@@ -610,6 +611,14 @@ var textWrap = {
|
|
|
610
611
|
balance: "text-balance",
|
|
611
612
|
pretty: "text-pretty"
|
|
612
613
|
};
|
|
614
|
+
var whiteSpace = {
|
|
615
|
+
normal: "whitespace-normal",
|
|
616
|
+
nowrap: "whitespace-nowrap",
|
|
617
|
+
pre: "whitespace-pre",
|
|
618
|
+
preLine: "whitespace-pre-line",
|
|
619
|
+
preWrap: "whitespace-pre-wrap",
|
|
620
|
+
breakSpaces: "whitespace-break-spaces"
|
|
621
|
+
};
|
|
613
622
|
var gapSpace = {
|
|
614
623
|
0: "gap-0",
|
|
615
624
|
"0.5": "gap-0.5",
|
|
@@ -908,7 +917,10 @@ var alignment = {
|
|
|
908
917
|
alignmentY: {
|
|
909
918
|
top: "justify-start",
|
|
910
919
|
center: "justify-center",
|
|
911
|
-
bottom: "justify-end"
|
|
920
|
+
bottom: "justify-end",
|
|
921
|
+
between: "justify-between",
|
|
922
|
+
around: "justify-around",
|
|
923
|
+
evenly: "justify-evenly"
|
|
912
924
|
}
|
|
913
925
|
},
|
|
914
926
|
horizontal: {
|
|
@@ -920,7 +932,10 @@ var alignment = {
|
|
|
920
932
|
alignmentX: {
|
|
921
933
|
left: "justify-start",
|
|
922
934
|
center: "justify-center",
|
|
923
|
-
right: "justify-end"
|
|
935
|
+
right: "justify-end",
|
|
936
|
+
between: "justify-between",
|
|
937
|
+
around: "justify-around",
|
|
938
|
+
evenly: "justify-evenly"
|
|
924
939
|
}
|
|
925
940
|
}
|
|
926
941
|
};
|
|
@@ -1009,5 +1024,6 @@ var cursorStyle = {
|
|
|
1009
1024
|
useSmallScreen,
|
|
1010
1025
|
useStateProps,
|
|
1011
1026
|
useTheme,
|
|
1027
|
+
whiteSpace,
|
|
1012
1028
|
width
|
|
1013
1029
|
});
|
package/dist/index.mjs
CHANGED
|
@@ -538,6 +538,14 @@ var textWrap = {
|
|
|
538
538
|
balance: "text-balance",
|
|
539
539
|
pretty: "text-pretty"
|
|
540
540
|
};
|
|
541
|
+
var whiteSpace = {
|
|
542
|
+
normal: "whitespace-normal",
|
|
543
|
+
nowrap: "whitespace-nowrap",
|
|
544
|
+
pre: "whitespace-pre",
|
|
545
|
+
preLine: "whitespace-pre-line",
|
|
546
|
+
preWrap: "whitespace-pre-wrap",
|
|
547
|
+
breakSpaces: "whitespace-break-spaces"
|
|
548
|
+
};
|
|
541
549
|
var gapSpace = {
|
|
542
550
|
0: "gap-0",
|
|
543
551
|
"0.5": "gap-0.5",
|
|
@@ -836,7 +844,10 @@ var alignment = {
|
|
|
836
844
|
alignmentY: {
|
|
837
845
|
top: "justify-start",
|
|
838
846
|
center: "justify-center",
|
|
839
|
-
bottom: "justify-end"
|
|
847
|
+
bottom: "justify-end",
|
|
848
|
+
between: "justify-between",
|
|
849
|
+
around: "justify-around",
|
|
850
|
+
evenly: "justify-evenly"
|
|
840
851
|
}
|
|
841
852
|
},
|
|
842
853
|
horizontal: {
|
|
@@ -848,7 +859,10 @@ var alignment = {
|
|
|
848
859
|
alignmentX: {
|
|
849
860
|
left: "justify-start",
|
|
850
861
|
center: "justify-center",
|
|
851
|
-
right: "justify-end"
|
|
862
|
+
right: "justify-end",
|
|
863
|
+
between: "justify-between",
|
|
864
|
+
around: "justify-around",
|
|
865
|
+
evenly: "justify-evenly"
|
|
852
866
|
}
|
|
853
867
|
}
|
|
854
868
|
};
|
|
@@ -936,5 +950,6 @@ export {
|
|
|
936
950
|
useSmallScreen,
|
|
937
951
|
useStateProps,
|
|
938
952
|
useTheme,
|
|
953
|
+
whiteSpace,
|
|
939
954
|
width
|
|
940
955
|
};
|