@symbo.ls/uikit 2.11.154 → 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 +60 -61
- package/dist/index.cjs.js.map +3 -3
- package/index.js +1 -1
- package/package.json +2 -2
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,61 +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
|
-
P: {
|
|
16620
|
-
fontSize: "Z",
|
|
16621
|
-
padding: "0",
|
|
16622
|
-
margin: "0",
|
|
16623
|
-
color: "#E0E0E2",
|
|
16624
|
-
text: "Enter your email address and password to log in."
|
|
16625
|
-
},
|
|
16626
|
-
props: {
|
|
16627
|
-
flow: "column",
|
|
16628
|
-
gap: "Y",
|
|
16629
|
-
maxWidth: "fit-content",
|
|
16630
|
-
title: { fontSize: "D" }
|
|
16631
|
-
}
|
|
16632
|
-
};
|
|
16633
|
-
var ParagraphWithUnderlineButton = {
|
|
16634
|
-
extend: Flex,
|
|
16635
|
-
props: {
|
|
16636
|
-
align: "center flex-start",
|
|
16637
|
-
gap: "Z",
|
|
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"
|
|
16653
|
-
}
|
|
16654
|
-
};
|
|
16655
|
-
var ParagrapUnderlineLinkWithCheckbox = {
|
|
16656
|
-
extend: Flex,
|
|
16657
|
-
Checkbox: {
|
|
16658
|
-
Flex: { boxSize: "A+X" }
|
|
16659
|
-
},
|
|
16660
|
-
ParagraphWithUnderlineButton: {},
|
|
16661
|
-
props: {
|
|
16662
|
-
align: "center flex-start",
|
|
16663
|
-
gap: "X"
|
|
16664
|
-
}
|
|
16665
|
-
};
|
|
16666
|
-
|
|
16667
16667
|
// Field/node_modules/@symbo.ls/atoms/Block.js
|
|
16668
16668
|
var import_scratch19 = __toESM(require_cjs());
|
|
16669
16669
|
|
|
@@ -17322,12 +17322,11 @@ var ContactForm = {
|
|
|
17322
17322
|
},
|
|
17323
17323
|
message: { extend: TextareaWithTitle }
|
|
17324
17324
|
},
|
|
17325
|
-
|
|
17326
|
-
|
|
17327
|
-
|
|
17328
|
-
|
|
17329
|
-
|
|
17330
|
-
underlined: { props: { text: "privacy policy" } }
|
|
17325
|
+
ParagrapUnderlineLinkWithCheckbox: {
|
|
17326
|
+
CheckBox: {},
|
|
17327
|
+
ParagraphWithUnderlineButton: {
|
|
17328
|
+
P: { text: "You agree to " },
|
|
17329
|
+
Button: { text: "privacy policy" }
|
|
17331
17330
|
}
|
|
17332
17331
|
}
|
|
17333
17332
|
},
|