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

@vaadin/custom-field

Package Overview
Dependencies
Maintainers
14
Versions
400
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/custom-field - npm Package Compare versions

Comparing version 23.1.0-alpha3 to 23.1.0-alpha4

38

package.json
{
"name": "@vaadin/custom-field",
"version": "23.1.0-alpha3",
"version": "23.1.0-alpha4",
"publishConfig": {

@@ -36,26 +36,26 @@ "access": "public"

"@polymer/polymer": "^3.0.0",
"@vaadin/component-base": "23.1.0-alpha3",
"@vaadin/field-base": "23.1.0-alpha3",
"@vaadin/vaadin-lumo-styles": "23.1.0-alpha3",
"@vaadin/vaadin-material-styles": "23.1.0-alpha3",
"@vaadin/vaadin-themable-mixin": "23.1.0-alpha3"
"@vaadin/component-base": "23.1.0-alpha4",
"@vaadin/field-base": "23.1.0-alpha4",
"@vaadin/vaadin-lumo-styles": "23.1.0-alpha4",
"@vaadin/vaadin-material-styles": "23.1.0-alpha4",
"@vaadin/vaadin-themable-mixin": "23.1.0-alpha4"
},
"devDependencies": {
"@esm-bundle/chai": "^4.3.4",
"@vaadin/combo-box": "23.1.0-alpha3",
"@vaadin/date-picker": "23.1.0-alpha3",
"@vaadin/email-field": "23.1.0-alpha3",
"@vaadin/form-layout": "23.1.0-alpha3",
"@vaadin/list-box": "23.1.0-alpha3",
"@vaadin/number-field": "23.1.0-alpha3",
"@vaadin/password-field": "23.1.0-alpha3",
"@vaadin/polymer-legacy-adapter": "23.1.0-alpha3",
"@vaadin/select": "23.1.0-alpha3",
"@vaadin/combo-box": "23.1.0-alpha4",
"@vaadin/date-picker": "23.1.0-alpha4",
"@vaadin/email-field": "23.1.0-alpha4",
"@vaadin/form-layout": "23.1.0-alpha4",
"@vaadin/list-box": "23.1.0-alpha4",
"@vaadin/number-field": "23.1.0-alpha4",
"@vaadin/password-field": "23.1.0-alpha4",
"@vaadin/polymer-legacy-adapter": "23.1.0-alpha4",
"@vaadin/select": "23.1.0-alpha4",
"@vaadin/testing-helpers": "^0.3.2",
"@vaadin/text-area": "23.1.0-alpha3",
"@vaadin/text-field": "23.1.0-alpha3",
"@vaadin/time-picker": "23.1.0-alpha3",
"@vaadin/text-area": "23.1.0-alpha4",
"@vaadin/text-field": "23.1.0-alpha4",
"@vaadin/time-picker": "23.1.0-alpha4",
"sinon": "^13.0.2"
},
"gitHead": "8c9e64e8dfa158dd52a9bf6da351ff038c88ca85"
"gitHead": "aacdb7fe09811894751f0378ff7fb66071892c71"
}

@@ -147,3 +147,3 @@ /**

listener: (this: CustomField, ev: CustomFieldEventMap[K]) => void,
options?: boolean | AddEventListenerOptions
options?: boolean | AddEventListenerOptions,
): void;

@@ -154,3 +154,3 @@

listener: (this: CustomField, ev: CustomFieldEventMap[K]) => void,
options?: boolean | EventListenerOptions
options?: boolean | EventListenerOptions,
): void;

@@ -157,0 +157,0 @@ }

@@ -132,3 +132,3 @@ /**

observer: '__valueChanged',
notify: true
notify: true,
},

@@ -142,3 +142,3 @@

type: Array,
readOnly: true
readOnly: true,
},

@@ -187,6 +187,6 @@

return inputValues.join('\t');
}
},
};
}
}
},
},
};

@@ -232,3 +232,5 @@ }

focus() {
this.inputs && this.inputs[0] && this.inputs[0].focus();
if (this.inputs && this.inputs[0]) {
this.inputs[0].focus();
}
}

@@ -313,5 +315,5 @@

detail: {
value: this.value
}
})
value: this.value,
},
}),
);

@@ -375,3 +377,3 @@ }

const valuesArray = this.i18n.parseValue(value);
if (!valuesArray || valuesArray.length == 0) {
if (!valuesArray || valuesArray.length === 0) {
console.warn('Value parser has not provided values array');

@@ -378,0 +380,0 @@ return;

@@ -94,5 +94,5 @@ /**

registerStyles('vaadin-custom-field', [requiredField, helper, customField], {
moduleId: 'lumo-custom-field'
moduleId: 'lumo-custom-field',
});
export { customField };

@@ -48,5 +48,5 @@ /**

registerStyles('vaadin-custom-field', [requiredField, helper, customField], {
moduleId: 'material-custom-field'
moduleId: 'material-custom-field',
});
export { customField };
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