@vaadin/app-layout 24.0.0-alpha7 → 24.0.0-alpha8
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 +8 -8
- package/src/detect-ios-navbar.js +1 -1
- package/src/vaadin-app-layout.d.ts +1 -1
- package/src/vaadin-app-layout.js +1 -1
- package/src/vaadin-drawer-toggle.d.ts +1 -1
- package/src/vaadin-drawer-toggle.js +1 -1
- package/theme/lumo/vaadin-app-layout-styles.js +6 -1
- package/theme/lumo/vaadin-drawer-toggle-styles.js +1 -1
- package/web-types.json +1 -77
- package/web-types.lit.json +1 -57
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/app-layout",
|
|
3
|
-
"version": "24.0.0-
|
|
3
|
+
"version": "24.0.0-alpha8",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@polymer/polymer": "^3.0.0",
|
|
39
|
-
"@vaadin/button": "24.0.0-
|
|
40
|
-
"@vaadin/component-base": "24.0.0-
|
|
41
|
-
"@vaadin/vaadin-lumo-styles": "24.0.0-
|
|
42
|
-
"@vaadin/vaadin-material-styles": "24.0.0-
|
|
43
|
-
"@vaadin/vaadin-themable-mixin": "24.0.0-
|
|
39
|
+
"@vaadin/button": "24.0.0-alpha8",
|
|
40
|
+
"@vaadin/component-base": "24.0.0-alpha8",
|
|
41
|
+
"@vaadin/vaadin-lumo-styles": "24.0.0-alpha8",
|
|
42
|
+
"@vaadin/vaadin-material-styles": "24.0.0-alpha8",
|
|
43
|
+
"@vaadin/vaadin-themable-mixin": "24.0.0-alpha8"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@esm-bundle/chai": "^4.3.4",
|
|
47
|
-
"@vaadin/tabs": "24.0.0-
|
|
47
|
+
"@vaadin/tabs": "24.0.0-alpha8",
|
|
48
48
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
49
49
|
"sinon": "^13.0.2"
|
|
50
50
|
},
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"web-types.json",
|
|
53
53
|
"web-types.lit.json"
|
|
54
54
|
],
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "476752249bb12295c500980d98a3256ad3b22b73"
|
|
56
56
|
}
|
package/src/detect-ios-navbar.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2018 -
|
|
3
|
+
* Copyright (c) 2018 - 2023 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 { isIOS } from '@vaadin/component-base/src/browser-utils.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2018 -
|
|
3
|
+
* Copyright (c) 2018 - 2023 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 { ControllerMixin } from '@vaadin/component-base/src/controller-mixin.js';
|
package/src/vaadin-app-layout.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2018 -
|
|
3
|
+
* Copyright (c) 2018 - 2023 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';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2018 -
|
|
3
|
+
* Copyright (c) 2018 - 2023 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 { FlattenedNodesObserver } from '@polymer/polymer/lib/utils/flattened-nodes-observer.js';
|
|
@@ -17,6 +17,11 @@ registerStyles(
|
|
|
17
17
|
border-bottom: 1px solid var(--lumo-contrast-10pct);
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
+
[part='navbar'][bottom] {
|
|
21
|
+
border-bottom: none;
|
|
22
|
+
border-top: 1px solid var(--lumo-contrast-10pct);
|
|
23
|
+
}
|
|
24
|
+
|
|
20
25
|
[part='drawer'] {
|
|
21
26
|
border-inline-end: 1px solid var(--lumo-contrast-10pct);
|
|
22
27
|
}
|
|
@@ -27,7 +32,7 @@ registerStyles(
|
|
|
27
32
|
}
|
|
28
33
|
|
|
29
34
|
:host([primary-section='navbar']) [part='navbar'] {
|
|
30
|
-
border
|
|
35
|
+
border: none;
|
|
31
36
|
background-image: linear-gradient(var(--lumo-contrast-5pct), var(--lumo-contrast-5pct));
|
|
32
37
|
}
|
|
33
38
|
|
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": "24.0.0-
|
|
4
|
+
"version": "24.0.0-alpha8",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -51,44 +51,6 @@
|
|
|
51
51
|
],
|
|
52
52
|
"js": {
|
|
53
53
|
"properties": [
|
|
54
|
-
{
|
|
55
|
-
"name": "rootPath",
|
|
56
|
-
"description": "",
|
|
57
|
-
"value": {
|
|
58
|
-
"type": [
|
|
59
|
-
"string"
|
|
60
|
-
]
|
|
61
|
-
}
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
"name": "importPath",
|
|
65
|
-
"description": "",
|
|
66
|
-
"value": {
|
|
67
|
-
"type": [
|
|
68
|
-
"string"
|
|
69
|
-
]
|
|
70
|
-
}
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
"name": "root",
|
|
74
|
-
"description": "",
|
|
75
|
-
"value": {
|
|
76
|
-
"type": [
|
|
77
|
-
"StampedTemplate",
|
|
78
|
-
"HTMLElement",
|
|
79
|
-
"ShadowRoot"
|
|
80
|
-
]
|
|
81
|
-
}
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
"name": "$",
|
|
85
|
-
"description": "",
|
|
86
|
-
"value": {
|
|
87
|
-
"type": [
|
|
88
|
-
"Object.<string, Element>"
|
|
89
|
-
]
|
|
90
|
-
}
|
|
91
|
-
},
|
|
92
54
|
{
|
|
93
55
|
"name": "i18n",
|
|
94
56
|
"description": "The object used to localize this component.\nTo change the default localization, replace the entire\n`i18n` object with a custom one.\n\nTo update individual properties, extend the existing i18n object as follows:\n```js\nappLayout.i18n = {\n ...appLayout.i18n,\n drawer: 'Drawer'\n}\n```\n\nThe object has the following structure and default values:\n```\n{\n drawer: 'Drawer'\n}\n```",
|
|
@@ -197,44 +159,6 @@
|
|
|
197
159
|
]
|
|
198
160
|
}
|
|
199
161
|
},
|
|
200
|
-
{
|
|
201
|
-
"name": "rootPath",
|
|
202
|
-
"description": "",
|
|
203
|
-
"value": {
|
|
204
|
-
"type": [
|
|
205
|
-
"string"
|
|
206
|
-
]
|
|
207
|
-
}
|
|
208
|
-
},
|
|
209
|
-
{
|
|
210
|
-
"name": "importPath",
|
|
211
|
-
"description": "",
|
|
212
|
-
"value": {
|
|
213
|
-
"type": [
|
|
214
|
-
"string"
|
|
215
|
-
]
|
|
216
|
-
}
|
|
217
|
-
},
|
|
218
|
-
{
|
|
219
|
-
"name": "root",
|
|
220
|
-
"description": "",
|
|
221
|
-
"value": {
|
|
222
|
-
"type": [
|
|
223
|
-
"StampedTemplate",
|
|
224
|
-
"HTMLElement",
|
|
225
|
-
"ShadowRoot"
|
|
226
|
-
]
|
|
227
|
-
}
|
|
228
|
-
},
|
|
229
|
-
{
|
|
230
|
-
"name": "$",
|
|
231
|
-
"description": "",
|
|
232
|
-
"value": {
|
|
233
|
-
"type": [
|
|
234
|
-
"Object.<string, Element>"
|
|
235
|
-
]
|
|
236
|
-
}
|
|
237
|
-
},
|
|
238
162
|
{
|
|
239
163
|
"name": "ariaLabel",
|
|
240
164
|
"description": "",
|
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/app-layout",
|
|
4
|
-
"version": "24.0.0-
|
|
4
|
+
"version": "24.0.0-alpha8",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"framework": "lit",
|
|
7
7
|
"framework-config": {
|
|
@@ -26,34 +26,6 @@
|
|
|
26
26
|
"kind": "expression"
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
|
-
{
|
|
30
|
-
"name": ".rootPath",
|
|
31
|
-
"description": "",
|
|
32
|
-
"value": {
|
|
33
|
-
"kind": "expression"
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
"name": ".importPath",
|
|
38
|
-
"description": "",
|
|
39
|
-
"value": {
|
|
40
|
-
"kind": "expression"
|
|
41
|
-
}
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"name": ".root",
|
|
45
|
-
"description": "",
|
|
46
|
-
"value": {
|
|
47
|
-
"kind": "expression"
|
|
48
|
-
}
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"name": ".$",
|
|
52
|
-
"description": "",
|
|
53
|
-
"value": {
|
|
54
|
-
"kind": "expression"
|
|
55
|
-
}
|
|
56
|
-
},
|
|
57
29
|
{
|
|
58
30
|
"name": ".i18n",
|
|
59
31
|
"description": "The object used to localize this component.\nTo change the default localization, replace the entire\n`i18n` object with a custom one.\n\nTo update individual properties, extend the existing i18n object as follows:\n```js\nappLayout.i18n = {\n ...appLayout.i18n,\n drawer: 'Drawer'\n}\n```\n\nThe object has the following structure and default values:\n```\n{\n drawer: 'Drawer'\n}\n```",
|
|
@@ -117,34 +89,6 @@
|
|
|
117
89
|
"kind": "expression"
|
|
118
90
|
}
|
|
119
91
|
},
|
|
120
|
-
{
|
|
121
|
-
"name": ".rootPath",
|
|
122
|
-
"description": "",
|
|
123
|
-
"value": {
|
|
124
|
-
"kind": "expression"
|
|
125
|
-
}
|
|
126
|
-
},
|
|
127
|
-
{
|
|
128
|
-
"name": ".importPath",
|
|
129
|
-
"description": "",
|
|
130
|
-
"value": {
|
|
131
|
-
"kind": "expression"
|
|
132
|
-
}
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
"name": ".root",
|
|
136
|
-
"description": "",
|
|
137
|
-
"value": {
|
|
138
|
-
"kind": "expression"
|
|
139
|
-
}
|
|
140
|
-
},
|
|
141
|
-
{
|
|
142
|
-
"name": ".$",
|
|
143
|
-
"description": "",
|
|
144
|
-
"value": {
|
|
145
|
-
"kind": "expression"
|
|
146
|
-
}
|
|
147
|
-
},
|
|
148
92
|
{
|
|
149
93
|
"name": ".ariaLabel",
|
|
150
94
|
"description": "",
|