@vaadin/dialog 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/dialog",
3
- "version": "25.2.0-alpha10",
3
+ "version": "25.2.0-alpha11",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -37,19 +37,19 @@
37
37
  ],
38
38
  "dependencies": {
39
39
  "@open-wc/dedupe-mixin": "^1.3.0",
40
- "@vaadin/component-base": "25.2.0-alpha10",
41
- "@vaadin/lit-renderer": "25.2.0-alpha10",
42
- "@vaadin/overlay": "25.2.0-alpha10",
43
- "@vaadin/vaadin-themable-mixin": "25.2.0-alpha10",
40
+ "@vaadin/component-base": "25.2.0-alpha11",
41
+ "@vaadin/lit-renderer": "25.2.0-alpha11",
42
+ "@vaadin/overlay": "25.2.0-alpha11",
43
+ "@vaadin/vaadin-themable-mixin": "25.2.0-alpha11",
44
44
  "lit": "^3.0.0"
45
45
  },
46
46
  "devDependencies": {
47
- "@vaadin/a11y-base": "25.2.0-alpha10",
48
- "@vaadin/aura": "25.2.0-alpha10",
49
- "@vaadin/chai-plugins": "25.2.0-alpha10",
50
- "@vaadin/test-runner-commands": "25.2.0-alpha10",
47
+ "@vaadin/a11y-base": "25.2.0-alpha11",
48
+ "@vaadin/aura": "25.2.0-alpha11",
49
+ "@vaadin/chai-plugins": "25.2.0-alpha11",
50
+ "@vaadin/test-runner-commands": "25.2.0-alpha11",
51
51
  "@vaadin/testing-helpers": "^2.0.0",
52
- "@vaadin/vaadin-lumo-styles": "25.2.0-alpha10",
52
+ "@vaadin/vaadin-lumo-styles": "25.2.0-alpha11",
53
53
  "sinon": "^21.0.2"
54
54
  },
55
55
  "customElements": "custom-elements.json",
@@ -57,5 +57,5 @@
57
57
  "web-types.json",
58
58
  "web-types.lit.json"
59
59
  ],
60
- "gitHead": "1303b6a3eeecb44a9d26f2b53cb56d9e906febdf"
60
+ "gitHead": "fdc37e932709f95491a027aeb2090911cb7528c6"
61
61
  }
@@ -4,9 +4,6 @@
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
 
7
- /**
8
- * @polymerMixin
9
- */
10
7
  export const DialogBaseMixin = (superClass) =>
11
8
  class DialogBaseMixin extends superClass {
12
9
  static get properties() {
@@ -6,9 +6,6 @@
6
6
  import { isTouch } from '@vaadin/component-base/src/browser-utils.js';
7
7
  import { eventInWindow, getMouseOrFirstTouchEvent } from './vaadin-dialog-utils.js';
8
8
 
9
- /**
10
- * @polymerMixin
11
- */
12
9
  export const DialogDraggableMixin = (superClass) =>
13
10
  class VaadinDialogDraggableMixin extends superClass {
14
11
  static get properties() {
@@ -22,7 +19,6 @@ export const DialogDraggableMixin = (superClass) =>
22
19
  * If you want a child element to be draggable
23
20
  * but still have its children non-draggable (by default), mark it with
24
21
  * "`draggable-leaf-only`" class name.
25
- *
26
22
  */
27
23
  draggable: {
28
24
  type: Boolean,
@@ -7,10 +7,6 @@ import { SlotObserver } from '@vaadin/component-base/src/slot-observer.js';
7
7
  import { OverlayMixin } from '@vaadin/overlay/src/vaadin-overlay-mixin.js';
8
8
  import { setOverlayStateAttribute } from '@vaadin/overlay/src/vaadin-overlay-utils.js';
9
9
 
10
- /**
11
- * @polymerMixin
12
- * @mixes OverlayMixin
13
- */
14
10
  export const DialogOverlayMixin = (superClass) =>
15
11
  class DialogOverlayMixin extends OverlayMixin(superClass) {
16
12
  static get properties() {
@@ -17,9 +17,6 @@ import { DialogOverlayMixin } from './vaadin-dialog-overlay-mixin.js';
17
17
  *
18
18
  * @customElement vaadin-dialog-overlay
19
19
  * @extends HTMLElement
20
- * @mixes DialogOverlayMixin
21
- * @mixes DirMixin
22
- * @mixes ThemableMixin
23
20
  * @private
24
21
  */
25
22
  export class DialogOverlay extends DialogOverlayMixin(
@@ -4,9 +4,6 @@
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
 
7
- /**
8
- * @polymerMixin
9
- */
10
7
  export const DialogRendererMixin = (superClass) =>
11
8
  class DialogRendererMixin extends superClass {
12
9
  static get properties() {
@@ -4,9 +4,6 @@
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { eventInWindow, getMouseOrFirstTouchEvent } from './vaadin-dialog-utils.js';
7
- /**
8
- * @polymerMixin
9
- */
10
7
  export const DialogResizableMixin = (superClass) =>
11
8
  class VaadinDialogResizableMixin extends superClass {
12
9
  static get properties() {
@@ -4,9 +4,6 @@
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
 
7
- /**
8
- * @polymerMixin
9
- */
10
7
  export const DialogSizeMixin = (superClass) =>
11
8
  class DialogSizeMixinClass extends superClass {
12
9
  static get properties() {
@@ -98,13 +98,6 @@ export { DialogOverlay } from './vaadin-dialog-overlay.js';
98
98
  *
99
99
  * @customElement vaadin-dialog
100
100
  * @extends HTMLElement
101
- * @mixes ThemePropertyMixin
102
- * @mixes ElementMixin
103
- * @mixes DialogBaseMixin
104
- * @mixes DialogDraggableMixin
105
- * @mixes DialogRendererMixin
106
- * @mixes DialogResizableMixin
107
- * @mixes DialogSizeMixin
108
101
  */
109
102
  class Dialog extends DialogSizeMixin(
110
103
  DialogDraggableMixin(
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/dialog",
4
- "version": "25.2.0-alpha10",
4
+ "version": "25.2.0-alpha11",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/dialog",
4
- "version": "25.2.0-alpha10",
4
+ "version": "25.2.0-alpha11",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {