@progress/kendo-theme-fluent 5.8.2-dev.5 → 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.
@@ -25,6 +25,13 @@
25
25
  }
26
26
  }
27
27
 
28
+ .k-coloreditor .k-colorgradient:focus,
29
+ .k-coloreditor .k-colorgradient.k-focus {
30
+ outline: var( --kendo-coloreditor-colorgradient-focus-outline, #{$kendo-coloreditor-colorgradient-focus-outline} ) dotted;
31
+ outline-offset: var( --kendo-coloreditor-colorgradient-focus-outline-offset, #{$kendo-coloreditor-colorgradient-focus-outline-offset} );
32
+ border-radius: 0;
33
+ }
34
+
28
35
  // Header
29
36
  .k-coloreditor-header {
30
37
  padding-inline: var( --kendo-coloreditor-header-padding-x, #{$kendo-coloreditor-header-padding-x} );
@@ -24,4 +24,9 @@
24
24
  );
25
25
  }
26
26
 
27
+ .k-coloreditor .k-colorgradient:focus,
28
+ .k-coloreditor .k-colorgradient.k-focus {
29
+ box-shadow: none;
30
+ outline-color: var( --kendo-coloreditor-colorgradient-focus-outline-color, #{$kendo-coloreditor-colorgradient-focus-outline-color} );
31
+ }
27
32
  }
@@ -81,3 +81,13 @@ $kendo-coloreditor-footer-padding-y: map-get( $kendo-spacing, 2 ) !default;
81
81
  /// Vertical padding of the color editor footer.
82
82
  /// @group coloreditor
83
83
  $kendo-coloreditor-footer-padding-x: map-get( $kendo-spacing, 2 ) !default;
84
+
85
+ /// The color of the focused colorgradient.
86
+ /// @group coloreditor
87
+ $kendo-coloreditor-colorgradient-focus-outline-color: rgba(0, 0, 0, 0.3) !default;
88
+ /// The outline of the focused colorgradient.
89
+ /// @group coloreditor
90
+ $kendo-coloreditor-colorgradient-focus-outline: 2px !default;
91
+ /// The outline offset of the focused colorgradient.
92
+ /// @group coloreditor
93
+ $kendo-coloreditor-colorgradient-focus-outline-offset: 2px !default;
@@ -63,6 +63,7 @@ $components: (
63
63
  "dateinput",
64
64
  "datepicker",
65
65
  "timepicker",
66
+ "timedurationpicker",
66
67
  "datetimepicker",
67
68
  "daterangepicker",
68
69
  "dropdowngrid",
@@ -165,10 +165,18 @@
165
165
  }
166
166
  }
167
167
 
168
- .k-task-delayed .k-task-complete {
169
- @include fill(
170
- $bg: var( --kendo-gantt-delayed-bg, #{$kendo-gantt-delayed-bg} )
171
- );
168
+ .k-task-delayed {
169
+ .k-task-complete {
170
+ @include fill(
171
+ $bg: var( --kendo-gantt-delayed-bg, #{$kendo-gantt-delayed-bg} )
172
+ );
173
+ }
174
+
175
+ &:hover .k-task-complete {
176
+ @include fill(
177
+ $bg: var( --kendo-gantt-delayed-hover-bg, #{$kendo-gantt-delayed-hover-bg} )
178
+ );
179
+ }
172
180
  }
173
181
 
174
182
  .k-task-advanced {
@@ -203,6 +203,9 @@ $kendo-gantt-delayed-bg: get-theme-color-var( error-160 ) !default;
203
203
  /// Complement background color of the gantt delayed task.
204
204
  /// @group gantt
205
205
  $kendo-gantt-delayed-bg-lighter: get-theme-color-var( error-110) !default;
206
+ /// Background hover color of the gantt delayed task.
207
+ /// @group gantt
208
+ $kendo-gantt-delayed-hover-bg: get-theme-color-var( error-190 ) !default;
206
209
 
207
210
  /// Background color of the gantt advanced task.
208
211
  /// @group gantt
package/scss/index.scss CHANGED
@@ -70,6 +70,7 @@
70
70
  @use "dateinput";
71
71
  @use "datepicker";
72
72
  @use "timepicker";
73
+ @use "timedurationpicker";
73
74
  @use "datetimepicker";
74
75
  @use "daterangepicker";
75
76
  @use "dropdowngrid";
@@ -229,6 +230,7 @@
229
230
  @include dateinput.styles();
230
231
  @include datepicker.styles();
231
232
  @include timepicker.styles();
233
+ @include timedurationpicker.styles();
232
234
  @include datetimepicker.styles();
233
235
  @include daterangepicker.styles();
234
236
  @include dropdowngrid.styles();
@@ -3,6 +3,17 @@
3
3
 
4
4
  @mixin kendo-list--layout() {
5
5
 
6
+ // List container
7
+ .k-list-container {
8
+ display: flex;
9
+ flex-flow: column nowrap;
10
+
11
+ > .k-list {
12
+ flex: 1;
13
+ height: 100%;
14
+ }
15
+ }
16
+
6
17
  .k-list {
7
18
  margin: 0;
8
19
  padding: 0;
@@ -19,6 +19,12 @@
19
19
  border-bottom-width: var( --kendo-signature-maximized-line-width, #{$kendo-signature-maximized-line-width} );
20
20
  }
21
21
  }
22
+
23
+ &:disabled,
24
+ &[disabled],
25
+ &.k-disabled {
26
+ opacity: var( --kendo-signature-disabled-opacity, #{$kendo-signature-disabled-opacity} );
27
+ }
22
28
  }
23
29
 
24
30
  .k-signature-actions {
@@ -8,6 +8,14 @@
8
8
  .k-signature-line {
9
9
  border-bottom-color: var( --kendo-signature-line-color, #{$kendo-signature-line-color} );
10
10
  }
11
+
12
+ &:disabled,
13
+ &[disabled],
14
+ &.k-disabled {
15
+ .k-signature-line {
16
+ border-bottom-color: var( --kendo-signature-line-disabled-color, #{$kendo-signature-line-disabled-color} );
17
+ }
18
+ }
11
19
  }
12
20
 
13
21
  }
@@ -25,6 +25,10 @@ $kendo-signature-padding-y-sm: map-get( $kendo-spacing, thin ) !default;
25
25
  $kendo-signature-padding-y-md: $kendo-signature-padding-x-md !default;
26
26
  $kendo-signature-padding-y-lg: map-get( $kendo-spacing, 1 ) + map-get( $kendo-spacing, thin ) !default;
27
27
 
28
+ /// The opacity of the disabled signature component.
29
+ /// @group signature
30
+ $kendo-signature-disabled-opacity: .3 !default;
31
+
28
32
  /// The bottom-border width of the row line of the signature component.
29
33
  /// @group signature
30
34
  $kendo-signature-line-width: 1px !default;
@@ -33,7 +37,10 @@ $kendo-signature-line-width: 1px !default;
33
37
  $kendo-signature-line-style: dashed !default;
34
38
  /// The color of the row line of the signature component.
35
39
  /// @group signature
36
- $kendo-signature-line-color: get-theme-color-var( primary-30 ) !default;
40
+ $kendo-signature-line-color: rgba( get-theme-color( info, 100 ), .4 ) !default;
41
+ /// The color of the row line of the disabled signature component.
42
+ /// @group signature
43
+ $kendo-signature-line-disabled-color: get-theme-color-var( neutral-60 ) !default;
37
44
  /// The width of the row line of the signature component.
38
45
  /// @group signature
39
46
  $kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding-x} ) !default;
@@ -10,8 +10,8 @@
10
10
  }
11
11
 
12
12
  // Wave animation
13
- .k-skeleton-wave .k-skeleton::after,
14
- .k-skeleton-wave .k-skeleton::after {
13
+ .k-skeleton-wave .k-skeleton::after,
14
+ .k-skeleton-wave.k-skeleton::after {
15
15
  background-image: linear-gradient(
16
16
  to right,
17
17
  transparent,
@@ -0,0 +1,6 @@
1
+ @mixin kendo-timedurationpicker--layout() {
2
+
3
+ // Time picker
4
+ .k-timedurationpicker {}
5
+
6
+ }
@@ -0,0 +1,6 @@
1
+ @mixin kendo-timedurationpicker--theme() {
2
+
3
+ // Time picker
4
+ .k-timedurationpicker {}
5
+
6
+ }
@@ -0,0 +1 @@
1
+ // Time Duration picker
@@ -0,0 +1,29 @@
1
+ // Module meta
2
+ $_kendo-module-meta: (
3
+ name: "timedurationpicker",
4
+ dependencies: (
5
+ "button",
6
+ "icon",
7
+ "input",
8
+ "popup",
9
+ "list",
10
+ "timeselector"
11
+ )
12
+ );
13
+
14
+ // Component
15
+ @forward "_variables.scss";
16
+ @use "_layout.scss" as *;
17
+ @use "_theme.scss" as *;
18
+
19
+ // Register
20
+ @use "../core/module-system/" as module;
21
+ @include module.register( $_kendo-module-meta... );
22
+
23
+ // Expose
24
+ @mixin styles() {
25
+ @include module.render( "timedurationpicker" ) {
26
+ @include kendo-timedurationpicker--layout();
27
+ @include kendo-timedurationpicker--theme();
28
+ }
29
+ }
@@ -3,6 +3,7 @@ $_kendo-module-meta: (
3
3
  name: "timepicker",
4
4
  dependencies: (
5
5
  "button",
6
+ "icon",
6
7
  "input",
7
8
  "popup",
8
9
  "list",
@@ -30,7 +30,7 @@
30
30
  // Time selector header
31
31
  .k-time-header,
32
32
  .k-time-selector-header {
33
- padding: var( --kendo-time-selector-header-padding-y, $kendo-time-selector-header-padding-y ) var( --kendo-time-selector-header-padding-x, $kendo-time-selector-header-padding-x ) 0;
33
+ padding: var( --kendo-time-selector-header-padding-y, $kendo-time-selector-header-padding-y ) var( --kendo-time-selector-header-padding-x, $kendo-time-selector-header-padding-x );
34
34
  box-sizing: border-box;
35
35
  display: flex;
36
36
  align-items: center;
@@ -62,6 +62,7 @@
62
62
  display: flex;
63
63
  position: relative;
64
64
  flex: 1 1 auto;
65
+ overflow: hidden;
65
66
  }
66
67
 
67
68