@vaadin/notification 25.0.0-alpha4 → 25.0.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 +10 -10
- package/src/vaadin-notification.js +8 -6
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
- /package/src/styles/{vaadin-notification-card-styles.d.ts → vaadin-notification-card-core-styles.d.ts} +0 -0
- /package/src/styles/{vaadin-notification-card-styles.js → vaadin-notification-card-core-styles.js} +0 -0
- /package/src/styles/{vaadin-notification-container-styles.d.ts → vaadin-notification-container-core-styles.d.ts} +0 -0
- /package/src/styles/{vaadin-notification-container-styles.js → vaadin-notification-container-core-styles.js} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/notification",
|
|
3
|
-
"version": "25.0.0-
|
|
3
|
+
"version": "25.0.0-alpha6",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -37,17 +37,17 @@
|
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
40
|
-
"@vaadin/component-base": "25.0.0-
|
|
41
|
-
"@vaadin/lit-renderer": "25.0.0-
|
|
42
|
-
"@vaadin/overlay": "25.0.0-
|
|
43
|
-
"@vaadin/vaadin-lumo-styles": "25.0.0-
|
|
44
|
-
"@vaadin/vaadin-themable-mixin": "25.0.0-
|
|
40
|
+
"@vaadin/component-base": "25.0.0-alpha6",
|
|
41
|
+
"@vaadin/lit-renderer": "25.0.0-alpha6",
|
|
42
|
+
"@vaadin/overlay": "25.0.0-alpha6",
|
|
43
|
+
"@vaadin/vaadin-lumo-styles": "25.0.0-alpha6",
|
|
44
|
+
"@vaadin/vaadin-themable-mixin": "25.0.0-alpha6",
|
|
45
45
|
"lit": "^3.0.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@vaadin/button": "25.0.0-
|
|
49
|
-
"@vaadin/chai-plugins": "25.0.0-
|
|
50
|
-
"@vaadin/test-runner-commands": "25.0.0-
|
|
48
|
+
"@vaadin/button": "25.0.0-alpha6",
|
|
49
|
+
"@vaadin/chai-plugins": "25.0.0-alpha6",
|
|
50
|
+
"@vaadin/test-runner-commands": "25.0.0-alpha6",
|
|
51
51
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
52
52
|
"sinon": "^18.0.0"
|
|
53
53
|
},
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"web-types.json",
|
|
56
56
|
"web-types.lit.json"
|
|
57
57
|
],
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "cd1d084198d2b326c58d44bb39fa4845b71ce551"
|
|
59
59
|
}
|
|
@@ -8,10 +8,10 @@ import { ifDefined } from 'lit/directives/if-defined.js';
|
|
|
8
8
|
import { defineCustomElement } from '@vaadin/component-base/src/define.js';
|
|
9
9
|
import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
|
|
10
10
|
import { PolylitMixin } from '@vaadin/component-base/src/polylit-mixin.js';
|
|
11
|
-
import {
|
|
11
|
+
import { LumoInjectionMixin } from '@vaadin/vaadin-themable-mixin/lumo-injection-mixin.js';
|
|
12
12
|
import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
|
|
13
|
-
import { notificationCardStyles } from './styles/vaadin-notification-card-styles.js';
|
|
14
|
-
import { notificationContainerStyles } from './styles/vaadin-notification-container-styles.js';
|
|
13
|
+
import { notificationCardStyles } from './styles/vaadin-notification-card-core-styles.js';
|
|
14
|
+
import { notificationContainerStyles } from './styles/vaadin-notification-container-core-styles.js';
|
|
15
15
|
import { NotificationContainerMixin, NotificationMixin } from './vaadin-notification-mixin.js';
|
|
16
16
|
|
|
17
17
|
/**
|
|
@@ -25,7 +25,7 @@ import { NotificationContainerMixin, NotificationMixin } from './vaadin-notifica
|
|
|
25
25
|
* @private
|
|
26
26
|
*/
|
|
27
27
|
class NotificationContainer extends NotificationContainerMixin(
|
|
28
|
-
ThemableMixin(ElementMixin(
|
|
28
|
+
ThemableMixin(ElementMixin(LumoInjectionMixin(PolylitMixin(LitElement)))),
|
|
29
29
|
) {
|
|
30
30
|
static get is() {
|
|
31
31
|
return 'vaadin-notification-container';
|
|
@@ -63,7 +63,7 @@ class NotificationContainer extends NotificationContainerMixin(
|
|
|
63
63
|
* @mixes ThemableMixin
|
|
64
64
|
* @private
|
|
65
65
|
*/
|
|
66
|
-
class NotificationCard extends ThemableMixin(
|
|
66
|
+
class NotificationCard extends ThemableMixin(LumoInjectionMixin(PolylitMixin(LitElement))) {
|
|
67
67
|
static get is() {
|
|
68
68
|
return 'vaadin-notification-card';
|
|
69
69
|
}
|
|
@@ -142,7 +142,9 @@ class NotificationCard extends ThemableMixin(CSSInjectionMixin(PolylitMixin(LitE
|
|
|
142
142
|
* @mixes NotificationMixin
|
|
143
143
|
* @mixes ElementMixin
|
|
144
144
|
*/
|
|
145
|
-
class Notification extends NotificationMixin(
|
|
145
|
+
class Notification extends NotificationMixin(
|
|
146
|
+
ElementMixin(ThemableMixin(LumoInjectionMixin(PolylitMixin(LitElement)))),
|
|
147
|
+
) {
|
|
146
148
|
static get is() {
|
|
147
149
|
return 'vaadin-notification';
|
|
148
150
|
}
|
package/web-types.json
CHANGED
package/web-types.lit.json
CHANGED
|
File without changes
|
/package/src/styles/{vaadin-notification-card-styles.js → vaadin-notification-card-core-styles.js}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|