@progress/kendo-theme-classic 13.2.0-dev.3 → 13.2.0-dev.4
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 +1 -1
- package/dist/classic-green-dark.css +1 -1
- package/dist/classic-green.css +1 -1
- package/dist/classic-lavender-dark.css +1 -1
- package/dist/classic-lavender.css +1 -1
- package/dist/classic-main-dark.css +1 -1
- package/dist/classic-main.css +1 -1
- package/dist/classic-metro-dark.css +1 -1
- package/dist/classic-metro.css +1 -1
- package/dist/classic-moonlight.css +1 -1
- package/dist/classic-opal-dark.css +1 -1
- package/dist/classic-opal.css +1 -1
- package/dist/classic-silver-dark.css +1 -1
- package/dist/classic-silver.css +1 -1
- package/dist/classic-uniform.css +1 -1
- package/dist/meta/sassdoc-data.json +850 -1896
- package/dist/meta/sassdoc-raw-data.json +407 -851
- package/dist/meta/variables.json +18 -141
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-lavender-dark.json +1 -1
- package/lib/swatches/classic-lavender.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-metro-dark.json +1 -1
- package/lib/swatches/classic-metro.json +1 -1
- package/lib/swatches/classic-moonlight.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/lib/swatches/classic-uniform.json +1 -1
- package/package.json +4 -4
- package/scss/appbar/_variables.scss +1 -19
- package/scss/card/_variables.scss +0 -6
- package/scss/core/color-system/_swatch.scss +0 -56
- package/scss/dialog/_variables.scss +0 -6
- package/scss/notification/_variables.scss +1 -1
- package/scss/overlay/_variables.scss +2 -6
- package/scss/scrollview/_variables.scss +0 -1
- package/scss/tooltip/_variables.scss +1 -1
- package/scss/window/_variables.scss +0 -6
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
/// The default theme color of the AppBar.
|
|
8
8
|
/// @group appbar
|
|
9
9
|
/// @role default
|
|
10
|
-
$kendo-appbar-default-theme-color: "
|
|
10
|
+
$kendo-appbar-default-theme-color: "base" !default;
|
|
11
11
|
|
|
12
12
|
/// The horizontal margin of the AppBar.
|
|
13
13
|
/// @group appbar
|
|
@@ -41,20 +41,6 @@ $kendo-appbar-line-height: var(--kendo-line-height) !default;
|
|
|
41
41
|
/// @group appbar
|
|
42
42
|
$kendo-appbar-gap: k-spacing(2) !default;
|
|
43
43
|
|
|
44
|
-
/// The background color of the AppBar based on light theme color.
|
|
45
|
-
/// @group appbar
|
|
46
|
-
$kendo-appbar-light-bg: k-color(light) !default;
|
|
47
|
-
/// The text color of the AppBar based on light theme color.
|
|
48
|
-
/// @group appbar
|
|
49
|
-
$kendo-appbar-light-text: k-color(on-light) !default;
|
|
50
|
-
|
|
51
|
-
/// The background color of the AppBar based on dark theme color.
|
|
52
|
-
/// @group appbar
|
|
53
|
-
$kendo-appbar-dark-bg: k-color(dark) !default;
|
|
54
|
-
/// The text color of the AppBar based on dark theme colorr.
|
|
55
|
-
/// @group appbar
|
|
56
|
-
$kendo-appbar-dark-text: k-color(on-dark) !default;
|
|
57
|
-
|
|
58
44
|
/// The box shadow of the AppBar.
|
|
59
45
|
/// @group appbar
|
|
60
46
|
$kendo-appbar-box-shadow: k-elevation(4) !default;
|
|
@@ -73,10 +59,6 @@ $kendo-appbar-bottom-box-shadow: k-elevation(4) !default;
|
|
|
73
59
|
$kendo-appbar-font-size: $kendo-appbar-font-size,
|
|
74
60
|
$kendo-appbar-line-height: $kendo-appbar-line-height,
|
|
75
61
|
$kendo-appbar-gap: $kendo-appbar-gap,
|
|
76
|
-
$kendo-appbar-light-bg: $kendo-appbar-light-bg,
|
|
77
|
-
$kendo-appbar-light-text: $kendo-appbar-light-text,
|
|
78
|
-
$kendo-appbar-dark-bg: $kendo-appbar-dark-bg,
|
|
79
|
-
$kendo-appbar-dark-text: $kendo-appbar-dark-text,
|
|
80
62
|
$kendo-appbar-box-shadow: $kendo-appbar-box-shadow,
|
|
81
63
|
$kendo-appbar-bottom-box-shadow: $kendo-appbar-bottom-box-shadow,
|
|
82
64
|
$kendo-appbar-default-theme-color: $kendo-appbar-default-theme-color
|
|
@@ -3,11 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
// Card
|
|
5
5
|
|
|
6
|
-
/// The default theme color of the Card.
|
|
7
|
-
/// @group card
|
|
8
|
-
/// @role default
|
|
9
|
-
$kendo-card-default-theme-color: null !default;
|
|
10
|
-
|
|
11
6
|
/// The horizontal padding of the Card.
|
|
12
7
|
/// @group card
|
|
13
8
|
$kendo-card-padding-x: k-spacing(4) !default;
|
|
@@ -189,7 +184,6 @@ $kendo-card-callout-height: 20px !default;
|
|
|
189
184
|
|
|
190
185
|
|
|
191
186
|
@forward "@progress/kendo-theme-core/scss/components/card/_variables.scss" with (
|
|
192
|
-
$kendo-card-default-theme-color: $kendo-card-default-theme-color,
|
|
193
187
|
$kendo-card-padding-x: $kendo-card-padding-x,
|
|
194
188
|
$kendo-card-padding-y: $kendo-card-padding-y,
|
|
195
189
|
$kendo-card-border-width: $kendo-card-border-width,
|
|
@@ -107,30 +107,6 @@ $_default-colors: (
|
|
|
107
107
|
on-error: #{"oklch(from var(--kendo-color-error) clamp(0, (0.7 - l) * 99999, 1) 0 h)"},
|
|
108
108
|
error-on-surface: #{"oklch(from var(--kendo-color-error) calc(l * 0.757) calc(c * 0.744) h)"},
|
|
109
109
|
|
|
110
|
-
// Light (ash-gray, achromatic)
|
|
111
|
-
light-subtle: #{"oklch(from var(--kendo-color-light) calc(l + 0.015) c h)"},
|
|
112
|
-
light-subtle-hover: #{"oklch(from var(--kendo-color-light) l c h)"},
|
|
113
|
-
light-subtle-active: #{"oklch(from var(--kendo-color-light) calc(l - 0.0425) c h)"},
|
|
114
|
-
light: oklch(94.01% 0 0deg),
|
|
115
|
-
light-hover: #{"oklch(from var(--kendo-color-light) calc(l - 0.0425) c h)"},
|
|
116
|
-
light-active: #{"oklch(from var(--kendo-color-light) calc(l - 0.064) c h)"},
|
|
117
|
-
light-emphasis: #{"oklch(from var(--kendo-color-light) calc(l - 0.1011) c h)"},
|
|
118
|
-
light-on-subtle: oklch(27.27% 0 0deg),
|
|
119
|
-
on-light: oklch(0% 0 0deg),
|
|
120
|
-
light-on-surface: #{"oklch(from var(--kendo-color-light) l c h)"},
|
|
121
|
-
|
|
122
|
-
// Dark (ash-gray, achromatic)
|
|
123
|
-
dark-subtle: #{"oklch(from var(--kendo-color-dark) calc(l + 0.4675) c h)"},
|
|
124
|
-
dark-subtle-hover: #{"oklch(from var(--kendo-color-dark) calc(l + 0.4048) c h)"},
|
|
125
|
-
dark-subtle-active: #{"oklch(from var(--kendo-color-dark) calc(l + 0.344) c h)"},
|
|
126
|
-
dark: oklch(37.15% 0 0deg),
|
|
127
|
-
dark-hover: #{"oklch(from var(--kendo-color-dark) calc(l - 0.0504) c h)"},
|
|
128
|
-
dark-active: #{"oklch(from var(--kendo-color-dark) calc(l - 0.0988) c h)"},
|
|
129
|
-
dark-emphasis: #{"oklch(from var(--kendo-color-dark) calc(l + 0.208) c h)"},
|
|
130
|
-
dark-on-subtle: oklch(0% 0 0deg),
|
|
131
|
-
on-dark: oklch(100% 0 0deg),
|
|
132
|
-
dark-on-surface: #{"oklch(from var(--kendo-color-dark) calc(l - 0.0504) c h)"},
|
|
133
|
-
|
|
134
110
|
// Inverse (ash-gray, achromatic)
|
|
135
111
|
inverse-subtle: #{"oklch(from var(--kendo-color-inverse) calc(l + 0.4675) c h)"},
|
|
136
112
|
inverse-subtle-hover: #{"oklch(from var(--kendo-color-inverse) calc(l + 0.4048) c h)"},
|
|
@@ -327,38 +303,6 @@ $_default-colors: (
|
|
|
327
303
|
/// @prop {Color} on-error - The text color variable for content on error.
|
|
328
304
|
/// @prop {Color} error-on-surface - The text color variable for content on surface.
|
|
329
305
|
///
|
|
330
|
-
/// @subgroup {light}
|
|
331
|
-
/// [light-subtle, light-subtle-hover, light-subtle-active,
|
|
332
|
-
/// light, light-hover, light-active, light-emphasis,
|
|
333
|
-
/// light-on-subtle, on-light, light-on-surface]
|
|
334
|
-
/// The Light variable group.
|
|
335
|
-
/// @prop {Color} light-subtle - The light subtle background color variable.
|
|
336
|
-
/// @prop {Color} light-subtle-hover - The light subtle background color variable for the hover state.
|
|
337
|
-
/// @prop {Color} light-subtle-active - The light subtle background color variable for the active state.
|
|
338
|
-
/// @prop {Color} light - The light background color variable.
|
|
339
|
-
/// @prop {Color} light-hover - The light background color variable for the hover state.
|
|
340
|
-
/// @prop {Color} light-active - The light background color variable for the active state.
|
|
341
|
-
/// @prop {Color} light-emphasis - The emphasized light color variable.
|
|
342
|
-
/// @prop {Color} light-on-subtle - The text color variable for content on light subtle.
|
|
343
|
-
/// @prop {Color} on-light - The text color variable for content on light.
|
|
344
|
-
/// @prop {Color} light-on-surface - The text color variable for content on surface.
|
|
345
|
-
///
|
|
346
|
-
/// @subgroup {dark}
|
|
347
|
-
/// [dark-subtle, dark-subtle-hover, dark-subtle-active,
|
|
348
|
-
/// dark, dark-hover, dark-active, dark-emphasis,
|
|
349
|
-
/// dark-on-subtle, on-dark, dark-on-surface]
|
|
350
|
-
/// The Dark variable group.
|
|
351
|
-
/// @prop {Color} dark-subtle - The dark subtle background color variable.
|
|
352
|
-
/// @prop {Color} dark-subtle-hover - The dark subtle background color variable for the hover state.
|
|
353
|
-
/// @prop {Color} dark-subtle-active - The dark subtle background color variable for the active state.
|
|
354
|
-
/// @prop {Color} dark - The dark background color variable.
|
|
355
|
-
/// @prop {Color} dark-hover - The dark background color variable for the hover state.
|
|
356
|
-
/// @prop {Color} dark-active - The dark background color variable for the active state.
|
|
357
|
-
/// @prop {Color} dark-emphasis - The emphasized dark color variable.
|
|
358
|
-
/// @prop {Color} dark-on-subtle - The text color variable for content on dark subtle.
|
|
359
|
-
/// @prop {Color} on-dark - The text color variable for content on dark.
|
|
360
|
-
/// @prop {Color} dark-on-surface - The text color variable for content on surface.
|
|
361
|
-
///
|
|
362
306
|
/// @subgroup {inverse}
|
|
363
307
|
/// [inverse-subtle, inverse-subtle-hover, inverse-subtle-active,
|
|
364
308
|
/// inverse, inverse-hover, inverse-active, inverse-emphasis,
|
|
@@ -4,11 +4,6 @@
|
|
|
4
4
|
|
|
5
5
|
// Dialog
|
|
6
6
|
|
|
7
|
-
/// The default theme color of the Dialog.
|
|
8
|
-
/// @group dialog
|
|
9
|
-
/// @role default
|
|
10
|
-
$kendo-dialog-default-theme-color: null !default;
|
|
11
|
-
|
|
12
7
|
/// The background color of the Dialog titlebar.
|
|
13
8
|
/// @group dialog
|
|
14
9
|
$kendo-dialog-titlebar-bg: k-color(surface) !default;
|
|
@@ -38,7 +33,6 @@ $kendo-dialog-bg: k-color(surface-alt) !default;
|
|
|
38
33
|
|
|
39
34
|
|
|
40
35
|
@forward "@progress/kendo-theme-core/scss/components/dialog/_variables.scss" with (
|
|
41
|
-
$kendo-dialog-default-theme-color: $kendo-dialog-default-theme-color,
|
|
42
36
|
$kendo-dialog-titlebar-bg: $kendo-dialog-titlebar-bg,
|
|
43
37
|
$kendo-dialog-titlebar-text: $kendo-dialog-titlebar-text,
|
|
44
38
|
$kendo-dialog-titlebar-border: $kendo-dialog-titlebar-border,
|
|
@@ -60,7 +60,7 @@ $kendo-notification-icon-spacing: $kendo-icon-spacing !default;
|
|
|
60
60
|
|
|
61
61
|
/// The theme colors map for the Notification.
|
|
62
62
|
/// @group notification
|
|
63
|
-
$kendo-notification-theme-colors: ("base", "primary", "secondary", "tertiary", "info", "success", "warning", "error", "
|
|
63
|
+
$kendo-notification-theme-colors: ("base", "primary", "secondary", "tertiary", "info", "success", "warning", "error", "inverse") !default;
|
|
64
64
|
/// The generated theme colors map for the Notification.
|
|
65
65
|
/// @group notification
|
|
66
66
|
$kendo-notification-theme: notification-theme( $kendo-notification-theme-colors ) !default;
|
|
@@ -1,18 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
/// @group overlay
|
|
3
|
-
/// @role default
|
|
4
|
-
$kendo-overlay-default-theme-color: "inverse" !default;
|
|
1
|
+
@use "../core/_index.scss" as *;
|
|
5
2
|
|
|
6
3
|
/// The background color of the Overlay.
|
|
7
4
|
/// @group overlay
|
|
8
|
-
$kendo-overlay-bg:
|
|
5
|
+
$kendo-overlay-bg: k-color(inverse) !default;
|
|
9
6
|
/// The opacity of the Overlay.
|
|
10
7
|
/// @group overlay
|
|
11
8
|
$kendo-overlay-opacity: .5 !default;
|
|
12
9
|
|
|
13
10
|
|
|
14
11
|
@forward "@progress/kendo-theme-core/scss/components/overlay/_variables.scss" with (
|
|
15
|
-
$kendo-overlay-default-theme-color: $kendo-overlay-default-theme-color,
|
|
16
12
|
$kendo-overlay-bg: $kendo-overlay-bg,
|
|
17
13
|
$kendo-overlay-opacity: $kendo-overlay-opacity
|
|
18
14
|
);
|
|
@@ -81,7 +81,6 @@ $kendo-scrollview-light-bg: rgba( white, .4 ) !default;
|
|
|
81
81
|
/// The background color of the ScrollView pager in dark mode.
|
|
82
82
|
/// @group scrollview
|
|
83
83
|
$kendo-scrollview-dark-bg: rgba( black, .4 ) !default;
|
|
84
|
-
|
|
85
84
|
/// The duration of the ScrollView transition.
|
|
86
85
|
/// @group scrollview
|
|
87
86
|
$kendo-scrollview-transition-duration: .3s !default;
|
|
@@ -54,7 +54,7 @@ $kendo-tooltip-shadow: k-elevation(2) !default;
|
|
|
54
54
|
|
|
55
55
|
/// The theme colors map for the Tooltip.
|
|
56
56
|
/// @group tooltip
|
|
57
|
-
$kendo-tooltip-theme-colors: ("base", "
|
|
57
|
+
$kendo-tooltip-theme-colors: ("base", "info", "success", "warning", "error", "inverse") !default;
|
|
58
58
|
/// The generated theme colors map for the Tooltip.
|
|
59
59
|
/// @group tooltip
|
|
60
60
|
$kendo-tooltip-theme: tooltip-theme( $kendo-tooltip-theme-colors ) !default;
|
|
@@ -9,11 +9,6 @@
|
|
|
9
9
|
/// @role default
|
|
10
10
|
$kendo-window-default-size: "auto" !default;
|
|
11
11
|
|
|
12
|
-
/// The default theme color of the Window.
|
|
13
|
-
/// @group window
|
|
14
|
-
/// @role default
|
|
15
|
-
$kendo-window-default-theme-color: null !default;
|
|
16
|
-
|
|
17
12
|
/// The width of the border around the Window.
|
|
18
13
|
/// @group window
|
|
19
14
|
$kendo-window-border-width: 1px !default;
|
|
@@ -107,7 +102,6 @@ $kendo-window-titlebar-border: k-color(border) !default;
|
|
|
107
102
|
$kendo-window-titlebar-gradient: null !default;
|
|
108
103
|
|
|
109
104
|
@forward "@progress/kendo-theme-core/scss/components/window/_variables.scss" with (
|
|
110
|
-
$kendo-window-default-theme-color: $kendo-window-default-theme-color,
|
|
111
105
|
$kendo-window-border-width: $kendo-window-border-width,
|
|
112
106
|
$kendo-window-border-radius: $kendo-window-border-radius,
|
|
113
107
|
$kendo-window-font-family: $kendo-window-font-family,
|