@symbo.ls/uikit 2.11.65 → 2.11.66
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 +27 -27
- package/dist/index.cjs.js.map +2 -2
- package/package.json +2 -2
package/dist/index.cjs.js
CHANGED
|
@@ -15561,24 +15561,21 @@ var Upload = {
|
|
|
15561
15561
|
round: "A",
|
|
15562
15562
|
cursor: "pointer",
|
|
15563
15563
|
border: "1.6px, dashed, white 0.1",
|
|
15564
|
-
padding: "B B2"
|
|
15565
|
-
input: {
|
|
15566
|
-
position: "absolute",
|
|
15567
|
-
inset: "0 0 0 0",
|
|
15568
|
-
opacity: "0",
|
|
15569
|
-
visibility: "hidden"
|
|
15570
|
-
}
|
|
15564
|
+
padding: "B B2"
|
|
15571
15565
|
},
|
|
15572
|
-
|
|
15573
|
-
|
|
15574
|
-
|
|
15575
|
-
|
|
15576
|
-
|
|
15577
|
-
|
|
15578
|
-
opacity: ".2"
|
|
15579
|
-
}
|
|
15566
|
+
Input: {
|
|
15567
|
+
type: "file",
|
|
15568
|
+
position: "absolute",
|
|
15569
|
+
inset: "0 0 0 0",
|
|
15570
|
+
opacity: "0",
|
|
15571
|
+
visibility: "hidden"
|
|
15580
15572
|
},
|
|
15581
|
-
|
|
15573
|
+
Icon: {
|
|
15574
|
+
name: "upload",
|
|
15575
|
+
fontSize: `${26 / 16}em`,
|
|
15576
|
+
opacity: ".2"
|
|
15577
|
+
},
|
|
15578
|
+
P: {
|
|
15582
15579
|
props: {
|
|
15583
15580
|
text: " or click and upload from your computer",
|
|
15584
15581
|
flexFlow: "column",
|
|
@@ -15586,21 +15583,28 @@ var Upload = {
|
|
|
15586
15583
|
opacity: ".22",
|
|
15587
15584
|
margin: "0"
|
|
15588
15585
|
},
|
|
15589
|
-
|
|
15586
|
+
Span: {
|
|
15590
15587
|
text: "Drag and drop your font file",
|
|
15591
|
-
|
|
15588
|
+
display: "block"
|
|
15592
15589
|
}
|
|
15593
15590
|
}
|
|
15594
15591
|
};
|
|
15595
15592
|
var DragNdropUser = {
|
|
15596
15593
|
extend: Flex,
|
|
15597
|
-
props:
|
|
15594
|
+
props: {
|
|
15598
15595
|
flow: "column",
|
|
15599
15596
|
align: "center center",
|
|
15600
15597
|
gap: "A",
|
|
15601
|
-
round: "A"
|
|
15602
|
-
|
|
15603
|
-
|
|
15598
|
+
round: "A"
|
|
15599
|
+
},
|
|
15600
|
+
Avatar: {
|
|
15601
|
+
props: ({ state }) => ({
|
|
15602
|
+
boxSize: "C C",
|
|
15603
|
+
src: state.src
|
|
15604
|
+
})
|
|
15605
|
+
},
|
|
15606
|
+
Flex: {
|
|
15607
|
+
props: {
|
|
15604
15608
|
gap: "Y",
|
|
15605
15609
|
childProps: {
|
|
15606
15610
|
padding: "0",
|
|
@@ -15610,11 +15614,7 @@ var DragNdropUser = {
|
|
|
15610
15614
|
color: "gray6",
|
|
15611
15615
|
style: { "> svg": { fontSize: `${14 / 16}em` } }
|
|
15612
15616
|
}
|
|
15613
|
-
}
|
|
15614
|
-
}),
|
|
15615
|
-
img: { extend: Avatar },
|
|
15616
|
-
buttons: {
|
|
15617
|
-
extend: Flex,
|
|
15617
|
+
},
|
|
15618
15618
|
childExtend: SquareButton,
|
|
15619
15619
|
...[
|
|
15620
15620
|
{ props: { icon: "reload" } },
|