@progress/kendo-theme-bootstrap 6.7.0-dev.1 → 6.7.0-dev.2
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/all.css +15 -6
- package/dist/all.scss +17 -6
- package/lib/swatches/bootstrap-3-dark.json +1 -1
- package/lib/swatches/bootstrap-3.json +1 -1
- package/lib/swatches/bootstrap-4-dark.json +1 -1
- package/lib/swatches/bootstrap-4.json +1 -1
- package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
- package/lib/swatches/bootstrap-main-dark.json +1 -1
- package/lib/swatches/bootstrap-main.json +1 -1
- package/lib/swatches/bootstrap-nordic.json +1 -1
- package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
- package/lib/swatches/bootstrap-turquoise.json +1 -1
- package/lib/swatches/bootstrap-urban.json +1 -1
- package/lib/swatches/bootstrap-vintage.json +1 -1
- package/package.json +5 -5
package/dist/all.css
CHANGED
|
@@ -55031,25 +55031,29 @@ kendo-scheduler .k-event .k-event-actions:first-child,
|
|
|
55031
55031
|
margin: 0;
|
|
55032
55032
|
padding: 0;
|
|
55033
55033
|
height: 100%;
|
|
55034
|
-
width:
|
|
55034
|
+
width: 100%;
|
|
55035
55035
|
display: flex;
|
|
55036
55036
|
flex-flow: row nowrap;
|
|
55037
55037
|
cursor: default;
|
|
55038
55038
|
white-space: nowrap;
|
|
55039
55039
|
}
|
|
55040
55040
|
|
|
55041
|
-
.k-scrollview-wrap .k-scrollview-view {
|
|
55042
|
-
width: calc(100%/var(--kendo-scrollview-views, 1));
|
|
55043
|
-
flex: 0 0 calc(100%/var(--kendo-scrollview-views, 1));
|
|
55044
|
-
}
|
|
55045
|
-
|
|
55046
55041
|
.k-scrollview-wrap img {
|
|
55047
55042
|
-webkit-user-select: none;
|
|
55048
55043
|
-ms-user-select: none;
|
|
55049
55044
|
user-select: none;
|
|
55050
55045
|
}
|
|
55051
55046
|
|
|
55047
|
+
kendo-scrollview.k-scrollview .k-scrollview-wrap > .k-scrollview-view {
|
|
55048
|
+
display: inline-block;
|
|
55049
|
+
overflow: hidden;
|
|
55050
|
+
position: absolute;
|
|
55051
|
+
top: 0;
|
|
55052
|
+
left: 0;
|
|
55053
|
+
}
|
|
55054
|
+
|
|
55052
55055
|
.k-scrollview-wrap.k-scrollview-animate {
|
|
55056
|
+
width: calc(var(--kendo-scrollview-views, 1)*100%);
|
|
55053
55057
|
transition-duration: 0.3s;
|
|
55054
55058
|
transition-timing-function: ease-in-out;
|
|
55055
55059
|
transform: translateX(calc(-100%/var(--kendo-scrollview-views, 1)*(var(--kendo-scrollview-current, 1) - 1)));
|
|
@@ -55060,6 +55064,11 @@ kendo-scheduler .k-event .k-event-actions:first-child,
|
|
|
55060
55064
|
transform: translateX(calc(100%/var(--kendo-scrollview-views, 1)*(var(--kendo-scrollview-current, 1) - 1)));
|
|
55061
55065
|
}
|
|
55062
55066
|
|
|
55067
|
+
.k-scrollview-wrap.k-scrollview-animate .k-scrollview-view {
|
|
55068
|
+
width: calc(100%/var(--kendo-scrollview-views, 1));
|
|
55069
|
+
flex: 0 0 calc(100%/var(--kendo-scrollview-views, 1));
|
|
55070
|
+
}
|
|
55071
|
+
|
|
55063
55072
|
.k-scrollview-nav-wrap {
|
|
55064
55073
|
padding: 0;
|
|
55065
55074
|
margin: 0;
|
package/dist/all.scss
CHANGED
|
@@ -60559,24 +60559,29 @@ $kendo-scrollview-transition-timing-function: ease-in-out !default;
|
|
|
60559
60559
|
margin: 0;
|
|
60560
60560
|
padding: 0;
|
|
60561
60561
|
height: 100%;
|
|
60562
|
-
width:
|
|
60562
|
+
width: 100%;
|
|
60563
60563
|
display: flex;
|
|
60564
60564
|
flex-flow: row nowrap;
|
|
60565
60565
|
cursor: default;
|
|
60566
60566
|
white-space: nowrap;
|
|
60567
60567
|
|
|
60568
|
-
.k-scrollview-view {
|
|
60569
|
-
width: calc( 100% / var(--kendo-scrollview-views, 1) );
|
|
60570
|
-
flex: 0 0 calc( 100% / var(--kendo-scrollview-views, 1) );
|
|
60571
|
-
}
|
|
60572
|
-
|
|
60573
60568
|
img {
|
|
60574
60569
|
user-select: none;
|
|
60575
60570
|
}
|
|
60576
60571
|
|
|
60577
60572
|
}
|
|
60578
60573
|
|
|
60574
|
+
// Can be removed once Angular are able to rely on the animations from the themes
|
|
60575
|
+
kendo-scrollview.k-scrollview .k-scrollview-wrap > .k-scrollview-view {
|
|
60576
|
+
display: inline-block;
|
|
60577
|
+
overflow: hidden;
|
|
60578
|
+
position: absolute;
|
|
60579
|
+
top: 0;
|
|
60580
|
+
left: 0;
|
|
60581
|
+
}
|
|
60582
|
+
|
|
60579
60583
|
.k-scrollview-wrap.k-scrollview-animate {
|
|
60584
|
+
width: calc( var(--kendo-scrollview-views, 1) * 100% );
|
|
60580
60585
|
transition-duration: $kendo-scrollview-transition-duration;
|
|
60581
60586
|
transition-timing-function: $kendo-scrollview-transition-timing-function;
|
|
60582
60587
|
transform: translateX( calc( -100% / var(--kendo-scrollview-views, 1) * ( var(--kendo-scrollview-current, 1) - 1) ) );
|
|
@@ -60585,6 +60590,12 @@ $kendo-scrollview-transition-timing-function: ease-in-out !default;
|
|
|
60585
60590
|
.k-rtl & {
|
|
60586
60591
|
transform: translateX( calc( 100% / var(--kendo-scrollview-views, 1) * ( var(--kendo-scrollview-current, 1) - 1) ) );
|
|
60587
60592
|
}
|
|
60593
|
+
|
|
60594
|
+
.k-scrollview-view {
|
|
60595
|
+
width: calc( 100% / var(--kendo-scrollview-views, 1) );
|
|
60596
|
+
flex: 0 0 calc( 100% / var(--kendo-scrollview-views, 1) );
|
|
60597
|
+
}
|
|
60598
|
+
|
|
60588
60599
|
}
|
|
60589
60600
|
|
|
60590
60601
|
.k-scrollview-nav-wrap {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-bootstrap",
|
|
3
3
|
"description": "Bootstrap theme for Kendo UI",
|
|
4
|
-
"version": "6.7.0-dev.
|
|
4
|
+
"version": "6.7.0-dev.2",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -51,10 +51,10 @@
|
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"@progress/kendo-font-icons": "1.8.0",
|
|
54
|
-
"@progress/kendo-theme-core": "6.7.0-dev.
|
|
55
|
-
"@progress/kendo-theme-default": "6.7.0-dev.
|
|
56
|
-
"@progress/kendo-theme-utils": "6.7.0-dev.
|
|
54
|
+
"@progress/kendo-theme-core": "6.7.0-dev.2",
|
|
55
|
+
"@progress/kendo-theme-default": "6.7.0-dev.2",
|
|
56
|
+
"@progress/kendo-theme-utils": "6.7.0-dev.2",
|
|
57
57
|
"bootstrap": "5.2.1"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "48b9852e24736586f7bb277b8db520075eadd6e4"
|
|
60
60
|
}
|