@progress/kendo-theme-classic 14.1.1-dev.2 → 14.2.0-dev.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.
Files changed (59) hide show
  1. package/dist/all.css +1 -1
  2. package/dist/classic-green-dark.css +1 -1
  3. package/dist/classic-green-dark.scss +104 -103
  4. package/dist/classic-green.css +1 -1
  5. package/dist/classic-green.scss +95 -94
  6. package/dist/classic-lavender-dark.css +1 -1
  7. package/dist/classic-lavender-dark.scss +105 -108
  8. package/dist/classic-lavender.css +1 -1
  9. package/dist/classic-lavender.scss +96 -99
  10. package/dist/classic-main-dark.css +1 -1
  11. package/dist/classic-main-dark.scss +104 -103
  12. package/dist/classic-main.css +1 -1
  13. package/dist/classic-metro-dark.css +1 -1
  14. package/dist/classic-metro-dark.scss +105 -108
  15. package/dist/classic-metro.css +1 -1
  16. package/dist/classic-metro.scss +96 -99
  17. package/dist/classic-moonlight.css +1 -1
  18. package/dist/classic-moonlight.scss +105 -107
  19. package/dist/classic-opal-dark.css +1 -1
  20. package/dist/classic-opal-dark.scss +104 -103
  21. package/dist/classic-opal.css +1 -1
  22. package/dist/classic-opal.scss +95 -94
  23. package/dist/classic-silver-dark.css +1 -1
  24. package/dist/classic-silver-dark.scss +104 -103
  25. package/dist/classic-silver.css +1 -1
  26. package/dist/classic-silver.scss +95 -94
  27. package/dist/classic-uniform.css +1 -1
  28. package/dist/classic-uniform.scss +96 -98
  29. package/dist/meta/sassdoc-data.json +334 -1474
  30. package/dist/meta/sassdoc-raw-data.json +167 -692
  31. package/dist/meta/variables.json +48 -84
  32. package/lib/swatches/classic-green-dark.json +109 -104
  33. package/lib/swatches/classic-green.json +100 -95
  34. package/lib/swatches/classic-lavender-dark.json +109 -134
  35. package/lib/swatches/classic-lavender.json +100 -125
  36. package/lib/swatches/classic-main-dark.json +109 -104
  37. package/lib/swatches/classic-main.json +1 -1
  38. package/lib/swatches/classic-metro-dark.json +109 -134
  39. package/lib/swatches/classic-metro.json +100 -125
  40. package/lib/swatches/classic-moonlight.json +109 -129
  41. package/lib/swatches/classic-opal-dark.json +109 -104
  42. package/lib/swatches/classic-opal.json +100 -95
  43. package/lib/swatches/classic-silver-dark.json +109 -104
  44. package/lib/swatches/classic-silver.json +100 -95
  45. package/lib/swatches/classic-uniform.json +100 -125
  46. package/package.json +4 -4
  47. package/scss/diagram/_index.scss +16 -0
  48. package/scss/diagram/_layout.scss +6 -0
  49. package/scss/diagram/_theme.scss +6 -0
  50. package/scss/diagram/_variables.scss +1 -0
  51. package/scss/drawer/_variables.scss +0 -12
  52. package/scss/grid/_index.scss +0 -2
  53. package/scss/index.scss +2 -3
  54. package/scss/scheduler/_index.scss +10 -2
  55. package/scss/scheduler/_variables.scss +31 -3
  56. package/scss/adaptive/_index.scss +0 -26
  57. package/scss/adaptive/_layout.scss +0 -6
  58. package/scss/adaptive/_theme.scss +0 -6
  59. package/scss/adaptive/_variables.scss +0 -91
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-theme-classic",
3
3
  "description": "Sass port of less based themes for Kendo UI theme",
4
- "version": "14.1.1-dev.2",
4
+ "version": "14.2.0-dev.0",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -54,12 +54,12 @@
54
54
  },
55
55
  "dependencies": {
56
56
  "@progress/kendo-svg-icons": "^4.9.0",
57
- "@progress/kendo-theme-core": "14.1.1-dev.2",
58
- "@progress/kendo-theme-utils": "14.1.1-dev.2"
57
+ "@progress/kendo-theme-core": "14.2.0-dev.0",
58
+ "@progress/kendo-theme-utils": "14.2.0-dev.0"
59
59
  },
60
60
  "directories": {
61
61
  "doc": "docs",
62
62
  "lib": "lib"
63
63
  },
64
- "gitHead": "7e6facaaa79799eaccdc502e3afc4c0a0c19be0a"
64
+ "gitHead": "2bc240b1c4ee65e6dc269fe4586ed2cabc5ba318"
65
65
  }
