@neovici/cosmoz-input
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -0,1 +1,8 @@ | ||
### [1.1.1](https://github.com/neovici/cosmoz-input/compare/v1.1.0...v1.1.1) (2021-02-05) | ||
### Bug Fixes | ||
* revert parts input prefixing ([3abb6ed](https://github.com/neovici/cosmoz-input/commit/3abb6edb0cf6ab3a07c38e88b17fa99d1ba3cbb4)) | ||
## [1.1.0](https://github.com/neovici/cosmoz-input/compare/v1.0.8...v1.1.0) (2021-02-05) | ||
@@ -2,0 +9,0 @@ |
@@ -148,7 +148,7 @@ import { html, nothing } from 'lit-html'; // eslint-disable-line object-curly-newline | ||
<style>${ styles }</style> | ||
<div class="float" part="input-float"> </div> | ||
<div class="wrap" part="input-wrap"> | ||
<div class="float" part="float"> </div> | ||
<div class="wrap" part="wrap"> | ||
<slot name="prefix"></slot> | ||
<div class="control" part="input-control"> | ||
<input id="input" part="input-input" | ||
<div class="control" part="control"> | ||
<input id="input" part="input" | ||
type=${ type } placeholder=${ placeholder || ' ' } ?readonly=${ readonly } | ||
@@ -159,8 +159,8 @@ ?aria-disabled=${ disabled } ?disabled=${ disabled } | ||
> | ||
${ label ? html`<label for="input" part="input-label">${ label }</label>` : nothing } | ||
${ label ? html`<label for="input" part="label">${ label }</label>` : nothing } | ||
</div> | ||
<slot name="suffix"></slot> | ||
</div> | ||
<div class="line" part="input-line"></div> | ||
${ invalid && errorMessage ? html`<div class="error" part="input-error">${ errorMessage }</div>` : nothing } | ||
<div class="line" part="line"></div> | ||
${ invalid && errorMessage ? html`<div class="error" part="error">${ errorMessage }</div>` : nothing } | ||
`; | ||
@@ -167,0 +167,0 @@ }, |
{ | ||
"name": "@neovici/cosmoz-input", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "A input web component", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12864