@progress/kendo-theme-core 8.0.2-dev.4 → 8.1.0-dev.1

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-theme-core",
3
3
  "description": "A collection of functions and mixins used for building themes for Kendo UI",
4
- "version": "8.0.2-dev.4",
4
+ "version": "8.1.0-dev.1",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -44,5 +44,5 @@
44
44
  "directories": {
45
45
  "doc": "docs"
46
46
  },
47
- "gitHead": "69324d7de3d7724d8484700a99f61efc52047622"
47
+ "gitHead": "4689911f0f7008e71ed496fa1e63f7d006270dca"
48
48
  }
@@ -5,13 +5,10 @@ $kendo-enable-shadows: true !default;
5
5
  $kendo-enable-rounded: true !default;
6
6
  $kendo-enable-gradients: true !default;
7
7
  $kendo-enable-transitions: true !default;
8
+ $kendo-nested-disabled: false !default;
8
9
 
9
10
  // Equilateral triangle variables
10
11
  // stylelint-disable number-max-precision
11
12
  $equilateral-index: 1.7320508076 !default;
12
13
  $equilateral-height: 0.8660254038 !default;
13
14
  // stylelint-enable number-max-precision
14
-
15
- // Loading
16
- $kendo-loading-opacity: .3 !default;
17
- $kendo-zindex-loading: 100 !default;
@@ -37,13 +37,26 @@ $kendo-invalid-border: null !default;
37
37
  $kendo-invalid-shadow: null !default;
38
38
 
39
39
  // Disabled Styling
40
+
41
+ /// The background color of disabled items.
40
42
  $kendo-disabled-bg: null !default;
43
+ /// The text color of disabled items.
41
44
  $kendo-disabled-text: null !default;
45
+ /// The border color of disabled items.
42
46
  $kendo-disabled-border: null !default;
47
+ /// The opacity of disabled items.
48
+ $kendo-disabled-opacity: null !default;
49
+ /// The filter of disabled items.
50
+ $kendo-disabled-filter: null !default;
51
+
52
+ $kendo-disabled-styling: (
53
+ bg: $kendo-disabled-bg,
54
+ color: $kendo-disabled-text,
55
+ border: $kendo-disabled-border,
56
+ opacity: $kendo-disabled-opacity,
57
+ filter: $kendo-disabled-filter
58
+ ) !default;
43
59
 
44
- // Loading
45
- $kendo-loading-bg: null !default;
46
- $kendo-loading-text: null !default;
47
60
 
48
61
  $kendo-palettes: () !default;
49
62
  $kendo-theme-colors: () !default;
@@ -1,19 +1,13 @@
1
1
  // Disabled
2
- @mixin disabled( $kendo-disabled-styling ) {
3
- outline: none;
4
- cursor: default;
5
- opacity: k-map-get($kendo-disabled-styling, opacity);
6
- filter: k-map-get($kendo-disabled-styling, filter);
7
- pointer-events: none;
8
- box-shadow: none;
9
- }
10
2
 
11
- @mixin disabled-color( $color: null, $bg: null, $border: null ) {
3
+ @mixin disabled( $color: null, $bg: null, $border: null, $opacity: null, $filter: null ) {
12
4
  outline: none;
13
5
  cursor: default;
14
- background-color: $bg;
15
6
  color: $color;
7
+ background-color: $bg;
16
8
  border-color: $border;
9
+ opacity: $opacity;
10
+ filter: $filter;
17
11
  pointer-events: none;
18
12
  box-shadow: none;
19
13
  }
@@ -25,6 +25,7 @@ $kendo-components: (
25
25
  "loader",
26
26
  "skeleton",
27
27
  "tooltip",
28
+ "time-marker",
28
29
 
29
30
  // Native forms
30
31
  "button",
@@ -101,6 +102,7 @@ $kendo-components: (
101
102
  // Layout & containers
102
103
  "card",
103
104
  "expander",
105
+ "panel",
104
106
  "panelbar",
105
107
  "splitter",
106
108
  "tile-layout",
@@ -199,7 +199,8 @@ $_kendo-dependencies: (
199
199
  "splitter",
200
200
  "treelist",
201
201
  "validator",
202
- "window"
202
+ "window",
203
+ "time-marker"
203
204
  ),
204
205
  grid: (
205
206
  "actions",
@@ -298,6 +299,7 @@ $_kendo-dependencies: (
298
299
  "list",
299
300
  "toolbar"
300
301
  ),
302
+ panel: (),
301
303
  panelbar: (
302
304
  "icon"
303
305
  ),
@@ -339,7 +341,8 @@ $_kendo-dependencies: (
339
341
  "dialog",
340
342
  "dropdown-list",
341
343
  "toolbar",
342
- "tooltip"
344
+ "tooltip",
345
+ "time-marker"
343
346
  ),
344
347
  scroller: (),
345
348
  scrollview: (
@@ -411,6 +414,7 @@ $_kendo-dependencies: (
411
414
  tile-layout: (
412
415
  "card"
413
416
  ),
417
+ time-marker: (),
414
418
  time-duration-picker: (
415
419
  "button",
416
420
  "icon",