@vaadin/menu-bar 25.1.0-alpha7 → 25.1.0-alpha9
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/custom-elements.json +58 -0
- package/package.json +15 -15
- package/web-types.json +2 -11
- package/web-types.lit.json +2 -2
package/custom-elements.json
CHANGED
|
@@ -348,6 +348,28 @@
|
|
|
348
348
|
"name": "close",
|
|
349
349
|
"description": "Closes the current submenu."
|
|
350
350
|
},
|
|
351
|
+
{
|
|
352
|
+
"kind": "field",
|
|
353
|
+
"name": "i18n",
|
|
354
|
+
"description": "The object used to localize this component. To change the default\nlocalization, replace this with an object that provides all properties, or\njust the individual properties you want to change.\n\nThe object has the following JSON structure and default values:\n```js\n{\n moreOptions: 'More options'\n}\n```",
|
|
355
|
+
"return": {
|
|
356
|
+
"type": {
|
|
357
|
+
"text": "!MenuBarI18n"
|
|
358
|
+
}
|
|
359
|
+
},
|
|
360
|
+
"parameters": [
|
|
361
|
+
{
|
|
362
|
+
"name": "value",
|
|
363
|
+
"type": {
|
|
364
|
+
"text": "Object"
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
],
|
|
368
|
+
"inheritedFrom": {
|
|
369
|
+
"name": "I18nMixin",
|
|
370
|
+
"package": "@vaadin/component-base/src/i18n-mixin.js"
|
|
371
|
+
}
|
|
372
|
+
},
|
|
351
373
|
{
|
|
352
374
|
"kind": "field",
|
|
353
375
|
"name": "items",
|
|
@@ -398,6 +420,13 @@
|
|
|
398
420
|
}
|
|
399
421
|
],
|
|
400
422
|
"attributes": [
|
|
423
|
+
{
|
|
424
|
+
"name": "i18n",
|
|
425
|
+
"inheritedFrom": {
|
|
426
|
+
"name": "I18nMixin",
|
|
427
|
+
"package": "@vaadin/component-base/src/i18n-mixin.js"
|
|
428
|
+
}
|
|
429
|
+
},
|
|
401
430
|
{
|
|
402
431
|
"name": "open-on-hover",
|
|
403
432
|
"type": {
|
|
@@ -1310,6 +1339,28 @@
|
|
|
1310
1339
|
"module": "src/vaadin-menu-bar-mixin.js"
|
|
1311
1340
|
}
|
|
1312
1341
|
},
|
|
1342
|
+
{
|
|
1343
|
+
"kind": "field",
|
|
1344
|
+
"name": "i18n",
|
|
1345
|
+
"description": "The object used to localize this component. To change the default\nlocalization, replace this with an object that provides all properties, or\njust the individual properties you want to change.\n\nThe object has the following JSON structure and default values:\n```js\n{\n moreOptions: 'More options'\n}\n```",
|
|
1346
|
+
"return": {
|
|
1347
|
+
"type": {
|
|
1348
|
+
"text": "!MenuBarI18n"
|
|
1349
|
+
}
|
|
1350
|
+
},
|
|
1351
|
+
"parameters": [
|
|
1352
|
+
{
|
|
1353
|
+
"name": "value",
|
|
1354
|
+
"type": {
|
|
1355
|
+
"text": "Object"
|
|
1356
|
+
}
|
|
1357
|
+
}
|
|
1358
|
+
],
|
|
1359
|
+
"inheritedFrom": {
|
|
1360
|
+
"name": "I18nMixin",
|
|
1361
|
+
"package": "@vaadin/component-base/src/i18n-mixin.js"
|
|
1362
|
+
}
|
|
1363
|
+
},
|
|
1313
1364
|
{
|
|
1314
1365
|
"kind": "field",
|
|
1315
1366
|
"name": "items",
|
|
@@ -1409,6 +1460,13 @@
|
|
|
1409
1460
|
"tagName": "vaadin-menu-bar",
|
|
1410
1461
|
"customElement": true,
|
|
1411
1462
|
"attributes": [
|
|
1463
|
+
{
|
|
1464
|
+
"name": "i18n",
|
|
1465
|
+
"inheritedFrom": {
|
|
1466
|
+
"name": "I18nMixin",
|
|
1467
|
+
"package": "@vaadin/component-base/src/i18n-mixin.js"
|
|
1468
|
+
}
|
|
1469
|
+
},
|
|
1412
1470
|
{
|
|
1413
1471
|
"name": "open-on-hover",
|
|
1414
1472
|
"type": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/menu-bar",
|
|
3
|
-
"version": "25.1.0-
|
|
3
|
+
"version": "25.1.0-alpha9",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -35,23 +35,23 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
38
|
-
"@vaadin/a11y-base": "25.1.0-
|
|
39
|
-
"@vaadin/button": "25.1.0-
|
|
40
|
-
"@vaadin/component-base": "25.1.0-
|
|
41
|
-
"@vaadin/context-menu": "25.1.0-
|
|
42
|
-
"@vaadin/item": "25.1.0-
|
|
43
|
-
"@vaadin/list-box": "25.1.0-
|
|
44
|
-
"@vaadin/overlay": "25.1.0-
|
|
45
|
-
"@vaadin/vaadin-themable-mixin": "25.1.0-
|
|
38
|
+
"@vaadin/a11y-base": "25.1.0-alpha9",
|
|
39
|
+
"@vaadin/button": "25.1.0-alpha9",
|
|
40
|
+
"@vaadin/component-base": "25.1.0-alpha9",
|
|
41
|
+
"@vaadin/context-menu": "25.1.0-alpha9",
|
|
42
|
+
"@vaadin/item": "25.1.0-alpha9",
|
|
43
|
+
"@vaadin/list-box": "25.1.0-alpha9",
|
|
44
|
+
"@vaadin/overlay": "25.1.0-alpha9",
|
|
45
|
+
"@vaadin/vaadin-themable-mixin": "25.1.0-alpha9",
|
|
46
46
|
"lit": "^3.0.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@vaadin/aura": "25.1.0-
|
|
50
|
-
"@vaadin/chai-plugins": "25.1.0-
|
|
51
|
-
"@vaadin/icon": "25.1.0-
|
|
52
|
-
"@vaadin/test-runner-commands": "25.1.0-
|
|
49
|
+
"@vaadin/aura": "25.1.0-alpha9",
|
|
50
|
+
"@vaadin/chai-plugins": "25.1.0-alpha9",
|
|
51
|
+
"@vaadin/icon": "25.1.0-alpha9",
|
|
52
|
+
"@vaadin/test-runner-commands": "25.1.0-alpha9",
|
|
53
53
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
54
|
-
"@vaadin/vaadin-lumo-styles": "25.1.0-
|
|
54
|
+
"@vaadin/vaadin-lumo-styles": "25.1.0-alpha9",
|
|
55
55
|
"sinon": "^21.0.0"
|
|
56
56
|
},
|
|
57
57
|
"customElements": "custom-elements.json",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"web-types.json",
|
|
60
60
|
"web-types.lit.json"
|
|
61
61
|
],
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "ef432311376ba3dac4233cb23d393a49a425e0a4"
|
|
63
63
|
}
|
package/web-types.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/menu-bar",
|
|
4
|
-
"version": "25.1.0-
|
|
4
|
+
"version": "25.1.0-alpha9",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"elements": [
|
|
9
9
|
{
|
|
10
10
|
"name": "vaadin-menu-bar",
|
|
11
|
-
"description": "`<vaadin-menu-bar>` is a Web Component providing a set of horizontally stacked buttons offering\nthe user quick access to a consistent set of commands. Each button can toggle a submenu with\nsupport for additional levels of nested menus.\n\nTo create the menu bar, first add the component to the page:\n\n```html\n<vaadin-menu-bar></vaadin-menu-bar>\n```\n\nAnd then use [`items`](https://cdn.vaadin.com/vaadin-web-components/25.1.0-
|
|
11
|
+
"description": "`<vaadin-menu-bar>` is a Web Component providing a set of horizontally stacked buttons offering\nthe user quick access to a consistent set of commands. Each button can toggle a submenu with\nsupport for additional levels of nested menus.\n\nTo create the menu bar, first add the component to the page:\n\n```html\n<vaadin-menu-bar></vaadin-menu-bar>\n```\n\nAnd then use [`items`](https://cdn.vaadin.com/vaadin-web-components/25.1.0-alpha9/#/elements/vaadin-menu-bar#property-items) property to initialize the structure:\n\n```js\ndocument.querySelector('vaadin-menu-bar').items = [{text: 'File'}, {text: 'Edit'}];\n```\n\n### Styling\n\nThe following shadow DOM parts are exposed for styling:\n\nPart name | Description\n------------------|----------------\n`container` | The container wrapping menu bar buttons.\n\nThe following state attributes are available for styling:\n\nAttribute | Description\n--------------------|----------------------------------\n`disabled` | Set when the menu bar is disabled\n`has-single-button` | Set when there is only one button visible\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.\n\n### Internal components\n\nIn addition to `<vaadin-menu-bar>` itself, the following internal\ncomponents are themable:\n\n- `<vaadin-menu-bar-button>` - has the same API as [`<vaadin-button>`](https://cdn.vaadin.com/vaadin-web-components/25.1.0-alpha9/#/elements/vaadin-button).\n- `<vaadin-menu-bar-item>` - has the same API as [`<vaadin-item>`](https://cdn.vaadin.com/vaadin-web-components/25.1.0-alpha9/#/elements/vaadin-item).\n- `<vaadin-menu-bar-list-box>` - has the same API as [`<vaadin-list-box>`](https://cdn.vaadin.com/vaadin-web-components/25.1.0-alpha9/#/elements/vaadin-list-box).\n- `<vaadin-menu-bar-submenu>` - has the same API as [`<vaadin-context-menu>`](https://cdn.vaadin.com/vaadin-web-components/25.1.0-alpha9/#/elements/vaadin-context-menu).\n\nThe `<vaadin-menu-bar-item>` sub-menu elements have the following additional state attributes\non top of the built-in `<vaadin-item>` state attributes:\n\nAttribute | Description\n---------- |-------------\n`expanded` | Expanded parent item.",
|
|
12
12
|
"attributes": [
|
|
13
13
|
{
|
|
14
14
|
"name": "disabled",
|
|
@@ -21,15 +21,6 @@
|
|
|
21
21
|
]
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
|
-
{
|
|
25
|
-
"name": "i18n",
|
|
26
|
-
"description": "The object used to localize this component. To change the default\nlocalization, replace this with an object that provides all properties, or\njust the individual properties you want to change.\n\nShould be overridden by subclasses to provide a custom JSDoc with the\ndefault I18N properties.",
|
|
27
|
-
"value": {
|
|
28
|
-
"type": [
|
|
29
|
-
"Object"
|
|
30
|
-
]
|
|
31
|
-
}
|
|
32
|
-
},
|
|
33
24
|
{
|
|
34
25
|
"name": "open-on-hover",
|
|
35
26
|
"description": "If true, the submenu will open on hover (mouseover) instead of click.",
|
package/web-types.lit.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/menu-bar",
|
|
4
|
-
"version": "25.1.0-
|
|
4
|
+
"version": "25.1.0-alpha9",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"framework": "lit",
|
|
7
7
|
"framework-config": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"elements": [
|
|
17
17
|
{
|
|
18
18
|
"name": "vaadin-menu-bar",
|
|
19
|
-
"description": "`<vaadin-menu-bar>` is a Web Component providing a set of horizontally stacked buttons offering\nthe user quick access to a consistent set of commands. Each button can toggle a submenu with\nsupport for additional levels of nested menus.\n\nTo create the menu bar, first add the component to the page:\n\n```html\n<vaadin-menu-bar></vaadin-menu-bar>\n```\n\nAnd then use [`items`](https://cdn.vaadin.com/vaadin-web-components/25.1.0-
|
|
19
|
+
"description": "`<vaadin-menu-bar>` is a Web Component providing a set of horizontally stacked buttons offering\nthe user quick access to a consistent set of commands. Each button can toggle a submenu with\nsupport for additional levels of nested menus.\n\nTo create the menu bar, first add the component to the page:\n\n```html\n<vaadin-menu-bar></vaadin-menu-bar>\n```\n\nAnd then use [`items`](https://cdn.vaadin.com/vaadin-web-components/25.1.0-alpha9/#/elements/vaadin-menu-bar#property-items) property to initialize the structure:\n\n```js\ndocument.querySelector('vaadin-menu-bar').items = [{text: 'File'}, {text: 'Edit'}];\n```\n\n### Styling\n\nThe following shadow DOM parts are exposed for styling:\n\nPart name | Description\n------------------|----------------\n`container` | The container wrapping menu bar buttons.\n\nThe following state attributes are available for styling:\n\nAttribute | Description\n--------------------|----------------------------------\n`disabled` | Set when the menu bar is disabled\n`has-single-button` | Set when there is only one button visible\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.\n\n### Internal components\n\nIn addition to `<vaadin-menu-bar>` itself, the following internal\ncomponents are themable:\n\n- `<vaadin-menu-bar-button>` - has the same API as [`<vaadin-button>`](https://cdn.vaadin.com/vaadin-web-components/25.1.0-alpha9/#/elements/vaadin-button).\n- `<vaadin-menu-bar-item>` - has the same API as [`<vaadin-item>`](https://cdn.vaadin.com/vaadin-web-components/25.1.0-alpha9/#/elements/vaadin-item).\n- `<vaadin-menu-bar-list-box>` - has the same API as [`<vaadin-list-box>`](https://cdn.vaadin.com/vaadin-web-components/25.1.0-alpha9/#/elements/vaadin-list-box).\n- `<vaadin-menu-bar-submenu>` - has the same API as [`<vaadin-context-menu>`](https://cdn.vaadin.com/vaadin-web-components/25.1.0-alpha9/#/elements/vaadin-context-menu).\n\nThe `<vaadin-menu-bar-item>` sub-menu elements have the following additional state attributes\non top of the built-in `<vaadin-item>` state attributes:\n\nAttribute | Description\n---------- |-------------\n`expanded` | Expanded parent item.",
|
|
20
20
|
"extension": true,
|
|
21
21
|
"attributes": [
|
|
22
22
|
{
|