@vaadin/notification 24.6.0-alpha5 → 24.6.0-alpha6
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/notification",
|
|
3
|
-
"version": "24.6.0-
|
|
3
|
+
"version": "24.6.0-alpha6",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -39,16 +39,16 @@
|
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
41
41
|
"@polymer/polymer": "^3.0.0",
|
|
42
|
-
"@vaadin/component-base": "24.6.0-
|
|
43
|
-
"@vaadin/lit-renderer": "24.6.0-
|
|
44
|
-
"@vaadin/vaadin-lumo-styles": "24.6.0-
|
|
45
|
-
"@vaadin/vaadin-material-styles": "24.6.0-
|
|
46
|
-
"@vaadin/vaadin-themable-mixin": "24.6.0-
|
|
42
|
+
"@vaadin/component-base": "24.6.0-alpha6",
|
|
43
|
+
"@vaadin/lit-renderer": "24.6.0-alpha6",
|
|
44
|
+
"@vaadin/vaadin-lumo-styles": "24.6.0-alpha6",
|
|
45
|
+
"@vaadin/vaadin-material-styles": "24.6.0-alpha6",
|
|
46
|
+
"@vaadin/vaadin-themable-mixin": "24.6.0-alpha6",
|
|
47
47
|
"lit": "^3.0.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@vaadin/button": "24.6.0-
|
|
51
|
-
"@vaadin/chai-plugins": "24.6.0-
|
|
50
|
+
"@vaadin/button": "24.6.0-alpha6",
|
|
51
|
+
"@vaadin/chai-plugins": "24.6.0-alpha6",
|
|
52
52
|
"@vaadin/testing-helpers": "^1.0.0",
|
|
53
53
|
"sinon": "^18.0.0"
|
|
54
54
|
},
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"web-types.json",
|
|
57
57
|
"web-types.lit.json"
|
|
58
58
|
],
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "53f2f0c6cb9324a832ee7c0a052db927e151e167"
|
|
60
60
|
}
|
|
@@ -19,7 +19,9 @@ export type NotificationRenderer = (root: HTMLElement, notification: Notificatio
|
|
|
19
19
|
/**
|
|
20
20
|
* A mixin providing common notification container functionality.
|
|
21
21
|
*/
|
|
22
|
-
export declare function NotificationContainerMixin<T
|
|
22
|
+
export declare function NotificationContainerMixin<T extends Constructor<HTMLElement>>(
|
|
23
|
+
base: T,
|
|
24
|
+
): Constructor<NotificationContainerMixinClass> & T;
|
|
23
25
|
|
|
24
26
|
export declare class NotificationContainerMixinClass {
|
|
25
27
|
/**
|
|
@@ -31,7 +33,7 @@ export declare class NotificationContainerMixinClass {
|
|
|
31
33
|
/**
|
|
32
34
|
* A mixin providing common notification functionality.
|
|
33
35
|
*/
|
|
34
|
-
export declare function NotificationMixin<T
|
|
36
|
+
export declare function NotificationMixin<T extends Constructor<HTMLElement>>(
|
|
35
37
|
base: T,
|
|
36
38
|
): Constructor<NotificationMixinClass> & Constructor<ThemePropertyMixinClass> & Constructor<OverlayClassMixinClass> & T;
|
|
37
39
|
|
package/web-types.json
CHANGED
package/web-types.lit.json
CHANGED