@symbo.ls/uikit 2.11.276 → 2.11.280
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 +9 -11
- package/dist/index.cjs.js.map +2 -2
- package/package.json +2 -2
package/dist/index.cjs.js
CHANGED
|
@@ -5921,8 +5921,8 @@ var Block = {
|
|
|
5921
5921
|
return;
|
|
5922
5922
|
const [marginInlineStart, marginInlineEnd] = props4.marginInline.split(" ");
|
|
5923
5923
|
return {
|
|
5924
|
-
...deps.
|
|
5925
|
-
...deps.
|
|
5924
|
+
...deps.transformSize("marginInlineStart", marginInlineStart),
|
|
5925
|
+
...deps.transformSize("marginInlineEnd", marginInlineEnd || marginInlineStart)
|
|
5926
5926
|
};
|
|
5927
5927
|
},
|
|
5928
5928
|
marginBlock: ({ props: props4, deps }) => {
|
|
@@ -5930,8 +5930,8 @@ var Block = {
|
|
|
5930
5930
|
return;
|
|
5931
5931
|
const [marginBlockStart, marginBlockEnd] = props4.marginBlock.split(" ");
|
|
5932
5932
|
return {
|
|
5933
|
-
...deps.
|
|
5934
|
-
...deps.
|
|
5933
|
+
...deps.transformSize("marginBlockStart", marginBlockStart),
|
|
5934
|
+
...deps.transformSize("marginBlockEnd", marginBlockEnd || marginBlockStart)
|
|
5935
5935
|
};
|
|
5936
5936
|
},
|
|
5937
5937
|
marginInlineStart: ({ props: props4, deps }) => deps.transformSizeRatio("marginInlineStart", props4),
|
|
@@ -12025,13 +12025,11 @@ var UploadIcon = {
|
|
|
12025
12025
|
padding: "B B2"
|
|
12026
12026
|
},
|
|
12027
12027
|
Input: {
|
|
12028
|
-
|
|
12029
|
-
|
|
12030
|
-
|
|
12031
|
-
|
|
12032
|
-
|
|
12033
|
-
visibility: "hidden"
|
|
12034
|
-
}
|
|
12028
|
+
type: "file",
|
|
12029
|
+
position: "absolute",
|
|
12030
|
+
inset: "0 0 0 0",
|
|
12031
|
+
opacity: "0",
|
|
12032
|
+
visibility: "hidden"
|
|
12035
12033
|
},
|
|
12036
12034
|
Icon: {
|
|
12037
12035
|
props: {
|