@vaadin/app-layout 25.1.0-alpha6 → 25.1.0-alpha7

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.
@@ -0,0 +1,422 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "vaadin-drawer-toggle.js",
8
+ "declarations": [],
9
+ "exports": [
10
+ {
11
+ "kind": "js",
12
+ "name": "*",
13
+ "declaration": {
14
+ "name": "*",
15
+ "module": "src/vaadin-drawer-toggle.js"
16
+ }
17
+ }
18
+ ]
19
+ },
20
+ {
21
+ "kind": "javascript-module",
22
+ "path": "vaadin-app-layout.js",
23
+ "declarations": [],
24
+ "exports": [
25
+ {
26
+ "kind": "js",
27
+ "name": "*",
28
+ "declaration": {
29
+ "name": "*",
30
+ "module": "src/vaadin-app-layout.js"
31
+ }
32
+ }
33
+ ]
34
+ },
35
+ {
36
+ "kind": "javascript-module",
37
+ "path": "src/vaadin-app-layout-mixin.js",
38
+ "declarations": [
39
+ {
40
+ "kind": "mixin",
41
+ "description": "",
42
+ "name": "AppLayoutMixin",
43
+ "members": [
44
+ {
45
+ "kind": "field",
46
+ "name": "closeDrawerOn",
47
+ "privacy": "public",
48
+ "type": {
49
+ "text": "string"
50
+ },
51
+ "description": "A global event that causes the drawer to close (be hidden) when it is in overlay mode.\n- The default is `vaadin-router-location-changed` dispatched by Vaadin Router",
52
+ "attribute": "close-drawer-on"
53
+ },
54
+ {
55
+ "kind": "method",
56
+ "name": "dispatchCloseOverlayDrawerEvent",
57
+ "static": true,
58
+ "description": "Helper static method that dispatches a `close-overlay-drawer` event"
59
+ },
60
+ {
61
+ "kind": "field",
62
+ "name": "drawerOpened",
63
+ "privacy": "public",
64
+ "type": {
65
+ "text": "boolean"
66
+ },
67
+ "description": "Controls whether the drawer is opened (visible) or not.\nIts default value depends on the viewport:\n- `true`, for desktop size views\n- `false`, for mobile size views",
68
+ "attribute": "drawer-opened"
69
+ },
70
+ {
71
+ "kind": "field",
72
+ "name": "overlay",
73
+ "privacy": "public",
74
+ "type": {
75
+ "text": "boolean"
76
+ },
77
+ "description": "Drawer is an overlay on top of the content\nControlled via CSS using `--vaadin-app-layout-drawer-overlay: true|false`;",
78
+ "attribute": "overlay"
79
+ },
80
+ {
81
+ "kind": "field",
82
+ "name": "primarySection",
83
+ "privacy": "public",
84
+ "type": {
85
+ "text": "!PrimarySection"
86
+ },
87
+ "description": "Defines whether navbar or drawer will come first visually.\n- By default (`primary-section=\"navbar\"`), the navbar takes the full available width and moves the drawer down.\n- If `primary-section=\"drawer\"` is set, then the drawer will move the navbar, taking the full available height.",
88
+ "attribute": "primary-section"
89
+ }
90
+ ],
91
+ "attributes": [
92
+ {
93
+ "name": "close-drawer-on",
94
+ "type": {
95
+ "text": "string"
96
+ },
97
+ "description": "A global event that causes the drawer to close (be hidden) when it is in overlay mode.\n- The default is `vaadin-router-location-changed` dispatched by Vaadin Router",
98
+ "fieldName": "closeDrawerOn"
99
+ },
100
+ {
101
+ "name": "drawer-opened",
102
+ "type": {
103
+ "text": "boolean"
104
+ },
105
+ "description": "Controls whether the drawer is opened (visible) or not.\nIts default value depends on the viewport:\n- `true`, for desktop size views\n- `false`, for mobile size views",
106
+ "fieldName": "drawerOpened"
107
+ },
108
+ {
109
+ "name": "overlay",
110
+ "type": {
111
+ "text": "boolean"
112
+ },
113
+ "description": "Drawer is an overlay on top of the content\nControlled via CSS using `--vaadin-app-layout-drawer-overlay: true|false`;",
114
+ "fieldName": "overlay"
115
+ },
116
+ {
117
+ "name": "primary-section",
118
+ "type": {
119
+ "text": "!PrimarySection"
120
+ },
121
+ "description": "Defines whether navbar or drawer will come first visually.\n- By default (`primary-section=\"navbar\"`), the navbar takes the full available width and moves the drawer down.\n- If `primary-section=\"drawer\"` is set, then the drawer will move the navbar, taking the full available height.",
122
+ "fieldName": "primarySection"
123
+ }
124
+ ],
125
+ "mixins": [
126
+ {
127
+ "name": "I18nMixin",
128
+ "package": "@vaadin/component-base/src/i18n-mixin.js"
129
+ }
130
+ ],
131
+ "parameters": [
132
+ {
133
+ "name": "superclass"
134
+ }
135
+ ]
136
+ }
137
+ ],
138
+ "exports": [
139
+ {
140
+ "kind": "js",
141
+ "name": "AppLayoutMixin",
142
+ "declaration": {
143
+ "name": "AppLayoutMixin",
144
+ "module": "src/vaadin-app-layout-mixin.js"
145
+ }
146
+ }
147
+ ]
148
+ },
149
+ {
150
+ "kind": "javascript-module",
151
+ "path": "src/vaadin-app-layout.js",
152
+ "declarations": [
153
+ {
154
+ "kind": "class",
155
+ "description": "`<vaadin-app-layout>` is a Web Component providing a quick and easy way to get a common application layout structure done.\n\n```html\n<vaadin-app-layout primary-section=\"navbar|drawer\">\n <vaadin-drawer-toggle slot=\"navbar [touch-optimized]\"></vaadin-drawer-toggle>\n <h3 slot=\"navbar [touch-optimized]\">Company Name</h3>\n <vaadin-tabs orientation=\"vertical\" slot=\"drawer\">\n <vaadin-tab>Menu item 1</vaadin-tab>\n </vaadin-tabs>\n <!-- Everything else will be the page content -->\n <div>\n <h3>Page title</h3>\n <p>Page content</p>\n </div>\n</vaadin-app-layout>\n```\n\nFor best results, the component should be added to the root level of your application (i.e., as a direct child of `<body>`).\n\nThe page should include a viewport meta tag which contains `viewport-fit=cover`, like the following:\n```html\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1, viewport-fit=cover\">\n```\n\nThis causes the viewport to be scaled to fill the device display.\nTo ensure that important content is displayed, use the provided css variables:\n\n- `--safe-area-inset-top`\n- `--safe-area-inset-right`\n- `--safe-area-inset-bottom`\n- `--safe-area-inset-left`\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n-----------------|---------------------------------------------------------|\n`backdrop` | Backdrop covering the layout when drawer is open as an overlay\n`navbar` | Container for the navigation bar\n`navbar-top` | Container for the top navigation bar\n`navbar-bottom` | Container for the bottom navigation bar\n`drawer` | Container for the drawer area\n\nThe following state attributes are available for styling:\n\nAttribute | Description\n---------------|-------------\n`has-drawer` | Set when the element has light DOM content in the drawer slot.\n`has-navbar` | Set when the element has light DOM content in the navbar slot.\n\nThe following custom CSS properties are available for styling:\n\nCustom CSS property |\n:----------------------------------------------------|\n| `--vaadin-app-layout-drawer-background` |\n| `--vaadin-app-layout-drawer-width` |\n| `--vaadin-app-layout-navbar-background` |\n| `--vaadin-app-layout-navbar-gap` |\n| `--vaadin-app-layout-navbar-padding-bottom` |\n| `--vaadin-app-layout-navbar-padding-inline-end` |\n| `--vaadin-app-layout-navbar-padding-inline-start` |\n| `--vaadin-app-layout-navbar-padding-top` |\n| `--vaadin-app-layout-transition-duration` |\n| `--vaadin-overlay-backdrop-background` |\n| `--vaadin-overlay-shadow` |\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.\n\n### Component's slots\n\nThe following slots are available to be set\n\nSlot name | Description\n-------------------|---------------------------------------------------|\nno name | Default container for the page content\n`navbar ` | Container for the top navbar area\n`drawer` | Container for an application menu\n`touch-optimized` | Container for the bottom navbar area (only visible for mobile devices)\n\n#### Touch optimized\n\nApp Layout has a pseudo-slot `touch-optimized` in order to give more control of the presentation of\nelements with `slot[navbar]`. Internally, when the user is interacting with App Layout from a\ntouchscreen device, the component will search for elements with `slot[navbar touch-optimized]` and move\nthem to the bottom of the page.\n\n### Navigation\n\nAs the drawer opens as an overlay in small devices, it makes sense to close it once a navigation happens.\nIf you are using Vaadin Router, this will happen automatically unless you change the `closeDrawerOn` event name.\n\nIn order to do so, there are two options:\n- If the `vaadin-app-layout` instance is available, then `drawerOpened` can be set to `false`\n- If not, a custom event `close-overlay-drawer` can be dispatched either by calling\n `window.dispatchEvent(new CustomEvent('close-overlay-drawer'))` or by calling\n `AppLayout.dispatchCloseOverlayDrawerEvent()`\n\n### Scrolling areas\n\nBy default, the component will act with the \"body scrolling\", so on mobile (iOS Safari and Android Chrome),\nthe toolbars will collapse when a scroll happens.\n\nTo use the \"content scrolling\", in case of the content of the page relies on a pre-defined height (for instance,\nit has a `height:100%`), then the developer can set `height: 100%` to both `html` and `body`.\nThat will make the `[content]` element of app layout scrollable.\nOn this case, the toolbars on mobile device won't collapse.",
156
+ "name": "AppLayout",
157
+ "members": [
158
+ {
159
+ "kind": "field",
160
+ "name": "closeDrawerOn",
161
+ "privacy": "public",
162
+ "type": {
163
+ "text": "string"
164
+ },
165
+ "description": "A global event that causes the drawer to close (be hidden) when it is in overlay mode.\n- The default is `vaadin-router-location-changed` dispatched by Vaadin Router",
166
+ "attribute": "close-drawer-on",
167
+ "inheritedFrom": {
168
+ "name": "AppLayoutMixin",
169
+ "module": "src/vaadin-app-layout-mixin.js"
170
+ }
171
+ },
172
+ {
173
+ "kind": "method",
174
+ "name": "dispatchCloseOverlayDrawerEvent",
175
+ "static": true,
176
+ "description": "Helper static method that dispatches a `close-overlay-drawer` event",
177
+ "inheritedFrom": {
178
+ "name": "AppLayoutMixin",
179
+ "module": "src/vaadin-app-layout-mixin.js"
180
+ }
181
+ },
182
+ {
183
+ "kind": "field",
184
+ "name": "drawerOpened",
185
+ "privacy": "public",
186
+ "type": {
187
+ "text": "boolean"
188
+ },
189
+ "description": "Controls whether the drawer is opened (visible) or not.\nIts default value depends on the viewport:\n- `true`, for desktop size views\n- `false`, for mobile size views",
190
+ "attribute": "drawer-opened",
191
+ "inheritedFrom": {
192
+ "name": "AppLayoutMixin",
193
+ "module": "src/vaadin-app-layout-mixin.js"
194
+ }
195
+ },
196
+ {
197
+ "kind": "field",
198
+ "name": "overlay",
199
+ "privacy": "public",
200
+ "type": {
201
+ "text": "boolean"
202
+ },
203
+ "description": "Drawer is an overlay on top of the content\nControlled via CSS using `--vaadin-app-layout-drawer-overlay: true|false`;",
204
+ "attribute": "overlay",
205
+ "inheritedFrom": {
206
+ "name": "AppLayoutMixin",
207
+ "module": "src/vaadin-app-layout-mixin.js"
208
+ }
209
+ },
210
+ {
211
+ "kind": "field",
212
+ "name": "primarySection",
213
+ "privacy": "public",
214
+ "type": {
215
+ "text": "!PrimarySection"
216
+ },
217
+ "description": "Defines whether navbar or drawer will come first visually.\n- By default (`primary-section=\"navbar\"`), the navbar takes the full available width and moves the drawer down.\n- If `primary-section=\"drawer\"` is set, then the drawer will move the navbar, taking the full available height.",
218
+ "attribute": "primary-section",
219
+ "inheritedFrom": {
220
+ "name": "AppLayoutMixin",
221
+ "module": "src/vaadin-app-layout-mixin.js"
222
+ }
223
+ }
224
+ ],
225
+ "events": [
226
+ {
227
+ "type": {
228
+ "text": "CustomEvent"
229
+ },
230
+ "description": "Fired when the `drawerOpened` property changes.",
231
+ "name": "drawer-opened-changed"
232
+ },
233
+ {
234
+ "type": {
235
+ "text": "CustomEvent"
236
+ },
237
+ "description": "Fired when the `overlay` property changes.",
238
+ "name": "overlay-changed"
239
+ },
240
+ {
241
+ "type": {
242
+ "text": "CustomEvent"
243
+ },
244
+ "description": "Fired when the `primarySection` property changes.",
245
+ "name": "primary-section-changed"
246
+ }
247
+ ],
248
+ "mixins": [
249
+ {
250
+ "name": "AppLayoutMixin",
251
+ "module": "src/vaadin-app-layout-mixin.js"
252
+ },
253
+ {
254
+ "name": "ElementMixin",
255
+ "package": "@vaadin/component-base/src/element-mixin.js"
256
+ },
257
+ {
258
+ "name": "ThemableMixin",
259
+ "package": "@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js"
260
+ },
261
+ {
262
+ "name": "PolylitMixin",
263
+ "package": "@vaadin/component-base/src/polylit-mixin.js"
264
+ },
265
+ {
266
+ "name": "LumoInjectionMixin",
267
+ "package": "@vaadin/vaadin-themable-mixin/lumo-injection-mixin.js"
268
+ }
269
+ ],
270
+ "superclass": {
271
+ "name": "LitElement",
272
+ "package": "lit"
273
+ },
274
+ "tagName": "vaadin-app-layout",
275
+ "customElement": true,
276
+ "attributes": [
277
+ {
278
+ "name": "close-drawer-on",
279
+ "type": {
280
+ "text": "string"
281
+ },
282
+ "description": "A global event that causes the drawer to close (be hidden) when it is in overlay mode.\n- The default is `vaadin-router-location-changed` dispatched by Vaadin Router",
283
+ "fieldName": "closeDrawerOn",
284
+ "inheritedFrom": {
285
+ "name": "AppLayoutMixin",
286
+ "module": "src/vaadin-app-layout-mixin.js"
287
+ }
288
+ },
289
+ {
290
+ "name": "drawer-opened",
291
+ "type": {
292
+ "text": "boolean"
293
+ },
294
+ "description": "Controls whether the drawer is opened (visible) or not.\nIts default value depends on the viewport:\n- `true`, for desktop size views\n- `false`, for mobile size views",
295
+ "fieldName": "drawerOpened",
296
+ "inheritedFrom": {
297
+ "name": "AppLayoutMixin",
298
+ "module": "src/vaadin-app-layout-mixin.js"
299
+ }
300
+ },
301
+ {
302
+ "name": "overlay",
303
+ "type": {
304
+ "text": "boolean"
305
+ },
306
+ "description": "Drawer is an overlay on top of the content\nControlled via CSS using `--vaadin-app-layout-drawer-overlay: true|false`;",
307
+ "fieldName": "overlay",
308
+ "inheritedFrom": {
309
+ "name": "AppLayoutMixin",
310
+ "module": "src/vaadin-app-layout-mixin.js"
311
+ }
312
+ },
313
+ {
314
+ "name": "primary-section",
315
+ "type": {
316
+ "text": "!PrimarySection"
317
+ },
318
+ "description": "Defines whether navbar or drawer will come first visually.\n- By default (`primary-section=\"navbar\"`), the navbar takes the full available width and moves the drawer down.\n- If `primary-section=\"drawer\"` is set, then the drawer will move the navbar, taking the full available height.",
319
+ "fieldName": "primarySection",
320
+ "inheritedFrom": {
321
+ "name": "AppLayoutMixin",
322
+ "module": "src/vaadin-app-layout-mixin.js"
323
+ }
324
+ }
325
+ ]
326
+ }
327
+ ],
328
+ "exports": [
329
+ {
330
+ "kind": "js",
331
+ "name": "AppLayout",
332
+ "declaration": {
333
+ "name": "AppLayout",
334
+ "module": "src/vaadin-app-layout.js"
335
+ }
336
+ }
337
+ ]
338
+ },
339
+ {
340
+ "kind": "javascript-module",
341
+ "path": "src/vaadin-drawer-toggle.js",
342
+ "declarations": [
343
+ {
344
+ "kind": "class",
345
+ "description": "The Drawer Toggle component controls the drawer in App Layout component.\n\n```html\n<vaadin-app-layout>\n <vaadin-drawer-toggle slot=\"navbar\">Toggle drawer</vaadin-drawer-toggle>\n</vaadin-app-layout>\n```\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n-------------|------------\n`icon` | The icon element\n\nThe following state attributes are available for styling:\n\nAttribute | Description\n-------------|------------\n`focus-ring` | Set when the element is focused using the keyboard\n`focused` | Set when the element is focused\n\nThe following custom CSS properties are available for styling:\n\nCustom CSS property |\n:----------------------------------|\n| `--vaadin-button-background` |\n| `--vaadin-button-border-color` |\n| `--vaadin-button-border-radius` |\n| `--vaadin-button-border-width` |\n| `--vaadin-button-font-size` |\n| `--vaadin-button-line-height` |\n| `--vaadin-button-margin` |\n| `--vaadin-button-padding` |\n| `--vaadin-button-text-color` |\n| `--vaadin-icon-size` |\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
346
+ "name": "DrawerToggle",
347
+ "members": [
348
+ {
349
+ "kind": "field",
350
+ "name": "ariaLabel",
351
+ "privacy": "public",
352
+ "type": {
353
+ "text": "string"
354
+ },
355
+ "attribute": "aria-label"
356
+ }
357
+ ],
358
+ "attributes": [
359
+ {
360
+ "name": "aria-label",
361
+ "type": {
362
+ "text": "string"
363
+ },
364
+ "fieldName": "ariaLabel"
365
+ },
366
+ {
367
+ "name": "tabindex",
368
+ "type": {
369
+ "text": "number"
370
+ },
371
+ "description": "Indicates whether the element can be focused and where it participates in sequential keyboard navigation.",
372
+ "fieldName": "tabindex",
373
+ "inheritedFrom": {
374
+ "name": "TabindexMixin",
375
+ "package": "@vaadin/a11y-base/src/tabindex-mixin.js"
376
+ }
377
+ }
378
+ ],
379
+ "mixins": [
380
+ {
381
+ "name": "ButtonMixin",
382
+ "package": "@vaadin/button/src/vaadin-button-mixin.js"
383
+ },
384
+ {
385
+ "name": "DirMixin",
386
+ "package": "@vaadin/component-base/src/dir-mixin.js"
387
+ },
388
+ {
389
+ "name": "ThemableMixin",
390
+ "package": "@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js"
391
+ },
392
+ {
393
+ "name": "PolylitMixin",
394
+ "package": "@vaadin/component-base/src/polylit-mixin.js"
395
+ },
396
+ {
397
+ "name": "LumoInjectionMixin",
398
+ "package": "@vaadin/vaadin-themable-mixin/lumo-injection-mixin.js"
399
+ }
400
+ ],
401
+ "superclass": {
402
+ "name": "LitElement",
403
+ "package": "lit"
404
+ },
405
+ "tagName": "vaadin-drawer-toggle",
406
+ "customElement": true,
407
+ "events": []
408
+ }
409
+ ],
410
+ "exports": [
411
+ {
412
+ "kind": "js",
413
+ "name": "DrawerToggle",
414
+ "declaration": {
415
+ "name": "DrawerToggle",
416
+ "module": "src/vaadin-drawer-toggle.js"
417
+ }
418
+ }
419
+ ]
420
+ }
421
+ ]
422
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/app-layout",
3
- "version": "25.1.0-alpha6",
3
+ "version": "25.1.0-alpha7",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -23,6 +23,7 @@
23
23
  "src",
