@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 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
- p: {
16648
- color: "#A3A3A8",
16649
- margin: "0"
16650
- },
16651
- underlined: {
16652
- padding: "0",
16653
- background: "transparent",
16654
- color: "#E0E0E2",
16655
- cursor: "pointer",
16656
- textDecoration: "underline",
16657
- fontWeight: "500"
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
- checkBox: { extend: Checkbox },
16664
- paragraph: { extend: ParagraphWithUnderlineButton },
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