@vaadin/notification 25.1.0-alpha9 → 25.1.0-beta2

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": "25.1.0-alpha9",
3
+ "version": "25.1.0-beta2",
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.1.0-alpha9",
41
- "@vaadin/lit-renderer": "25.1.0-alpha9",
42
- "@vaadin/vaadin-themable-mixin": "25.1.0-alpha9",
40
+ "@vaadin/component-base": "25.1.0-beta2",
41
+ "@vaadin/lit-renderer": "25.1.0-beta2",
42
+ "@vaadin/vaadin-themable-mixin": "25.1.0-beta2",
43
43
  "lit": "^3.0.0"
44
44
  },
45
45
  "devDependencies": {
46
- "@vaadin/aura": "25.1.0-alpha9",
47
- "@vaadin/button": "25.1.0-alpha9",
48
- "@vaadin/chai-plugins": "25.1.0-alpha9",
49
- "@vaadin/test-runner-commands": "25.1.0-alpha9",
46
+ "@vaadin/aura": "25.1.0-beta2",
47
+ "@vaadin/button": "25.1.0-beta2",
48
+ "@vaadin/chai-plugins": "25.1.0-beta2",
49
+ "@vaadin/test-runner-commands": "25.1.0-beta2",
50
50
  "@vaadin/testing-helpers": "^2.0.0",
51
- "@vaadin/vaadin-lumo-styles": "25.1.0-alpha9",
51
+ "@vaadin/vaadin-lumo-styles": "25.1.0-beta2",
52
52
  "sinon": "^21.0.0"
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": "ef432311376ba3dac4233cb23d393a49a425e0a4"
59
+ "gitHead": "ffbedbae08a5160d13bcd1c6fcaa328df5103a05"
60
60
  }
@@ -20,7 +20,6 @@ export const NotificationContainerMixin = (superClass) =>
20
20
  return {
21
21
  /**
22
22
  * True when the container is opened
23
- * @type {boolean}
24
23
  */
25
24
  opened: {
26
25
  type: Boolean,
@@ -127,7 +126,6 @@ export const NotificationMixin = (superClass) =>
127
126
  /**
128
127
  * The duration in milliseconds to show the notification.
129
128
  * Set to `0` or a negative number to disable the notification auto-closing.
130
- * @type {number}
131
129
  */
132
130
  duration: {
133
131
  type: Number,
@@ -137,7 +135,6 @@ export const NotificationMixin = (superClass) =>
137
135
 
138
136
  /**
139
137
  * True if the notification is currently displayed.
140
- * @type {boolean}
141
138
  */
142
139
  opened: {
143
140
  type: Boolean,
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/notification",
4
- "version": "25.1.0-alpha9",
4
+ "version": "25.1.0-beta2",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -26,7 +26,9 @@
26
26
  "description": "The duration in milliseconds to show the notification.\nSet to `0` or a negative number to disable the notification auto-closing.",
27
27
  "value": {
28
28
  "type": [
29
- "number"
29
+ "number",
30
+ "null",
31
+ "undefined"
30
32
  ]
31
33
  }
32
34
  },
@@ -35,7 +37,9 @@
35
37
  "description": "True if the notification is currently displayed.",
36
38
  "value": {
37
39
  "type": [
38
- "boolean"
40
+ "boolean",
41
+ "null",
42
+ "undefined"
39
43
  ]
40
44
  }
41
45
  },
@@ -89,7 +93,9 @@
89
93
  "description": "The duration in milliseconds to show the notification.\nSet to `0` or a negative number to disable the notification auto-closing.",
90
94
  "value": {
91
95
  "type": [
92
- "number"
96
+ "number",
97
+ "null",
98
+ "undefined"
93
99
  ]
94
100
  }
95
101
  },
@@ -98,7 +104,9 @@
98
104
  "description": "True if the notification is currently displayed.",
99
105
  "value": {
100
106
  "type": [
101
- "boolean"
107
+ "boolean",
108
+ "null",
109
+ "undefined"
102
110
  ]
103
111
  }
104
112
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/notification",
4
- "version": "25.1.0-alpha9",
4
+ "version": "25.1.0-beta2",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {