@vaadin/notification 25.2.0-alpha10 → 25.2.0-alpha11
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 +10 -10
- package/src/vaadin-notification-mixin.js +0 -6
- package/src/vaadin-notification.js +0 -6
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/notification",
|
|
3
|
-
"version": "25.2.0-
|
|
3
|
+
"version": "25.2.0-alpha11",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -37,18 +37,18 @@
|
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
40
|
-
"@vaadin/component-base": "25.2.0-
|
|
41
|
-
"@vaadin/lit-renderer": "25.2.0-
|
|
42
|
-
"@vaadin/vaadin-themable-mixin": "25.2.0-
|
|
40
|
+
"@vaadin/component-base": "25.2.0-alpha11",
|
|
41
|
+
"@vaadin/lit-renderer": "25.2.0-alpha11",
|
|
42
|
+
"@vaadin/vaadin-themable-mixin": "25.2.0-alpha11",
|
|
43
43
|
"lit": "^3.0.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@vaadin/aura": "25.2.0-
|
|
47
|
-
"@vaadin/button": "25.2.0-
|
|
48
|
-
"@vaadin/chai-plugins": "25.2.0-
|
|
49
|
-
"@vaadin/test-runner-commands": "25.2.0-
|
|
46
|
+
"@vaadin/aura": "25.2.0-alpha11",
|
|
47
|
+
"@vaadin/button": "25.2.0-alpha11",
|
|
48
|
+
"@vaadin/chai-plugins": "25.2.0-alpha11",
|
|
49
|
+
"@vaadin/test-runner-commands": "25.2.0-alpha11",
|
|
50
50
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
51
|
-
"@vaadin/vaadin-lumo-styles": "25.2.0-
|
|
51
|
+
"@vaadin/vaadin-lumo-styles": "25.2.0-alpha11",
|
|
52
52
|
"sinon": "^21.0.2"
|
|
53
53
|
},
|
|
54
54
|
"customElements": "custom-elements.json",
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"web-types.json",
|
|
57
57
|
"web-types.lit.json"
|
|
58
58
|
],
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "fdc37e932709f95491a027aeb2090911cb7528c6"
|
|
60
60
|
}
|
|
@@ -11,8 +11,6 @@ import { ThemePropertyMixin } from '@vaadin/vaadin-themable-mixin/vaadin-theme-p
|
|
|
11
11
|
|
|
12
12
|
/**
|
|
13
13
|
* A mixin providing common notification container functionality.
|
|
14
|
-
*
|
|
15
|
-
* @polymerMixin
|
|
16
14
|
*/
|
|
17
15
|
export const NotificationContainerMixin = (superClass) =>
|
|
18
16
|
class extends superClass {
|
|
@@ -103,10 +101,6 @@ export const NotificationContainerMixin = (superClass) =>
|
|
|
103
101
|
|
|
104
102
|
/**
|
|
105
103
|
* A mixin providing common notification functionality.
|
|
106
|
-
*
|
|
107
|
-
* @polymerMixin
|
|
108
|
-
* @mixes OverlayClassMixin
|
|
109
|
-
* @mixes ThemePropertyMixin
|
|
110
104
|
*/
|
|
111
105
|
export const NotificationMixin = (superClass) =>
|
|
112
106
|
class extends ThemePropertyMixin(OverlayClassMixin(superClass)) {
|
|
@@ -19,9 +19,6 @@ import { NotificationContainerMixin, NotificationMixin } from './vaadin-notifica
|
|
|
19
19
|
*
|
|
20
20
|
* @customElement vaadin-notification-container
|
|
21
21
|
* @extends HTMLElement
|
|
22
|
-
* @mixes NotificationContainerMixin
|
|
23
|
-
* @mixes ElementMixin
|
|
24
|
-
* @mixes ThemableMixin
|
|
25
22
|
* @private
|
|
26
23
|
*/
|
|
27
24
|
class NotificationContainer extends NotificationContainerMixin(
|
|
@@ -60,7 +57,6 @@ class NotificationContainer extends NotificationContainerMixin(
|
|
|
60
57
|
*
|
|
61
58
|
* @customElement vaadin-notification-card
|
|
62
59
|
* @extends HTMLElement
|
|
63
|
-
* @mixes ThemableMixin
|
|
64
60
|
* @private
|
|
65
61
|
*/
|
|
66
62
|
class NotificationCard extends ThemableMixin(PolylitMixin(LumoInjectionMixin(LitElement))) {
|
|
@@ -139,8 +135,6 @@ class NotificationCard extends ThemableMixin(PolylitMixin(LumoInjectionMixin(Lit
|
|
|
139
135
|
*
|
|
140
136
|
* @customElement vaadin-notification
|
|
141
137
|
* @extends HTMLElement
|
|
142
|
-
* @mixes NotificationMixin
|
|
143
|
-
* @mixes ElementMixin
|
|
144
138
|
*/
|
|
145
139
|
class Notification extends NotificationMixin(ElementMixin(ThemableMixin(PolylitMixin(LitElement)))) {
|
|
146
140
|
static get is() {
|
package/web-types.json
CHANGED
package/web-types.lit.json
CHANGED