@progress/kendo-theme-bootstrap 6.7.0-dev.1 → 6.7.0-dev.3
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 +21 -6
- package/dist/all.scss +22 -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
|
@@ -37159,6 +37159,12 @@ select.k-picker-lg {
|
|
|
37159
37159
|
right: 0;
|
|
37160
37160
|
}
|
|
37161
37161
|
|
|
37162
|
+
.k-floating-label-container.k-invalid > .k-label,
|
|
37163
|
+
.k-floating-label-container.ng-invalid.ng-touched > .k-label,
|
|
37164
|
+
.k-floating-label-container.ng-invalid.ng-dirty > .k-label {
|
|
37165
|
+
color: #dc3545;
|
|
37166
|
+
}
|
|
37167
|
+
|
|
37162
37168
|
.k-split-button .k-split-button-arrow {
|
|
37163
37169
|
padding-block: 0.375rem;
|
|
37164
37170
|
padding-inline: 0.375rem;
|
|
@@ -55031,25 +55037,29 @@ kendo-scheduler .k-event .k-event-actions:first-child,
|
|
|
55031
55037
|
margin: 0;
|
|
55032
55038
|
padding: 0;
|
|
55033
55039
|
height: 100%;
|
|
55034
|
-
width:
|
|
55040
|
+
width: 100%;
|
|
55035
55041
|
display: flex;
|
|
55036
55042
|
flex-flow: row nowrap;
|
|
55037
55043
|
cursor: default;
|
|
55038
55044
|
white-space: nowrap;
|
|
55039
55045
|
}
|
|
55040
55046
|
|
|
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
55047
|
.k-scrollview-wrap img {
|
|
55047
55048
|
-webkit-user-select: none;
|
|
55048
55049
|
-ms-user-select: none;
|
|
55049
55050
|
user-select: none;
|
|
55050
55051
|
}
|
|
55051
55052
|
|
|
55053
|
+
kendo-scrollview.k-scrollview .k-scrollview-wrap > .k-scrollview-view {
|
|
55054
|
+
display: inline-block;
|
|
55055
|
+
overflow: hidden;
|
|
55056
|
+
position: absolute;
|
|
55057
|
+
top: 0;
|
|
55058
|
+
left: 0;
|
|
55059
|
+
}
|
|
55060
|
+
|
|
55052
55061
|
.k-scrollview-wrap.k-scrollview-animate {
|
|
55062
|
+
width: calc(var(--kendo-scrollview-views, 1)*100%);
|
|
55053
55063
|
transition-duration: 0.3s;
|
|
55054
55064
|
transition-timing-function: ease-in-out;
|
|
55055
55065
|
transform: translateX(calc(-100%/var(--kendo-scrollview-views, 1)*(var(--kendo-scrollview-current, 1) - 1)));
|
|
@@ -55060,6 +55070,11 @@ kendo-scheduler .k-event .k-event-actions:first-child,
|
|
|
55060
55070
|
transform: translateX(calc(100%/var(--kendo-scrollview-views, 1)*(var(--kendo-scrollview-current, 1) - 1)));
|
|
55061
55071
|
}
|
|
55062
55072
|
|
|
55073
|
+
.k-scrollview-wrap.k-scrollview-animate .k-scrollview-view {
|
|
55074
|
+
width: calc(100%/var(--kendo-scrollview-views, 1));
|
|
55075
|
+
flex: 0 0 calc(100%/var(--kendo-scrollview-views, 1));
|
|
55076
|
+
}
|
|
55077
|
+
|
|
55063
55078
|
.k-scrollview-nav-wrap {
|
|
55064
55079
|
padding: 0;
|
|
55065
55080
|
margin: 0;
|
package/dist/all.scss
CHANGED
|
@@ -28616,6 +28616,11 @@ $kendo-floating-label-focus-text: null !default;
|
|
|
28616
28616
|
);
|
|
28617
28617
|
}
|
|
28618
28618
|
|
|
28619
|
+
&.k-invalid > .k-label,
|
|
28620
|
+
&.ng-invalid.ng-touched > .k-label,
|
|
28621
|
+
&.ng-invalid.ng-dirty > .k-label {
|
|
28622
|
+
@include fill ( $color: $kendo-invalid-text );
|
|
28623
|
+
}
|
|
28619
28624
|
}
|
|
28620
28625
|
|
|
28621
28626
|
}
|
|
@@ -60559,24 +60564,29 @@ $kendo-scrollview-transition-timing-function: ease-in-out !default;
|
|
|
60559
60564
|
margin: 0;
|
|
60560
60565
|
padding: 0;
|
|
60561
60566
|
height: 100%;
|
|
60562
|
-
width:
|
|
60567
|
+
width: 100%;
|
|
60563
60568
|
display: flex;
|
|
60564
60569
|
flex-flow: row nowrap;
|
|
60565
60570
|
cursor: default;
|
|
60566
60571
|
white-space: nowrap;
|
|
60567
60572
|
|
|
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
60573
|
img {
|
|
60574
60574
|
user-select: none;
|
|
60575
60575
|
}
|
|
60576
60576
|
|
|
60577
60577
|
}
|
|
60578
60578
|
|
|
60579
|
+
// Can be removed once Angular are able to rely on the animations from the themes
|
|
60580
|
+
kendo-scrollview.k-scrollview .k-scrollview-wrap > .k-scrollview-view {
|
|
60581
|
+
display: inline-block;
|
|
60582
|
+
overflow: hidden;
|
|
60583
|
+
position: absolute;
|
|
60584
|
+
top: 0;
|
|
60585
|
+
left: 0;
|
|
60586
|
+
}
|
|
60587
|
+
|
|
60579
60588
|
.k-scrollview-wrap.k-scrollview-animate {
|
|
60589
|
+
width: calc( var(--kendo-scrollview-views, 1) * 100% );
|
|
60580
60590
|
transition-duration: $kendo-scrollview-transition-duration;
|
|
60581
60591
|
transition-timing-function: $kendo-scrollview-transition-timing-function;
|
|
60582
60592
|
transform: translateX( calc( -100% / var(--kendo-scrollview-views, 1) * ( var(--kendo-scrollview-current, 1) - 1) ) );
|
|
@@ -60585,6 +60595,12 @@ $kendo-scrollview-transition-timing-function: ease-in-out !default;
|
|
|
60585
60595
|
.k-rtl & {
|
|
60586
60596
|
transform: translateX( calc( 100% / var(--kendo-scrollview-views, 1) * ( var(--kendo-scrollview-current, 1) - 1) ) );
|
|
60587
60597
|
}
|
|
60598
|
+
|
|
60599
|
+
.k-scrollview-view {
|
|
60600
|
+
width: calc( 100% / var(--kendo-scrollview-views, 1) );
|
|
60601
|
+
flex: 0 0 calc( 100% / var(--kendo-scrollview-views, 1) );
|
|
60602
|
+
}
|
|
60603
|
+
|
|
60588
60604
|
}
|
|
60589
60605
|
|
|
60590
60606
|
.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.3",
|
|
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.3",
|
|
55
|
+
"@progress/kendo-theme-default": "6.7.0-dev.3",
|
|
56
|
+
"@progress/kendo-theme-utils": "6.7.0-dev.3",
|
|
57
57
|
"bootstrap": "5.2.1"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "13f0e9d31474eca02c4ee6a62a4f182bdf7633cb"
|
|
60
60
|
}
|