@vaadin/context-menu 23.1.0-beta2 → 23.1.0-rc1

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/context-menu",
3
- "version": "23.1.0-beta2",
3
+ "version": "23.1.0-rc1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -37,20 +37,20 @@
37
37
  "dependencies": {
38
38
  "@open-wc/dedupe-mixin": "^1.3.0",
39
39
  "@polymer/polymer": "^3.0.0",
40
- "@vaadin/component-base": "23.1.0-beta2",
41
- "@vaadin/item": "23.1.0-beta2",
42
- "@vaadin/list-box": "23.1.0-beta2",
43
- "@vaadin/lit-renderer": "23.1.0-beta2",
44
- "@vaadin/vaadin-lumo-styles": "23.1.0-beta2",
45
- "@vaadin/vaadin-material-styles": "23.1.0-beta2",
46
- "@vaadin/vaadin-overlay": "23.1.0-beta2",
47
- "@vaadin/vaadin-themable-mixin": "23.1.0-beta2"
40
+ "@vaadin/component-base": "23.1.0-rc1",
41
+ "@vaadin/item": "23.1.0-rc1",
42
+ "@vaadin/list-box": "23.1.0-rc1",
43
+ "@vaadin/lit-renderer": "23.1.0-rc1",
44
+ "@vaadin/vaadin-lumo-styles": "23.1.0-rc1",
45
+ "@vaadin/vaadin-material-styles": "23.1.0-rc1",
46
+ "@vaadin/vaadin-overlay": "23.1.0-rc1",
47
+ "@vaadin/vaadin-themable-mixin": "23.1.0-rc1"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@esm-bundle/chai": "^4.3.4",
51
- "@vaadin/polymer-legacy-adapter": "23.1.0-beta2",
51
+ "@vaadin/polymer-legacy-adapter": "23.1.0-rc1",
52
52
  "@vaadin/testing-helpers": "^0.3.2",
53
53
  "sinon": "^13.0.2"
54
54
  },
55
- "gitHead": "f11f9245a0b5e6bf912725a501c27c24b74e7c8d"
55
+ "gitHead": "5ecb85e16e938df827fefca4bd2a665a1e29913e"
56
56
  }
@@ -40,8 +40,6 @@ declare class ContextMenuListBox extends ListBox {}
40
40
  export declare function ItemsMixin<T extends Constructor<HTMLElement>>(base: T): T & Constructor<ItemsMixinClass>;
41
41
 
42
42
  export declare class ItemsMixinClass {
43
- protected readonly __isRTL: boolean;
44
-
45
43
  /**
46
44
  * Defines a (hierarchical) menu structure for the component.
47
45
  * If a menu item has a non-empty `children` set, a sub-menu with the child items is opened
@@ -71,4 +69,6 @@ export declare class ItemsMixinClass {
71
69
  * ```
72
70
  */
73
71
  items: ContextMenuItem[] | undefined;
72
+
73
+ protected readonly __isRTL: boolean;
74
74
  }
@@ -1,4 +1,5 @@
1
1
  import './vaadin-context-menu-styles.js';
2
2
  import '@vaadin/item/theme/lumo/vaadin-item.js';
3
3
  import '@vaadin/list-box/theme/lumo/vaadin-list-box.js';
4
+ import '@vaadin/vaadin-overlay/theme/lumo/vaadin-overlay.js';
4
5
  import '../../src/vaadin-context-menu.js';
@@ -1,4 +1,5 @@
1
1
  import './vaadin-context-menu-styles.js';
2
2
  import '@vaadin/item/theme/material/vaadin-item.js';
3
3
  import '@vaadin/list-box/theme/material/vaadin-list-box.js';
4
+ import '@vaadin/vaadin-overlay/theme/material/vaadin-overlay.js';
4
5
  import '../../src/vaadin-context-menu.js';