@vonage/vvd-style-coupling
Advanced tools
Comparing version 0.5.0 to 0.6.0
@@ -1,4 +0,9 @@ | ||
# 0.5.0 (2020-08-20) | ||
# 0.6.0 (2020-09-08) | ||
### Features | ||
* **textarea:** textarea form association ([#300](https://github.com/vonage/vivid/issues/300)) ([19ebd4e](https://github.com/vonage/vivid/commit/19ebd4e5f694738d2687f2a9d2a24ef2fa9beb4b)) | ||
{ | ||
"name": "@vonage/vvd-style-coupling", | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"description": "> TODO: description", | ||
@@ -22,8 +22,9 @@ "author": "yinonov <yinon@hotmail.com>", | ||
"dependencies": { | ||
"tslib": "^2.0.0" | ||
"tslib": "^2.0.1" | ||
}, | ||
"devDependencies": { | ||
"lit-element": "^2.3.1" | ||
"@vonage/vvd-foundation": "^0.6.0", | ||
"lit-element": "^2.4.0" | ||
}, | ||
"gitHead": "5f43688d123fda159d4a0c15bfcf5011075a82d4" | ||
"gitHead": "d55fb00c43d48e3f8b0f3de170e4cb6949acbfd8" | ||
} |
import {css} from 'lit-element'; | ||
export const style = css`:root,:host{--vvd-color-base-background: #ffffff;--vvd-color-base-foreground: #131415;--vvd-color-surface-background: #ffffff;--vvd-color-surface-foreground: #131415;--vvd-color-primary-background: #131415;--vvd-color-primary-foreground: #ffffff;--vvd-color-secondary-background: #131415;--vvd-color-secondary-foreground: #ffffff;--vvd-color-alternate-primary-background: #131415;--vvd-color-alternate-primary-foreground: #ffffff;--vvd-color-alternate-secondary-background: #ffffff;--vvd-color-alternate-secondary-foreground: #131415;--vvd-color-checked: var(--vvd-color-base-foreground);--vvd-color-unchecked: #74767a;--vvd-color-disabled-unchecked: #afb0b8;--vvd-color-idle: #c2c4cc;--vvd-formfield-disabled-ink:#74767a;--vvd-formfield-disabled-fill:#f3f3f5;--vvd-formfield-label-idle-ink:#616266;--vvd-formfield-border-idle:#ced0d7;--vvd-formfield-border-hover:var(--vvd-color-base-foreground);--vvd-formfield-border-active:var(--vvd-color-base-foreground);--vvd-formfield-border-disabled:#e1e2e6;--vvd-formfield-error-fill:#fdecec;--vvd-formfield-border-error:#d43f3f;--vvd-formfield-label-error-ink:#d43f3f;--vvd-color-success-background: #1d7e67;--vvd-color-success-foreground: #ffffff;--vvd-color-error-background: #d43f3f;--vvd-color-error-foreground: #ffffff;--vvd-color-cta-background: #871fff;--vvd-color-cta-foreground: #ffffff}:host{--mdc-theme-primary: var(--vvd-color-primary-background);--mdc-theme-on-primary: var(--vvd-color-primary-foreground);--mdc-theme-text-primary-on-background: var(--vvd-color-base-foreground);--mdc-theme-secondary: var(--vvd-color-secondary-background);--mdc-theme-on-secondary: var(--vvd-color-secondary-foreground);--mdc-theme-surface: var(--vvd-color-surface-background);--mdc-theme-on-surface: var(--vvd-color-surface-foreground);--mdc-theme-error: var(--vvd-color-error)}`; | ||
export const style = css`:root,:host{--vvd-color-base-background: #ffffff;--vvd-color-base-foreground: #131415;--vvd-color-surface-background: #ffffff;--vvd-color-surface-foreground: #131415;--vvd-color-primary-background: #131415;--vvd-color-primary-foreground: #ffffff;--vvd-color-secondary-background: #131415;--vvd-color-secondary-foreground: #ffffff;--vvd-color-alternate-primary-background: #131415;--vvd-color-alternate-primary-foreground: #ffffff;--vvd-color-alternate-secondary-background: #ffffff;--vvd-color-alternate-secondary-foreground: #131415;--vvd-color-checked: var(--vvd-color-base-foreground);--vvd-color-unchecked: #74767a;--vvd-color-disabled-unchecked: #afb0b8;--vvd-color-idle: #c2c4cc;--vvd-formfield-disabled-ink:#74767a;--vvd-formfield-disabled-fill:#f3f3f5;--vvd-formfield-label-idle-ink:#616266;--vvd-formfield-border-idle:#ced0d7;--vvd-formfield-border-hover:var(--vvd-color-base-foreground);--vvd-formfield-border-active:var(--vvd-color-base-foreground);--vvd-formfield-border-disabled:#e1e2e6;--vvd-formfield-error-fill:#fdecec;--vvd-formfield-border-error:#d43f3f;--vvd-formfield-label-error-ink:#d43f3f;--vvd-color-cta-background:#871fff;--vvd-color-cta-foreground:#fff;--vvd-color-success-background:#1d7e67;--vvd-color-success-foreground:#fff;--vvd-color-error-background:#d43f3f;--vvd-color-error-foreground:#fff;--vvd-color-info-background:#008ae5;--vvd-color-info-foreground:#fff;--vvd-color-announcement-background:#d6219c;--vvd-color-announcement-foreground:#fff}:host{--mdc-theme-primary: var(--vvd-color-primary-background);--mdc-theme-on-primary: var(--vvd-color-primary-foreground);--mdc-theme-text-primary-on-background: var(--vvd-color-base-foreground);--mdc-theme-secondary: var(--vvd-color-secondary-background);--mdc-theme-on-secondary: var(--vvd-color-secondary-foreground);--mdc-theme-surface: var(--vvd-color-surface-background);--mdc-theme-on-surface: var(--vvd-color-surface-foreground);--mdc-theme-error: var(--vvd-color-error)}`; |
import { css } from 'lit-element'; | ||
export const style = css `:root,:host{--vvd-color-base-background: #ffffff;--vvd-color-base-foreground: #131415;--vvd-color-surface-background: #ffffff;--vvd-color-surface-foreground: #131415;--vvd-color-primary-background: #131415;--vvd-color-primary-foreground: #ffffff;--vvd-color-secondary-background: #131415;--vvd-color-secondary-foreground: #ffffff;--vvd-color-alternate-primary-background: #131415;--vvd-color-alternate-primary-foreground: #ffffff;--vvd-color-alternate-secondary-background: #ffffff;--vvd-color-alternate-secondary-foreground: #131415;--vvd-color-checked: var(--vvd-color-base-foreground);--vvd-color-unchecked: #74767a;--vvd-color-disabled-unchecked: #afb0b8;--vvd-color-idle: #c2c4cc;--vvd-formfield-disabled-ink:#74767a;--vvd-formfield-disabled-fill:#f3f3f5;--vvd-formfield-label-idle-ink:#616266;--vvd-formfield-border-idle:#ced0d7;--vvd-formfield-border-hover:var(--vvd-color-base-foreground);--vvd-formfield-border-active:var(--vvd-color-base-foreground);--vvd-formfield-border-disabled:#e1e2e6;--vvd-formfield-error-fill:#fdecec;--vvd-formfield-border-error:#d43f3f;--vvd-formfield-label-error-ink:#d43f3f;--vvd-color-success-background: #1d7e67;--vvd-color-success-foreground: #ffffff;--vvd-color-error-background: #d43f3f;--vvd-color-error-foreground: #ffffff;--vvd-color-cta-background: #871fff;--vvd-color-cta-foreground: #ffffff}:host{--mdc-theme-primary: var(--vvd-color-primary-background);--mdc-theme-on-primary: var(--vvd-color-primary-foreground);--mdc-theme-text-primary-on-background: var(--vvd-color-base-foreground);--mdc-theme-secondary: var(--vvd-color-secondary-background);--mdc-theme-on-secondary: var(--vvd-color-secondary-foreground);--mdc-theme-surface: var(--vvd-color-surface-background);--mdc-theme-on-surface: var(--vvd-color-surface-foreground);--mdc-theme-error: var(--vvd-color-error)}`; | ||
export const style = css `:root,:host{--vvd-color-base-background: #ffffff;--vvd-color-base-foreground: #131415;--vvd-color-surface-background: #ffffff;--vvd-color-surface-foreground: #131415;--vvd-color-primary-background: #131415;--vvd-color-primary-foreground: #ffffff;--vvd-color-secondary-background: #131415;--vvd-color-secondary-foreground: #ffffff;--vvd-color-alternate-primary-background: #131415;--vvd-color-alternate-primary-foreground: #ffffff;--vvd-color-alternate-secondary-background: #ffffff;--vvd-color-alternate-secondary-foreground: #131415;--vvd-color-checked: var(--vvd-color-base-foreground);--vvd-color-unchecked: #74767a;--vvd-color-disabled-unchecked: #afb0b8;--vvd-color-idle: #c2c4cc;--vvd-formfield-disabled-ink:#74767a;--vvd-formfield-disabled-fill:#f3f3f5;--vvd-formfield-label-idle-ink:#616266;--vvd-formfield-border-idle:#ced0d7;--vvd-formfield-border-hover:var(--vvd-color-base-foreground);--vvd-formfield-border-active:var(--vvd-color-base-foreground);--vvd-formfield-border-disabled:#e1e2e6;--vvd-formfield-error-fill:#fdecec;--vvd-formfield-border-error:#d43f3f;--vvd-formfield-label-error-ink:#d43f3f;--vvd-color-cta-background:#871fff;--vvd-color-cta-foreground:#fff;--vvd-color-success-background:#1d7e67;--vvd-color-success-foreground:#fff;--vvd-color-error-background:#d43f3f;--vvd-color-error-foreground:#fff;--vvd-color-info-background:#008ae5;--vvd-color-info-foreground:#fff;--vvd-color-announcement-background:#d6219c;--vvd-color-announcement-foreground:#fff}:host{--mdc-theme-primary: var(--vvd-color-primary-background);--mdc-theme-on-primary: var(--vvd-color-primary-foreground);--mdc-theme-text-primary-on-background: var(--vvd-color-base-foreground);--mdc-theme-secondary: var(--vvd-color-secondary-background);--mdc-theme-on-secondary: var(--vvd-color-secondary-foreground);--mdc-theme-surface: var(--vvd-color-surface-background);--mdc-theme-on-surface: var(--vvd-color-surface-foreground);--mdc-theme-error: var(--vvd-color-error)}`; | ||
//# sourceMappingURL=vvd-style-coupling.css.js.map |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
365054
2
1
Updatedtslib@^2.0.1