@progress/kendo-theme-material 5.0.0-alpha.1 → 5.0.0-alpha.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-theme-material",
3
3
  "description": "Material theme for Kendo UI",
4
- "version": "5.0.0-alpha.1",
4
+ "version": "5.0.0-alpha.2",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -50,7 +50,7 @@
50
50
  "postpublish": "echo 'no postpublish for material theme'"
51
51
  },
52
52
  "dependencies": {
53
- "@progress/kendo-theme-default": "^5.0.0-alpha.1"
53
+ "@progress/kendo-theme-default": "^5.0.0-alpha.2"
54
54
  },
55
- "gitHead": "f7771e7fd26ff92503ccbdda09fbbd8a7578abb2"
55
+ "gitHead": "f7a672c3f60bdfa52a6fb04262352b0a45ac7029"
56
56
  }
package/scss/all.scss CHANGED
@@ -55,6 +55,11 @@
55
55
  @import "coloreditor/_index.scss";
56
56
  @import "colorpicker/_index.scss";
57
57
  @import "combobox/_index.scss";
58
+ @import "dateinput/_index.scss";
59
+ @import "datepicker/_index.scss";
60
+ @import "timepicker/_index.scss";
61
+ @import "datetimepicker/_index.scss";
62
+ @import "daterangepicker/_index.scss";
58
63
  @import "datetime/_index.scss";
59
64
  @import "dropdowngrid/_index.scss";
60
65
  @import "dropdownlist/_index.scss";
@@ -0,0 +1,15 @@
1
+ @import "../core/_index.scss";
2
+
3
+
4
+ // Dependencies
5
+ @import "../common/_index.scss";
6
+ @import "../input/_index.scss";
7
+ @import "../floating-label/_index.scss";
8
+ @import "../popup/_index.scss";
9
+ @import "../icons/_index.scss";
10
+
11
+
12
+ // Component
13
+ @import "_variables.scss";
14
+ @import "_layout.scss";
15
+ @import "_theme.scss";
@@ -0,0 +1 @@
1
+ @import "~@progress/kendo-theme-default/scss/dateinput/_layout.scss";
@@ -0,0 +1 @@
1
+ @import "~@progress/kendo-theme-default/scss/dateinput/_theme.scss";
@@ -0,0 +1 @@
1
+ // Dateinput
@@ -0,0 +1,15 @@
1
+ @import "../core/_index.scss";
2
+
3
+
4
+ // Dependencies
5
+ @import "../common/_index.scss";
6
+ @import "../input/_index.scss";
7
+ @import "../floating-label/_index.scss";
8
+ @import "../popup/_index.scss";
9
+ @import "../icons/_index.scss";
10
+
11
+
12
+ // Component
13
+ @import "_variables.scss";
14
+ @import "_layout.scss";
15
+ @import "_theme.scss";
@@ -0,0 +1 @@
1
+ @import "~@progress/kendo-theme-default/scss/datepicker/_layout.scss";
@@ -0,0 +1 @@
1
+ @import "~@progress/kendo-theme-default/scss/datepicker/_theme.scss";
@@ -0,0 +1 @@
1
+ // Datepicker
@@ -0,0 +1,15 @@
1
+ @import "../core/_index.scss";
2
+
3
+
4
+ // Dependencies
5
+ @import "../common/_index.scss";
6
+ @import "../input/_index.scss";
7
+ @import "../floating-label/_index.scss";
8
+ @import "../popup/_index.scss";
9
+ @import "../icons/_index.scss";
10
+
11
+
12
+ // Component
13
+ @import "_variables.scss";
14
+ @import "_layout.scss";
15
+ @import "_theme.scss";
@@ -0,0 +1 @@
1
+ @import "~@progress/kendo-theme-default/scss/daterangepicker/_layout.scss";
@@ -0,0 +1 @@
1
+ @import "~@progress/kendo-theme-default/scss/daterangepicker/_theme.scss";
@@ -0,0 +1 @@
1
+ // Daterangepicker
@@ -2,42 +2,6 @@
2
2
 
