@vaadin/field-base 23.0.0-beta1 → 23.0.0-beta2
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 +3 -3
- package/src/delegate-focus-mixin.d.ts +6 -1
- package/src/delegate-focus-mixin.js +53 -5
- package/src/error-controller.d.ts +36 -0
- package/src/error-controller.js +134 -0
- package/src/field-mixin.js +17 -68
- package/src/input-control-mixin.js +10 -7
- package/src/shadow-focus-mixin.js +15 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/field-base",
|
|
3
|
-
"version": "23.0.0-
|
|
3
|
+
"version": "23.0.0-beta2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
34
34
|
"@polymer/polymer": "^3.0.0",
|
|
35
|
-
"@vaadin/component-base": "23.0.0-
|
|
35
|
+
"@vaadin/component-base": "23.0.0-beta2",
|
|
36
36
|
"lit": "^2.0.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
41
41
|
"sinon": "^9.2.1"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "a276f7a0fd00e5459b87267468e0dd0d4fb6f7f3"
|
|
44
44
|
}
|
|
@@ -6,13 +6,18 @@
|
|
|
6
6
|
import { Constructor } from '@open-wc/dedupe-mixin';
|
|
7
7
|
import { DisabledMixinClass } from '@vaadin/component-base/src/disabled-mixin.js';
|
|
8
8
|
import { FocusMixinClass } from '@vaadin/component-base/src/focus-mixin.js';
|
|
9
|
+
import { TabindexMixinClass } from '@vaadin/component-base/src/tabindex-mixin.js';
|
|
9
10
|
|
|
10
11
|
/**
|
|
11
12
|
* A mixin to forward focus to an element in the light DOM.
|
|
12
13
|
*/
|
|
13
14
|
export declare function DelegateFocusMixin<T extends Constructor<HTMLElement>>(
|
|
14
15
|
base: T
|
|
15
|
-
): T &
|
|
16
|
+
): T &
|
|
17
|
+
Constructor<DelegateFocusMixinClass> &
|
|
18
|
+
Constructor<DisabledMixinClass> &
|
|
19
|
+
Constructor<FocusMixinClass> &
|
|
20
|
+
Constructor<TabindexMixinClass>;
|
|
16
21
|
|
|
17
22
|
export declare class DelegateFocusMixinClass {
|
|
18
23
|
/**
|
|
@@ -4,19 +4,19 @@
|
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { dedupingMixin } from '@polymer/polymer/lib/utils/mixin.js';
|
|
7
|
-
import { DisabledMixin } from '@vaadin/component-base/src/disabled-mixin.js';
|
|
8
7
|
import { FocusMixin } from '@vaadin/component-base/src/focus-mixin.js';
|
|
8
|
+
import { TabindexMixin } from '@vaadin/component-base/src/tabindex-mixin.js';
|
|
9
9
|
|
|
10
10
|
/**
|
|
11
11
|
* A mixin to forward focus to an element in the light DOM.
|
|
12
12
|
*
|
|
13
13
|
* @polymerMixin
|
|
14
|
-
* @mixes DisabledMixin
|
|
15
14
|
* @mixes FocusMixin
|
|
15
|
+
* @mixes TabindexMixin
|
|
16
16
|
*/
|
|
17
17
|
export const DelegateFocusMixin = dedupingMixin(
|
|
18
18
|
(superclass) =>
|
|
19
|
-
class DelegateFocusMixinClass extends FocusMixin(
|
|
19
|
+
class DelegateFocusMixinClass extends FocusMixin(TabindexMixin(superclass)) {
|
|
20
20
|
static get properties() {
|
|
21
21
|
return {
|
|
22
22
|
/**
|
|
@@ -40,6 +40,19 @@ export const DelegateFocusMixin = dedupingMixin(
|
|
|
40
40
|
type: Object,
|
|
41
41
|
readOnly: true,
|
|
42
42
|
observer: '_focusElementChanged'
|
|
43
|
+
},
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Indicates whether the element can be focused and where it participates in sequential keyboard navigation.
|
|
47
|
+
*
|
|
48
|
+
* By default, the host element does not have tabindex attribute. Instead, `focusElement` should have it.
|
|
49
|
+
* Toggling `tabindex` attribute on the host element propagates its value to `focusElement`.
|
|
50
|
+
*
|
|
51
|
+
* @protected
|
|
52
|
+
*/
|
|
53
|
+
tabindex: {
|
|
54
|
+
type: Number,
|
|
55
|
+
value: undefined
|
|
43
56
|
}
|
|
44
57
|
};
|
|
45
58
|
}
|
|
@@ -103,6 +116,7 @@ export const DelegateFocusMixin = dedupingMixin(
|
|
|
103
116
|
if (element) {
|
|
104
117
|
element.disabled = this.disabled;
|
|
105
118
|
this._addFocusListeners(element);
|
|
119
|
+
this.__forwardTabIndex(this.tabindex);
|
|
106
120
|
} else if (oldElement) {
|
|
107
121
|
this._removeFocusListeners(oldElement);
|
|
108
122
|
}
|
|
@@ -162,10 +176,12 @@ export const DelegateFocusMixin = dedupingMixin(
|
|
|
162
176
|
|
|
163
177
|
/**
|
|
164
178
|
* @param {boolean} disabled
|
|
179
|
+
* @param {boolean} oldDisabled
|
|
165
180
|
* @protected
|
|
181
|
+
* @override
|
|
166
182
|
*/
|
|
167
|
-
_disabledChanged(disabled) {
|
|
168
|
-
super._disabledChanged(disabled);
|
|
183
|
+
_disabledChanged(disabled, oldDisabled) {
|
|
184
|
+
super._disabledChanged(disabled, oldDisabled);
|
|
169
185
|
|
|
170
186
|
if (this.focusElement) {
|
|
171
187
|
this.focusElement.disabled = disabled;
|
|
@@ -175,5 +191,37 @@ export const DelegateFocusMixin = dedupingMixin(
|
|
|
175
191
|
this.blur();
|
|
176
192
|
}
|
|
177
193
|
}
|
|
194
|
+
|
|
195
|
+
/**
|
|
196
|
+
* Override an observer from `TabindexMixin`.
|
|
197
|
+
* Do not call super to remove tabindex attribute
|
|
198
|
+
* from the host after it has been forwarded.
|
|
199
|
+
* @param {string} tabindex
|
|
200
|
+
* @protected
|
|
201
|
+
* @override
|
|
202
|
+
*/
|
|
203
|
+
_tabindexChanged(tabindex) {
|
|
204
|
+
this.__forwardTabIndex(tabindex);
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
/** @private */
|
|
208
|
+
__forwardTabIndex(tabindex) {
|
|
209
|
+
if (tabindex !== undefined && this.focusElement) {
|
|
210
|
+
this.focusElement.tabIndex = tabindex;
|
|
211
|
+
|
|
212
|
+
// Preserve tabindex="-1" on the host element
|
|
213
|
+
if (tabindex !== -1) {
|
|
214
|
+
this.tabindex = undefined;
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
if (this.disabled && tabindex) {
|
|
219
|
+
// If tabindex attribute was changed while component was disabled
|
|
220
|
+
if (tabindex !== -1) {
|
|
221
|
+
this.__lastTabIndex = tabindex;
|
|
222
|
+
}
|
|
223
|
+
this.tabindex = undefined;
|
|
224
|
+
}
|
|
225
|
+
}
|
|
178
226
|
}
|
|
179
227
|
);
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2021 - 2022 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
import { SlotController } from '@vaadin/component-base/src/slot-controller.js';
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* A controller that manages the error message node content.
|
|
10
|
+
*/
|
|
11
|
+
export class ErrorController extends SlotController {
|
|
12
|
+
/**
|
|
13
|
+
* ID attribute value set on the error message element.
|
|
14
|
+
*/
|
|
15
|
+
readonly errorId: string;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* String used for the error message text content.
|
|
19
|
+
*/
|
|
20
|
+
protected errorMessage: string | null | undefined;
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Set to true when the host element is invalid.
|
|
24
|
+
*/
|
|
25
|
+
protected invalid: boolean;
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Set the error message element text content.
|
|
29
|
+
*/
|
|
30
|
+
setErrorMessage(errorMessage: string | null | undefined): void;
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Set invalid state for detecting whether to show error message.
|
|
34
|
+
*/
|
|
35
|
+
setInvalid(invalid: boolean): void;
|
|
36
|
+
}
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2021 - 2022 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
import { SlotController } from '@vaadin/component-base/src/slot-controller.js';
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* A controller that manages the error message node content.
|
|
10
|
+
*/
|
|
11
|
+
export class ErrorController extends SlotController {
|
|
12
|
+
constructor(host) {
|
|
13
|
+
super(
|
|
14
|
+
host,
|
|
15
|
+
'error-message',
|
|
16
|
+
() => document.createElement('div'),
|
|
17
|
+
(_host, node) => {
|
|
18
|
+
this.__updateErrorId(node);
|
|
19
|
+
|
|
20
|
+
this.__updateHasError();
|
|
21
|
+
}
|
|
22
|
+
);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* ID attribute value set on the error message element.
|
|
27
|
+
*
|
|
28
|
+
* @return {string}
|
|
29
|
+
*/
|
|
30
|
+
get errorId() {
|
|
31
|
+
return this.node && this.node.id;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Set the error message element text content.
|
|
36
|
+
*
|
|
37
|
+
* @param {string} errorMessage
|
|
38
|
+
*/
|
|
39
|
+
setErrorMessage(errorMessage) {
|
|
40
|
+
this.errorMessage = errorMessage;
|
|
41
|
+
|
|
42
|
+
this.__updateHasError();
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Set invalid state for detecting whether to show error message.
|
|
47
|
+
*
|
|
48
|
+
* @param {boolean} invalid
|
|
49
|
+
*/
|
|
50
|
+
setInvalid(invalid) {
|
|
51
|
+
this.invalid = invalid;
|
|
52
|
+
|
|
53
|
+
this.__updateHasError();
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Override to initialize the newly added custom label.
|
|
58
|
+
*
|
|
59
|
+
* @param {Node} errorNode
|
|
60
|
+
* @protected
|
|
61
|
+
* @override
|
|
62
|
+
*/
|
|
63
|
+
initCustomNode(errorNode) {
|
|
64
|
+
this.__updateErrorId(errorNode);
|
|
65
|
+
|
|
66
|
+
// Save the custom error message content on the host.
|
|
67
|
+
if (errorNode.textContent && !this.errorMessage) {
|
|
68
|
+
this.errorMessage = errorNode.textContent.trim();
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
this.__updateHasError();
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Override to cleanup label node when it's removed.
|
|
76
|
+
*
|
|
77
|
+
* @param {Node} node
|
|
78
|
+
* @protected
|
|
79
|
+
* @override
|
|
80
|
+
*/
|
|
81
|
+
teardownNode(node) {
|
|
82
|
+
let errorNode = this.getSlotChild();
|
|
83
|
+
|
|
84
|
+
// If custom error was removed, restore the default one.
|
|
85
|
+
if (!errorNode && node !== this.defaultNode) {
|
|
86
|
+
errorNode = this.attachDefaultNode();
|
|
87
|
+
|
|
88
|
+
// Run initializer to update default label and ID.
|
|
89
|
+
this.initNode(errorNode);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
this.__updateHasError();
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* @param {string} error
|
|
97
|
+
* @private
|
|
98
|
+
*/
|
|
99
|
+
__isNotEmpty(error) {
|
|
100
|
+
return Boolean(error && error.trim() !== '');
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
/** @private */
|
|
104
|
+
__updateHasError() {
|
|
105
|
+
const errorNode = this.node;
|
|
106
|
+
const hasError = Boolean(this.invalid && this.__isNotEmpty(this.errorMessage));
|
|
107
|
+
|
|
108
|
+
// Update both default and custom error message node.
|
|
109
|
+
if (errorNode) {
|
|
110
|
+
errorNode.textContent = hasError ? this.errorMessage : '';
|
|
111
|
+
errorNode.hidden = !hasError;
|
|
112
|
+
|
|
113
|
+
// Role alert will make the error message announce immediately
|
|
114
|
+
// as the field becomes invalid
|
|
115
|
+
if (hasError) {
|
|
116
|
+
errorNode.setAttribute('role', 'alert');
|
|
117
|
+
} else {
|
|
118
|
+
errorNode.removeAttribute('role');
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
this.host.toggleAttribute('has-error-message', hasError);
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* @param {HTMLElement} errorNode
|
|
127
|
+
* @private
|
|
128
|
+
*/
|
|
129
|
+
__updateErrorId(errorNode) {
|
|
130
|
+
if (!errorNode.id) {
|
|
131
|
+
errorNode.id = this.defaultId;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
package/src/field-mixin.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { ControllerMixin } from '@vaadin/component-base/src/controller-mixin.js';
|
|
7
|
-
import {
|
|
7
|
+
import { ErrorController } from './error-controller.js';
|
|
8
8
|
import { FieldAriaController } from './field-aria-controller.js';
|
|
9
9
|
import { HelperController } from './helper-controller.js';
|
|
10
10
|
import { LabelMixin } from './label-mixin.js';
|
|
@@ -16,11 +16,10 @@ import { ValidateMixin } from './validate-mixin.js';
|
|
|
16
16
|
* @polymerMixin
|
|
17
17
|
* @mixes ControllerMixin
|
|
18
18
|
* @mixes LabelMixin
|
|
19
|
-
* @mixes SlotMixin
|
|
20
19
|
* @mixes ValidateMixin
|
|
21
20
|
*/
|
|
22
21
|
export const FieldMixin = (superclass) =>
|
|
23
|
-
class FieldMixinClass extends ValidateMixin(LabelMixin(ControllerMixin(
|
|
22
|
+
class FieldMixinClass extends ValidateMixin(LabelMixin(ControllerMixin(superclass))) {
|
|
24
23
|
static get properties() {
|
|
25
24
|
return {
|
|
26
25
|
/**
|
|
@@ -38,7 +37,8 @@ export const FieldMixin = (superclass) =>
|
|
|
38
37
|
* @attr {string} error-message
|
|
39
38
|
*/
|
|
40
39
|
errorMessage: {
|
|
41
|
-
type: String
|
|
40
|
+
type: String,
|
|
41
|
+
observer: '_errorMessageChanged'
|
|
42
42
|
},
|
|
43
43
|
|
|
44
44
|
/**
|
|
@@ -55,20 +55,13 @@ export const FieldMixin = (superclass) =>
|
|
|
55
55
|
};
|
|
56
56
|
}
|
|
57
57
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
return {
|
|
61
|
-
...super.slots,
|
|
62
|
-
'error-message': () => {
|
|
63
|
-
const error = document.createElement('div');
|
|
64
|
-
error.textContent = this.errorMessage;
|
|
65
|
-
return error;
|
|
66
|
-
}
|
|
67
|
-
};
|
|
58
|
+
static get observers() {
|
|
59
|
+
return ['_invalidChanged(invalid)', '_requiredChanged(required)'];
|
|
68
60
|
}
|
|
69
61
|
|
|
70
|
-
|
|
71
|
-
|
|
62
|
+
/** @protected */
|
|
63
|
+
get _errorId() {
|
|
64
|
+
return this._errorController.errorId;
|
|
72
65
|
}
|
|
73
66
|
|
|
74
67
|
/**
|
|
@@ -76,7 +69,7 @@ export const FieldMixin = (superclass) =>
|
|
|
76
69
|
* @return {HTMLElement}
|
|
77
70
|
*/
|
|
78
71
|
get _errorNode() {
|
|
79
|
-
return this.
|
|
72
|
+
return this._errorController.node;
|
|
80
73
|
}
|
|
81
74
|
|
|
82
75
|
/** @protected */
|
|
@@ -95,15 +88,13 @@ export const FieldMixin = (superclass) =>
|
|
|
95
88
|
constructor() {
|
|
96
89
|
super();
|
|
97
90
|
|
|
98
|
-
// Ensure every instance has unique ID
|
|
99
|
-
const uniqueId = (FieldMixinClass._uniqueFieldId = 1 + FieldMixinClass._uniqueFieldId || 0);
|
|
100
|
-
this._errorId = `error-${this.localName}-${uniqueId}`;
|
|
101
|
-
|
|
102
91
|
this._fieldAriaController = new FieldAriaController(this);
|
|
103
92
|
this._helperController = new HelperController(this);
|
|
93
|
+
this._errorController = new ErrorController(this);
|
|
104
94
|
|
|
105
95
|
this.addController(this._fieldAriaController);
|
|
106
96
|
this.addController(this._helperController);
|
|
97
|
+
this.addController(this._errorController);
|
|
107
98
|
|
|
108
99
|
this._labelController.addEventListener('label-changed', (event) => {
|
|
109
100
|
const { hasLabel, node } = event.detail;
|
|
@@ -116,29 +107,6 @@ export const FieldMixin = (superclass) =>
|
|
|
116
107
|
});
|
|
117
108
|
}
|
|
118
109
|
|
|
119
|
-
/** @protected */
|
|
120
|
-
ready() {
|
|
121
|
-
super.ready();
|
|
122
|
-
|
|
123
|
-
const error = this._errorNode;
|
|
124
|
-
if (error) {
|
|
125
|
-
error.id = this._errorId;
|
|
126
|
-
|
|
127
|
-
this.__applyCustomError();
|
|
128
|
-
|
|
129
|
-
this._updateErrorMessage(this.invalid, this.errorMessage);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
/** @private */
|
|
134
|
-
__applyCustomError() {
|
|
135
|
-
const error = this.__errorMessage;
|
|
136
|
-
if (error && error !== this.errorMessage) {
|
|
137
|
-
this.errorMessage = error;
|
|
138
|
-
delete this.__errorMessage;
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
|
-
|
|
142
110
|
/** @private */
|
|
143
111
|
__helperChanged(hasHelper, helperNode) {
|
|
144
112
|
if (hasHelper) {
|
|
@@ -160,32 +128,11 @@ export const FieldMixin = (superclass) =>
|
|
|
160
128
|
}
|
|
161
129
|
|
|
162
130
|
/**
|
|
163
|
-
* @param {boolean} invalid
|
|
164
131
|
* @param {string | null | undefined} errorMessage
|
|
165
132
|
* @protected
|
|
166
133
|
*/
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
if (!error) {
|
|
170
|
-
return;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
// save the custom error message content
|
|
174
|
-
if (error.textContent && !errorMessage) {
|
|
175
|
-
this.__errorMessage = error.textContent.trim();
|
|
176
|
-
}
|
|
177
|
-
const hasError = Boolean(invalid && errorMessage);
|
|
178
|
-
error.textContent = hasError ? errorMessage : '';
|
|
179
|
-
error.hidden = !hasError;
|
|
180
|
-
this.toggleAttribute('has-error-message', hasError);
|
|
181
|
-
|
|
182
|
-
// Role alert will make the error message announce immediately
|
|
183
|
-
// as the field becomes invalid
|
|
184
|
-
if (hasError) {
|
|
185
|
-
error.setAttribute('role', 'alert');
|
|
186
|
-
} else {
|
|
187
|
-
error.removeAttribute('role');
|
|
188
|
-
}
|
|
134
|
+
_errorMessageChanged(errorMessage) {
|
|
135
|
+
this._errorController.setErrorMessage(errorMessage);
|
|
189
136
|
}
|
|
190
137
|
|
|
191
138
|
/**
|
|
@@ -219,6 +166,8 @@ export const FieldMixin = (superclass) =>
|
|
|
219
166
|
* @protected
|
|
220
167
|
*/
|
|
221
168
|
_invalidChanged(invalid) {
|
|
169
|
+
this._errorController.setInvalid(invalid);
|
|
170
|
+
|
|
222
171
|
// This timeout is needed to prevent NVDA from announcing the error message twice:
|
|
223
172
|
// 1. Once adding the `[role=alert]` attribute by the `_updateErrorMessage` method (OK).
|
|
224
173
|
// 2. Once linking the error ID with the ARIA target here (unwanted).
|
|
@@ -227,7 +176,7 @@ export const FieldMixin = (superclass) =>
|
|
|
227
176
|
// Error message ID needs to be dynamically added / removed based on the validity
|
|
228
177
|
// Otherwise assistive technologies would announce the error, even if we hide it.
|
|
229
178
|
if (invalid) {
|
|
230
|
-
this._fieldAriaController.setErrorId(this.
|
|
179
|
+
this._fieldAriaController.setErrorId(this._errorController.errorId);
|
|
231
180
|
} else {
|
|
232
181
|
this._fieldAriaController.setErrorId(null);
|
|
233
182
|
}
|
|
@@ -107,9 +107,7 @@ export const InputControlMixin = (superclass) =>
|
|
|
107
107
|
_onClearButtonClick(event) {
|
|
108
108
|
event.preventDefault();
|
|
109
109
|
this.inputElement.focus();
|
|
110
|
-
this.
|
|
111
|
-
this.inputElement.dispatchEvent(new Event('input', { bubbles: true, composed: true }));
|
|
112
|
-
this.inputElement.dispatchEvent(new Event('change', { bubbles: true }));
|
|
110
|
+
this.__clear();
|
|
113
111
|
}
|
|
114
112
|
|
|
115
113
|
/**
|
|
@@ -137,10 +135,8 @@ export const InputControlMixin = (superclass) =>
|
|
|
137
135
|
_onKeyDown(event) {
|
|
138
136
|
super._onKeyDown(event);
|
|
139
137
|
|
|
140
|
-
if (event.key === 'Escape' && this.clearButtonVisible) {
|
|
141
|
-
|
|
142
|
-
this.clear();
|
|
143
|
-
dispatchChange && this.inputElement.dispatchEvent(new Event('change', { bubbles: true }));
|
|
138
|
+
if (event.key === 'Escape' && this.clearButtonVisible && !!this.value) {
|
|
139
|
+
this.__clear();
|
|
144
140
|
}
|
|
145
141
|
}
|
|
146
142
|
|
|
@@ -167,4 +163,11 @@ export const InputControlMixin = (superclass) =>
|
|
|
167
163
|
})
|
|
168
164
|
);
|
|
169
165
|
}
|
|
166
|
+
|
|
167
|
+
/** @private */
|
|
168
|
+
__clear() {
|
|
169
|
+
this.clear();
|
|
170
|
+
this.inputElement.dispatchEvent(new Event('input', { bubbles: true, composed: true }));
|
|
171
|
+
this.inputElement.dispatchEvent(new Event('change', { bubbles: true }));
|
|
172
|
+
}
|
|
170
173
|
};
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { KeyboardMixin } from '@vaadin/component-base/src/keyboard-mixin.js';
|
|
7
|
-
import { TabindexMixin } from '@vaadin/component-base/src/tabindex-mixin.js';
|
|
8
7
|
import { DelegateFocusMixin } from './delegate-focus-mixin.js';
|
|
9
8
|
|
|
10
9
|
/**
|
|
@@ -13,10 +12,23 @@ import { DelegateFocusMixin } from './delegate-focus-mixin.js';
|
|
|
13
12
|
* @polymerMixin
|
|
14
13
|
* @mixes DelegateFocusMixin
|
|
15
14
|
* @mixes KeyboardMixin
|
|
16
|
-
* @mixes TabindexMixin
|
|
17
15
|
*/
|
|
18
16
|
export const ShadowFocusMixin = (superClass) =>
|
|
19
|
-
class ShadowFocusMixinClass extends
|
|
17
|
+
class ShadowFocusMixinClass extends DelegateFocusMixin(KeyboardMixin(superClass)) {
|
|
18
|
+
static get properties() {
|
|
19
|
+
return {
|
|
20
|
+
/**
|
|
21
|
+
* Indicates whether the element can be focused and where it participates in sequential keyboard navigation.
|
|
22
|
+
*
|
|
23
|
+
* @protected
|
|
24
|
+
*/
|
|
25
|
+
tabindex: {
|
|
26
|
+
type: Number,
|
|
27
|
+
value: 0
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
|
|
20
32
|
/**
|
|
21
33
|
* Override an event listener from `KeyboardMixin`
|
|
22
34
|
* to prevent setting `focused` on Shift Tab.
|