@vaadin/custom-field
Advanced tools
Comparing version 22.0.14 to 22.0.15
{ | ||
"name": "@vaadin/custom-field", | ||
"version": "22.0.14", | ||
"version": "22.0.15", | ||
"publishConfig": { | ||
@@ -35,26 +35,26 @@ "access": "public" | ||
"@polymer/polymer": "^3.0.0", | ||
"@vaadin/component-base": "^22.0.14", | ||
"@vaadin/field-base": "^22.0.14", | ||
"@vaadin/vaadin-lumo-styles": "^22.0.14", | ||
"@vaadin/vaadin-material-styles": "^22.0.14", | ||
"@vaadin/vaadin-themable-mixin": "^22.0.14" | ||
"@vaadin/component-base": "^22.0.15", | ||
"@vaadin/field-base": "^22.0.15", | ||
"@vaadin/vaadin-lumo-styles": "^22.0.15", | ||
"@vaadin/vaadin-material-styles": "^22.0.15", | ||
"@vaadin/vaadin-themable-mixin": "^22.0.15" | ||
}, | ||
"devDependencies": { | ||
"@esm-bundle/chai": "^4.3.4", | ||
"@vaadin/combo-box": "^22.0.14", | ||
"@vaadin/date-picker": "^22.0.14", | ||
"@vaadin/email-field": "^22.0.14", | ||
"@vaadin/form-layout": "^22.0.14", | ||
"@vaadin/list-box": "^22.0.14", | ||
"@vaadin/number-field": "^22.0.14", | ||
"@vaadin/password-field": "^22.0.14", | ||
"@vaadin/polymer-legacy-adapter": "^22.0.14", | ||
"@vaadin/select": "^22.0.14", | ||
"@vaadin/combo-box": "^22.0.15", | ||
"@vaadin/date-picker": "^22.0.15", | ||
"@vaadin/email-field": "^22.0.15", | ||
"@vaadin/form-layout": "^22.0.15", | ||
"@vaadin/list-box": "^22.0.15", | ||
"@vaadin/number-field": "^22.0.15", | ||
"@vaadin/password-field": "^22.0.15", | ||
"@vaadin/polymer-legacy-adapter": "^22.0.15", | ||
"@vaadin/select": "^22.0.15", | ||
"@vaadin/testing-helpers": "^0.3.2", | ||
"@vaadin/text-area": "^22.0.14", | ||
"@vaadin/text-field": "^22.0.14", | ||
"@vaadin/time-picker": "^22.0.14", | ||
"@vaadin/text-area": "^22.0.15", | ||
"@vaadin/text-field": "^22.0.15", | ||
"@vaadin/time-picker": "^22.0.15", | ||
"sinon": "^9.2.1" | ||
}, | ||
"gitHead": "62419e3f8f41fe9dc4f0bce5e1717b16828459b6" | ||
"gitHead": "bba021b56ba45da93d2bb980242956ad929ecfe2" | ||
} |
@@ -138,3 +138,3 @@ /** | ||
listener: (this: CustomField, ev: CustomFieldEventMap[K]) => void, | ||
options?: boolean | AddEventListenerOptions | ||
options?: boolean | AddEventListenerOptions, | ||
): void; | ||
@@ -145,3 +145,3 @@ | ||
listener: (this: CustomField, ev: CustomFieldEventMap[K]) => void, | ||
options?: boolean | EventListenerOptions | ||
options?: boolean | EventListenerOptions, | ||
): void; | ||
@@ -148,0 +148,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'); | ||
} | ||
}, | ||
}; | ||
} | ||
} | ||
}, | ||
}, | ||
}; | ||
@@ -312,5 +312,5 @@ } | ||
detail: { | ||
value: this.value | ||
} | ||
}) | ||
value: this.value, | ||
}, | ||
}), | ||
); | ||
@@ -317,0 +317,0 @@ } |
@@ -89,5 +89,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
37164