@progress/kendo-theme-fluent 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.
@@ -0,0 +1,67 @@
1
+ @use "sass:map";
2
+ @use "../core/" as *;
3
+
4
+ /// The text color of the Prompt.
5
+ /// @group prompt
6
+ $kendo-prompt-text: var( --kendo-component-text, initial ) !default;
7
+ /// The background color of the Prompt.
8
+ /// @group prompt
9
+ $kendo-prompt-bg: var( --kendo-component-bg, initial ) !default;
10
+ /// The border color of the Prompt.
11
+ /// @group prompt
12
+ $kendo-prompt-border: var( --kendo-component-border, initial ) !default;
13
+
14
+ /// The text color of the Prompt header.
15
+ /// @group prompt
16
+ $kendo-prompt-header-text: var( --kendo-component-text, initial ) !default;
17
+ /// The background color of the Prompt header.
18
+ /// @group prompt
19
+ $kendo-prompt-header-bg: var( --kendo-component-bg, initial ) !default;
20
+ /// The border color of the Prompt header.
21
+ /// @group prompt
22
+ $kendo-prompt-header-border: var( --kendo-component-border, initial ) !default;
23
+
24
+ /// The vertical padding of the Prompt content.
25
+ /// @group prompt
26
+ $kendo-prompt-content-padding-y: map.get( $kendo-spacing, 4 ) !default;
27
+ /// The horizontal padding of the Prompt content.
28
+ /// @group prompt
29
+ $kendo-prompt-content-padding-x: map.get( $kendo-spacing, 4 ) !default;
30
+ /// The spacing between the items of the Prompt content.
31
+ /// @group prompt
32
+ $kendo-prompt-content-spacing: map.get( $kendo-spacing, 4 ) !default;
33
+ /// The text color of the Prompt content.
34
+ /// @group prompt
35
+ $kendo-prompt-content-text: k-get-theme-color-var( neutral-190 ) !default;
36
+ /// The background color of the Prompt content.
37
+ /// @group prompt
38
+ $kendo-prompt-content-bg: k-get-theme-color-var( neutral-10 ) !default;
39
+ /// The text border of the Prompt content.
40
+ /// @group prompt
41
+ $kendo-prompt-content-border: var( --kendo-component-border, initial ) !default;
42
+
43
+ /// The spacing between the items of the Prompt content expander.
44
+ /// @group prompt
45
+ $kendo-prompt-expander-spacing: map.get( $kendo-spacing, 2 ) !default;
46
+
47
+ /// The vertical padding of the Prompt suggestion container.
48
+ /// @group prompt
49
+ $kendo-prompt-suggestion-padding-y: map.get( $kendo-spacing, 2 ) !default;
50
+ /// The horizontal padding of the Prompt suggestion container.
51
+ /// @group prompt
52
+ $kendo-prompt-suggestion-padding-x: map.get( $kendo-spacing, 2 ) !default;
53
+ /// The border radius of the Prompt suggestion container.
54
+ /// @group prompt
55
+ $kendo-prompt-suggestion-border-radius: var( --kendo-border-radius-md, #{$kendo-border-radius-md} ) !default;
56
+ /// The text color of the Prompt suggestion container.
57
+ /// @group prompt
58
+ $kendo-prompt-suggestion-text: var( --kendo-component-text, initial ) !default;
59
+ /// The background color of the Prompt suggestion container.
60
+ /// @group prompt
61
+ $kendo-prompt-suggestion-bg: var( --kendo-component-bg, initial ) !default;
62
+ /// The border color of the Prompt suggestion container.
63
+ /// @group prompt
64
+ $kendo-prompt-suggestion-border: var( --kendo-component-border, initial ) !default;
65
+ /// The elevation of the Prompt suggestion container.
66
+ /// @group prompt
67
+ $kendo-prompt-suggestion-shadow: k-elevation(1) !default;
@@ -0,0 +1,23 @@
1
+ // Module meta
2
+ $_kendo-module-meta: (
3
+ name: "prompt",
4
+ dependencies: ()
5
+ );
6
+
7
+
8
+ // Component
9
+ @forward "./_variables.scss";
10
+ @use "./_layout.scss" as *;
11
+ @use "./_theme.scss" as *;
12
+
13
+ // Register
14
+ @use "../core/module-system/" as module;
15
+ @include module.register( $_kendo-module-meta... );
16
+
17
+ // Expose
18
+ @mixin prompt-styles() {
19
+ @include module.render( "prompt" ) {
20
+ @include kendo-prompt--layout();
21
+ @include kendo-prompt--theme();
22
+ }
23
+ }