Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
@progress/kendo-theme-default
Advanced tools
@progress/kendo-theme-default is a theme package for Kendo UI components. It provides a default styling theme that can be applied to Kendo UI widgets to ensure a consistent and visually appealing design across your application.
Applying Default Theme to Kendo UI Components
This code imports the default theme CSS file, which applies the default Kendo UI styling to all Kendo UI components in your application.
import '@progress/kendo-theme-default/dist/all.css';
Customizing Theme Variables
This code demonstrates how to customize the default theme by overriding SCSS variables. You can change the primary and secondary colors and then apply the custom theme using the `kendo-theme` mixin.
/* Import the default theme */
@import "~@progress/kendo-theme-default/scss/all";
/* Override variables */
$primary: #ff0000;
$secondary: #00ff00;
/* Apply the custom theme */
@include kendo-theme();
Using Theme with Angular
This code shows how to use the default theme in an Angular application. It imports the theme CSS and applies it to a Kendo UI button component.
import { Component } from '@angular/core';
import '@progress/kendo-theme-default/dist/all.css';
@Component({
selector: 'my-app',
template: `<kendo-button>My Kendo Button</kendo-button>`
})
export class AppComponent {}
Bootstrap is a popular CSS framework that provides a wide range of pre-styled components and utilities. Unlike @progress/kendo-theme-default, which is specifically designed for Kendo UI components, Bootstrap can be used with any HTML elements and offers a more general-purpose solution.
Material-UI is a React component library that implements Google's Material Design. It provides a set of pre-styled components similar to Kendo UI but is specifically tailored for React applications. Material-UI offers a different design aesthetic compared to the default Kendo theme.
Ant Design is a comprehensive design system and React UI library. It offers a wide range of components and themes, similar to Kendo UI, but is focused on providing a consistent design language for enterprise applications. Ant Design provides more customization options and a different design philosophy compared to the default Kendo theme.
The Kendo UI Default Theme is a SCSS-based theme for the Kendo UI components.
Currently, it is available for the following suites:
We are working on providing support for the Default Theme in Kendo UI jQuery suite too.
For more information on how to use the Default Theme in Angular 2 and React projects, refer to its introductory topic.
To customize the Default Theme in one swoop, use the colors defined in the styles/_variables.scss
file. Any change in this file is propagated to every component.
To style a specific component, use the variables used in its specific .scss
file.
The theme is built by running npm run build
. The dist/all.css
file contains the complete theme that you can use in your project.
Styles are split into components and the dependencies are managed by the import-once
mixin. When configuring the styles, define them within an import-once
block so that they are bundled once when required from multiple files.
During development, the SCSS files are linted on every commit
and built on every push
command. The theme package can be tested against a component by linking the theme in the components package.
Upon build, browser-specific properties are generated through the PostCSS autoprefixer.
When updating resources (images or fonts), run the npm run embed-assets
task. This will generate a file with the same name, which registers a base64-encoded version in the $data-uris
SCSS map. For example, the font file foo.woff
will receive a foo.scss
file, which can later be imported via @import './font/foo';
. Then the base64 version can be inlined via map-get( $data-uris, 'WebComponentsIcons.woff' )
. This is done in order to workaround problems with hosting resources when consuming the theme. See issue #41 for more details.
FAQs
SASS resources for the default Kendo UI theme
The npm package @progress/kendo-theme-default receives a total of 169,141 weekly downloads. As such, @progress/kendo-theme-default popularity was classified as popular.
We found that @progress/kendo-theme-default demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.
Security News
Sonar’s acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.