@progress/kendo-theme-classic 7.1.0-dev.2 → 7.1.0-dev.3
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 +78 -0
- package/dist/all.scss +243 -0
- package/dist/meta/sassdoc-data.json +1086 -0
- package/dist/meta/sassdoc-raw-data.json +500 -0
- package/dist/meta/variables.json +81 -1
- 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 +6 -6
- package/scss/index.scss +2 -0
- package/scss/prompt/_index.scss +37 -0
- package/scss/prompt/_layout.scss +6 -0
- package/scss/prompt/_theme.scss +6 -0
- package/scss/prompt/_variables.scss +66 -0
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": "7.1.0-dev.
|
|
4
|
+
"version": "7.1.0-dev.3",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -52,14 +52,14 @@
|
|
|
52
52
|
"postpublish": "echo 'no postpublish for classic theme'"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@progress/kendo-svg-icons": "2.
|
|
56
|
-
"@progress/kendo-theme-core": "7.1.0-dev.
|
|
57
|
-
"@progress/kendo-theme-default": "7.1.0-dev.
|
|
58
|
-
"@progress/kendo-theme-utils": "7.1.0-dev.
|
|
55
|
+
"@progress/kendo-svg-icons": "2.1.0",
|
|
56
|
+
"@progress/kendo-theme-core": "7.1.0-dev.3",
|
|
57
|
+
"@progress/kendo-theme-default": "7.1.0-dev.3",
|
|
58
|
+
"@progress/kendo-theme-utils": "7.1.0-dev.3"
|
|
59
59
|
},
|
|
60
60
|
"directories": {
|
|
61
61
|
"doc": "docs",
|
|
62
62
|
"lib": "lib"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "08affab2e5f6db6c25943449ac5d3547283dce22"
|
|
65
65
|
}
|
package/scss/index.scss
CHANGED
|
@@ -152,6 +152,7 @@
|
|
|
152
152
|
@import "./pdf-viewer/_index.scss";
|
|
153
153
|
@import "./scroller/_index.scss";
|
|
154
154
|
@import "./scrollview/_index.scss";
|
|
155
|
+
@import "./prompt/_index.scss";
|
|
155
156
|
|
|
156
157
|
|
|
157
158
|
// Dataviz
|
|
@@ -321,6 +322,7 @@
|
|
|
321
322
|
@include kendo-pdf-viewer--styles();
|
|
322
323
|
@include kendo-scroller--styles();
|
|
323
324
|
@include kendo-scrollview--styles();
|
|
325
|
+
@include kendo-prompt--styles();
|
|
324
326
|
|
|
325
327
|
|
|
326
328
|
// Dataviz
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
@import "../core/_index.scss";
|
|
2
|
+
@import "../utils/_index.scss";
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
// Module meta
|
|
6
|
+
$_kendo-module-meta: (
|
|
7
|
+
name: "prompt",
|
|
8
|
+
dependencies: ()
|
|
9
|
+
);
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
// Dependencies
|
|
13
|
+
@import "../common/_index.scss";
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// Component
|
|
17
|
+
@import "./_variables.scss";
|
|
18
|
+
@import "./_layout.scss";
|
|
19
|
+
@import "./_theme.scss";
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
// Register
|
|
23
|
+
@import "../core/module-system/index.import.scss";
|
|
24
|
+
@include module-register( $_kendo-module-meta... );
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
// Expose
|
|
28
|
+
@mixin kendo-prompt--styles() {
|
|
29
|
+
@include module-render( "prompt" ) {
|
|
30
|
+
@include kendo-prompt--layout();
|
|
31
|
+
@include kendo-prompt--theme();
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
@if $kendo-auto-bootstrap {
|
|
36
|
+
@include kendo-prompt--styles();
|
|
37
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
// Prompt
|
|
2
|
+
|
|
3
|
+
/// The text color of the Prompt.
|
|
4
|
+
/// @group prompt
|
|
5
|
+
$kendo-prompt-text: $kendo-component-text !default;
|
|
6
|
+
/// The background color of the Prompt.
|
|
7
|
+
/// @group prompt
|
|
8
|
+
$kendo-prompt-bg: $kendo-component-bg !default;
|
|
9
|
+
/// The border color of the Prompt.
|
|
10
|
+
/// @group prompt
|
|
11
|
+
$kendo-prompt-border: $kendo-component-border !default;
|
|
12
|
+
|
|
13
|
+
/// The text color of the Prompt header.
|
|
14
|
+
/// @group prompt
|
|
15
|
+
$kendo-prompt-header-text: $kendo-component-header-text !default;
|
|
16
|
+
/// The background color of the Prompt header.
|
|
17
|
+
/// @group prompt
|
|
18
|
+
$kendo-prompt-header-bg: $kendo-component-bg !default;
|
|
19
|
+
/// The border color of the Prompt header.
|
|
20
|
+
/// @group prompt
|
|
21
|
+
$kendo-prompt-header-border: $kendo-component-header-border !default;
|
|
22
|
+
|
|
23
|
+
/// The vertical padding of the Prompt content.
|
|
24
|
+
/// @group prompt
|
|
25
|
+
$kendo-prompt-content-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
|
|
26
|
+
/// The horizontal padding of the Prompt content.
|
|
27
|
+
/// @group prompt
|
|
28
|
+
$kendo-prompt-content-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
29
|
+
/// The spacing between the items of the Prompt content.
|
|
30
|
+
/// @group prompt
|
|
31
|
+
$kendo-prompt-content-spacing: k-map-get( $kendo-spacing, 4 ) !default;
|
|
32
|
+
/// The text color of the Prompt content.
|
|
33
|
+
/// @group prompt
|
|
34
|
+
$kendo-prompt-content-text: $kendo-component-header-text !default;
|
|
35
|
+
/// The background color of the Prompt content.
|
|
36
|
+
/// @group prompt
|
|
37
|
+
$kendo-prompt-content-bg: $kendo-component-header-bg !default;
|
|
38
|
+
/// The text border of the Prompt content.
|
|
39
|
+
/// @group prompt
|
|
40
|
+
$kendo-prompt-content-border: $kendo-component-header-border !default;
|
|
41
|
+
|
|
42
|
+
/// The spacing between the items of the Prompt content expander.
|
|
43
|
+
/// @group prompt
|
|
44
|
+
$kendo-prompt-expander-spacing: k-map-get( $kendo-spacing, 2 ) !default;
|
|
45
|
+
|
|
46
|
+
/// The vertical padding of the Prompt suggestion container.
|
|
47
|
+
/// @group prompt
|
|
48
|
+
$kendo-prompt-suggestion-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
49
|
+
/// The horizontal padding of the Prompt suggestion container.
|
|
50
|
+
/// @group prompt
|
|
51
|
+
$kendo-prompt-suggestion-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
52
|
+
/// The border radius of the Prompt suggestion container.
|
|
53
|
+
/// @group prompt
|
|
54
|
+
$kendo-prompt-suggestion-border-radius: $kendo-border-radius-md !default;
|
|
55
|
+
/// The text color of the Prompt suggestion container.
|
|
56
|
+
/// @group prompt
|
|
57
|
+
$kendo-prompt-suggestion-text: $kendo-component-text !default;
|
|
58
|
+
/// The background color of the Prompt suggestion container.
|
|
59
|
+
/// @group prompt
|
|
60
|
+
$kendo-prompt-suggestion-bg: $kendo-body-bg !default;
|
|
61
|
+
/// The border color of the Prompt suggestion container.
|
|
62
|
+
/// @group prompt
|
|
63
|
+
$kendo-prompt-suggestion-border: $kendo-component-border !default;
|
|
64
|
+
/// The elevation of the Prompt suggestion container.
|
|
65
|
+
/// @group prompt
|
|
66
|
+
$kendo-prompt-suggestion-shadow: k-elevation(1) !default;
|