@symbo.ls/uikit 2.11.243 → 2.11.245
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 +45 -31
- package/dist/index.cjs.js.map +2 -2
- package/package.json +2 -2
package/dist/index.cjs.js
CHANGED
|
@@ -4740,7 +4740,7 @@ var require_on = __commonJS({
|
|
|
4740
4740
|
return applyEventUpdate(element.on[param], updatedObj, element, state, context, options);
|
|
4741
4741
|
}
|
|
4742
4742
|
};
|
|
4743
|
-
var applyEventsOnNode = (element) => {
|
|
4743
|
+
var applyEventsOnNode = (element, options) => {
|
|
4744
4744
|
const { node: node2, on } = element;
|
|
4745
4745
|
for (const param in on) {
|
|
4746
4746
|
if (param === "init" || param === "beforeClassAssign" || param === "render" || param === "renderRouter" || param === "attachNode" || param === "stateInit" || param === "stateCreated" || param === "initStateUpdated" || param === "stateUpdated" || param === "initUpdate" || param === "update")
|
|
@@ -4749,7 +4749,7 @@ var require_on = __commonJS({
|
|
|
4749
4749
|
if ((0, import_utils15.isFunction)(appliedFunction)) {
|
|
4750
4750
|
node2.addEventListener(param, (event) => {
|
|
4751
4751
|
const { state, context } = element;
|
|
4752
|
-
appliedFunction(event, element, state, context);
|
|
4752
|
+
appliedFunction(event, element, state, context, options);
|
|
4753
4753
|
});
|
|
4754
4754
|
}
|
|
4755
4755
|
}
|
|
@@ -8896,23 +8896,30 @@ var DotList = {
|
|
|
8896
8896
|
extend: Flex,
|
|
8897
8897
|
props: {
|
|
8898
8898
|
flow: "column",
|
|
8899
|
-
gap: "
|
|
8899
|
+
gap: "Z"
|
|
8900
8900
|
},
|
|
8901
8901
|
childExtend: {
|
|
8902
|
+
tag: "caption",
|
|
8902
8903
|
extend: Flex,
|
|
8903
8904
|
props: {
|
|
8904
8905
|
align: "center flex-start",
|
|
8906
|
+
lineHeight: "1em",
|
|
8907
|
+
color: "white",
|
|
8908
|
+
fontWeight: "700",
|
|
8909
|
+
fontSize: "A2",
|
|
8905
8910
|
gap: "Z",
|
|
8911
|
+
// letterSpacing: '-0.01em',
|
|
8906
8912
|
":before": {
|
|
8907
8913
|
content: '""',
|
|
8908
8914
|
boxSize: "W",
|
|
8909
8915
|
background: "white",
|
|
8910
|
-
display:
|
|
8916
|
+
// display: 'block',
|
|
8911
8917
|
zIndex: "20"
|
|
8918
|
+
// display: 'none'
|
|
8912
8919
|
}
|
|
8913
8920
|
}
|
|
8914
8921
|
},
|
|
8915
|
-
...[{ props: { text: "
|
|
8922
|
+
...[{ props: { text: "brand font" } }]
|
|
8916
8923
|
};
|
|
8917
8924
|
|
|
8918
8925
|
// List/ListWithTitle.js
|
|
@@ -9438,65 +9445,72 @@ var Banner = {
|
|
|
9438
9445
|
extend: TitleParagraph,
|
|
9439
9446
|
props: {
|
|
9440
9447
|
height: "fit-content",
|
|
9441
|
-
padding: "D1
|
|
9448
|
+
padding: "D2+X1 D1+X D2 D",
|
|
9442
9449
|
width: "100%",
|
|
9443
9450
|
theme: "dialog",
|
|
9444
|
-
|
|
9451
|
+
align: "flex-start",
|
|
9452
|
+
gap: "B"
|
|
9445
9453
|
},
|
|
9446
9454
|
Title: {
|
|
9447
9455
|
tag: "h1",
|
|
9448
9456
|
props: {
|
|
9449
9457
|
textTransform: "capitalize",
|
|
9450
|
-
fontSize: `${
|
|
9458
|
+
fontSize: `${150 / 16}em`,
|
|
9451
9459
|
fontWeight: "900",
|
|
9452
|
-
|
|
9460
|
+
letterSpacing: "-0.035em",
|
|
9461
|
+
color: "white",
|
|
9462
|
+
lineHeight: ".8em",
|
|
9463
|
+
gap: "0"
|
|
9453
9464
|
}
|
|
9454
9465
|
},
|
|
9455
9466
|
Paragraph: {
|
|
9456
9467
|
props: {
|
|
9468
|
+
flow: "column",
|
|
9457
9469
|
justifyContent: "space-between",
|
|
9458
|
-
|
|
9459
|
-
|
|
9470
|
+
flex: "1",
|
|
9471
|
+
minWidth: "100%",
|
|
9460
9472
|
position: "relative",
|
|
9473
|
+
gap: "A",
|
|
9461
9474
|
":before": {
|
|
9462
9475
|
content: '""',
|
|
9463
9476
|
position: "absolute",
|
|
9464
|
-
boxSize: "
|
|
9477
|
+
boxSize: "0.3px 100%",
|
|
9465
9478
|
theme: "dialog",
|
|
9466
9479
|
top: "0",
|
|
9467
|
-
round: "C"
|
|
9480
|
+
round: "C",
|
|
9481
|
+
background: "white 0"
|
|
9482
|
+
}
|
|
9483
|
+
},
|
|
9484
|
+
P: {
|
|
9485
|
+
props: {
|
|
9486
|
+
text: "Our typography system ranges from impactful brand type used in marketing applications to functional type used in product.",
|
|
9487
|
+
maxWidth: "G1+B",
|
|
9488
|
+
letterSpacing: ".2px",
|
|
9489
|
+
lineHeight: "1.6em",
|
|
9490
|
+
margin: "0",
|
|
9491
|
+
padding: "- - - Z1",
|
|
9492
|
+
color: "grey"
|
|
9468
9493
|
}
|
|
9469
9494
|
},
|
|
9470
|
-
|
|
9495
|
+
Flex: {
|
|
9471
9496
|
extend: TitleParagraph,
|
|
9472
9497
|
props: {
|
|
9473
|
-
gap: "
|
|
9474
|
-
|
|
9475
|
-
Paragraph: {
|
|
9476
|
-
childProps: {
|
|
9477
|
-
fontSize: "Z1"
|
|
9478
|
-
}
|
|
9479
|
-
}
|
|
9498
|
+
gap: "A2",
|
|
9499
|
+
alignSelf: "flex-end"
|
|
9480
9500
|
},
|
|
9481
9501
|
Title: {
|
|
9482
9502
|
tag: "h6",
|
|
9483
9503
|
props: {
|
|
9484
|
-
|
|
9504
|
+
text: "What you\u2019ll find",
|
|
9505
|
+
fontWeight: "400",
|
|
9506
|
+
color: "grey",
|
|
9507
|
+
fontSize: "Z2"
|
|
9485
9508
|
}
|
|
9486
9509
|
},
|
|
9487
9510
|
Paragraph: {
|
|
9488
9511
|
...DotList,
|
|
9489
9512
|
...[{}]
|
|
9490
9513
|
}
|
|
9491
|
-
},
|
|
9492
|
-
P: {
|
|
9493
|
-
text: "Our typography system ranges from impactful brand type used in marketing applications to functional type used in product. They come together to create a cohesive approach to how we communicate as a brand.",
|
|
9494
|
-
maxWidth: "G3+C",
|
|
9495
|
-
margin: "0",
|
|
9496
|
-
letterSpacing: ".1px",
|
|
9497
|
-
padding: "B - - Y",
|
|
9498
|
-
fontSize: "Z2",
|
|
9499
|
-
lineHeight: "1.6em"
|
|
9500
9514
|
}
|
|
9501
9515
|
}
|
|
9502
9516
|
};
|