@vaadin/menu-bar 23.0.11 → 23.0.12
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.0.
|
|
3
|
+
"version": "23.0.12",
|
|
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.0.
|
|
39
|
-
"@vaadin/component-base": "^23.0.
|
|
40
|
-
"@vaadin/vaadin-context-menu": "^23.0.
|
|
41
|
-
"@vaadin/vaadin-lumo-styles": "^23.0.
|
|
42
|
-
"@vaadin/vaadin-material-styles": "^23.0.
|
|
43
|
-
"@vaadin/vaadin-themable-mixin": "^23.0.
|
|
38
|
+
"@vaadin/button": "^23.0.12",
|
|
39
|
+
"@vaadin/component-base": "^23.0.12",
|
|
40
|
+
"@vaadin/vaadin-context-menu": "^23.0.12",
|
|
41
|
+
"@vaadin/vaadin-lumo-styles": "^23.0.12",
|
|
42
|
+
"@vaadin/vaadin-material-styles": "^23.0.12",
|
|
43
|
+
"@vaadin/vaadin-themable-mixin": "^23.0.12"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@esm-bundle/chai": "^4.3.4",
|
|
47
|
-
"@vaadin/icon": "^23.0.
|
|
47
|
+
"@vaadin/icon": "^23.0.12",
|
|
48
48
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
49
49
|
"sinon": "^9.2.1"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "717908c222c1e241259e30b4144cd5ba32734819"
|
|
52
52
|
}
|
package/src/vaadin-menu-bar.d.ts
CHANGED
|
@@ -68,6 +68,12 @@ export interface MenuBarEventMap extends HTMLElementEventMap, MenuBarCustomEvent
|
|
|
68
68
|
* `menu-bar-button` | The menu bar button.
|
|
69
69
|
* `overflow-button` | The "overflow" button appearing when menu bar width is not enough to fit all the buttons.
|
|
70
70
|
*
|
|
71
|
+
* The following state attributes are available for styling:
|
|
72
|
+
*
|
|
73
|
+
* Attribute | Description
|
|
74
|
+
* --------------------|----------------------------------
|
|
75
|
+
* `disabled` | Set when the menu bar is disabled
|
|
76
|
+
*
|
|
71
77
|
* See [Styling Components](https://vaadin.com/docs/latest/ds/customization/styling-components) documentation.
|
|
72
78
|
*
|
|
73
79
|
* ### Internal components
|
package/src/vaadin-menu-bar.js
CHANGED
|
@@ -39,6 +39,12 @@ import { InteractionsMixin } from './vaadin-menu-bar-interactions-mixin.js';
|
|
|
39
39
|
* `menu-bar-button` | The menu bar button.
|
|
40
40
|
* `overflow-button` | The "overflow" button appearing when menu bar width is not enough to fit all the buttons.
|
|
41
41
|
*
|
|
42
|
+
* The following state attributes are available for styling:
|
|
43
|
+
*
|
|
44
|
+
* Attribute | Description
|
|
45
|
+
* --------------------|----------------------------------
|
|
46
|
+
* `disabled` | Set when the menu bar is disabled
|
|
47
|
+
*
|
|
42
48
|
* See [Styling Components](https://vaadin.com/docs/latest/ds/customization/styling-components) documentation.
|
|
43
49
|
*
|
|
44
50
|
* ### Internal components
|
|
@@ -56,6 +62,7 @@ import { InteractionsMixin } from './vaadin-menu-bar-interactions-mixin.js';
|
|
|
56
62
|
* @extends HTMLElement
|
|
57
63
|
* @mixes ButtonsMixin
|
|
58
64
|
* @mixes InteractionsMixin
|
|
65
|
+
* @mixes DisabledMixin
|
|
59
66
|
* @mixes ElementMixin
|
|
60
67
|
* @mixes ThemableMixin
|
|
61
68
|
*/
|