@vaadin/field-base 24.8.0-alpha17 → 24.8.0-alpha19

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/field-base",
3
- "version": "24.8.0-alpha17",
3
+ "version": "24.8.0-alpha19",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -22,7 +22,9 @@
22
22
  "files": [
23
23
  "index.d.ts",
24
24
  "index.js",
25
- "src"
25
+ "src",
26
+ "!src/styles/*-base-styles.d.ts",
27
+ "!src/styles/*-base-styles.js"
26
28
  ],
27
29
  "keywords": [
28
30
  "Vaadin",
@@ -32,15 +34,15 @@
32
34
  "dependencies": {
33
35
  "@open-wc/dedupe-mixin": "^1.3.0",
34
36
  "@polymer/polymer": "^3.0.0",
35
- "@vaadin/a11y-base": "24.8.0-alpha17",
36
- "@vaadin/component-base": "24.8.0-alpha17",
37
+ "@vaadin/a11y-base": "24.8.0-alpha19",
38
+ "@vaadin/component-base": "24.8.0-alpha19",
37
39
  "lit": "^3.0.0"
38
40
  },
39
41
  "devDependencies": {
40
- "@vaadin/chai-plugins": "24.8.0-alpha17",
41
- "@vaadin/test-runner-commands": "24.8.0-alpha17",
42
+ "@vaadin/chai-plugins": "24.8.0-alpha19",
43
+ "@vaadin/test-runner-commands": "24.8.0-alpha19",
42
44
  "@vaadin/testing-helpers": "^1.1.0",
43
45
  "sinon": "^18.0.0"
44
46
  },
45
- "gitHead": "bf06d4d774049e0d19a3f008273864df15e085f6"
47
+ "gitHead": "b66da924889a1316f7881742a13b80e1c95a4cc4"
46
48
  }
@@ -5,4 +5,4 @@
5
5
  */
6
6
  import type { CSSResult } from 'lit';
7
7
 
8
- export const clearButton: CSSResult;
8
+ export const button: CSSResult;
@@ -5,7 +5,7 @@
5
5
  */
6
6
  import { css } from 'lit';
7
7
 
8
- export const clearButton = css`
8
+ export const button = css`
9
9
  [part='clear-button'] {
10
10
  display: none;
11
11
  cursor: default;
@@ -5,4 +5,4 @@
5
5
  */
6
6
  import type { CSSResult } from 'lit';
7
7
 
8
- export const fieldShared: CSSResult;
8
+ export const container: CSSResult;
@@ -5,7 +5,7 @@
5
5
  */
6
6
  import { css } from 'lit';
7
7
 
8
- export const inputFieldContainer = css`
8
+ export const container = css`
9
9
  [class$='container'] {
10
10
  display: flex;
11
11
  flex-direction: column;
@@ -5,4 +5,4 @@
5
5
  */
6
6
  import type { CSSResult } from 'lit';
7
7
 
8
- export const inputFieldContainer: CSSResult;
8
+ export const field: CSSResult;
@@ -5,7 +5,7 @@
5
5
  */
6
6
  import { css } from 'lit';
7
7
 
8
- export const fieldShared = css`
8
+ export const field = css`
9
9
  :host {
10
10
  display: inline-flex;
11
11
  outline: none;
@@ -3,8 +3,8 @@
3
3
  * Copyright (c) 2021 - 2025 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
- import { clearButton } from './clear-button-styles.js';
7
- import { fieldShared } from './field-shared-styles.js';
8
- import { inputFieldContainer } from './input-field-container-styles.js';
6
+ import { button } from './button-core-styles.js';
7
+ import { container } from './container-core-styles.js';
8
+ import { field } from './field-core-styles.js';
9
9
 
10
- export const inputFieldShared = [fieldShared, inputFieldContainer, clearButton];
10
+ export const inputFieldShared = [field, container, button];