@progress/kendo-theme-fluent 7.0.1-dev.1 → 7.0.2-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.
@@ -3,7 +3,7 @@
3
3
  "name": "All",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-fluent",
6
- "version": "7.0.1-dev.1",
6
+ "version": "7.0.2-dev.0",
7
7
  "api": "modern",
8
8
  "previewColors": [
9
9
  "#ffffff",
@@ -3,7 +3,7 @@
3
3
  "name": "Fluent Main",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-fluent",
6
- "version": "7.0.1-dev.1",
6
+ "version": "7.0.2-dev.0",
7
7
  "api": "modern",
8
8
  "previewColors": [
9
9
  "#ffffff",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-theme-fluent",
3
3
  "description": "A css variables based theme for Kendo UI that follows the Fluent design system guidelines.",
4
- "version": "7.0.1-dev.1",
4
+ "version": "7.0.2-dev.0",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -52,8 +52,8 @@
52
52
  },
53
53
  "dependencies": {
54
54
  "@progress/kendo-svg-icons": "2.0.0",
55
- "@progress/kendo-theme-core": "7.0.1-dev.1",
56
- "@progress/kendo-theme-utils": "7.0.1-dev.1"
55
+ "@progress/kendo-theme-core": "7.0.2-dev.0",
56
+ "@progress/kendo-theme-utils": "7.0.2-dev.0"
57
57
  },
58
- "gitHead": "aeaff3f76d1244db6befcef518e6e59b1906cff2"
58
+ "gitHead": "1364f9c5bda2e0f5abdf6bd3705d4b99f86a89f3"
59
59
  }
@@ -2,176 +2,180 @@
2
2
  @use "../core/" as *;
3
3
  @use "../button/_variables.scss" as *;
4
4
 
5
- /// Horizontal padding of the card.
5
+ /// The horizontal padding of the Card.
6
6
  /// @group card
7
7
  $kendo-card-padding-x: map.get( $kendo-spacing, 3 ) !default;
8
- /// Vertical padding of the card.
8
+ /// The vertical padding of the Card.
9
9
  /// @group card
10
10
  $kendo-card-padding-y: map.get( $kendo-spacing, 3 ) !default;
11
- /// Width of the border around the card.
11
+ /// The width of the border around the Card.
12
12
  /// @group card
13
13
  $kendo-card-border-width: 0px !default;
14
- /// Border radius of the card.
14
+ /// The border radius of the Card.
15
15
  /// @group card
16
16
  $kendo-card-border-radius: $kendo-border-radius-md !default;
