@progress/kendo-theme-fluent 7.1.0 → 7.1.1-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.
package/dist/all.css CHANGED
@@ -31715,6 +31715,10 @@ textarea.k-input-inner {
31715
31715
  --kendo-picker-disabled-border: var( --kendo-picker-flat-disabled-border, var(--kendo-neutral-90, inherit) );
31716
31716
  }
31717
31717
 
31718
+ .k-textarea:has(.k-input-inner[style*=width]) {
31719
+ width: max-content;
31720
+ }
31721
+
31718
31722
  .k-checkbox {
31719
31723
  margin: 0;
31720
31724
  padding: 0;
@@ -49482,7 +49486,7 @@ kendo-scrollview.k-scrollview .k-scrollview-nav {
49482
49486
  display: flex;
49483
49487
  flex-direction: column;
49484
49488
  flex: 1;
49485
- align-items: start;
49489
+ align-items: flex-start;
49486
49490
  gap: var(--kendo-prompt-expander-spacing, 0.5rem);
49487
49491
  }
49488
49492
 
@@ -3,7 +3,7 @@
3
3
  "name": "All",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-fluent",
6
- "version": "7.1.0",
6
+ "version": "7.1.1-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.1.0",
6
+ "version": "7.1.1-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.1.0",
4
+ "version": "7.1.1-dev.0",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -53,12 +53,12 @@
53
53
  },
54
54
  "dependencies": {
55
55
  "@progress/kendo-svg-icons": "2.1.0",
56
- "@progress/kendo-theme-core": "7.1.0",
57
- "@progress/kendo-theme-utils": "7.1.0"
56
+ "@progress/kendo-theme-core": "7.1.1-dev.0",
57
+ "@progress/kendo-theme-utils": "7.1.1-dev.0"
58
58
  },
59
59
  "directories": {
60
60
  "doc": "docs",
61
61
  "lib": "lib"
62
62
  },
63
- "gitHead": "72d42dfbf1b9b895c405ccba9b35d22204a4b12d"
63
+ "gitHead": "d879bc81a2fce80d78a55bb65466396bf71ca022"
64
64
  }
@@ -34,7 +34,7 @@
34
34
  display: flex;
35
35
  flex-direction: column;
36
36
  flex: 1;
37
- align-items: start;
37
+ align-items: flex-start;
38
38
  gap: var( --kendo-prompt-expander-spacing, #{$kendo-prompt-expander-spacing} );
39
39
  }
40
40
 
@@ -1,6 +1,8 @@
1
1
  @mixin kendo-textarea--layout() {
2
2
 
3
3
  // Textarea
4
- .k-textarea {}
4
+ .k-textarea:has(.k-input-inner[style*="width"]) {
5
+ width: max-content;
6
+ }
5
7
 
6
8
  }