@vaadin/field-base 23.0.0-alpha1 → 23.0.0-alpha5

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.
Files changed (58) hide show
  1. package/LICENSE +1 -1
  2. package/package.json +4 -3
  3. package/src/checked-mixin.d.ts +1 -1
  4. package/src/checked-mixin.js +1 -1
  5. package/src/delegate-focus-mixin.d.ts +1 -1
  6. package/src/delegate-focus-mixin.js +1 -1
  7. package/src/delegate-state-mixin.d.ts +1 -1
  8. package/src/delegate-state-mixin.js +1 -1
  9. package/src/field-aria-controller.d.ts +1 -1
  10. package/src/field-aria-controller.js +5 -8
  11. package/src/field-mixin.d.ts +3 -1
  12. package/src/field-mixin.js +49 -192
  13. package/src/helper-controller.d.ts +23 -0
  14. package/src/helper-controller.js +185 -0
  15. package/src/input-constraints-mixin.d.ts +1 -1
  16. package/src/input-constraints-mixin.js +2 -3
  17. package/src/input-control-mixin.d.ts +1 -1
  18. package/src/input-control-mixin.js +1 -1
  19. package/src/input-controller.d.ts +3 -3
  20. package/src/input-controller.js +5 -4
  21. package/src/input-field-mixin.d.ts +1 -1
  22. package/src/input-field-mixin.js +1 -1
  23. package/src/input-mixin.d.ts +1 -1
  24. package/src/input-mixin.js +1 -1
  25. package/src/label-controller.d.ts +26 -0
  26. package/src/label-controller.js +186 -0
  27. package/src/label-mixin.d.ts +4 -3
  28. package/src/label-mixin.js +10 -49
  29. package/src/labelled-input-controller.d.ts +1 -1
  30. package/src/labelled-input-controller.js +17 -4
  31. package/src/pattern-mixin.d.ts +1 -1
  32. package/src/pattern-mixin.js +1 -2
  33. package/src/shadow-focus-mixin.d.ts +1 -1
  34. package/src/shadow-focus-mixin.js +1 -1
  35. package/src/slot-label-mixin.d.ts +1 -1
  36. package/src/slot-label-mixin.js +1 -14
  37. package/src/slot-styles-mixin.d.ts +1 -1
  38. package/src/slot-styles-mixin.js +1 -1
  39. package/src/slot-target-mixin.d.ts +1 -1
  40. package/src/slot-target-mixin.js +1 -1
  41. package/src/styles/clear-button-styles.d.ts +1 -1
  42. package/src/styles/clear-button-styles.js +1 -1
  43. package/src/styles/field-shared-styles.d.ts +1 -1
  44. package/src/styles/field-shared-styles.js +1 -1
  45. package/src/styles/input-field-container-styles.d.ts +1 -1
  46. package/src/styles/input-field-container-styles.js +1 -1
  47. package/src/styles/input-field-shared-styles.d.ts +1 -1
  48. package/src/styles/input-field-shared-styles.js +1 -1
  49. package/src/text-area-controller.d.ts +3 -3
  50. package/src/text-area-controller.js +5 -4
  51. package/src/utils.d.ts +16 -0
  52. package/src/utils.js +56 -0
  53. package/src/validate-mixin.d.ts +1 -1
  54. package/src/validate-mixin.js +1 -1
  55. package/src/virtual-keyboard-controller.d.ts +14 -0
  56. package/src/virtual-keyboard-controller.js +38 -0
  57. package/src/slot-controller.d.ts +0 -8
  58. package/src/slot-controller.js +0 -36
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { Constructor } from '@open-wc/dedupe-mixin';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { timeOut } from '@vaadin/component-base/src/async.js';
@@ -55,7 +55,6 @@ export const PatternMixin = (superclass) =>
55
55
  this._inputDebouncer = Debouncer.debounce(this._inputDebouncer, timeOut.after(200), () => {
56
56
  this.removeAttribute('input-prevented');
57
57
  });
