@vaadin/component-base 24.5.0-rc2 → 24.6.0-alpha1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/src/async.d.ts +3 -3
- package/src/define.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/component-base",
|
|
3
|
-
"version": "24.
|
|
3
|
+
"version": "24.6.0-alpha1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"lit": "^3.0.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@vaadin/chai-plugins": "24.
|
|
41
|
+
"@vaadin/chai-plugins": "24.6.0-alpha1",
|
|
42
42
|
"@vaadin/testing-helpers": "^1.0.0",
|
|
43
43
|
"sinon": "^18.0.0"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "ae1fb0e6e7ce925999051c6cc62ba8476264c63f"
|
|
46
46
|
}
|
package/src/async.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
export interface AsyncInterface {
|
|
12
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
12
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
|
|
13
13
|
run(fn: Function, delay?: number): number;
|
|
14
14
|
cancel(handle: number): void;
|
|
15
15
|
}
|
|
@@ -40,7 +40,7 @@ declare namespace timeOut {
|
|
|
40
40
|
*
|
|
41
41
|
* @returns Handle used for canceling task
|
|
42
42
|
*/
|
|
43
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
43
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
|
|
44
44
|
function run(fn: Function, delay?: number): number;
|
|
45
45
|
|
|
46
46
|
/**
|
|
@@ -105,7 +105,7 @@ declare namespace microTask {
|
|
|
105
105
|
*
|
|
106
106
|
* @returns Handle used for canceling task
|
|
107
107
|
*/
|
|
108
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
108
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
|
|
109
109
|
function run(callback?: Function): number;
|
|
110
110
|
|
|
111
111
|
/**
|
package/src/define.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
export function defineCustomElement(CustomElement, version = '24.
|
|
7
|
+
export function defineCustomElement(CustomElement, version = '24.6.0-alpha1') {
|
|
8
8
|
Object.defineProperty(CustomElement, 'version', {
|
|
9
9
|
get() {
|
|
10
10
|
return version;
|