@vaadin/custom-field 24.0.0-rc1 → 24.1.0-alpha1

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/README.md CHANGED
@@ -15,7 +15,7 @@ A web component for wrapping multiple components as a single field.
15
15
  </vaadin-custom-field>
16
16
  ```
17
17
 
18
- [<img src="https://raw.githubusercontent.com/vaadin/web-components/master/packages/custom-field/screenshot.png" width="401" alt="Screenshot of vaadin-custom-field">](https://vaadin.com/docs/latest/components/custom-field)
18
+ [<img src="https://raw.githubusercontent.com/vaadin/web-components/main/packages/custom-field/screenshot.png" width="401" alt="Screenshot of vaadin-custom-field">](https://vaadin.com/docs/latest/components/custom-field)
19
19
 
20
20
  ## Installation
21
21
 
@@ -34,7 +34,7 @@ import '@vaadin/custom-field';
34
34
  ## Themes
35
35
 
36
36
  Vaadin components come with two built-in [themes](https://vaadin.com/docs/latest/styling), Lumo and Material.
37
- The [main entrypoint](https://github.com/vaadin/web-components/blob/master/packages/custom-field/vaadin-custom-field.js) of the package uses the Lumo theme.
37
+ The [main entrypoint](https://github.com/vaadin/web-components/blob/main/packages/custom-field/vaadin-custom-field.js) of the package uses the Lumo theme.
38
38
 
39
39
  To use the Material theme, import the component from the `theme/material` folder:
40
40
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/custom-field",
3
- "version": "24.0.0-rc1",
3
+ "version": "24.1.0-alpha1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,30 +35,31 @@
35
35
  ],
36
36
  "dependencies": {
37
37
  "@polymer/polymer": "^3.0.0",
38
- "@vaadin/component-base": "24.0.0-rc1",
39
- "@vaadin/field-base": "24.0.0-rc1",
40
- "@vaadin/vaadin-lumo-styles": "24.0.0-rc1",
41
- "@vaadin/vaadin-material-styles": "24.0.0-rc1",
42
- "@vaadin/vaadin-themable-mixin": "24.0.0-rc1"
38
+ "@vaadin/a11y-base": "24.1.0-alpha1",
39
+ "@vaadin/component-base": "24.1.0-alpha1",
40
+ "@vaadin/field-base": "24.1.0-alpha1",
41
+ "@vaadin/vaadin-lumo-styles": "24.1.0-alpha1",
42
+ "@vaadin/vaadin-material-styles": "24.1.0-alpha1",
43
+ "@vaadin/vaadin-themable-mixin": "24.1.0-alpha1"
43
44
  },
44
45
  "devDependencies": {
45
46
  "@esm-bundle/chai": "^4.3.4",
46
- "@vaadin/combo-box": "24.0.0-rc1",
47
- "@vaadin/date-picker": "24.0.0-rc1",
48
- "@vaadin/email-field": "24.0.0-rc1",
49
- "@vaadin/form-layout": "24.0.0-rc1",
50
- "@vaadin/number-field": "24.0.0-rc1",
51
- "@vaadin/password-field": "24.0.0-rc1",
52
- "@vaadin/select": "24.0.0-rc1",
47
+ "@vaadin/combo-box": "24.1.0-alpha1",
48
+ "@vaadin/date-picker": "24.1.0-alpha1",
49
+ "@vaadin/email-field": "24.1.0-alpha1",
50
+ "@vaadin/form-layout": "24.1.0-alpha1",
51
+ "@vaadin/number-field": "24.1.0-alpha1",
52
+ "@vaadin/password-field": "24.1.0-alpha1",
53
+ "@vaadin/select": "24.1.0-alpha1",
53
54
  "@vaadin/testing-helpers": "^0.4.0",
54
- "@vaadin/text-area": "24.0.0-rc1",
55
- "@vaadin/text-field": "24.0.0-rc1",
56
- "@vaadin/time-picker": "24.0.0-rc1",
55
+ "@vaadin/text-area": "24.1.0-alpha1",
56
+ "@vaadin/text-field": "24.1.0-alpha1",
57
+ "@vaadin/time-picker": "24.1.0-alpha1",
57
58
  "sinon": "^13.0.2"
58
59
  },
59
60
  "web-types": [
60
61
  "web-types.json",
61
62
  "web-types.lit.json"
62
63
  ],
63
- "gitHead": "0b086e3596e400d8522b656eabc8ae44f0c483cb"
64
+ "gitHead": "599a339181595923b9ad6373d6888d8a79540141"
64
65
  }
@@ -3,9 +3,9 @@
3
3
  * Copyright (c) 2019 - 2023 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
+ import { FocusMixin } from '@vaadin/a11y-base/src/focus-mixin.js';
7
+ import { KeyboardMixin } from '@vaadin/a11y-base/src/keyboard-mixin.js';
6
8
  import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
7
- import { FocusMixin } from '@vaadin/component-base/src/focus-mixin.js';
8
- import { KeyboardMixin } from '@vaadin/component-base/src/keyboard-mixin.js';
9
9
  import { FieldMixin } from '@vaadin/field-base/src/field-mixin.js';
10
10
  import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
11
11
 
@@ -5,9 +5,9 @@
5
5
  */
6
6
  import { FlattenedNodesObserver } from '@polymer/polymer/lib/utils/flattened-nodes-observer.js';
7
7
  import { html, PolymerElement } from '@polymer/polymer/polymer-element.js';
8
+ import { FocusMixin } from '@vaadin/a11y-base/src/focus-mixin.js';
9
+ import { KeyboardMixin } from '@vaadin/a11y-base/src/keyboard-mixin.js';
8
10
  import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
9
- import { FocusMixin } from '@vaadin/component-base/src/focus-mixin.js';
10
- import { KeyboardMixin } from '@vaadin/component-base/src/keyboard-mixin.js';
11
11
  import { TooltipController } from '@vaadin/component-base/src/tooltip-controller.js';
12
12
  import { FieldMixin } from '@vaadin/field-base/src/field-mixin.js';
13
13
  import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/custom-field",
4
- "version": "24.0.0-rc1",
4
+ "version": "24.1.0-alpha1",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -78,7 +78,7 @@
78
78
  },
79
79
  {
80
80
  "name": "value",
81
- "description": "The value of the field. When wrapping several inputs, it will contain `\\t`\n(Tab character) as a delimiter indicating parts intended to be used as the\ncorresponding inputs values.\nUse the [`formatValue`](https://cdn.vaadin.com/vaadin-web-components/24.0.0-rc1/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/24.0.0-rc1/#/elements/vaadin-custom-field#property-parseValue)\nproperties to customize this behavior.",
81
+ "description": "The value of the field. When wrapping several inputs, it will contain `\\t`\n(Tab character) as a delimiter indicating parts intended to be used as the\ncorresponding inputs values.\nUse the [`formatValue`](https://cdn.vaadin.com/vaadin-web-components/24.1.0-alpha1/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/24.1.0-alpha1/#/elements/vaadin-custom-field#property-parseValue)\nproperties to customize this behavior.",
82
82
  "value": {
83
83
  "type": [
84
84
  "string",
@@ -169,7 +169,7 @@
169
169
  },
170
170
  {
171
171
  "name": "value",
172
- "description": "The value of the field. When wrapping several inputs, it will contain `\\t`\n(Tab character) as a delimiter indicating parts intended to be used as the\ncorresponding inputs values.\nUse the [`formatValue`](https://cdn.vaadin.com/vaadin-web-components/24.0.0-rc1/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/24.0.0-rc1/#/elements/vaadin-custom-field#property-parseValue)\nproperties to customize this behavior.",
172
+ "description": "The value of the field. When wrapping several inputs, it will contain `\\t`\n(Tab character) as a delimiter indicating parts intended to be used as the\ncorresponding inputs values.\nUse the [`formatValue`](https://cdn.vaadin.com/vaadin-web-components/24.1.0-alpha1/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/24.1.0-alpha1/#/elements/vaadin-custom-field#property-parseValue)\nproperties to customize this behavior.",
173
173
  "value": {
174
174
  "type": [
175
175
  "string",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/custom-field",
4
- "version": "24.0.0-rc1",
4
+ "version": "24.1.0-alpha1",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {
@@ -63,7 +63,7 @@
63
63
  },
64
64
  {
65
65
  "name": ".value",
66
- "description": "The value of the field. When wrapping several inputs, it will contain `\\t`\n(Tab character) as a delimiter indicating parts intended to be used as the\ncorresponding inputs values.\nUse the [`formatValue`](https://cdn.vaadin.com/vaadin-web-components/24.0.0-rc1/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/24.0.0-rc1/#/elements/vaadin-custom-field#property-parseValue)\nproperties to customize this behavior.",
66
+ "description": "The value of the field. When wrapping several inputs, it will contain `\\t`\n(Tab character) as a delimiter indicating parts intended to be used as the\ncorresponding inputs values.\nUse the [`formatValue`](https://cdn.vaadin.com/vaadin-web-components/24.1.0-alpha1/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/24.1.0-alpha1/#/elements/vaadin-custom-field#property-parseValue)\nproperties to customize this behavior.",
67
67
  "value": {
68
68
  "kind": "expression"
69
69
  }