@symbo.ls/uikit 2.11.153 → 2.11.155

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
@@ -15491,6 +15491,61 @@ var AvatarBundleInfoSet = {
15491
15491
  }
15492
15492
  };
15493
15493
 
15494
+ // TextComponents/index.js
15495
+ var TitleParagraph = {
15496
+ extend: Flex,
15497
+ title: {
15498
+ tag: "h5",
15499
+ props: { text: "Log in to your account" }
15500
+ },
15501
+ P: {
15502
+ fontSize: "Z",
15503
+ padding: "0",
15504
+ margin: "0",
15505
+ color: "#E0E0E2",
15506
+ text: "Enter your email address and password to log in."
15507
+ },
15508
+ props: {
15509
+ flow: "column",
15510
+ gap: "Y",
15511
+ maxWidth: "fit-content",
15512
+ title: { fontSize: "D" }
15513
+ }
15514
+ };
15515
+ var ParagraphWithUnderlineButton = {
15516
+ extend: Flex,
15517
+ props: {
15518
+ align: "center flex-start",
15519
+ gap: "Z",
15520
+ fontSize: "Z"
15521
+ },
15522
+ P: {
15523
+ color: "#A3A3A8",
15524
+ margin: "0",
15525
+ text: "Didnt get the code?"
15526
+ },
15527
+ Button: {
15528
+ text: "Click to resend",
15529
+ padding: "0",
15530
+ background: "transparent",
15531
+ color: "#E0E0E2",
15532
+ cursor: "pointer",
15533
+ textDecoration: "underline",
15534
+ fontWeight: "500"
15535
+ }
15536
+ };
15537
+ var ParagrapUnderlineLinkWithCheckbox = {
15538
+ extend: Flex,
15539
+ Checkbox: {
15540
+ Flex: { boxSize: "A+X" }
15541
+ },
15542
+ ParagraphWithUnderlineButton: {},
15543
+ props: {
15544
+ align: "center flex-start",
15545
+ gap: "X"
15546
+ }
15547
+ };
15548
+
15494
15549
  // Dialog/index.js
15495
15550
  var Dialog = {
15496
15551
  props: {
@@ -16609,64 +16664,6 @@ var emotion2 = createEmotion6();
16609
16664
  // Modal/node_modules/@symbo.ls/atoms/Animation.js
16610
16665
  var { keyframes: keyframes2 } = emotion2;
16611
16666
 
16612
- // TextComponents/index.js
16613
- var TitleParagraph = {
16614
- extend: Flex,
16615
- title: {
16616
- tag: "h5",
16617
- props: { text: "Log in to your account" }
16618
- },
16619
- paragraph: {
16620
- tag: "p",
16621
- props: { text: "Enter your email address and password to log in." }
16622
- },
16623
- props: {
16624
- flow: "column",
16625
- gap: "Y",
16626
- maxWidth: "fit-content",
16627
- title: { fontSize: "D" },
16628
- paragraph: {
16629
- fontSize: "Z",
16630
- padding: "0",
16631
- margin: "0",
16632
- color: "#E0E0E2"
16633
- }
16634
- }
16635
- };
16636
- var ParagraphWithUnderlineButton = {
16637
- extend: Flex,
16638
- props: {
16639
- align: "center flex-start",
16640
- gap: "Z",
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"
16656
- }
16657
- };
16658
- var ParagrapUnderlineLinkWithCheckbox = {
16659
- extend: Flex,
16660
- Checkbox: {
16661
- Flex: { boxSize: "A+X" }
16662
- },
16663
- ParagraphWithUnderlineButton: {},
16664
- props: {
16665
- align: "center flex-start",
16666
- gap: "X"
16667
- }
16668
- };
16669
-
16670
16667
  // Field/node_modules/@symbo.ls/atoms/Block.js
16671
16668
  var import_scratch19 = __toESM(require_cjs());
16672
16669
 
@@ -17325,12 +17322,11 @@ var ContactForm = {
17325
17322
  },
17326
17323
  message: { extend: TextareaWithTitle }
17327
17324
  },
17328
- checkParagraph: {
17329
- extend: ParagrapUnderlineLinkWithCheckbox,
17330
- checkBox: {},
17331
- paragraph: {
17332
- p: { props: { text: "You agree to " } },
17333
- underlined: { props: { text: "privacy policy" } }
17325
+ ParagrapUnderlineLinkWithCheckbox: {
17326
+ CheckBox: {},
17327
+ ParagraphWithUnderlineButton: {
17328
+ P: { text: "You agree to " },
17329
+ Button: { text: "privacy policy" }
17334
17330
  }
17335
17331
  }
17336
17332
  },