@progress/kendo-theme-fluent 5.8.2-dev.2 → 5.8.2-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.
- package/README.md +12 -5
- package/dist/all.css +298 -157
- package/package.json +3 -3
- package/scss/bottom-navigation/_variables.scss +9 -9
- package/scss/colorgradient/_layout.scss +3 -2
- package/scss/colorpalette/_layout.scss +6 -2
- package/scss/colorpalette/_theme.scss +5 -15
- package/scss/colorpalette/_variables.scss +15 -15
- package/scss/core/_index.scss +4 -8
- package/scss/core/color-system/_variables.scss +4 -4
- package/scss/dataviz/_layout.scss +2 -2
- package/scss/grid/_layout.scss +7 -9
- package/scss/grid/_variables.scss +2 -2
- package/scss/index.scss +2 -2
- package/scss/input/_layout.scss +2 -2
- package/scss/input/_theme.scss +1 -1
- package/scss/menu/_layout.scss +11 -0
- package/scss/menu/_theme.scss +3 -0
- package/scss/progressbar/_layout.scss +4 -6
- package/scss/scheduler/_theme.scss +5 -1
- package/scss/scheduler/_variables.scss +10 -0
- package/scss/signature/_layout.scss +4 -0
- package/scss/signature/_variables.scss +4 -0
- package/scss/skeleton/_layout.scss +3 -3
- package/scss/split-button/_layout.scss +21 -27
- package/scss/split-button/_variables.scss +8 -0
- package/scss/spreadsheet/_theme.scss +178 -181
- package/scss/table/_variables.scss +5 -5
- package/scss/timeline/_layout.scss +1 -2
- package/scss/treelist/_layout.scss +5 -0
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ and then import it in your project styles:
|
|
|
30
30
|
|
|
31
31
|
```scss
|
|
32
32
|
// Import the entire theme
|
|
33
|
-
@
|
|
33
|
+
@use "~@progress/kendo-theme-fluent/scss/all.scss";
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
## Customizing
|
|
@@ -39,12 +39,19 @@ You can customize Kendo UI Fluent Theme both in terms of what gets compiled and
|
|
|
39
39
|
|
|
40
40
|
### Importing
|
|
41
41
|
|
|
42
|
-
In your custom scss file, you can import the entirety of the theme, by importing `
|
|
42
|
+
In your custom scss file, you can import the entirety of the theme, by importing `scss/all.scss` or pick just the styles for the components you need. The files for individual components:
|
|
43
43
|
|
|
44
44
|
```scss
|
|
45
|
-
// Import only
|
|
46
|
-
@
|
|
47
|
-
|
|
45
|
+
// Import only Button and Grid styles
|
|
46
|
+
@use "~@progress/kendo-theme-fluent/scss/index.scss" as kendo-theme;
|
|
47
|
+
|
|
48
|
+
@include kendo-theme.config(
|
|
49
|
+
$components: (
|
|
50
|
+
"button",
|
|
51
|
+
"grid"
|
|
52
|
+
)
|
|
53
|
+
);
|
|
54
|
+
@include kendo-theme.styles();
|
|
48
55
|
```
|
|
49
56
|
|
|
50
57
|
## Bug reports and feature requests
|