@symbo.ls/uikit 2.11.77 → 2.11.78
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 +36 -8
- package/dist/index.cjs.js.map +3 -3
- package/package.json +2 -2
package/dist/index.cjs.js
CHANGED
|
@@ -14246,10 +14246,15 @@ var DialogFooter = {
|
|
|
14246
14246
|
childExtend: {
|
|
14247
14247
|
extend: Button,
|
|
14248
14248
|
props: {
|
|
14249
|
-
theme: "primary @dark .color-only",
|
|
14250
14249
|
fontSize: "Z",
|
|
14251
14250
|
textTransform: "uppercase",
|
|
14252
14251
|
background: "transparent",
|
|
14252
|
+
"@dark": {
|
|
14253
|
+
theme: "primary @dark .color-only"
|
|
14254
|
+
},
|
|
14255
|
+
"@light": {
|
|
14256
|
+
theme: "primary @light .color-only"
|
|
14257
|
+
},
|
|
14253
14258
|
"&": {
|
|
14254
14259
|
padding: "Z A"
|
|
14255
14260
|
},
|
|
@@ -14447,13 +14452,20 @@ var DatePickerMonthsSlider = {
|
|
|
14447
14452
|
position: "absolute",
|
|
14448
14453
|
zIndex: "35",
|
|
14449
14454
|
background: "transparent",
|
|
14450
|
-
color: "#0079FD",
|
|
14451
14455
|
":first-child": { left: "18px" },
|
|
14452
14456
|
":last-child": { right: "18px" }
|
|
14453
14457
|
}
|
|
14454
14458
|
}
|
|
14455
14459
|
},
|
|
14456
|
-
Button_left: {
|
|
14460
|
+
Button_left: {
|
|
14461
|
+
icon: "arrowLeft",
|
|
14462
|
+
"@dark": {
|
|
14463
|
+
theme: "primary @dark .color-only"
|
|
14464
|
+
},
|
|
14465
|
+
"@light": {
|
|
14466
|
+
theme: "primary @light .color-only"
|
|
14467
|
+
}
|
|
14468
|
+
},
|
|
14457
14469
|
Flex: {
|
|
14458
14470
|
props: {
|
|
14459
14471
|
flex: "1",
|
|
@@ -14497,7 +14509,15 @@ var DatePickerMonthsSlider = {
|
|
|
14497
14509
|
];
|
|
14498
14510
|
}
|
|
14499
14511
|
},
|
|
14500
|
-
Button_right: {
|
|
14512
|
+
Button_right: {
|
|
14513
|
+
icon: "arrowRight",
|
|
14514
|
+
"@dark": {
|
|
14515
|
+
theme: "primary @dark .color-only"
|
|
14516
|
+
},
|
|
14517
|
+
"@light": {
|
|
14518
|
+
theme: "primary @light .color-only"
|
|
14519
|
+
}
|
|
14520
|
+
}
|
|
14501
14521
|
};
|
|
14502
14522
|
|
|
14503
14523
|
// Datepicker/weekdays.js
|
|
@@ -15755,15 +15775,23 @@ var Pills = {
|
|
|
15755
15775
|
},
|
|
15756
15776
|
childExtend: {
|
|
15757
15777
|
props: (el, s) => ({
|
|
15758
|
-
active: parseInt(el.key) === (el.parent.props.active
|
|
15759
|
-
theme: "tertiary",
|
|
15778
|
+
active: parseInt(el.key) === parseInt(s.active || el.parent.props.active),
|
|
15760
15779
|
boxSize: "Y2",
|
|
15761
15780
|
round: "A",
|
|
15781
|
+
"!active": {
|
|
15782
|
+
theme: "tertiary"
|
|
15783
|
+
},
|
|
15762
15784
|
".active": {
|
|
15763
15785
|
theme: "primary"
|
|
15764
15786
|
}
|
|
15765
|
-
})
|
|
15766
|
-
|
|
15787
|
+
}),
|
|
15788
|
+
on: {
|
|
15789
|
+
click: (e, el, s) => {
|
|
15790
|
+
s.update({ active: parseInt(el.key) });
|
|
15791
|
+
}
|
|
15792
|
+
}
|
|
15793
|
+
},
|
|
15794
|
+
$setCollection: ({ props: props7, state }) => new Array(props7.qty).fill({})
|
|
15767
15795
|
};
|
|
15768
15796
|
|
|
15769
15797
|
// Select/index.js
|