kendo-themes
kendo-themes copied to clipboard
Bootstrap theme autocomplete control is missing import for loader
Describe the bug Bootstrap theme autocomplete control is missing import for loader. Because of this no loader icon will be displayed
To reproduce Steps to reproduce the behavior:
- import only the @import "~@progress/kendo-theme-bootstrap/scss/autocomplete/_index.scss"; in a webpack project next to bootstrap and other required kendo sources
- run webpack and load generated stylesheet in a page with a autocomplete field
- use autocomplete field with server data source
- there is no loading indicator visible in the input field
Expected behavior loading indicator is visible
I was able to solve the issue by including loader as an additional control in my webpack: @import "~@progress/kendo-theme-bootstrap/scss/loader/_index.scss";
Although I would expected this to be imported as a dependency in autocomplete control.
Error: Can't find stylesheet to import.
╷
1 │ @import "@progress/kendo-theme-core/scss/functions/index.import.scss";
│ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
╵
node_modules\@progress\kendo-theme-default\scss\core\functions\index.import.scss 1:9 @import
node_modules\@progress\kendo-theme-default\scss\core\_index.scss 4:9 @import
node_modules\@progress\kendo-theme-default\scss\datepicker\_index.scss 1:9 @import
theme.scss 2:9 root stylesheet
NativeCommandExitException: Program "npm.cmd" ended with non-zero exit code: 65.
getting same error while trying to import in .scss
@import "node_modules/@progress/kendo-theme-default/scss/datepicker/_index.scss";
Any updates?