17
+ /// The inner border radius of the Card.
18
+ /// @group card
17
19
  $kendo-card-inner-border-radius: calc( #{$kendo-card-border-radius} - #{$kendo-card-border-width} ) !default;
18
- /// Font family of the card.
20
+ /// The font family of the Card.
19
21
  /// @group card
20
22
  $kendo-card-font-family: var( --kendo-font-family, inherit ) !default;
21
- /// Font size of the card.
23
+ /// The font size of the Card.
22
24
  /// @group card
23
25
  $kendo-card-font-size: var( --kendo-font-size-sm, inherit ) !default;
24
- /// Line height of the card.
26
+ /// The line height of the Card.
25
27
  /// @group card
26
28
  $kendo-card-line-height: var( --kendo-line-height, normal ) !default;
27
29
 
28
- /// Spacing between the cards in the card deck.
30
+ /// The spacing between the Cards in the Card deck.
29
31
  /// @group card
30
32
  $kendo-card-deck-gap: map.get( $kendo-spacing, 4 ) !default;
31
33
 
32
- /// Background color of the card.
34
+ /// The background color of the Card.
33
35
  /// @group card
34
36
  $kendo-card-bg: var( --kendo-component-bg, initial ) !default;
35
- /// Text color of the card.
37
+ /// The text color of the Card.
36
38
  /// @group card
37
39
  $kendo-card-text: var( --kendo-component-text, initial ) !default;
38
- /// Border color of the card.
40
+ /// The border color of the Card.
39
41
  /// @group card
40
42
  $kendo-card-border: var( --kendo-component-border, initial ) !default;
41
- /// Shadow of the card.
43
+ /// The shadow of the Card.
42
44
  /// @group card
43
45
  $kendo-card-shadow: var( --kendo-box-shadow-depth-1, none ) !default;
44
46
 
45
- /// Background color of the card when focused.
47
+ /// The background color of the focused Card.
46
48
  /// @group card
47
49
  $kendo-card-focus-bg: $kendo-card-bg !default;
48
- /// Text color of the card when focused.
50
+ /// The text color of the focused Card.
49
51
  /// @group card
50
52
  $kendo-card-focus-text: null !default;
51
- /// Border color of the card when focused.
53
+ /// The border color of the focused Card.
52
54
  /// @group card
53
55
  $kendo-card-focus-border: var( --kendo-component-border, initial ) !default;
54
- /// Shadow of the card when focused.
56
+ /// The shadow of the focused Card.
55
57
  /// @group card
56
58
  $kendo-card-focus-shadow: var( --kendo-box-shadow-depth-3, none ) !default;
57
59
 
58
- /// Text size of the card header.
60
+ /// The font size of the Card header.
59
61
  /// @group card
60
62
  $kendo-card-header-font-size: var( --kendo-font-size-lg, inherit ) !default;
61
- /// Font family of the card header text.
63
+ /// Тhe font family of the Card header.
62
64
  /// @group card
63
65
  $kendo-card-header-font-family: var( --kendo-font-family, inherit ) !default;
64
- /// Text weight of the card header.
66
+ /// The font weight of the Card header.
65
67
  /// @group card
66
68
  $kendo-card-header-font-weight: var( --kendo-font-weight, initial ) !default;
67
- /// Line height of the card header.
69
+ /// The line height of the Card header.
68
70
  /// @group card
69
71
  $kendo-card-header-line-height: var( --kendo-line-height, normal ) !default;
70
- /// Horizontal padding of the card header.
72
+ /// The horizontal padding of the Card header.
71
73
  /// @group card
72
74
  $kendo-card-header-padding-x: map.get( $kendo-spacing, 3 ) !default;
73
- /// Verical padding of the card header.
75
+ /// The vertical padding of the Card header.
74
76
  /// @group card
75
77
  $kendo-card-header-padding-y: map.get( $kendo-spacing, 3 ) !default;
76
- /// Bottom border width of the card header.
78
+ /// The bottom border width of the Card header.
77
79
  /// @group card
78
80
  $kendo-card-header-border-width: 0 !default;
79
- /// Background color of the card header.
81
+ /// The background color of the Card header.
80
82
  /// @group card
81
83
  $kendo-card-header-bg: inherit !default;
82
- /// Text color of the card header.
84
+ /// The text color of the Card header.
83
85
  /// @group card
84
86
  $kendo-card-header-text: k-get-theme-color-var( neutral-190 ) !default; // header-text
85
- /// Border color of the card header.
87
+ /// The border color of the Card header.
86
88
  /// @group card
87
89
  $kendo-card-header-border: inherit !default; // header-border
88
90
 
89
- /// Horizontal padding of the card body.
91
+ /// The horizontal padding of the Card body.
90
92
  /// @group card
91
93
  $kendo-card-body-padding-x: map.get( $kendo-spacing, 3 ) !default;
92
- /// Vertical padding of the card body.
94
+ /// The vertical padding of the Card body.
93
95
  /// @group card
94
96
  $kendo-card-body-padding-y: map.get( $kendo-spacing, 3 ) !default;
95
97
 
96
- /// Horizontal padding of the card footer.
98
+ /// The horizontal padding of the Card footer.
97
99
  /// @group card
98
100
  $kendo-card-footer-padding-x: $kendo-card-padding-x !default;
99
- /// Vertical padding of the card footer.
101
+ /// The vertical padding of the Card footer.
100
102
  /// @group card
101
103
  $kendo-card-footer-padding-y: $kendo-card-padding-y !default;
102
- /// Top border width of the card footer.
104
+ /// The top border width of the Card footer.
103
105
  /// @group card
104
106
  $kendo-card-footer-border-width: 0 !default;
105
- /// Background color of the card footer.
107
+ /// The background color of the Card footer.
106
108
  /// @group card
107
109
  $kendo-card-footer-bg: inherit !default;
108
- /// Text color of the card footer.
110
+ /// The text color of the Card footer.
109
111
  /// @group card
110
112
  $kendo-card-footer-text: inherit !default; // $kendo-component-header-text
111
- /// Border color of the card footer.
113
+ /// The border color of the Card footer.
112
114
  /// @group card
113
115
  $kendo-card-footer-border: inherit !default; // $kendo-component-header-border
114
116
 
115
- /// Text size of the card title.
117
+ /// The font size of the Card title.
116
118
  /// @group card
117
119
  $kendo-card-title-font-size: var( --kendo-font-size-lg, inherit ) !default;
118
- /// Font family of the card title.
120
+ /// The font family of the Card title.
119
121
  /// @group card
120
122
  $kendo-card-title-font-family: var( --kendo-font-family, inherit ) !default;
121
- /// Text weight of the card title.
123
+ /// The font weight of the Card title.
122
124
  /// @group card
123
125
  $kendo-card-title-font-weight: $kendo-card-header-font-weight !default;
124
- /// Line height of the card title.
126
+ /// The line height of the Card title.
125
127
  /// @group card
126
128
  $kendo-card-title-line-height: var( --kendo-line-height, normal ) !default;
127
- /// Bottom margin of the card title.
129
+ /// The bottom margin of the Card title.
128
130
  /// @group card
129
131
  $kendo-card-title-margin-bottom: map.get( $kendo-spacing, 3 ) !default;
130
- /// Font size of the card subtitle.
132
+ /// The font size of the Card subtitle.
131
133
  /// @group card
132
134
  $kendo-card-subtitle-font-size: var( --kendo-font-size-sm, inherit ) !default;
133
- /// Font family of the card subtitle.
135
+ /// The font family of the Card subtitle.
134
136
  /// @group card
135
137
  $kendo-card-subtitle-font-family: var( --kendo-font-family, inherit ) !default;
136
- /// Line height of the card subtitle.
138
+ /// The line height of the Card subtitle.
137
139
  /// @group card
138
140
  $kendo-card-subtitle-line-height: var( --kendo-line-height, normal ) !default;
139
- /// Bottom margin of the card subtitle.
141
+ /// The bottom margin of the Card subtitle.
140
142
  /// @group card
141
143
  $kendo-card-subtitle-margin-bottom: map.get( $kendo-spacing, 3 ) !default;
142
- /// Text color of the card subtitle.
144
+ /// The text color of the Card subtitle.
143
145
  /// @group card
144
146
  $kendo-card-subtitle-text: $kendo-subtle-text !default;
145
147
 
146
- /// Maximum width of the card image.
148
+ /// The maximum width of the Card image.
147
149
  /// @group card
148
150
  $kendo-card-img-max-width: 100px !default;
149
- /// Size of the avatar in the card.
151
+ /// The size of the Avatar in the Card.
150
152
  /// @group card
151
153
  $kendo-card-avatar-size: 3rem !default;
152
- /// Spacing between the avatar and the text in the card.
154
+ /// The spacing between the Avatar and the text in the Card.
153
155
  /// @group card
154
156
  $kendo-card-avatar-spacing: $kendo-card-header-padding-x !default;
155
157
 
156
- /// Horizontal padding of the card actions.
158
+ /// The horizontal padding of the Card actions.
157
159
  /// @group card
158
160
  $kendo-card-actions-padding-x: map.get( $kendo-spacing, 3 ) !default;
159
- /// Vertical padding of the card actions.
161
+ /// The vertical padding of the Card actions.
160
162
  /// @group card
161
163
  $kendo-card-actions-padding-y: map.get( $kendo-spacing, 3 ) !default;
162
- /// Top border of the card actions.
164
+ /// The top border width of the Card actions.
163
165
  /// @group card
164
166
  $kendo-card-actions-border-width: 0 !default;
165
- /// Spacing between the card actions.
167
+ /// The spacing between the Card actions.
166
168
  /// @group card
167
169
  $kendo-card-actions-gap: map.get( $kendo-spacing, 2 ) !default;
168
170
 
169
- /// Border radius of the scroll button in the card deck.
171
+ /// The border radius of the scroll button in the Card deck.
170
172
  /// @group card
171
173
  $kendo-card-deck-scroll-button-radius: 0 !default;
174
+ /// The border radius of the scroll button in the Card deck.
175
+ /// @group card
172
176
  $kendo-card-deck-scroll-button-offset: ( -1 * $kendo-button-border-width ) !default;
173
177
 
174
- /// Size of the card callout.
178
+ /// The size of the Card callout.
175
179
  /// @group card
176
180
  $kendo-card-callout-size: 20px !default;
177
181
 
@@ -12,7 +12,6 @@
12
12
  .k-dropdown-operator {
13
13
  width: min-content;
14
14
  flex: none;
15
- aspect-ratio: 1;
16
15
 
17
16
  .k-input-button {
18
17
  border-width: 0;
@@ -566,17 +566,6 @@
566
566
  flex: none;
567
567
  }
568
568
  }
569
-
570
- .k-input,
571
- .k-picker {
572
- width: auto;
573
- flex: 1 1 auto;
574
- }
575
- .k-color-picker,
576
- .k-dropdown-operator {
577
- width: min-content;
578
- flex: none;
579
- }
580
569
  }
581
570
 
582
571
  // Grid content
@@ -182,6 +182,7 @@
182
182
 
183
183
  .k-spreadsheet-sheets {
184
184
  flex: 1 1 auto;
185
+ overflow: hidden;
185
186
  }
186
187
  .k-spreadsheet-sheets .k-tabstrip-items-wrapper {
187
188
  border-width: 0;