@progress/kendo-theme-classic 7.1.0-dev.2 → 7.1.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.
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Moonlight",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "7.1.0-dev.2",
6
+ "version": "7.1.0-dev.4",
7
7
  "api": "legacy",
8
8
  "previewColors": [
9
9
  "#1f2a35",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Opal Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "7.1.0-dev.2",
6
+ "version": "7.1.0-dev.4",
7
7
  "api": "legacy",
8
8
  "previewColors": [
9
9
  "#000000",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Opal",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "7.1.0-dev.2",
6
+ "version": "7.1.0-dev.4",
7
7
  "api": "legacy",
8
8
  "previewColors": [
9
9
  "#ffffff",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Silver Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "7.1.0-dev.2",
6
+ "version": "7.1.0-dev.4",
7
7
  "api": "legacy",
8
8
  "previewColors": [
9
9
  "#000000",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Silver",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "7.1.0-dev.2",
6
+ "version": "7.1.0-dev.4",
7
7
  "api": "legacy",
8
8
  "previewColors": [
9
9
  "#ffffff",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Uniform",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "7.1.0-dev.2",
6
+ "version": "7.1.0-dev.4",
7
7
  "api": "legacy",
8
8
  "previewColors": [
9
9
  "#ffffff",
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.2",
4
+ "version": "7.1.0-dev.4",
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.0.0",
56
- "@progress/kendo-theme-core": "7.1.0-dev.2",
57
- "@progress/kendo-theme-default": "7.1.0-dev.2",
58
- "@progress/kendo-theme-utils": "7.1.0-dev.2"
55
+ "@progress/kendo-svg-icons": "2.1.0",
56
+ "@progress/kendo-theme-core": "7.1.0-dev.4",
57
+ "@progress/kendo-theme-default": "7.1.0-dev.4",
58
+ "@progress/kendo-theme-utils": "7.1.0-dev.4"
59
59
  },
60
60
  "directories": {
61
61
  "doc": "docs",
62
62
  "lib": "lib"
63
63
  },
64
- "gitHead": "5c463cc90be2d59355a047ce91142b02465fcc13"
64
+ "gitHead": "97b4586318367dcab02765dd178849be2121425e"
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,6 @@
1
+ @import "@progress/kendo-theme-default/scss/prompt/_layout.scss";
2
+
3
+
4
+ @mixin kendo-prompt--layout() {
5
+ @include kendo-prompt--layout-base();
6
+ }
@@ -0,0 +1,6 @@
1
+ @import "@progress/kendo-theme-default/scss/prompt/_theme.scss";
2
+
3
+
4
+ @mixin kendo-prompt--theme() {
5
+ @include kendo-prompt--theme-base();
6
+ }
@@ -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;