Gathering detailed insights and metrics for @progress/kendo-theme-tasks
Gathering detailed insights and metrics for @progress/kendo-theme-tasks
Gathering detailed insights and metrics for @progress/kendo-theme-tasks
Gathering detailed insights and metrics for @progress/kendo-theme-tasks
npm install @progress/kendo-theme-tasks
Typescript
Module System
Node Version
NPM Version
JavaScript (95.9%)
Nunjucks (3.48%)
Shell (0.62%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
4 Stars
187 Commits
2 Forks
28 Watchers
3 Branches
142 Contributors
Updated on Jun 17, 2024
Latest Version
1.17.6
Package Id
@progress/kendo-theme-tasks@1.17.6
Unpacked Size
70.85 kB
Size
16.63 kB
File Count
53
NPM Version
9.6.3
Node Version
18.16.0
Published on
Jun 28, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
6
The Kendo UI theme-tasks
package is a utility library for developing and building @progress/kendo-theme-*
packages.
1 npm install @progress/kendo-theme-tasks --save-dev
node-sass
or sass
):1 npm install sass 2 npm install node-sass
1 npm install postcss postcss-calc autoprefixer
The package allows you to compile Kendo themes from SCSS or JSON through the kendoSassBuild
and kendoJsonBuild
functions.
A Kendo theme can be compiled to CSS from SCSS source with predefined configuration options (package importer, postcss, postcss-calc and autoprefixer) through the kendoSassBuild()
method:
1 @import "~@progress/kendo-theme-default/dist/all.scss";
1 const { kendoSassBuild } = require('@progress/kendo-theme-tasks/src/build/kendo-build');
2
3 function buildStyles(cb) {
4 kendoSassBuild({
5 file: './sass/styles.scss',
6 output: {
7 path: './wwwroot/css'
8 },
9 sassOptions: {
10 compiler: 'node-sass',
11 minify: true
12 }
13 });
14
15 cb();
16 }
17
18 exports.buildStyles = buildStyles;
A Kendo theme or a custom theme swatch can be compiled to CSS from JSON schema with predefined configuration options (package importer, postcss, postcss-calc and autoprefixer) through the kendoJsonBuild()
method:
Utilize one of the existing theme swatches or create a new one by following the schema.
Compile the JSON schema to CSS:
1 const { kendoJsonBuild } = require('@progress/kendo-theme-tasks/src/build/kendo-build');
2
3 function buildStyles(cb) {
4 kendoJsonBuild({
5 file: 'scss/theme.json',
6 output: {
7 path: 'dist/'
8 },
9 sassOptions: {
10 compiler: 'node-sass',
11 minify: true
12 }
13 });
14
15 cb();
16 }
17
18 exports.build = buildStyles;
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
Found 3/4 approved changesets -- score normalized to 7
Reason
dependency not pinned by hash detected -- score normalized to 4
Details
Reason
9 existing vulnerabilities detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
license file not detected
Details
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More