3
3
  @include exports("datetime/layout/material") {
4
4
 
5
- // Common
6
- .k-datepicker,
7
- .k-datetimepicker,
8
- .k-timepicker {
9
-
10
- // Wrapper
11
- .k-picker-wrap {
12
- border-width: $kendo-input-border-width 0;
13
- border-top-color: transparent !important; // sass-lint:disable-line no-important
14
-
15
- // Disabled state
16
- .k-state-disabled > &,
17
- &.k-state-disabled {
18
- border-bottom-style: dashed;
19
- }
20
- }
21
- }
22
-
23
-
24
- // Dateinput
25
- .k-dateinput {
26
-
27
- // Wrapper
28
- .k-dateinput-wrap {
29
- border-width: $kendo-input-border-width 0;
30
- border-top-color: transparent !important; // sass-lint:disable-line no-important
31
-
32
-
33
- // Disabled state
34
- .k-state-disabled > &,
35
- &.k-state-disabled {
36
- border-bottom-style: dashed;
37
- }
38
- }
39
- }
40
-
41
5
  .k-timeselector,
42
6
  .k-datetime-wrap {
43
7
  .k-time-header {
@@ -2,9 +2,6 @@
2
2
 
3
3
  @include exports( "datetime/theme/material" ) {
4
4
 
5
- // Timepicker
6
- .k-timepicker {}
7
-
8
5
  .k-timeselector,
9
6
  .k-datetime-wrap {
10
7
  border-color: inherit;
@@ -0,0 +1,15 @@
1
+ @import "../core/_index.scss";
2
+
3
+
4
+ // Dependencies
5
+ @import "../common/_index.scss";
6
+ @import "../input/_index.scss";
7
+ @import "../floating-label/_index.scss";
8
+ @import "../popup/_index.scss";
9
+ @import "../icons/_index.scss";
10
+
11
+
12
+ // Component
13
+ @import "_variables.scss";
14
+ @import "_layout.scss";
15
+ @import "_theme.scss";
@@ -0,0 +1 @@
1
+ @import "~@progress/kendo-theme-default/scss/datetimepicker/_layout.scss";
@@ -0,0 +1 @@
1
+ @import "~@progress/kendo-theme-default/scss/datetimepicker/_theme.scss";
@@ -0,0 +1 @@
1
+ // Datetimepicker
@@ -1,22 +1 @@
1
1
  @import "~@progress/kendo-theme-default/scss/filter/_layout.scss";
2
-
3
- @include exports("filter/layout/material") {
4
-
5
- .k-filter {
6
- .k-filter-toolbar {
7
- .k-picker-wrap,
8
- .k-dateinput-wrap {
9
- border-width: 0 0 1px;
10
-
11
- .k-input {
12
- padding: $kendo-input-padding-y $kendo-input-padding-x;
13
- height: calc( #{$kendo-input-padding-y * 2} + #{$kendo-input-line-height * 1em} );
14
- }
15
-
16
- .k-select {
17
- padding: 0;
18
- }
19
- }
20
- }
21
- }
22
- }
@@ -146,15 +146,6 @@
146
146
  align-items: center;
147
147
  }
148
148
 
149
- kendo-scheduler-datetime-picker {
150
- display: inline-flex;
151
- width: 100%;
152
-
153
- .k-picker-wrap {
154
- flex: 1;
155
- }
156
- }
157
-
158
149
  }
159
150
 
160
151
  .k-edit-field .k-reset {
@@ -0,0 +1,15 @@
1
+ @import "../core/_index.scss";
2
+
3
+
4
+ // Dependencies
5
+ @import "../common/_index.scss";
6
+ @import "../input/_index.scss";
7
+ @import "../floating-label/_index.scss";
8
+ @import "../popup/_index.scss";
9
+ @import "../icons/_index.scss";
10
+
11
+
12
+ // Component
13
+ @import "_variables.scss";
14
+ @import "_layout.scss";
15
+ @import "_theme.scss";
@@ -0,0 +1 @@
1
+ @import "~@progress/kendo-theme-default/scss/timepicker/_layout.scss";
@@ -0,0 +1 @@
1
+ @import "~@progress/kendo-theme-default/scss/timepicker/_theme.scss";
@@ -0,0 +1 @@
1
+ // Timepicker