24
24
  "vaadin-*.d.ts",
25
25
  "vaadin-*.js",
26
+ "custom-elements.json",
26
27
  "web-types.json",
27
28
  "web-types.lit.json"
28
29
  ],
@@ -34,23 +35,24 @@
34
35
  ],
35
36
  "dependencies": {
36
37
  "@open-wc/dedupe-mixin": "^1.3.0",
37
- "@vaadin/a11y-base": "25.1.0-alpha6",
38
- "@vaadin/button": "25.1.0-alpha6",
39
- "@vaadin/component-base": "25.1.0-alpha6",
40
- "@vaadin/vaadin-themable-mixin": "25.1.0-alpha6",
38
+ "@vaadin/a11y-base": "25.1.0-alpha7",
39
+ "@vaadin/button": "25.1.0-alpha7",
40
+ "@vaadin/component-base": "25.1.0-alpha7",
41
+ "@vaadin/vaadin-themable-mixin": "25.1.0-alpha7",
41
42
  "lit": "^3.0.0"
42
43
  },
43
44
  "devDependencies": {
44
- "@vaadin/aura": "25.1.0-alpha6",
45
- "@vaadin/chai-plugins": "25.1.0-alpha6",
46
- "@vaadin/test-runner-commands": "25.1.0-alpha6",
45
+ "@vaadin/aura": "25.1.0-alpha7",
46
+ "@vaadin/chai-plugins": "25.1.0-alpha7",
47
+ "@vaadin/test-runner-commands": "25.1.0-alpha7",
47
48
  "@vaadin/testing-helpers": "^2.0.0",
48
- "@vaadin/vaadin-lumo-styles": "25.1.0-alpha6",
49
+ "@vaadin/vaadin-lumo-styles": "25.1.0-alpha7",
49
50
  "sinon": "^21.0.0"
50
51
  },
