Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@awsui/theming-runtime

Package Overview
Dependencies
Maintainers
3
Versions
75
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@awsui/theming-runtime - npm Package Compare versions

Comparing version 1.0.6 to 1.0.7

2

package.json

@@ -13,5 +13,5 @@ {

"name": "@awsui/theming-runtime",
"version": "1.0.6",
"version": "1.0.7",
"license": "Apache-2.0",
"homepage": "https://github.com/aws/awsui-documentation"
}

@@ -10,3 +10,4 @@ import { isOptionalState } from '../theme/utils';

AbstractCreator.forEachOptionalModeState = function (theme, func) {
Object.values(theme.modes).forEach(function (mode) {
Object.keys(theme.modes).forEach(function (key) {
var mode = theme.modes[key];
entries(mode.states).forEach(function (_a) {

@@ -21,3 +22,4 @@ var stateKey = _a[0], state = _a[1];

AbstractCreator.forEachContext = function (theme, func) {
Object.values(theme.contexts).forEach(function (context) {
Object.keys(theme.contexts).forEach(function (key) {
var context = theme.contexts[key];
func(context);

@@ -24,0 +26,0 @@ });

@@ -36,3 +36,5 @@ // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.

Stylesheet.prototype.getAllRules = function () {
return Array.from(this.paths.keys());
var rules = [];
this.paths.forEach(function (_, key) { return rules.push(key); });
return rules;
};

@@ -39,0 +41,0 @@ /**

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc