@progress/kendo-theme-bootstrap 5.8.2-dev.6 → 5.9.0
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 +90 -57
- package/dist/all.scss +82 -32
- 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 +4 -4
- package/scss/calendar/_variables.scss +3 -3
- package/scss/coloreditor/_variables.scss +4 -0
- package/scss/timedurationpicker/_index.scss +16 -0
- package/scss/timedurationpicker/_layout.scss +1 -0
- package/scss/timedurationpicker/_theme.scss +1 -0
- package/scss/timedurationpicker/_variables.scss +1 -0
- package/scss/timeselector/_index.scss +1 -0
- package/scss/timeselector/_variables.scss +2 -2
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": "5.
|
|
4
|
+
"version": "5.9.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -43,12 +43,12 @@
|
|
|
43
43
|
"postpublish": "echo 'no postpublish for bootstrap theme'"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@progress/kendo-theme-core": "^5.
|
|
47
|
-
"@progress/kendo-theme-default": "^5.
|
|
46
|
+
"@progress/kendo-theme-core": "^5.9.0",
|
|
47
|
+
"@progress/kendo-theme-default": "^5.9.0",
|
|
48
48
|
"bootstrap": "^5.2.1"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"sass-build": "^1.0.0"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "ac592f3dc96e799eb8a5da3513542a68a7984458"
|
|
54
54
|
}
|
|
@@ -114,19 +114,19 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
114
114
|
// Calendar sizes
|
|
115
115
|
$kendo-calendar-sm-font-size: $font-size-md !default;
|
|
116
116
|
$kendo-calendar-sm-line-height: $line-height-md !default;
|
|
117
|
-
$kendo-calendar-sm-cell-size:
|
|
117
|
+
$kendo-calendar-sm-cell-size: 34px !default;
|
|
118
118
|
$kendo-calendar-sm-cell-padding-x: .125rem !default;
|
|
119
119
|
$kendo-calendar-sm-cell-padding-y: .125rem !default;
|
|
120
120
|
|
|
121
121
|
$kendo-calendar-md-font-size: $font-size-md !default;
|
|
122
122
|
$kendo-calendar-md-line-height: $line-height-md !default;
|
|
123
|
-
$kendo-calendar-md-cell-size:
|
|
123
|
+
$kendo-calendar-md-cell-size: 38px !default;
|
|
124
124
|
$kendo-calendar-md-cell-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
125
125
|
$kendo-calendar-md-cell-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
126
126
|
|
|
127
127
|
$kendo-calendar-lg-font-size: $font-size-lg !default;
|
|
128
128
|
$kendo-calendar-lg-line-height: $line-height-lg !default;
|
|
129
|
-
$kendo-calendar-lg-cell-size:
|
|
129
|
+
$kendo-calendar-lg-cell-size: 42px !default;
|
|
130
130
|
$kendo-calendar-lg-cell-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
131
131
|
$kendo-calendar-lg-cell-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
132
132
|
|
|
@@ -25,3 +25,7 @@ $coloreditor-color-preview-height: 12px !default;
|
|
|
25
25
|
$coloreditor-views-padding-y: $coloreditor-spacer !default;
|
|
26
26
|
$coloreditor-views-padding-x: $coloreditor-views-padding-y !default;
|
|
27
27
|
$coloreditor-views-gap: $coloreditor-spacer !default;
|
|
28
|
+
|
|
29
|
+
$coloreditor-colorgradient-focus-outline-color: rgba(0, 0, 0, .3) !default;
|
|
30
|
+
$coloreditor-colorgradient-focus-outline: 2px !default;
|
|
31
|
+
$coloreditor-colorgradient-focus-outline-offset: 2px !default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
@import "../core/_index.scss";
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
// Dependencies
|
|
5
|
+
@import "../icons/index";
|
|
6
|
+
@import "../button/_index.scss";
|
|
7
|
+
@import "../input/_index.scss";
|
|
8
|
+
@import "../popup/_index.scss";
|
|
9
|
+
@import "../list/_index.scss";
|
|
10
|
+
@import "../timeselector/_index.scss";
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
// Component
|
|
14
|
+
@import "_variables.scss";
|
|
15
|
+
@import "_layout.scss";
|
|
16
|
+
@import "_theme.scss";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "~@progress/kendo-theme-default/scss/timedurationpicker/_layout.scss";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "~@progress/kendo-theme-default/scss/timedurationpicker/_theme.scss";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// Timedurationpicker
|
|
@@ -8,8 +8,8 @@ $time-selector-bg: $component-bg !default;
|
|
|
8
8
|
$time-selector-text: $component-text !default;
|
|
9
9
|
$time-selector-border: $component-border !default;
|
|
10
10
|
|
|
11
|
-
$time-selector-header-padding-x:
|
|
12
|
-
$time-selector-header-padding-y:
|
|
11
|
+
$time-selector-header-padding-x: $actions-padding-x !default;
|
|
12
|
+
$time-selector-header-padding-y: $actions-padding-y !default;
|
|
13
13
|
$time-selector-header-border-width: 0px !default;
|
|
14
14
|
|
|
15
15
|
$time-list-width: 4em !default;
|