@vaadin/split-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.
@@ -129,6 +129,39 @@
129
129
  }
130
130
  }
131
131
  ],
132
+ "attributes": [
133
+ {
134
+ "name": "i18n",
135
+ "type": {
136
+ "text": "Object"
137
+ },
138
+ "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.",
139
+ "fieldName": "i18n",
140
+ "inheritedFrom": {
141
+ "name": "I18nMixin",
142
+ "package": "@vaadin/component-base/src/i18n-mixin.js"
143
+ }
144
+ },
145
+ {
146
+ "name": "orientation",
147
+ "type": {
148
+ "text": "string"
149
+ },
150
+ "description": "The split layout's orientation. Possible values are: `horizontal|vertical`.",
151
+ "fieldName": "orientation",
152
+ "inheritedFrom": {
153
+ "name": "SplitLayoutMixin",
154
+ "module": "src/vaadin-split-layout-mixin.js"
155
+ }
156
+ },
157
+ {
158
+ "type": {
159
+ "text": "string"
160
+ },
161
+ "description": "The theme variants to apply to the component.",
162
+ "name": "theme"
163
+ }
164
+ ],
132
165
  "mixins": [
133
166
  {
134
167
  "name": "SplitLayoutMixin",
@@ -168,33 +201,7 @@
168
201
  "package": "lit"
169
202
  },
170
203
  "tagName": "vaadin-split-layout",
171
- "customElement": true,
172
- "attributes": [
173
- {
174
- "name": "i18n",
175
- "type": {
176
- "text": "Object"
177
- },
178
- "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.",
179
- "fieldName": "i18n",
180
- "inheritedFrom": {
181
- "name": "I18nMixin",
182
- "package": "@vaadin/component-base/src/i18n-mixin.js"
183
- }
184
- },
185
- {
186
- "name": "orientation",
187
- "type": {
188
- "text": "string"
189
- },
190
- "description": "The split layout's orientation. Possible values are: `horizontal|vertical`.",
191
- "fieldName": "orientation",
192
- "inheritedFrom": {
193
- "name": "SplitLayoutMixin",
194
- "module": "src/vaadin-split-layout-mixin.js"
195
- }
196
- }
197
- ]
204
+ "customElement": true
198
205
  }
199
206
  ],
200
207
  "exports": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/split-layout",
3
- "version": "25.3.0-alpha7",
3
+ "version": "25.3.0-dev.1fa5a51482",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,17 +35,17 @@
35
35
  ],
36
36
  "dependencies": {
37
37
  "@open-wc/dedupe-mixin": "^1.3.0",
38
- "@vaadin/a11y-base": "25.3.0-alpha7",
39
- "@vaadin/component-base": "25.3.0-alpha7",
40
- "@vaadin/vaadin-themable-mixin": "25.3.0-alpha7",
38
+ "@vaadin/a11y-base": "25.3.0-dev.1fa5a51482",
39
+ "@vaadin/component-base": "25.3.0-dev.1fa5a51482",
40
+ "@vaadin/vaadin-themable-mixin": "25.3.0-dev.1fa5a51482",
41
41
  "lit": "^3.0.0"
42
42
  },
43
43
  "devDependencies": {
44
- "@vaadin/aura": "25.3.0-alpha7",
45
- "@vaadin/chai-plugins": "25.3.0-alpha7",
46
- "@vaadin/test-runner-commands": "25.3.0-alpha7",
44
+ "@vaadin/aura": "25.3.0-dev.1fa5a51482",
45
+ "@vaadin/chai-plugins": "25.3.0-dev.1fa5a51482",
46
+ "@vaadin/test-runner-commands": "25.3.0-dev.1fa5a51482",
47
47
  "@vaadin/testing-helpers": "^2.0.0",
48
- "@vaadin/vaadin-lumo-styles": "25.3.0-alpha7",
48
+ "@vaadin/vaadin-lumo-styles": "25.3.0-dev.1fa5a51482",
49
49
  "sinon": "^22.0.0"
50
50
  },
51
51
  "customElements": "custom-elements.json",
@@ -53,5 +53,5 @@
53
53
  "web-types.json",
54
54
  "web-types.lit.json"
55
55
  ],
56
- "gitHead": "ae7b9823df5598faebd7a482993029ee489c35ae"
56
+ "gitHead": "1cd5964b758ffbce3ddb6248a1997f55f8e0ebf6"
57
57
  }
@@ -186,6 +186,7 @@ const DEFAULT_I18N = {
186
186
  *
187
187
  * @fires {Event} splitter-dragend - Fired after resizing the splitter via pointer or keyboard has ended.
188
188
  *
189
+ * @attr {string} theme - The theme variants to apply to the component.
189
190
  * @customElement vaadin-split-layout
190
191
  * @extends HTMLElement
191
192
  */
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/split-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": {
@@ -24,9 +24,7 @@
24
24
  "description": "The theme variants to apply to the component.",
25
25
  "value": {
26
26
  "type": [
27
- "string",
28
- "null",
29
- "undefined"
27
+ "string"
30
28
  ]
31
29
  }
32
30
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/split-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": {