@vaadin/custom-field
Advanced tools
Comparing version 23.1.0-alpha3 to 23.1.0-alpha4
{ | ||
"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 }; |
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
37619
634
+ Added@vaadin/component-base@23.1.0-alpha4(transitive)
+ Added@vaadin/field-base@23.1.0-alpha4(transitive)
+ Added@vaadin/icon@23.1.0-alpha4(transitive)
+ Added@vaadin/vaadin-lumo-styles@23.1.0-alpha4(transitive)
+ Added@vaadin/vaadin-material-styles@23.1.0-alpha4(transitive)
+ Added@vaadin/vaadin-themable-mixin@23.1.0-alpha4(transitive)
- Removed@vaadin/component-base@23.1.0-alpha3(transitive)
- Removed@vaadin/field-base@23.1.0-alpha3(transitive)
- Removed@vaadin/icon@23.1.0-alpha3(transitive)
- Removed@vaadin/vaadin-lumo-styles@23.1.0-alpha3(transitive)
- Removed@vaadin/vaadin-material-styles@23.1.0-alpha3(transitive)
- Removed@vaadin/vaadin-themable-mixin@23.1.0-alpha3(transitive)