Socket
Socket
Sign inDemoInstall

@lrnwebcomponents/simple-colors

Package Overview
Dependencies
Maintainers
4
Versions
122
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lrnwebcomponents/simple-colors - npm Package Compare versions

Comparing version 8.0.0 to 8.0.1

32

lib/demo/simple-colors-swatch-info.js

@@ -24,3 +24,3 @@ /**

return [
...super.styles,
super.styles,
css`

@@ -117,10 +117,9 @@ :host {

${this._getAa(this.swatchId, color).map(
(contrast) =>
html`
<span
class="contrast"
style="${this._getContrastBg(color, contrast)}"
>${color}-${contrast}</span
>
`
(contrast) => html`
<span
class="contrast"
style="${this._getContrastBg(color, contrast)}"
>${color}-${contrast}</span
>
`,
)}

@@ -130,10 +129,9 @@ </td>

${this._getAaLarge(this.swatchId, color).map(
(contrast) =>
html`
<span
class="contrast"
style="${this._getContrastBg(color, contrast)}"
>${color}-${contrast}</span
>
`
(contrast) => html`
<span
class="contrast"
style="${this._getContrastBg(color, contrast)}"
>${color}-${contrast}</span
>
`,
)}

@@ -140,0 +138,0 @@ </td>

@@ -31,3 +31,3 @@ /**

return [
...super.styles,
super.styles,
css`

@@ -34,0 +34,0 @@ :host {

@@ -23,7 +23,7 @@ /**

class SimpleColorsPicker extends SimplePickerBehaviors(
SimpleColorsSuper(LitElement)
SimpleColorsSuper(LitElement),
) {
static get styles() {
return [
...super.styles,
super.styles,
css`

@@ -36,2 +36,5 @@ :host {

}
.row {
width: 100%;
}
`,

@@ -138,3 +141,3 @@ ];

this.dispatchEvent(
new CustomEvent("change", { bubbles: true, detail: this })
new CustomEvent("change", { bubbles: true, detail: this }),
);

@@ -141,0 +144,0 @@ }

@@ -55,3 +55,3 @@ /**

type: Object,
value: window.SimpleColorsSharedStyles.colors,
value: globalThis.SimpleColorsSharedStyles.colors,
notify: true,

@@ -68,4 +68,4 @@ },

super();
this.__utils = window.SimpleColorsSharedStyles.requestAvailability();
this.colors = window.SimpleColorsSharedStyles.colors;
this.__utils = globalThis.SimpleColorsSharedStyles.requestAvailability();
this.colors = globalThis.SimpleColorsSharedStyles.colors;
}

@@ -105,3 +105,3 @@

(shade = 1),
(theme = "default")
(theme = "default"),
);

@@ -140,3 +140,3 @@ }

colorShade,
contrastName
contrastName,
);

@@ -160,3 +160,3 @@ }

contrastName,
contrastShade
contrastShade,
) {

@@ -168,3 +168,3 @@ return this.__utils.isContrastCompliant(

contrastName,
contrastShade
contrastShade,
);

@@ -171,0 +171,0 @@ }

@@ -15,3 +15,3 @@ /**

const StyleElement = document.createElement("dom-module");
const StyleElement = globalThis.document.createElement("dom-module");

@@ -18,0 +18,0 @@ // styles

@@ -20,3 +20,3 @@ {

},
"version": "8.0.0",
"version": "8.0.1",
"description": "Automated conversion of simple-colors/",

@@ -37,24 +37,25 @@ "repository": {

"lighthouse": "gulp lighthouse --gulpfile=gulpfile.cjs",
"test:watch": "web-test-runner \"test/**/*.test.js\" --node-resolve --config=../../web-test-runner.config.mjs --playwright --browsers chromium firefox --watch",
"test": "web-test-runner \"test/**/*.test.js\" --node-resolve --config=../../web-test-runner.config.mjs --playwright --browsers chromium firefox"
"test:watch": "web-test-runner \"test/**/*.test.js\" --node-resolve --config=../../web-test-runner.config.mjs --playwright --browsers chromium --watch",
"test": "web-test-runner \"test/**/*.test.js\" --node-resolve --config=../../web-test-runner.config.mjs --playwright --browsers chromium"
},
"author": {
"name": "nikkimk"
"name": "haxtheweb",
"url": "https://hax.psu.edu/"
},
"license": "Apache-2.0",
"dependencies": {
"@lrnwebcomponents/a11y-utils": "^8.0.0",
"@lrnwebcomponents/simple-colors-shared-styles": "^8.0.0",
"lit": "^3.1.0"
"@lrnwebcomponents/a11y-utils": "^8.0.1",
"@lrnwebcomponents/simple-colors-shared-styles": "^8.0.1",
"lit": "^3.1.2"
},
"devDependencies": {
"@lrnwebcomponents/deduping-fix": "^8.0.0",
"@lrnwebcomponents/storybook-utilities": "^8.0.0",
"@open-wc/testing": "3.2.0",
"@lrnwebcomponents/deduping-fix": "^8.0.1",
"@lrnwebcomponents/storybook-utilities": "^8.0.1",
"@open-wc/testing": "4.0.0",
"@polymer/iron-component-page": "github:PolymerElements/iron-component-page",
"@polymer/iron-demo-helpers": "3.1.0",
"@polymer/polymer": "^3.5.1",
"@web/dev-server": "0.3.1",
"@web/dev-server": "0.4.2",
"@webcomponents/webcomponentsjs": "^2.8.0",
"concurrently": "8.2.0",
"concurrently": "8.2.2",
"wct-browser-legacy": "1.0.2"

@@ -70,3 +71,3 @@ },

],
"gitHead": "2791492ff7ab40c7d4c827c4b305e33c0a971230"
"gitHead": "246242dfc335bb0f3baa59f801241be9d3b69180"
}

@@ -98,4 +98,4 @@ import { withKnobs } from "@open-wc/demoing-storybook";

your interfaces, and/or swap accent colors on the fly.
</p>`
)
</p>`,
),
);

@@ -102,0 +102,0 @@ };

@@ -8,5 +8,5 @@ import { fixture, expect, html } from "@open-wc/testing";

beforeEach(async () => {
element = await fixture(
html` <simple-colors title="test-title"></simple-colors> `
);
element = await fixture(html`
<simple-colors title="test-title"></simple-colors>
`);
});

@@ -13,0 +13,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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