New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

@vaadin/component-base

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/component-base - npm Package Compare versions

Comparing version

to
24.8.0-alpha3

{
"name": "@vaadin/component-base",
"version": "24.8.0-alpha2",
"version": "24.8.0-alpha3",
"publishConfig": {

@@ -41,8 +41,8 @@ "access": "public"

"devDependencies": {
"@vaadin/chai-plugins": "24.8.0-alpha2",
"@vaadin/test-runner-commands": "24.8.0-alpha2",
"@vaadin/chai-plugins": "24.8.0-alpha3",
"@vaadin/test-runner-commands": "24.8.0-alpha3",
"@vaadin/testing-helpers": "^1.1.0",
"sinon": "^18.0.0"
},
"gitHead": "f48777a6e3dcf605b700305a7142145e197bb416"
"gitHead": "8c49e2337a1905ae68d0d7aee2e672500ea72343"
}

@@ -16,3 +16,3 @@ /**

export function defineCustomElement(CustomElement, version = '24.8.0-alpha2') {
export function defineCustomElement(CustomElement, version = '24.8.0-alpha3') {
Object.defineProperty(CustomElement, 'version', {

@@ -19,0 +19,0 @@ get() {

@@ -9,13 +9,2 @@ /**

/**
* Recursively makes all properties of an i18n object optional.
*
* For internal use only.
*/
export type PartialI18n<T> = T extends object
? {
[P in keyof T]?: PartialI18n<T[P]>;
}
: T;
/**
* A mixin that allows to set partial I18N properties.

@@ -22,0 +11,0 @@ */