@vaadin/menu-bar 23.1.0-beta3 → 23.1.0-rc2

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/menu-bar",
3
- "version": "23.1.0-beta3",
3
+ "version": "23.1.0-rc2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,18 +35,18 @@
35
35
  "dependencies": {
36
36
  "@open-wc/dedupe-mixin": "^1.3.0",
37
37
  "@polymer/polymer": "^3.0.0",
38
- "@vaadin/button": "23.1.0-beta3",
39
- "@vaadin/component-base": "23.1.0-beta3",
40
- "@vaadin/vaadin-context-menu": "23.1.0-beta3",
41
- "@vaadin/vaadin-lumo-styles": "23.1.0-beta3",
42
- "@vaadin/vaadin-material-styles": "23.1.0-beta3",
43
- "@vaadin/vaadin-themable-mixin": "23.1.0-beta3"
38
+ "@vaadin/button": "23.1.0-rc2",
39
+ "@vaadin/component-base": "23.1.0-rc2",
40
+ "@vaadin/vaadin-context-menu": "23.1.0-rc2",
41
+ "@vaadin/vaadin-lumo-styles": "23.1.0-rc2",
42
+ "@vaadin/vaadin-material-styles": "23.1.0-rc2",
43
+ "@vaadin/vaadin-themable-mixin": "23.1.0-rc2"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@esm-bundle/chai": "^4.3.4",
47
- "@vaadin/icon": "23.1.0-beta3",
47
+ "@vaadin/icon": "23.1.0-rc2",
48
48
  "@vaadin/testing-helpers": "^0.3.2",
49
49
  "sinon": "^13.0.2"
50
50
  },
51
- "gitHead": "c787ceb8a312f88631c6d429ff320d5f89b1b838"
51
+ "gitHead": "154c6782c42145fed21e443559fbe2d781ad3ec7"
52
52
  }
@@ -135,12 +135,6 @@ declare class MenuBar extends ButtonsMixin(DisabledMixin(InteractionsMixin(Eleme
135
135
  */
136
136
  i18n: MenuBarI18n;
137
137
 
138
- /**
139
- * A callback for the `_theme` property observer.
140
- * It propagates the host theme to the buttons and the sub menu.
141
- */
142
- protected _themeChanged(theme: string | null): void;
143
-
144
138
  addEventListener<K extends keyof MenuBarEventMap>(
145
139
  type: K,
146
140
  listener: (this: MenuBar, ev: MenuBarEventMap[K]) => void,
@@ -152,6 +146,12 @@ declare class MenuBar extends ButtonsMixin(DisabledMixin(InteractionsMixin(Eleme
152
146
  listener: (this: MenuBar, ev: MenuBarEventMap[K]) => void,
153
147
  options?: boolean | EventListenerOptions,
154
148
  ): void;
149
+
150
+ /**
151
+ * A callback for the `_theme` property observer.
152
+ * It propagates the host theme to the buttons and the sub menu.
153
+ */
154
+ protected _themeChanged(theme: string | null): void;
155
155
  }
156
156
 
157
157
  declare global {