@vaadin/input-container 24.8.5 → 24.9.0-alpha2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/input-container",
3
- "version": "24.8.5",
3
+ "version": "24.9.0-alpha2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -32,19 +32,19 @@
32
32
  ],
33
33
  "dependencies": {
34
34
  "@polymer/polymer": "^3.0.0",
35
- "@vaadin/component-base": "~24.8.5",
36
- "@vaadin/vaadin-lumo-styles": "~24.8.5",
37
- "@vaadin/vaadin-material-styles": "~24.8.5",
38
- "@vaadin/vaadin-themable-mixin": "~24.8.5",
35
+ "@vaadin/component-base": "24.9.0-alpha2",
36
+ "@vaadin/vaadin-lumo-styles": "24.9.0-alpha2",
37
+ "@vaadin/vaadin-material-styles": "24.9.0-alpha2",
38
+ "@vaadin/vaadin-themable-mixin": "24.9.0-alpha2",
39
39
  "lit": "^3.0.0"
40
40
  },
41
41
  "devDependencies": {
42
- "@vaadin/chai-plugins": "~24.8.5",
43
- "@vaadin/icon": "~24.8.5",
44
- "@vaadin/icons": "~24.8.5",
45
- "@vaadin/test-runner-commands": "~24.8.5",
42
+ "@vaadin/chai-plugins": "24.9.0-alpha2",
43
+ "@vaadin/icon": "24.9.0-alpha2",
44
+ "@vaadin/icons": "24.9.0-alpha2",
45
+ "@vaadin/test-runner-commands": "24.9.0-alpha2",
46
46
  "@vaadin/testing-helpers": "^1.1.0",
47
47
  "sinon": "^18.0.0"
48
48
  },
49
- "gitHead": "a519b0d2b1d09d1ddaa4ff6829819f8a2be30ad8"
49
+ "gitHead": "dd99dece1b54942ab0e421892b089e506822c5f5"
50
50
  }
@@ -1,47 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright (c) 2021 - 2025 Vaadin Ltd.
4
- * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
- */
6
- import { html, LitElement } from 'lit';
7
- import { defineCustomElement } from '@vaadin/component-base/src/define.js';
8
- import { DirMixin } from '@vaadin/component-base/src/dir-mixin.js';
9
- import { PolylitMixin } from '@vaadin/component-base/src/polylit-mixin.js';
10
- import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
11
- import { inputContainerStyles } from './vaadin-input-container-core-styles.js';
12
- import { InputContainerMixin } from './vaadin-input-container-mixin.js';
13
-
14
- /**
15
- * LitElement based version of `<vaadin-input-container>` web component.
16
- *
17
- * ## Disclaimer
18
- *
19
- * This component is an experiment and not yet a part of Vaadin platform.
20
- * There is no ETA regarding specific Vaadin version where it'll land.
21
- * Feel free to try this code in your apps as per Apache 2.0 license.
22
- *
23
- * @extends HTMLElement
24
- * @mixes ThemableMixin
25
- * @mixes DirMixin
26
- * @mixes InputContainerMixin
27
- */
28
- export class InputContainer extends InputContainerMixin(ThemableMixin(DirMixin(PolylitMixin(LitElement)))) {
29
- static get is() {
30
- return 'vaadin-input-container';
31
- }
32
-
33
- static get styles() {
34
- return inputContainerStyles;
35
- }
36
-
37
- /** @protected */
38
- render() {
39
- return html`
40
- <slot name="prefix"></slot>
41
- <slot></slot>
42
- <slot name="suffix"></slot>
43
- `;
44
- }
45
- }
46
-
47
- defineCustomElement(InputContainer);