@vaadin/menu-bar 24.4.0-dev.b3e1d14600 → 24.4.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.
Files changed (44) hide show
  1. package/README.md +0 -1
  2. package/package.json +16 -13
  3. package/src/vaadin-lit-menu-bar-button.js +58 -0
  4. package/src/vaadin-lit-menu-bar-item.js +62 -0
  5. package/src/vaadin-lit-menu-bar-list-box.js +87 -0
  6. package/src/vaadin-lit-menu-bar-overlay.js +65 -0
  7. package/src/vaadin-lit-menu-bar-submenu.js +93 -0
  8. package/src/vaadin-lit-menu-bar.js +83 -0
  9. package/src/vaadin-menu-bar-button.js +14 -1
  10. package/src/vaadin-menu-bar-item.d.ts +1 -1
  11. package/src/vaadin-menu-bar-item.js +1 -1
  12. package/src/vaadin-menu-bar-list-box.d.ts +1 -1
  13. package/src/vaadin-menu-bar-list-box.js +1 -1
  14. package/src/vaadin-menu-bar-mixin.d.ts +13 -1
  15. package/src/vaadin-menu-bar-mixin.js +84 -18
  16. package/src/vaadin-menu-bar-overlay.d.ts +1 -1
  17. package/src/vaadin-menu-bar-overlay.js +1 -1
  18. package/src/vaadin-menu-bar-submenu.js +1 -1
  19. package/src/vaadin-menu-bar.d.ts +1 -1
  20. package/src/vaadin-menu-bar.js +1 -1
  21. package/theme/lumo/vaadin-lit-menu-bar.d.ts +6 -0
  22. package/theme/lumo/vaadin-lit-menu-bar.js +6 -0
  23. package/theme/lumo/vaadin-menu-bar-button-styles.d.ts +1 -0
  24. package/theme/lumo/vaadin-menu-bar-button-styles.js +4 -4
  25. package/theme/lumo/vaadin-menu-bar-button.d.ts +2 -0
  26. package/theme/lumo/vaadin-menu-bar-item-styles.d.ts +2 -0
  27. package/theme/lumo/vaadin-menu-bar-list-box-styles.d.ts +1 -0
  28. package/theme/lumo/vaadin-menu-bar-overlay-styles.d.ts +1 -0
  29. package/theme/lumo/vaadin-menu-bar-styles.d.ts +1 -0
  30. package/theme/lumo/vaadin-menu-bar-styles.js +1 -1
  31. package/theme/lumo/vaadin-menu-bar.d.ts +6 -0
  32. package/theme/material/vaadin-lit-menu-bar.d.ts +6 -0
  33. package/theme/material/vaadin-lit-menu-bar.js +6 -0
  34. package/theme/material/vaadin-menu-bar-button-styles.d.ts +1 -0
  35. package/theme/material/vaadin-menu-bar-button-styles.js +6 -6
  36. package/theme/material/vaadin-menu-bar-button.d.ts +2 -0
  37. package/theme/material/vaadin-menu-bar-item-styles.d.ts +1 -0
  38. package/theme/material/vaadin-menu-bar-list-box-styles.d.ts +1 -0
  39. package/theme/material/vaadin-menu-bar-overlay-styles.d.ts +1 -0
  40. package/theme/material/vaadin-menu-bar-styles.d.ts +1 -0
  41. package/theme/material/vaadin-menu-bar-styles.js +1 -1
  42. package/theme/material/vaadin-menu-bar.d.ts +6 -0
  43. package/web-types.json +145 -0
  44. package/web-types.lit.json +76 -0