52
+ "customElements": "custom-elements.json",
51
53
  "web-types": [
52
54
  "web-types.json",
53
55
  "web-types.lit.json"
54
56
  ],
55
- "gitHead": "da6f4194492cbd77d18c6c1cd8d4d9f072e9ce8d"
57
+ "gitHead": "98c586125f769c8fefd307536965293668fda81d"
56
58
  }
@@ -126,7 +126,7 @@ import { AppLayoutMixin } from './vaadin-app-layout-mixin.js';
126
126
  * @fires {CustomEvent} overlay-changed - Fired when the `overlay` property changes.
127
127
  * @fires {CustomEvent} primary-section-changed - Fired when the `primarySection` property changes.
128
128
  *
129
- * @customElement
129
+ * @customElement vaadin-app-layout
130
130
  * @extends HTMLElement
131
131
  * @mixes AppLayoutMixin
132
132
  * @mixes ElementMixin
@@ -55,7 +55,7 @@ import { drawerToggle } from './styles/vaadin-drawer-toggle-base-styles.js';
55
55
  *
56
56
  * See [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.
57
57
  *
58
- * @customElement
58
+ * @customElement vaadin-drawer-toggle
59
59
  * @extends HTMLElement
60
60
  * @mixes ButtonMixin
61
61
  * @mixes DirMixin
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/app-layout",
4
- "version": "25.1.0-alpha6",
4
+ "version": "25.1.0-alpha7",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/app-layout",
4
- "version": "25.1.0-alpha6",
4
+ "version": "25.1.0-alpha7",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {