@vaadin/vertical-layout 25.1.0-alpha6 → 25.1.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/custom-elements.json +69 -0
- package/package.json +10 -8
- package/src/vaadin-vertical-layout.js +1 -1
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": "1.0.0",
|
|
3
|
+
"readme": "",
|
|
4
|
+
"modules": [
|
|
5
|
+
{
|
|
6
|
+
"kind": "javascript-module",
|
|
7
|
+
"path": "vaadin-vertical-layout.js",
|
|
8
|
+
"declarations": [],
|
|
9
|
+
"exports": [
|
|
10
|
+
{
|
|
11
|
+
"kind": "js",
|
|
12
|
+
"name": "*",
|
|
13
|
+
"declaration": {
|
|
14
|
+
"name": "*",
|
|
15
|
+
"module": "src/vaadin-vertical-layout.js"
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
]
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"kind": "javascript-module",
|
|
22
|
+
"path": "src/vaadin-vertical-layout.js",
|
|
23
|
+
"declarations": [
|
|
24
|
+
{
|
|
25
|
+
"kind": "class",
|
|
26
|
+
"description": "`<vaadin-vertical-layout>` provides a simple way to vertically align your HTML elements.\n\n```html\n<vaadin-vertical-layout>\n <div>Item 1</div>\n <div>Item 2</div>\n</vaadin-vertical-layout>\n```\n\n### Built-in Theme Variations\n\n`<vaadin-vertical-layout>` supports the following theme variations:\n\nTheme variation | Description\n-------------------|---------------\n`theme=\"margin\"` | Applies the default amount of CSS margin for the host element\n`theme=\"padding\"` | Applies the default amount of CSS padding for the host element\n`theme=\"spacing\"` | Applies the default amount of CSS margin between items\n`theme=\"wrap\"` | Items wrap to the next row when they exceed the layout width\n\n### Custom CSS Properties\n\nThe following custom CSS properties are available for styling:\n\nCustom CSS property | Description\n-----------------------------------|-------------\n`--vaadin-vertical-layout-margin` | The default CSS margin applied when using `theme=\"margin\"`\n`--vaadin-vertical-layout-padding` | The default CSS padding applied when using `theme=\"padding\"`\n`--vaadin-vertical-layout-gap` | The default CSS gap applied when using `theme=\"spacing\"`\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
|
|
27
|
+
"name": "VerticalLayout",
|
|
28
|
+
"members": [],
|
|
29
|
+
"mixins": [
|
|
30
|
+
{
|
|
31
|
+
"name": "ThemableMixin",
|
|
32
|
+
"package": "@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "ElementMixin",
|
|
36
|
+
"package": "@vaadin/component-base/src/element-mixin.js"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "PolylitMixin",
|
|
40
|
+
"package": "@vaadin/component-base/src/polylit-mixin.js"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "LumoInjectionMixin",
|
|
44
|
+
"package": "@vaadin/vaadin-themable-mixin/lumo-injection-mixin.js"
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"superclass": {
|
|
48
|
+
"name": "LitElement",
|
|
49
|
+
"package": "lit"
|
|
50
|
+
},
|
|
51
|
+
"tagName": "vaadin-vertical-layout",
|
|
52
|
+
"customElement": true,
|
|
53
|
+
"attributes": [],
|
|
54
|
+
"events": []
|
|
55
|
+
}
|
|
56
|
+
],
|
|
57
|
+
"exports": [
|
|
58
|
+
{
|
|
59
|
+
"kind": "js",
|
|
60
|
+
"name": "VerticalLayout",
|
|
61
|
+
"declaration": {
|
|
62
|
+
"name": "VerticalLayout",
|
|
63
|
+
"module": "src/vaadin-vertical-layout.js"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
]
|
|
67
|
+
}
|
|
68
|
+
]
|
|
69
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/vertical-layout",
|
|
3
|
-
"version": "25.1.0-
|
|
3
|
+
"version": "25.1.0-alpha8",
|
|
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
|
],
|
|
@@ -33,20 +34,21 @@
|
|
|
33
34
|
"web-component"
|
|
34
35
|
],
|
|
35
36
|
"dependencies": {
|
|
36
|
-
"@vaadin/component-base": "25.1.0-
|
|
37
|
-
"@vaadin/vaadin-themable-mixin": "25.1.0-
|
|
37
|
+
"@vaadin/component-base": "25.1.0-alpha8",
|
|
38
|
+
"@vaadin/vaadin-themable-mixin": "25.1.0-alpha8",
|
|
38
39
|
"lit": "^3.0.0"
|
|
39
40
|
},
|
|
40
41
|
"devDependencies": {
|
|
41
|
-
"@vaadin/aura": "25.1.0-
|
|
42
|
-
"@vaadin/chai-plugins": "25.1.0-
|
|
43
|
-
"@vaadin/test-runner-commands": "25.1.0-
|
|
42
|
+
"@vaadin/aura": "25.1.0-alpha8",
|
|
43
|
+
"@vaadin/chai-plugins": "25.1.0-alpha8",
|
|
44
|
+
"@vaadin/test-runner-commands": "25.1.0-alpha8",
|
|
44
45
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
45
|
-
"@vaadin/vaadin-lumo-styles": "25.1.0-
|
|
46
|
+
"@vaadin/vaadin-lumo-styles": "25.1.0-alpha8"
|
|
46
47
|
},
|
|
48
|
+
"customElements": "custom-elements.json",
|
|
47
49
|
"web-types": [
|
|
48
50
|
"web-types.json",
|
|
49
51
|
"web-types.lit.json"
|
|
50
52
|
],
|
|
51
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "810590c9c7682a9326c9352df795b5ea4891a71f"
|
|
52
54
|
}
|
|
@@ -44,7 +44,7 @@ import { verticalLayoutStyles } from './styles/vaadin-vertical-layout-base-style
|
|
|
44
44
|
*
|
|
45
45
|
* See [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.
|
|
46
46
|
*
|
|
47
|
-
* @customElement
|
|
47
|
+
* @customElement vaadin-vertical-layout
|
|
48
48
|
* @extends HTMLElement
|
|
49
49
|
* @mixes ThemableMixin
|
|
50
50
|
* @mixes ElementMixin
|
package/web-types.json
CHANGED
package/web-types.lit.json
CHANGED