@progress/kendo-theme-fluent 6.2.0 → 6.2.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 +3 -3
- package/lib/swatches/all.json +1 -1
- package/lib/swatches/fluent-main.json +1 -1
- package/package.json +4 -4
- package/scss/chip/_layout.scss +5 -5
package/dist/all.css
CHANGED
|
@@ -27122,9 +27122,6 @@ kendo-badge-container {
|
|
|
27122
27122
|
.k-chip .k-selected-icon-wrapper {
|
|
27123
27123
|
display: none !important;
|
|
27124
27124
|
}
|
|
27125
|
-
.k-chip .k-icon-wrapper-host {
|
|
27126
|
-
display: initial;
|
|
27127
|
-
}
|
|
27128
27125
|
.k-chip:hover, .k-chip:focus {
|
|
27129
27126
|
outline: 0;
|
|
27130
27127
|
text-decoration: none;
|
|
@@ -27151,6 +27148,9 @@ kendo-badge-container {
|
|
|
27151
27148
|
overflow: hidden;
|
|
27152
27149
|
flex: 1 1 auto;
|
|
27153
27150
|
}
|
|
27151
|
+
.k-chip-content .k-icon-wrapper-host {
|
|
27152
|
+
display: initial;
|
|
27153
|
+
}
|
|
27154
27154
|
|
|
27155
27155
|
.k-chip-content:first-child {
|
|
27156
27156
|
margin-inline-start: var(--kendo-chip-spacing, 0.25rem);
|
package/lib/swatches/all.json
CHANGED
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": "6.2.0",
|
|
4
|
+
"version": "6.2.1-dev.0+7a0fad806",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"@progress/kendo-font-icons": "1.4.0",
|
|
53
|
-
"@progress/kendo-theme-core": "6.2.0",
|
|
54
|
-
"@progress/kendo-theme-utils": "6.2.0"
|
|
53
|
+
"@progress/kendo-theme-core": "6.2.1-dev.0+7a0fad806",
|
|
54
|
+
"@progress/kendo-theme-utils": "6.2.1-dev.0+7a0fad806"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "7a0fad8063cd9fe27e17a9898e289cca17895c32"
|
|
57
57
|
}
|
package/scss/chip/_layout.scss
CHANGED
|
@@ -34,11 +34,6 @@
|
|
|
34
34
|
display: none !important; // sass-lint:disable-line no-important
|
|
35
35
|
}
|
|
36
36
|
|
|
37
|
-
// Adjustment for kendo-icon-wrapper
|
|
38
|
-
.k-icon-wrapper-host {
|
|
39
|
-
display: initial;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
37
|
&:hover,
|
|
43
38
|
&:focus {
|
|
44
39
|
outline: 0;
|
|
@@ -70,6 +65,11 @@
|
|
|
70
65
|
align-items: center;
|
|
71
66
|
overflow: hidden;
|
|
72
67
|
flex: 1 1 auto;
|
|
68
|
+
|
|
69
|
+
// Adjustment for kendo-icon-wrapper
|
|
70
|
+
.k-icon-wrapper-host {
|
|
71
|
+
display: initial;
|
|
72
|
+
}
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
.k-chip-content:first-child {
|