@symbo.ls/uikit 2.11.152 → 2.11.154
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 -34
- package/dist/index.cjs.js.map +2 -2
- package/package.json +2 -2
package/dist/index.cjs.js
CHANGED
|
@@ -16616,58 +16616,51 @@ var TitleParagraph = {
|
|
|
16616
16616
|
tag: "h5",
|
|
16617
16617
|
props: { text: "Log in to your account" }
|
|
16618
16618
|
},
|
|
16619
|
-
|
|
16620
|
-
|
|
16621
|
-
|
|
16619
|
+
P: {
|
|
16620
|
+
fontSize: "Z",
|
|
16621
|
+
padding: "0",
|
|
16622
|
+
margin: "0",
|
|
16623
|
+
color: "#E0E0E2",
|
|
16624
|
+
text: "Enter your email address and password to log in."
|
|
16622
16625
|
},
|
|
16623
16626
|
props: {
|
|
16624
16627
|
flow: "column",
|
|
16625
16628
|
gap: "Y",
|
|
16626
16629
|
maxWidth: "fit-content",
|
|
16627
|
-
title: { fontSize: "D" }
|
|
16628
|
-
paragraph: {
|
|
16629
|
-
fontSize: "Z",
|
|
16630
|
-
padding: "0",
|
|
16631
|
-
margin: "0",
|
|
16632
|
-
color: "#E0E0E2"
|
|
16633
|
-
}
|
|
16630
|
+
title: { fontSize: "D" }
|
|
16634
16631
|
}
|
|
16635
16632
|
};
|
|
16636
16633
|
var ParagraphWithUnderlineButton = {
|
|
16637
16634
|
extend: Flex,
|
|
16638
|
-
p: { props: { text: "Didnt get the code?" } },
|
|
16639
|
-
underlined: {
|
|
16640
|
-
extend: Button,
|
|
16641
|
-
props: { text: "Click to resend" }
|
|
16642
|
-
},
|
|
16643
16635
|
props: {
|
|
16644
16636
|
align: "center flex-start",
|
|
16645
16637
|
gap: "Z",
|
|
16646
|
-
fontSize: "Z"
|
|
16647
|
-
|
|
16648
|
-
|
|
16649
|
-
|
|
16650
|
-
|
|
16651
|
-
|
|
16652
|
-
|
|
16653
|
-
|
|
16654
|
-
|
|
16655
|
-
|
|
16656
|
-
|
|
16657
|
-
|
|
16658
|
-
|
|
16638
|
+
fontSize: "Z"
|
|
16639
|
+
},
|
|
16640
|
+
P: {
|
|
16641
|
+
color: "#A3A3A8",
|
|
16642
|
+
margin: "0",
|
|
16643
|
+
text: "Didnt get the code?"
|
|
16644
|
+
},
|
|
16645
|
+
Button: {
|
|
16646
|
+
text: "Click to resend",
|
|
16647
|
+
padding: "0",
|
|
16648
|
+
background: "transparent",
|
|
16649
|
+
color: "#E0E0E2",
|
|
16650
|
+
cursor: "pointer",
|
|
16651
|
+
textDecoration: "underline",
|
|
16652
|
+
fontWeight: "500"
|
|
16659
16653
|
}
|
|
16660
16654
|
};
|
|
16661
16655
|
var ParagrapUnderlineLinkWithCheckbox = {
|
|
16662
16656
|
extend: Flex,
|
|
16663
|
-
|
|
16664
|
-
|
|
16657
|
+
Checkbox: {
|
|
16658
|
+
Flex: { boxSize: "A+X" }
|
|
16659
|
+
},
|
|
16660
|
+
ParagraphWithUnderlineButton: {},
|
|
16665
16661
|
props: {
|
|
16666
16662
|
align: "center flex-start",
|
|
16667
|
-
gap: "X"
|
|
16668
|
-
checkBox: {
|
|
16669
|
-
Flex: { boxSize: "A+X" }
|
|
16670
|
-
}
|
|
16663
|
+
gap: "X"
|
|
16671
16664
|
}
|
|
16672
16665
|
};
|
|
16673
16666
|
|