@symbo.ls/uikit 2.11.151 → 2.11.153
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 +20 -24
- package/dist/index.cjs.js.map +2 -2
- package/package.json +2 -2
package/dist/index.cjs.js
CHANGED
|
@@ -16635,39 +16635,35 @@ var TitleParagraph = {
|
|
|
16635
16635
|
};
|
|
16636
16636
|
var ParagraphWithUnderlineButton = {
|
|
16637
16637
|
extend: Flex,
|
|
16638
|
-
p: { props: { text: "Didnt get the code?" } },
|
|
16639
|
-
underlined: {
|
|
16640
|
-
extend: Button,
|
|
16641
|
-
props: { text: "Click to resend" }
|
|
16642
|
-
},
|
|
16643
16638
|
props: {
|
|
16644
16639
|
align: "center flex-start",
|
|
16645
16640
|
gap: "Z",
|
|
16646
|
-
fontSize: "Z"
|
|
16647
|
-
|
|
16648
|
-
|
|
16649
|
-
|
|
16650
|
-
|
|
16651
|
-
|
|
16652
|
-
|
|
16653
|
-
|
|
16654
|
-
|
|
16655
|
-
|
|
16656
|
-
|
|
16657
|
-
|
|
16658
|
-
|
|
16641
|
+
fontSize: "Z"
|
|
16642
|
+
},
|
|
16643
|
+
P: {
|
|
16644
|
+
color: "#A3A3A8",
|
|
16645
|
+
margin: "0",
|
|
16646
|
+
text: "Didnt get the code?"
|
|
16647
|
+
},
|
|
16648
|
+
Button: {
|
|
16649
|
+
text: "Click to resend",
|
|
16650
|
+
padding: "0",
|
|
16651
|
+
background: "transparent",
|
|
16652
|
+
color: "#E0E0E2",
|
|
16653
|
+
cursor: "pointer",
|
|
16654
|
+
textDecoration: "underline",
|
|
16655
|
+
fontWeight: "500"
|
|
16659
16656
|
}
|
|
16660
16657
|
};
|
|
16661
16658
|
var ParagrapUnderlineLinkWithCheckbox = {
|
|
16662
16659
|
extend: Flex,
|
|
16663
|
-
|
|
16664
|
-
|
|
16660
|
+
Checkbox: {
|
|
16661
|
+
Flex: { boxSize: "A+X" }
|
|
16662
|
+
},
|
|
16663
|
+
ParagraphWithUnderlineButton: {},
|
|
16665
16664
|
props: {
|
|
16666
16665
|
align: "center flex-start",
|
|
16667
|
-
gap: "X"
|
|
16668
|
-
checkBox: {
|
|
16669
|
-
Flex: { boxSize: "A+X" }
|
|
16670
|
-
}
|
|
16666
|
+
gap: "X"
|
|
16671
16667
|
}
|
|
16672
16668
|
};
|
|
16673
16669
|
|