package/README.md CHANGED
@@ -5,7 +5,6 @@ A web component for creating a horizontal button bar with hierarchical drop-down
5
5
  [Documentation + Live Demo ↗](https://vaadin.com/docs/latest/components/menu-bar)
6
6
 
7
7
  [![npm version](https://badgen.net/npm/v/@vaadin/menu-bar)](https://www.npmjs.com/package/@vaadin/menu-bar)
8
- [![Discord](https://img.shields.io/discord/732335336448852018?label=discord)](https://discord.gg/PHmkCKC)
9
8
 
10
9
  ```html
11
10
  <vaadin-menu-bar></vaadin-menu-bar>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/menu-bar",
3
- "version": "24.4.0-dev.b3e1d14600",
3
+ "version": "24.4.0-rc2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -24,6 +24,8 @@
24
24
  "theme",
25
25
  "vaadin-*.d.ts",
26
26
  "vaadin-*.js",
27
+ "!vaadin-lit-*.d.ts",
28
+ "!vaadin-lit-*.js",
27
29
  "web-types.json",
28
30
  "web-types.lit.json"
29
31
  ],
@@ -37,20 +39,21 @@
37
39
  "dependencies": {
38
40
  "@open-wc/dedupe-mixin": "^1.3.0",
39
41
  "@polymer/polymer": "^3.0.0",
40
- "@vaadin/a11y-base": "24.4.0-dev.b3e1d14600",
41
- "@vaadin/button": "24.4.0-dev.b3e1d14600",
42
- "@vaadin/component-base": "24.4.0-dev.b3e1d14600",
43
- "@vaadin/context-menu": "24.4.0-dev.b3e1d14600",
44
- "@vaadin/item": "24.4.0-dev.b3e1d14600",
45
- "@vaadin/list-box": "24.4.0-dev.b3e1d14600",
46
- "@vaadin/overlay": "24.4.0-dev.b3e1d14600",
47
- "@vaadin/vaadin-lumo-styles": "24.4.0-dev.b3e1d14600",
48
- "@vaadin/vaadin-material-styles": "24.4.0-dev.b3e1d14600",
49
- "@vaadin/vaadin-themable-mixin": "24.4.0-dev.b3e1d14600"
42
+ "@vaadin/a11y-base": "24.4.0-rc2",
43
+ "@vaadin/button": "24.4.0-rc2",
44
+ "@vaadin/component-base": "24.4.0-rc2",
45
+ "@vaadin/context-menu": "24.4.0-rc2",
46
+ "@vaadin/item": "24.4.0-rc2",
47
+ "@vaadin/list-box": "24.4.0-rc2",
48
+ "@vaadin/overlay": "24.4.0-rc2",
49
+ "@vaadin/vaadin-lumo-styles": "24.4.0-rc2",
50
+ "@vaadin/vaadin-material-styles": "24.4.0-rc2",
51
+ "@vaadin/vaadin-themable-mixin": "24.4.0-rc2",
52
+ "lit": "^3.0.0"
50
53
  },
51
54
  "devDependencies": {
52
55
  "@esm-bundle/chai": "^4.3.4",
53
- "@vaadin/icon": "24.4.0-dev.b3e1d14600",
56
+ "@vaadin/icon": "24.4.0-rc2",
54
57
  "@vaadin/testing-helpers": "^0.6.0",
55
58
  "sinon": "^13.0.2"
56
59
  },
@@ -58,5 +61,5 @@
58
61
  "web-types.json",
59
62
  "web-types.lit.json"
60
63
  ],
61
- "gitHead": "502d4f5b03f770a83d270d98078cde230254dd0e"
64
+ "gitHead": "ea3d99e8cf67a337e959d5cab849f80464c7c7e5"
62
65
  }
@@ -0,0 +1,58 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2019 - 2024 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ import { Button } from '@vaadin/button/src/vaadin-lit-button.js';
7
+ import { defineCustomElement } from '@vaadin/component-base/src/define.js';
8
+ import { css } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
9
+
10
+ /**
11
+ * An element used internally by `<vaadin-menu-bar>`. Not intended to be used separately.
12
+ *
13
+ * @customElement
14
+ * @extends Button
15
+ * @private
16
+ */
17
+ class MenuBarButton extends Button {
18
+ static get is() {
19
+ return 'vaadin-menu-bar-button';
20
+ }
21
+
22
+ static get styles() {
23
+ return [
24
+ super.styles,
25
+ css`
26
+ :host {
27
+ flex-shrink: 0;
28
+ }
29
+
30
+ :host([slot='overflow']) {
31
+ margin-inline-end: 0;
32
+ }
33
+
34
+ [part='label'] ::slotted(vaadin-menu-bar-item) {
35
+ position: relative;
36
+ z-index: 1;
37
+ }
38
+ `,
39
+ ];
40
+ }
41
+
42
+ /**
43
+ * Override method inherited from `ButtonMixin` to set a flag based on whether the key
44
+ * is Enter and Space. Unlike mouse click, these keys should also focus the first item.
45
+ * This flag is used in menu bar to identify the action that triggered the click.
46
+ *
47
+ * @param {KeyboardEvent} event
48
+ * @protected
49
+ * @override
50
+ */
51
+ _onKeyDown(event) {
52
+ this.__triggeredWithActiveKeys = this._activeKeys.includes(event.key);
53
+ super._onKeyDown(event);
54
+ this.__triggeredWithActiveKeys = null;
55
+ }
56
+ }
57
+
58
+ defineCustomElement(MenuBarButton);
@@ -0,0 +1,62 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2019 - 2024 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ import { css, html, LitElement } from 'lit';
7
+ import { defineCustomElement } from '@vaadin/component-base/src/define.js';
8
+ import { DirMixin } from '@vaadin/component-base/src/dir-mixin.js';
9
+ import { PolylitMixin } from '@vaadin/component-base/src/polylit-mixin.js';
10
+ import { ItemMixin } from '@vaadin/item/src/vaadin-item-mixin.js';
11
+ import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
12
+
13
+ /**
14
+ * An element used internally by `<vaadin-menu-bar>`. Not intended to be used separately.
15
+ *
16
+ * @customElement
17
+ * @extends HTMLElement
18
+ * @mixes DirMixin
19
+ * @mixes ItemMixin
20
+ * @mixes ThemableMixin
21
+ * @protected
22
+ */
23
+ class MenuBarItem extends ItemMixin(ThemableMixin(DirMixin(PolylitMixin(LitElement)))) {
24
+ static get is() {
25
+ return 'vaadin-menu-bar-item';
26
+ }
27
+
28
+ static get styles() {
29
+ return css`
30
+ :host {
31
+ display: inline-block;
32
+ }
33
+
34
+ :host([hidden]) {
35
+ display: none !important;
36
+ }
37
+ `;
38
+ }
39
+
40
+ /** @protected */
41
+ render() {
42
+ return html`
43
+ <span part="checkmark" aria-hidden="true"></span>
44
+ <div part="content">
45
+ <slot></slot>
46
+ </div>
47
+ `;
48
+ }
49
+
50
+ /** @protected */
51
+ connectedCallback() {
52
+ super.connectedCallback();
53
+
54
+ // Set role in `connectedCallback()` instead of `ready()`
55
+ // because the role is removed when teleporting to button.
56
+ this.setAttribute('role', 'menuitem');
57
+ }
58
+ }
59
+
60
+ defineCustomElement(MenuBarItem);
61
+
62
+ export { MenuBarItem };
@@ -0,0 +1,87 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2019 - 2024 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ import { css, html, LitElement } from 'lit';
7
+ import { ListMixin } from '@vaadin/a11y-base/src/list-mixin.js';
8
+ import { defineCustomElement } from '@vaadin/component-base/src/define.js';
9
+ import { DirMixin } from '@vaadin/component-base/src/dir-mixin.js';
10
+ import { PolylitMixin } from '@vaadin/component-base/src/polylit-mixin.js';
11
+ import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
12
+
13
+ /**
14
+ * An element used internally by `<vaadin-menu-bar>`. Not intended to be used separately.
15
+ *
16
+ * @customElement
17
+ * @extends HTMLElement
18
+ * @mixes DirMixin
19
+ * @mixes ListMixin
20
+ * @mixes ThemableMixin
21
+ * @protected
22
+ */
23
+ class MenuBarListBox extends ListMixin(ThemableMixin(DirMixin(PolylitMixin(LitElement)))) {
24
+ static get is() {
25
+ return 'vaadin-menu-bar-list-box';
26
+ }
27
+
28
+ static get styles() {
29
+ return css`
30
+ :host {
31
+ display: flex;
32
+ }
33
+
34
+ :host([hidden]) {
35
+ display: none !important;
36
+ }
37
+
38
+ [part='items'] {
39
+ height: 100%;
40
+ width: 100%;
41
+ overflow-y: auto;
42
+ -webkit-overflow-scrolling: touch;
43
+ }
44
+ `;
45
+ }
46
+
47
+ static get properties() {
48
+ return {
49
+ // We don't need to define this property since super default is vertical,
50
+ // but we don't want it to be modified, or be shown in the API docs.
51
+ /** @private */
52
+ orientation: {
53
+ type: String,
54
+ readOnly: true,
55
+ },
56
+ };
57
+ }
58
+
59
+ /**
60
+ * @return {!HTMLElement}
61
+ * @protected
62
+ * @override
63
+ */
64
+ get _scrollerElement() {
65
+ return this.shadowRoot.querySelector('[part="items"]');
66
+ }
67
+
68
+ /** @protected */
69
+ render() {
70
+ return html`
71
+ <div part="items">
72
+ <slot></slot>
73
+ </div>
74
+ `;
75
+ }
76
+
77
+ /** @protected */
78
+ ready() {
79
+ super.ready();
80
+
81
+ this.setAttribute('role', 'menu');
82
+ }
83
+ }
84
+
85
+ defineCustomElement(MenuBarListBox);
86
+
87
+ export { MenuBarListBox };
@@ -0,0 +1,65 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2019 - 2024 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ import { html, LitElement } from 'lit';
7
+ import { defineCustomElement } from '@vaadin/component-base/src/define.js';
8
+ import { DirMixin } from '@vaadin/component-base/src/dir-mixin.js';
9
+ import { PolylitMixin } from '@vaadin/component-base/src/polylit-mixin.js';
10
+ import { MenuOverlayMixin } from '@vaadin/context-menu/src/vaadin-menu-overlay-mixin.js';
11
+ import { styles } from '@vaadin/context-menu/src/vaadin-menu-overlay-styles.js';
12
+ import { OverlayMixin } from '@vaadin/overlay/src/vaadin-overlay-mixin.js';
13
+ import { overlayStyles } from '@vaadin/overlay/src/vaadin-overlay-styles.js';
14
+ import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
15
+
16
+ /**
17
+ * An element used internally by `<vaadin-menu-bar>`. Not intended to be used separately.
18
+ *
19
+ * @customElement
20
+ * @extends HTMLElement
21
+ * @mixes DirMixin
22
+ * @mixes MenuOverlayMixin
23
+ * @mixes OverlayMixin
24
+ * @mixes ThemableMixin
25
+ * @protected
26
+ */
27
+ export class MenuBarOverlay extends MenuOverlayMixin(OverlayMixin(DirMixin(ThemableMixin(PolylitMixin(LitElement))))) {
28
+ static get is() {
29
+ return 'vaadin-menu-bar-overlay';
30
+ }
31
+
32
+ static get properties() {
33
+ return {
34
+ /**
35
+ * When true, the overlay is visible and attached to body.
36
+ * This property config is overridden to set `sync: true`.
37
+ */
38
+ opened: {
39
+ type: Boolean,
40
+ notify: true,
41
+ observer: '_openedChanged',
42
+ reflectToAttribute: true,
43
+ sync: true,
44
+ },
45
+ };
46
+ }
47
+
48
+ static get styles() {
49
+ return [overlayStyles, styles];
50
+ }
51
+
52
+ /** @protected */
53
+ render() {
54
+ return html`
55
+ <div id="backdrop" part="backdrop" ?hidden="${!this.withBackdrop}"></div>
56
+ <div part="overlay" id="overlay" tabindex="0">
57
+ <div part="content" id="content">
58
+ <slot></slot>
59
+ </div>
60
+ </div>
61
+ `;
62
+ }
63
+ }
64
+
65
+ defineCustomElement(MenuBarOverlay);
@@ -0,0 +1,93 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2019 - 2024 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ import './vaadin-lit-menu-bar-item.js';
7
+ import './vaadin-lit-menu-bar-list-box.js';
8
+ import './vaadin-lit-menu-bar-overlay.js';
9
+ import { css, html, LitElement } from 'lit';
10
+ import { defineCustomElement } from '@vaadin/component-base/src/define.js';
11
+ import { OverlayClassMixin } from '@vaadin/component-base/src/overlay-class-mixin.js';
12
+ import { PolylitMixin } from '@vaadin/component-base/src/polylit-mixin.js';
13
+ import { ContextMenuMixin } from '@vaadin/context-menu/src/vaadin-context-menu-mixin.js';
14
+ import { ThemePropertyMixin } from '@vaadin/vaadin-themable-mixin/vaadin-theme-property-mixin.js';
15
+
16
+ /**
17
+ * An element used internally by `<vaadin-menu-bar>`. Not intended to be used separately.
18
+ *
19
+ * @customElement
20
+ * @extends HTMLElement
21
+ * @mixes ContextMenuMixin
22
+ * @mixes OverlayClassMixin
23
+ * @mixes ThemePropertyMixin
24
+ * @protected
25
+ */
26
+ class MenuBarSubmenu extends ContextMenuMixin(OverlayClassMixin(ThemePropertyMixin(PolylitMixin(LitElement)))) {
27
+ static get is() {
28
+ return 'vaadin-menu-bar-submenu';
29
+ }
30
+
31
+ static get styles() {
32
+ return css`
33
+ :host {
34
+ display: block;
35
+ }
36
+
37
+ :host([hidden]) {
38
+ display: none !important;
39
+ }
40
+ `;
41
+ }
42
+
43
+ constructor() {
44
+ super();
45
+
46
+ this.openOn = 'opensubmenu';
47
+ }
48
+
49
+ /**
50
+ * Tag name prefix used by overlay, list-box and items.
51
+ * @protected
52
+ * @return {string}
53
+ */
54
+ get _tagNamePrefix() {
55
+ return 'vaadin-menu-bar';
56
+ }
57
+
58
+ /** @protected */
59
+ render() {
60
+ return html`<slot id="slot"></slot>`;
61
+ }
62
+
63
+ /**
64
+ * @protected
65
+ * @override
66
+ */
67
+ createRenderRoot() {
68
+ const root = super.createRenderRoot();
69
+ root.appendChild(this._overlayElement);
70
+ return root;
71
+ }
72
+
73
+ /**
74
+ * Overriding the observer to not add global "contextmenu" listener.
75
+ */
76
+ _openedChanged(opened) {
77
+ this._overlayElement.opened = opened;
78
+ }
79
+
80
+ /**
81
+ * Overriding the public method to reset expanded button state.
82
+ */
83
+ close() {
84
+ super.close();
85
+
86
+ // Only handle 1st level submenu
87
+ if (this.hasAttribute('is-root')) {
88
+ this.getRootNode().host._close();
89
+ }
90
+ }
91
+ }
92
+
93
+ defineCustomElement(MenuBarSubmenu);
@@ -0,0 +1,83 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2019 - 2024 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ import './vaadin-lit-menu-bar-submenu.js';
7
+ import './vaadin-lit-menu-bar-button.js';
8
+ import { css, html, LitElement } from 'lit';
9
+ import { defineCustomElement } from '@vaadin/component-base/src/define.js';
10
+ import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
11
+ import { PolylitMixin } from '@vaadin/component-base/src/polylit-mixin.js';
12
+ import { TooltipController } from '@vaadin/component-base/src/tooltip-controller.js';
13
+ import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
14
+ import { MenuBarMixin } from './vaadin-menu-bar-mixin.js';
15
+
16
+ /**
17
+ * LitElement based version of `<vaadin-menu-bar>` web component.
18
+ *
19
+ * ## Disclaimer
20
+ *
21
+ * This component is an experiment not intended for publishing to npm.
22
+ * There is no ETA regarding specific Vaadin version where it'll land.
23
+ * Feel free to try this code in your apps as per Apache 2.0 license.
24
+ */
25
+ class MenuBar extends MenuBarMixin(ElementMixin(ThemableMixin(PolylitMixin(LitElement)))) {
26
+ static get is() {
27
+ return 'vaadin-menu-bar';
28
+ }
29
+
30
+ static get styles() {
31
+ return css`
32
+ :host {
33
+ display: block;
34
+ }
35
+
36
+ :host([hidden]) {
37
+ display: none !important;
38
+ }
39
+
40
+ [part='container'] {
41
+ position: relative;
42
+ display: flex;
43
+ width: 100%;
44
+ flex-wrap: nowrap;
45
+ overflow: hidden;
46
+ }
47
+ `;
48
+ }
49
+
50
+ /** @protected */
51
+ render() {
52
+ return html`
53
+ <div part="container">
54
+ <slot></slot>
55
+ <slot name="overflow"></slot>
56
+ </div>
57
+ <vaadin-menu-bar-submenu is-root .overlayClass="${this.overlayClass}"></vaadin-menu-bar-submenu>
58
+
59
+ <slot name="tooltip"></slot>
60
+ `;
61
+ }
62
+
63
+ /** @protected */
64
+ ready() {
65
+ super.ready();
66
+
67
+ this._tooltipController = new TooltipController(this);
68
+ this._tooltipController.setManual(true);
69
+ this.addController(this._tooltipController);
70
+ }
71
+
72
+ /**
73
+ * Fired when either a submenu item or menu bar button without nested children is clicked.
74
+ *
75
+ * @event item-selected
76
+ * @param {Object} detail
77
+ * @param {Object} detail.value the selected menu bar item
78
+ */
79
+ }
80
+
81
+ defineCustomElement(MenuBar);
82
+
83
+ export { MenuBar };
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2019 - 2023 Vaadin Ltd.
3
+ * Copyright (c) 2019 - 2024 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { Button } from '@vaadin/button/src/vaadin-button.js';
@@ -37,6 +37,19 @@ class MenuBarButton extends Button {
37
37
  static get is() {
38
38
  return 'vaadin-menu-bar-button';
39
39
  }
40
+
41
+ /**
42
+ * Override method inherited from `ButtonMixin`. Sets a flag based on whether the key is an active key. Unlike a mouse click, Enter and Space should also focus the first item. This flag is used in menu bar to identify the action that triggered the click.
43
+ *
44
+ * @param {KeyboardEvent} event
45
+ * @protected
46
+ * @override
47
+ */
48
+ _onKeyDown(event) {
49
+ this.__triggeredWithActiveKeys = this._activeKeys.includes(event.key);
50
+ super._onKeyDown(event);
51
+ this.__triggeredWithActiveKeys = null;
52
+ }
40
53
  }
41
54
 
42
55
  defineCustomElement(MenuBarButton);
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2019 - 2023 Vaadin Ltd.
3
+ * Copyright (c) 2019 - 2024 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { DirMixin } from '@vaadin/component-base/src/dir-mixin.js';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2019 - 2023 Vaadin Ltd.
3
+ * Copyright (c) 2019 - 2024 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { html, PolymerElement } from '@polymer/polymer/polymer-element.js';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2019 - 2023 Vaadin Ltd.
3
+ * Copyright (c) 2019 - 2024 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { ListMixin } from '@vaadin/a11y-base/src/list-mixin.js';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2019 - 2023 Vaadin Ltd.
3
+ * Copyright (c) 2019 - 2024 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { html, PolymerElement } from '@polymer/polymer/polymer-element.js';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2019 - 2023 Vaadin Ltd.
3
+ * Copyright (c) 2019 - 2024 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import type { Constructor } from '@open-wc/dedupe-mixin';
@@ -138,6 +138,18 @@ export declare class MenuBarMixinClass {
138
138
  */
139
139
  openOnHover: boolean | null | undefined;
140
140
 
141
+ /**
142
+ * If true, the buttons will be collapsed into the overflow menu
143
+ * starting from the "start" end of the bar instead of the "end".
144
+ * @attr {boolean} reverse-collapse
145
+ */
146
+ reverseCollapse: boolean | null | undefined;
147
+
148
+ /**
149
+ * Closes the current submenu.
150
+ */
151
+ close(): void;
152
+
141
153
  protected readonly _buttons: HTMLElement[];
142
154
 
143
155
  protected readonly _container: HTMLElement;