@@ -0,0 +1,16 @@
1
+ // Dependencies
2
+ @use "../core/_index.scss" as *;
3
+
4
+ // Component
5
+ @forward "./_variables.scss";
6
+ @use "./_layout.scss" as *;
7
+ @use "./_theme.scss" as *;
8
+
9
+ // Expose
10
+ @mixin kendo-diagram--styles() {
11
+ @include import-once( "diagram" ) {
12
+ @include core-styles();
13
+ @include kendo-diagram--layout();
14
+ @include kendo-diagram--theme();
15
+ }
16
+ }
@@ -0,0 +1,6 @@
1
+ @use "@progress/kendo-theme-core/scss/components/diagram/_layout.scss" as *;
2
+
3
+
4
+ @mixin kendo-diagram--layout() {
5
+ @include kendo-diagram--layout-base();
6
+ }
@@ -0,0 +1,6 @@
1
+ @use "@progress/kendo-theme-core/scss/components/diagram/_theme.scss" as *;
2
+
3
+
4
+ @mixin kendo-diagram--theme() {
5
+ @include kendo-diagram--theme-base();
6
+ }
@@ -0,0 +1 @@
1
+ @use "../core/_index.scss" as *;
@@ -37,18 +37,9 @@ $kendo-drawer-content-padding-y: null !default;
37
37
  /// The width of the Drawer scrollbar.
38
38
  /// @group drawer
39
39
  $kendo-drawer-scrollbar-width: 7px !default;
40
- /// The color of the Drawer scrollbar track.
41
- /// @group drawer
42
- $kendo-drawer-scrollbar-color: color-mix(in srgb, k-color(inverse) 70%, transparent) !default;
43
- /// The background color of the Drawer scrollbar thumb.
44
- /// @group drawer
45
- $kendo-drawer-scrollbar-bg: color-mix(in srgb, k-color(inverse-subtle), k-color(on-inverse)) !default;
46
40
  /// The border radius of the Drawer scrollbar.
47
41
  /// @group drawer
48
42
  $kendo-drawer-scrollbar-radius: 20px !default;
49
- /// The hover color of the Drawer scrollbar track.
50
- /// @group drawer
51
- $kendo-drawer-scrollbar-hover-color: $kendo-drawer-scrollbar-color !default;
52
43
 
53
44
  /// The horizontal padding of the Drawer items.
54
45
  /// @group drawer
@@ -141,10 +132,7 @@ $kendo-drawer-selected-focus-bg: null !default;
141
132
  $kendo-drawer-content-padding-x: $kendo-drawer-content-padding-x,
142
133
  $kendo-drawer-content-padding-y: $kendo-drawer-content-padding-y,
143
134
  $kendo-drawer-scrollbar-width: $kendo-drawer-scrollbar-width,
144
- $kendo-drawer-scrollbar-color: $kendo-drawer-scrollbar-color,
145
- $kendo-drawer-scrollbar-bg: $kendo-drawer-scrollbar-bg,
146
135
  $kendo-drawer-scrollbar-radius: $kendo-drawer-scrollbar-radius,
147
- $kendo-drawer-scrollbar-hover-color: $kendo-drawer-scrollbar-hover-color,
148
136
  $kendo-drawer-items-padding-x: $kendo-drawer-items-padding-x,
149
137
  $kendo-drawer-items-padding-y: $kendo-drawer-items-padding-y,
150
138
  $kendo-drawer-item-padding-x: $kendo-drawer-item-padding-x,
@@ -1,7 +1,6 @@
1
1
  // Dependencies
2
2
  @use "../core/_index.scss" as *;
3
3
  @use "../utils/_index.scss" as *;
4
- @use "../adaptive/_index.scss" as *;
5
4
  @use "../progressbar/_index.scss" as *;
6
5
  @use "../button/_index.scss" as *;
7
6
  @use "../action-buttons/_index.scss" as *;