58
- return;
59
58
  }
60
59
  }
61
60
  }
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { Constructor } from '@open-wc/dedupe-mixin';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
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';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { Constructor } from '@open-wc/dedupe-mixin';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
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';
@@ -21,18 +21,5 @@ export const SlotLabelMixin = dedupingMixin(
21
21
  get _slotTarget() {
22
22
  return this._labelNode;
23
23
  }
24
-
25
- /** @protected */
26
- ready() {
27
- super.ready();
28
-
29
- if (this._labelNode) {
30
- // The default slot's content is moved to the label node
31
- // only after `LabelMixin` is initialized which means
32
- // we should manually toggle the `has-label` attribute
33
- // respecting the new label content.
34
- this._toggleHasLabelAttribute();
35
- }
36
- }
37
24
  }
38
25
  );
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { Constructor } from '@open-wc/dedupe-mixin';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
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';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { Constructor } from '@open-wc/dedupe-mixin';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
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';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd..
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { CSSResult } from 'lit';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd..
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { css } from 'lit';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd..
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { CSSResult } from 'lit';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd..
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { css } from 'lit';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd..
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { CSSResult } from 'lit';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd..
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { css } from 'lit';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd..
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { CSSResult } from 'lit';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd..
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { clearButton } from './clear-button-styles.js';
@@ -1,11 +1,11 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
- import { SlotController } from './slot-controller.js';
6
+ import { SlotController } from '@vaadin/component-base/src/slot-controller.js';
7
7
 
8
8
  /**
9
9
  * A controller to create and initialize slotted `<textarea>` element.
10
10
  */
11
- export class TextAreaController implements SlotController {}
11
+ export class TextAreaController extends SlotController {}
@@ -1,16 +1,17 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
- import { SlotController } from './slot-controller.js';
6
+ import { SlotController } from '@vaadin/component-base/src/slot-controller.js';
7
7
 
8
8
  /**
9
9
  * A controller to create and initialize slotted `<textarea>` element.
10
10
  */
11
11
  export class TextAreaController extends SlotController {
12
12
  constructor(host, callback) {
13
- super(host, [
13
+ super(
14
+ host,
14
15
  'textarea',
15
16
  () => document.createElement('textarea'),
16
17
  (host, node) => {
@@ -33,6 +34,6 @@ export class TextAreaController extends SlotController {
33
34
  callback(node);
34
35
  }
35
36
  }
36
- ]);
37
+ );
37
38
  }
38
39
  }
