
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
@microsoft/loader-load-themed-styles
Advanced tools
This simple loader wraps the loading of CSS in script equivalent to `require('load-themed-styles').loadStyles( /* css text */ )`. It is designed to be a replacement for style-loader.
npm install @microsoft/loader-load-themed-styles --save-dev
This simple Webpack loader that wraps the loading of CSS in script equivalent
to require("load-themed-styles").loadStyles( /* css text */ )
.
It is designed to be a replacement for style-loader.
This loader is designed to be used in conjunction with css-loader.
var css = require("@microsoft/loader-load-themed-styles!css!./file.css");
// => returns css code from file.css, uses load-themed-styles to load the CSS on the page.
use: [
{
loader: "@microsoft/loader-load-themed-styles", // creates style nodes from JS strings
options: {
async: false
}
},
{
loader: "css-loader", // translates CSS into CommonJS
options: {
modules: true,
importLoaders: 2,
localIdentName: '[name]_[local]_[hash:base64:5]',
minimize: false
}
},
{
loader: 'postcss-loader',
options: {
plugins: function () {
return [
require('autoprefixer')
];
}
}
},
{
loader: "sass-loader",
}
]
async
(boolean, defaults to false
)By default, @microsoft/load-themed-styles
loads styles synchronously. This can have adverse performance effects
if many styles are loaded in quick succession. If the async
option is set to true
, the loadStyles
function
is called with the second parameter set to true
, directing the function to debounce style loading causing fewer
changes to the DOM.
@microsoft/loader-load-themed-styles
is part of the Rush Stack family of projects.
FAQs
This simple loader wraps the loading of CSS in script equivalent to `require('load-themed-styles').loadStyles( /* css text */ )`. It is designed to be a replacement for style-loader.
The npm package @microsoft/loader-load-themed-styles receives a total of 22,353 weekly downloads. As such, @microsoft/loader-load-themed-styles popularity was classified as popular.
We found that @microsoft/loader-load-themed-styles demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.