@@ -35,7 +34,6 @@
35
34
  @mixin kendo-grid--styles() {
36
35
  @include import-once( "grid" ) {
37
36
  @include core-styles();
38
- @include kendo-adaptive--styles();
39
37
  @include kendo-progressbar--styles();
40
38
  @include kendo-button--styles();
41
39
  @include kendo-action-buttons--styles();
package/scss/index.scss CHANGED
@@ -94,7 +94,6 @@
94
94
  @forward "./splitter/_index.scss";
95
95
  @forward "./tilelayout/_index.scss";
96
96
  @forward "./dock-manager/_index.scss";
97
- @forward "./adaptive/_index.scss";
98
97
  @forward "./grid/_index.scss";
99
98
  @forward "./listview/_index.scss";
100
99
  @forward "./spreadsheet/_index.scss";
@@ -281,7 +280,6 @@
281
280
 
282
281
 
283
282
  // Misc
284
- @use "./adaptive/_index.scss" as *;
285
283
  @use "./file-box/_index.scss" as *;
286
284
  @use "./chat/_index.scss" as *;
287
285
  @use "./mediaplayer/_index.scss" as *;
@@ -297,6 +295,7 @@
297
295
 
298
296
  // Dataviz
299
297
  @use "./dataviz/_index.scss" as *;
298
+ @use "./diagram/_index.scss" as *;
300
299
  @use "./map/_index.scss" as *;
301
300
  @use "./orgchart/_index.scss" as *;
302
301
  @use "./signature/_index.scss" as *;
@@ -461,7 +460,6 @@
461
460
 
462
461
 
463
462
  // Misc
464
- @include kendo-adaptive--styles();
465
463
  @include kendo-file-box--styles();
466
464
  @include kendo-chat--styles();
467
465
  @include kendo-media-player--styles();
@@ -477,6 +475,7 @@
477
475
 
478
476
  // Dataviz
479
477
  @include kendo-dataviz--styles();
478
+ @include kendo-diagram--styles();
480
479
  @include kendo-map--styles();
481
480
  @include kendo-orgchart--styles();
482
481
  @include kendo-signature--styles();
@@ -2,7 +2,11 @@
2
2
  @use "../core/_index.scss" as *;
3
3
  @use "../icons/_index.scss" as *;
4
4
  @use "../utils/_index.scss" as *;
5
- @use "../adaptive/_index.scss" as *;
5
+ @use "../listgroup/_index.scss" as *;
6
+ @use "../checkbox/_index.scss" as *;
7
+ @use "../radio/_index.scss" as *;
8
+ @use "../switch/_index.scss" as *;
9
+ @use "../toolbar/_index.scss" as *;
6
10
  @use "../button/_index.scss" as *;
7
11
  @use "../datetimepicker/_index.scss" as *;
8
12
  @use "../dropdownlist/_index.scss" as *;
@@ -20,7 +24,11 @@
20
24
  @include import-once( "scheduler" ) {
21
25
  @include core-styles();
22
26
  @include kendo-icon--styles();
23
- @include kendo-adaptive--styles();
27
+ @include kendo-listgroup--styles();
28
+ @include kendo-checkbox--styles();
29
+ @include kendo-radio--styles();
30
+ @include kendo-switch--styles();
31
+ @include kendo-toolbar--styles();
24
32
  @include kendo-button--styles();
25
33
  @include kendo-date-time-picker--styles();
26
34
  @include kendo-dropdown-list--styles();
@@ -201,7 +201,6 @@ $kendo-scheduler-tooltip-border: null !default;
201
201
  /// @group scheduler
202
202
  $kendo-scheduler-tooltip-shadow: k-elevation(2) !default;
203
203
 
204
-
205
204
  // TODO: use 3
206
205
  /// The vertical margin of the Scheduler Tooltip title.
207
206
  /// @group scheduler
@@ -237,7 +236,6 @@ $kendo-scheduler-tooltip-event-gap: k-spacing(1) !default;
237
236
  /// @group scheduler
238
237
  $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
239
238
 
240
-
241
239
  /// The padding of the Scheduler appointments.
242
240
  /// @group scheduler
243
241
  $kendo-scheduler-appointments-padding: k-spacing(2) !default;
@@ -269,6 +267,24 @@ $kendo-scheduler-marquee-label-inset-y: k-spacing(0.5) !default;
269
267
  $kendo-scheduler-header-bg: k-color(surface) !default;
270
268
 
271
269
 
270
+ // Adaptive
271
+ $kendo-scheduler-adaptive-bg: k-color(surface-alt) !default;
272
+ $kendo-scheduler-adaptive-text: k-color(on-app-surface) !default;
273
+ $kendo-scheduler-adaptive-border: k-color(border) !default;
274
+
275
+ $kendo-scheduler-adaptive-content-bg: k-color(app-surface) !default;
276
+
277
+ $kendo-scheduler-adaptive-menu-clear-text: k-color(primary-on-surface) !default;
278
+
279
+ $kendo-scheduler-adaptive-border-width: 1px !default;
280
+ $kendo-scheduler-adaptive-font-family: var(--kendo-font-family) !default;
281
+ $kendo-scheduler-adaptive-font-size: var(--kendo-font-size) !default;
282
+ $kendo-scheduler-adaptive-line-height: var(--kendo-line-height) !default;
283
+
284
+ $kendo-scheduler-adaptive-current-text: k-color(primary-on-surface) !default;
285
+ $kendo-scheduler-adaptive-base-text: inherit !default;
286
+ $kendo-scheduler-adaptive-subtle-text: k-color(on-app-surface) !default;
287
+
272
288
  @forward "@progress/kendo-theme-core/scss/components/scheduler/_variables.scss" with (
273
289
  $kendo-scheduler-border-width: $kendo-scheduler-border-width,
274
290
  $kendo-scheduler-border-radius: $kendo-scheduler-border-radius,
@@ -347,5 +363,17 @@ $kendo-scheduler-header-bg: k-color(surface) !default;
347
363
  $kendo-scheduler-indicators-margin: $kendo-scheduler-indicators-margin,
348
364
  $kendo-scheduler-marquee-label-inset-x: $kendo-scheduler-marquee-label-inset-x,
349
365
  $kendo-scheduler-marquee-label-inset-y: $kendo-scheduler-marquee-label-inset-y,
350
- $kendo-scheduler-header-bg: $kendo-scheduler-header-bg
366
+ $kendo-scheduler-header-bg: $kendo-scheduler-header-bg,
367
+ $kendo-scheduler-adaptive-bg: $kendo-scheduler-adaptive-bg,
368
+ $kendo-scheduler-adaptive-text: $kendo-scheduler-adaptive-text,
369
+ $kendo-scheduler-adaptive-border: $kendo-scheduler-adaptive-border,
370
+ $kendo-scheduler-adaptive-content-bg: $kendo-scheduler-adaptive-content-bg,
371
+ $kendo-scheduler-adaptive-menu-clear-text: $kendo-scheduler-adaptive-menu-clear-text,
372
+ $kendo-scheduler-adaptive-border-width: $kendo-scheduler-adaptive-border-width,
373
+ $kendo-scheduler-adaptive-font-family: $kendo-scheduler-adaptive-font-family,
374
+ $kendo-scheduler-adaptive-font-size: $kendo-scheduler-adaptive-font-size,
375
+ $kendo-scheduler-adaptive-line-height: $kendo-scheduler-adaptive-line-height,
376
+ $kendo-scheduler-adaptive-current-text: $kendo-scheduler-adaptive-current-text,
377
+ $kendo-scheduler-adaptive-base-text: $kendo-scheduler-adaptive-base-text,
378
+ $kendo-scheduler-adaptive-subtle-text: $kendo-scheduler-adaptive-subtle-text
351
379
  );
@@ -1,26 +0,0 @@
1
- // Dependencies (TODO: extract variables)
2
- @use "../core/_index.scss" as *;
3
- @use "../listgroup/_index.scss" as *;
4
- @use "../checkbox/_index.scss" as *;
5
- @use "../radio/_index.scss" as *;
6
- @use "../switch/_index.scss" as *;
7
- @use "../toolbar/_index.scss" as *;
8
-
9
- // Component
10
- @forward "./_variables.scss";
11
- @use "./_layout.scss" as *;
12
- @use "./_theme.scss" as *;
13
-
14
- // Expose
15
- @mixin kendo-adaptive--styles() {
16
- @include import-once( "adaptive" ) {
17
- @include core-styles();
18
- @include kendo-listgroup--styles();
19
- @include kendo-checkbox--styles();
20
- @include kendo-radio--styles();
21
- @include kendo-switch--styles();
22
- @include kendo-toolbar--styles();
23
- @include kendo-adaptive--layout();
24
- @include kendo-adaptive--theme();
25
- }
26
- }
@@ -1,6 +0,0 @@
1
- @use "@progress/kendo-theme-core/scss/components/adaptive/_layout.scss" as *;
2
-
3
-
4
- @mixin kendo-adaptive--layout() {
5
- @include kendo-adaptive--layout-base();
6
- }
@@ -1,6 +0,0 @@
1
- @use "@progress/kendo-theme-core/scss/components/adaptive/_theme.scss" as *;
2
-
3
-
4
- @mixin kendo-adaptive--theme() {
5
- @include kendo-adaptive--theme-base();
6
- }
@@ -1,91 +0,0 @@
1
- @use "../core/_index.scss" as *;
2
-
3
-
4
- // Adaptive
5
- /// The background color of the Adaptive component.
6
- /// @group adaptive
7
- $kendo-adaptive-bg: k-color(surface-alt) !default;
8
- /// The text color of the Adaptive component.
9
- /// @group adaptive
10
- $kendo-adaptive-text: k-color(on-app-surface) !default;
11
- /// The border color of the Adaptive component.
12
- /// @group adaptive
13
- $kendo-adaptive-border: k-color(border) !default;
14
-
15
- /// The background color of the Adaptive content.
16
- /// @group adaptive
17
- $kendo-adaptive-content-bg: k-color(app-surface) !default;
18
- /// The text color of the Adaptive content.
19
- /// @group adaptive
20
- $kendo-adaptive-content-text: k-color(on-app-surface) !default;
21
-
22
- /// The background color of the Adaptive menu.
23
- /// @group adaptive
24
- $kendo-adaptive-menu-bg: k-color(primary) !default;
25
- /// The text color of the Adaptive menu.
26
- /// @group adaptive
27
- $kendo-adaptive-menu-text: k-color(on-primary) !default;
28
-
29
- /// The text color of the Adaptive menu clear button.
30
- /// @group adaptive
31
- $kendo-adaptive-menu-clear-text: k-color(primary-on-surface) !default;
32
-
33
- /// The border color of the Adaptive menu item.
34
- /// @group adaptive
35
- $kendo-adaptive-menu-item-border: k-color(border) !default;
36
- /// The text color of the Adaptive menu title.
37
- /// @group adaptive
38
- $kendo-adaptive-menu-title-text: k-color(on-app-surface) !default;
39
-
40
- /// The width of the border around the Adaptive component.
41
- /// @group adaptive
42
- $kendo-adaptive-border-width: 1px !default;
43
- /// The font family of the Adaptive component.
44
- /// @group adaptive
45
- $kendo-adaptive-font-family: var(--kendo-font-family) !default;
46
- /// The font size of the Adaptive component.
47
- /// @group adaptive
48
- $kendo-adaptive-font-size: var(--kendo-font-size) !default;
49
- /// The line height of the Adaptive component.
50
- /// @group adaptive
51
- $kendo-adaptive-line-height: var(--kendo-line-height) !default;
52
-
53
-
54
- // Adaptive Grid
55
- /// The text color of the Adaptive Grid sort indicator.
56
- /// @group adaptive
57
- $kendo-adaptive-grid-sort-text: k-color(primary-on-surface) !default;
58
-
59
-
60
- // Adaptive Scheduler
61
- /// The text color of the current date in the Adaptive Scheduler.
62
- /// @group adaptive
63
- $kendo-adaptive-scheduler-current-text: k-color(primary-on-surface) !default;
64
- /// The base text color of the Adaptive Scheduler.
65
- /// @group adaptive
66
- $kendo-adaptive-scheduler-base-text: inherit !default;
67
- /// The subtle text color of the Adaptive Scheduler.
68
- /// @group adaptive
69
- $kendo-adaptive-scheduler-subtle-text: k-color(on-app-surface) !default;
70
-
71
-
72
- @forward "@progress/kendo-theme-core/scss/components/adaptive/_variables.scss" with (
73
- $kendo-adaptive-bg: $kendo-adaptive-bg,
74
- $kendo-adaptive-text: $kendo-adaptive-text,
75
- $kendo-adaptive-border: $kendo-adaptive-border,
76
- $kendo-adaptive-content-bg: $kendo-adaptive-content-bg,
77
- $kendo-adaptive-content-text: $kendo-adaptive-content-text,
78
- $kendo-adaptive-menu-bg: $kendo-adaptive-menu-bg,
79
- $kendo-adaptive-menu-text: $kendo-adaptive-menu-text,
80
- $kendo-adaptive-menu-clear-text: $kendo-adaptive-menu-clear-text,
81
- $kendo-adaptive-menu-item-border: $kendo-adaptive-menu-item-border,
82
- $kendo-adaptive-menu-title-text: $kendo-adaptive-menu-title-text,
83
- $kendo-adaptive-border-width: $kendo-adaptive-border-width,
84
- $kendo-adaptive-font-family: $kendo-adaptive-font-family,
85
- $kendo-adaptive-font-size: $kendo-adaptive-font-size,
86
- $kendo-adaptive-line-height: $kendo-adaptive-line-height,
87
- $kendo-adaptive-grid-sort-text: $kendo-adaptive-grid-sort-text,
88
- $kendo-adaptive-scheduler-current-text: $kendo-adaptive-scheduler-current-text,
89
- $kendo-adaptive-scheduler-base-text: $kendo-adaptive-scheduler-base-text,
90
- $kendo-adaptive-scheduler-subtle-text: $kendo-adaptive-scheduler-subtle-text
91
- );