package/src/utils.d.ts ADDED
@@ -0,0 +1,16 @@
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
+
7
+ /**
8
+ * Adds a value to an attribute containing space-delimited values.
9
+ */
10
+ export declare function addValueToAttribute(element: HTMLElement, attr: string, value: string): void;
11
+
12
+ /**
13
+ * Removes a value from an attribute containing space-delimited values.
14
+ * If the value is the last one, the whole attribute is removed.
15
+ */
16
+ export declare function removeValueFromAttribute(element: HTMLElement, attr: string, value: string): void;
package/src/utils.js ADDED
@@ -0,0 +1,56 @@
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
+
7
+ /**
8
+ * @param {string} value
9
+ * @return {Set<string>}
10
+ */
11
+ function deserializeAttributeValue(value) {
12
+ if (!value) {
13
+ return new Set();
14
+ }
15
+
16
+ return new Set(value.split(' '));
17
+ }
18
+
19
+ /**
20
+ * @param {Set<string>} values
21
+ * @return {string}
22
+ */
23
+ function serializeAttributeValue(values) {
24
+ return [...values].join(' ');
25
+ }
26
+
27
+ /**
28
+ * Adds a value to an attribute containing space-delimited values.
29
+ *
30
+ * @param {HTMLElement} element
31
+ * @param {string} attr
32
+ * @param {string} value
33
+ */
34
+ export function addValueToAttribute(element, attr, value) {
35
+ const values = deserializeAttributeValue(element.getAttribute(attr));
36
+ values.add(value);
37
+ element.setAttribute(attr, serializeAttributeValue(values));
38
+ }
39
+
40
+ /**
41
+ * Removes a value from an attribute containing space-delimited values.
42
+ * If the value is the last one, the whole attribute is removed.
43
+ *
44
+ * @param {HTMLElement} element
45
+ * @param {string} attr
46
+ * @param {string} value
47
+ */
48
+ export function removeValueFromAttribute(element, attr, value) {
49
+ const values = deserializeAttributeValue(element.getAttribute(attr));
50
+ values.delete(value);
51
+ if (values.size === 0) {
52
+ element.removeAttribute(attr);
53
+ return;
54
+ }
55
+ element.setAttribute(attr, serializeAttributeValue(values));
56
+ }
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { Constructor } from '@open-wc/dedupe-mixin';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
3
+ * Copyright (c) 2021 - 2022 Vaadin Ltd.
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';
@@ -0,0 +1,14 @@
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 { ReactiveController } from 'lit';
7
+
8
+ /**
9
+ * A controller which prevents the virtual keyboard from showing up on mobile devices
10
+ * when the field's overlay is closed.
11
+ */
12
+ export class VirtualKeyboardController implements ReactiveController {
13
+ constructor(host: { inputElement?: HTMLElement; opened: boolean } & HTMLElement);
14
+ }
@@ -0,0 +1,38 @@
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
+
7
+ /**
8
+ * A controller which prevents the virtual keyboard from showing up on mobile devices
9
+ * when the field's overlay is closed.
10
+ */
11
+ export class VirtualKeyboardController {
12
+ /**
13
+ * @param {{ inputElement?: HTMLElement; opened: boolean } & HTMLElement} host
14
+ */
15
+ constructor(host) {
16
+ this.host = host;
17
+
18
+ host.addEventListener('opened-changed', () => {
19
+ if (!host.opened) {
20
+ // Prevent opening the virtual keyboard when the input gets re-focused on dropdown close
21
+ this.__setVirtualKeyboardEnabled(false);
22
+ }
23
+ });
24
+
25
+ // Re-enable virtual keyboard on blur, so it gets opened when the field is focused again
26
+ host.addEventListener('blur', () => this.__setVirtualKeyboardEnabled(true));
27
+
28
+ // Re-enable the virtual keyboard whenever the field is touched
29
+ host.addEventListener('touchstart', () => this.__setVirtualKeyboardEnabled(true));
30
+ }
31
+
32
+ /** @private */
33
+ __setVirtualKeyboardEnabled(value) {
34
+ if (this.host.inputElement) {
35
+ this.host.inputElement.inputMode = value ? '' : 'none';
36
+ }
37
+ }
38
+ }
@@ -1,8 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
4
- * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
- */
6
- import { ReactiveController } from 'lit';
7
-
8
- export class SlotController implements ReactiveController {}
@@ -1,36 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright (c) 2021 Vaadin Ltd.
4
- * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
- */
6
- export class SlotController {
7
- constructor(host, [slotName, slotFactory, slotInitializer]) {
8
- this.host = host;
9
- this.slotName = slotName;
10
- this.slotFactory = slotFactory;
11
- this.slotInitializer = slotInitializer;
12
- }
13
-
14
- hostConnected() {
15
- if (!this.__initialized) {
16
- const { host, slotName, slotFactory } = this;
17
-
18
- const slotted = host.querySelector(`[slot=${slotName}]`);
19
-
20
- if (!slotted) {
21
- const slotContent = slotFactory(host);
22
- if (slotContent instanceof Element) {
23
- slotContent.setAttribute('slot', slotName);
24
- host.appendChild(slotContent);
25
- this.__slotContent = slotContent;
26
- }
27
- } else {
28
- this.__slotContent = slotted;
29
- }
30
-
31
- this.slotInitializer(host, this.__slotContent);
32
-
33
- this.__initialized = true;
34
- }
35
- }
36
- }