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

@anypoint-web-components/anypoint-input

Package Overview
Dependencies
Maintainers
3
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@anypoint-web-components/anypoint-input - npm Package Compare versions

Comparing version 0.2.21 to 0.2.22

14

CHANGELOG.md

@@ -554,1 +554,15 @@ <a name="0.2.10"></a>

<a name="0.2.22"></a>
## [0.2.22](https://github.com/anypoint-web-components/anypoint-input/compare/0.2.20...0.2.22) (2020-10-10)
### Update
* updating types declaration [11d39ed](https://github.com/anypoint-web-components/anypoint-input/commit/11d39eda53f2d8405feb42d78f067554f50db5a8) by Pawel
* [ci skip] automated merge master->stage. syncing main branches [0fa18ec](https://github.com/anypoint-web-components/anypoint-input/commit/0fa18ec968308321f50bcfd16f64a2c3342f5db4) by Ci agent
### Features
* adding better ts support [59f7f9e](https://github.com/anypoint-web-components/anypoint-input/commit/59f7f9ec3a18f46aa393db3182279897c9e08e78) by Pawel

24

package.json
{
"name": "@anypoint-web-components/anypoint-input",
"description": "Accessible text input styled for Anypoint platform",
"version": "0.2.21",
"version": "0.2.22",
"license": "Apache-2.0",

@@ -31,6 +31,6 @@ "main": "index.js",

"dependencies": {
"@advanced-rest-client/arc-icons": "^3.1.0",
"@advanced-rest-client/arc-icons": "^3.1.2",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/anypoint-control-mixins": "^1.1.2",
"@anypoint-web-components/validatable-mixin": "^1.1.2",
"@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
"@anypoint-web-components/validatable-mixin": "^1.1.3",
"@open-wc/dedupe-mixin": "^1.3.0",

@@ -43,9 +43,9 @@ "lit-element": "^2.4.0",

"@advanced-rest-client/testing-karma-sl": "^1.4.2",
"@anypoint-web-components/anypoint-checkbox": "^1.1.2",
"@anypoint-web-components/anypoint-radio-button": "^0.1.5",
"@anypoint-web-components/anypoint-checkbox": "^1.1.3",
"@anypoint-web-components/anypoint-radio-button": "^0.1.6",
"@anypoint-web-components/anypoint-styles": "^1.0.1",
"@anypoint-web-components/validator-mixin": "^1.1.1",
"@open-wc/eslint-config": "^3.0.0",
"@open-wc/testing": "^2.5.26",
"@open-wc/testing-karma": "^4.0.5",
"@open-wc/testing": "^2.5.29",
"@open-wc/testing-karma": "^4.0.8",
"@polymer/iron-icon": "^3.0.1",

@@ -56,9 +56,9 @@ "@polymer/iron-icons": "^3.0.1",

"deepmerge": "^4.2.2",
"es-dev-server": "^1.57.4",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"es-dev-server": "^1.57.7",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"sinon": "^9.0.3",
"sinon": "^9.2.0",
"typescript": "^4.0.3",

@@ -65,0 +65,0 @@ "typescript-lit-html-plugin": "^0.9.0"

import {TemplateResult, CSSResult, LitElement} from 'lit-element';
import {AnypointInputMixin} from './AnypointInputMixin';
/**
* @fires search When the type is `search` and the search term change.
*/
export declare class AnypointInput {

@@ -16,2 +19,3 @@ readonly styles: CSSResult|CSSResult[];

export declare interface AnypointInput extends AnypointInputMixin, LitElement {
autocapitalize: "off" | "none" | "on" | "sentences" | "words" | "characters";
}

@@ -32,2 +32,8 @@ import { ControlStateMixin } from '@anypoint-web-components/anypoint-control-mixins';

* `aria-invalid` attribute.
*
* @fires change When the input value change
* @fires input On user input
* @fires iron-announce When requesting a11y announcement
* @fires value-changed When the `value` property has changed
* @fires hasvalidationmessage-changed When the `hasValidationMessage` property has changed
*/

@@ -192,16 +198,16 @@ interface AnypointInputMixin extends ValidatableMixin, ControlStateMixin {

// /**
// * Binds this to the `<input>`'s `autocapitalize` property.
// *
// * Possible values are:
// *
// * - `off` or `none`: No autocapitalization is applied (all letters default to lowercase)
// * - `on` or `sentences`: The first letter of each sentence defaults to a capital letter;
// * all other letters default to lowercase
// * - `words`: The first letter of each word defaults to a capital letter; all other letters default to lowercase
// * - `characters`: All letters should default to uppercase
// *
// * @default none
// */
// autocapitalize: "off" | "none" | "on" | "sentences" | "words" | "characters";
/**
* Binds this to the `<input>`'s `autocapitalize` property.
*
* Possible values are:
*
* - `off` or `none`: No autocapitalization is applied (all letters default to lowercase)
* - `on` or `sentences`: The first letter of each sentence defaults to a capital letter;
* all other letters default to lowercase
* - `words`: The first letter of each word defaults to a capital letter; all other letters default to lowercase
* - `characters`: All letters should default to uppercase
*
* @default none
*/
autocapitalize: "off" | "none" | "on" | "sentences" | "words" | "characters";

@@ -208,0 +214,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