@vaadin/horizontal-layout 25.3.0-alpha7 → 25.3.0-dev.1fa5a51482

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.
@@ -53,6 +53,15 @@
53
53
  "description": "`<vaadin-horizontal-layout>` provides a simple way to horizontally align your HTML elements.\n\n```html\n<vaadin-horizontal-layout>\n <div>Item 1</div>\n <div>Item 2</div>\n</vaadin-horizontal-layout>\n```\n\n### Built-in Theme Variations\n\n`<vaadin-horizontal-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### Component's slots\n\nThe following slots are available to be set:\n\nSlot name | Description\n-------------------|---------------\nno name | Default slot\n`middle` | Slot for the content placed in the middle\n`end` | Slot for the content placed at the end\n\n### Custom CSS Properties\n\nThe following custom CSS properties are available for styling:\n\nCustom CSS property | Description\n-------------------------------------|-------------\n`--vaadin-horizontal-layout-margin` | The default CSS margin applied when using `theme=\"margin\"`\n`--vaadin-horizontal-layout-padding` | The default CSS padding applied when using `theme=\"padding\"`\n`--vaadin-horizontal-layout-gap` | The default CSS gap applied when using `theme=\"spacing\"`\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
54
54
  "name": "HorizontalLayout",
55
55
  "members": [],
56
+ "attributes": [
57
+ {
58
+ "type": {
59
+ "text": "string"
60
+ },
61
+ "description": "The theme variants to apply to the component.",
62
+ "name": "theme"
63
+ }
64
+ ],
56
65
  "mixins": [
57
66
  {
58
67
  "name": "HorizontalLayoutMixin",
@@ -81,7 +90,6 @@
81
90
  },
82
91
  "tagName": "vaadin-horizontal-layout",
83
92
  "customElement": true,
84
- "attributes": [],
85
93
  "events": []
86
94
  }
87
95
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/horizontal-layout",
3
- "version": "25.3.0-alpha7",
3
+ "version": "25.3.0-dev.1fa5a51482",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,21 +35,21 @@
35
35
  ],
36
36
  "dependencies": {
37
37
  "@open-wc/dedupe-mixin": "^1.3.0",
38
- "@vaadin/component-base": "25.3.0-alpha7",
39
- "@vaadin/vaadin-themable-mixin": "25.3.0-alpha7",
38
+ "@vaadin/component-base": "25.3.0-dev.1fa5a51482",
39
+ "@vaadin/vaadin-themable-mixin": "25.3.0-dev.1fa5a51482",
40
40
  "lit": "^3.0.0"
41
41
  },
42
42
  "devDependencies": {
43
- "@vaadin/aura": "25.3.0-alpha7",
44
- "@vaadin/chai-plugins": "25.3.0-alpha7",
45
- "@vaadin/test-runner-commands": "25.3.0-alpha7",
43
+ "@vaadin/aura": "25.3.0-dev.1fa5a51482",
44
+ "@vaadin/chai-plugins": "25.3.0-dev.1fa5a51482",
45
+ "@vaadin/test-runner-commands": "25.3.0-dev.1fa5a51482",
46
46
  "@vaadin/testing-helpers": "^2.0.0",
47
- "@vaadin/vaadin-lumo-styles": "25.3.0-alpha7"
47
+ "@vaadin/vaadin-lumo-styles": "25.3.0-dev.1fa5a51482"
48
48
  },
49
49
  "customElements": "custom-elements.json",
50
50
  "web-types": [
51
51
  "web-types.json",
52
52
  "web-types.lit.json"
53
53
  ],
54
- "gitHead": "ae7b9823df5598faebd7a482993029ee489c35ae"
54
+ "gitHead": "1cd5964b758ffbce3ddb6248a1997f55f8e0ebf6"
55
55
  }
@@ -55,6 +55,7 @@ import { HorizontalLayoutMixin } from './vaadin-horizontal-layout-mixin.js';
55
55
  *
56
56
  * See [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.
57
57
  *
58
+ * @attr {string} theme - The theme variants to apply to the component.
58
59
  * @customElement vaadin-horizontal-layout
59
60
  * @extends HTMLElement
60
61
  */
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/horizontal-layout",
4
- "version": "25.3.0-alpha7",
4
+ "version": "25.3.0-dev.1fa5a51482",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -15,9 +15,7 @@
15
15
  "description": "The theme variants to apply to the component.",
16
16
  "value": {
17
17
  "type": [
18
- "string",
19
- "null",
20
- "undefined"
18
+ "string"
21
19
  ]
22
20
  }
23
21
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/horizontal-layout",
4
- "version": "25.3.0-alpha7",
4
+ "version": "25.3.0-dev.1fa5a51482",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {