@everymatrix/general-input 1.27.6 → 1.27.8
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/dist/cjs/checkbox-group-input_10.cjs.entry.js +12152 -11622
- package/dist/components/active-mixin.js +6 -6
- package/dist/components/checkbox-group-input2.js +260 -307
- package/dist/components/date-input2.js +3461 -2218
- package/dist/components/field-mixin.js +2188 -2474
- package/dist/components/input-field-shared-styles.js +308 -211
- package/dist/components/password-input2.js +119 -72
- package/dist/components/vaadin-button.js +102 -73
- package/dist/components/vaadin-combo-box.js +988 -805
- package/dist/components/virtual-keyboard-controller.js +1114 -1771
- package/dist/esm/checkbox-group-input_10.entry.js +12152 -11622
- package/dist/general-input/general-input.esm.js +1 -1
- package/dist/general-input/p-e322bf39.entry.js +3646 -0
- package/dist/types/Users/dragos.bodea/Documents/everymatrix-prjs/emfe-widgets/widgets-stencil/packages/general-input/.stencil/packages/general-input/stencil.config.d.ts +2 -0
- package/package.json +1 -1
- package/dist/components/pattern-mixin.js +0 -85
- package/dist/general-input/p-de2b2f7b.entry.js +0 -3581
- package/dist/types/Users/sebastian.strulea/Documents/work/widgets-stencil/packages/general-input/.stencil/packages/general-input/stencil.config.d.ts +0 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { m as microTask, a as DisabledMixin, K as KeyboardMixin } from './field-mixin.js';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
@license
|
|
@@ -77,7 +77,7 @@ function PASSIVE_TOUCH(eventName) {
|
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
// Check for touch-only devices
|
|
80
|
-
const IS_TOUCH_ONLY = navigator.userAgent.match(/iP(?:[oa]d|hone)|Android/);
|
|
80
|
+
const IS_TOUCH_ONLY = navigator.userAgent.match(/iP(?:[oa]d|hone)|Android/u);
|
|
81
81
|
|
|
82
82
|
// Defined at https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#enabling-and-disabling-form-controls:-the-disabled-attribute
|
|
83
83
|
/** @type {!Object<boolean>} */
|
|
@@ -406,9 +406,9 @@ function _add(node, evType, handler) {
|
|
|
406
406
|
*/
|
|
407
407
|
function register(recog) {
|
|
408
408
|
recognizers.push(recog);
|
|
409
|
-
|
|
410
|
-
gestures[
|
|
411
|
-
}
|
|
409
|
+
recog.emits.forEach((emit) => {
|
|
410
|
+
gestures[emit] = recog;
|
|
411
|
+
});
|
|
412
412
|
}
|
|
413
413
|
|
|
414
414
|
/**
|
|
@@ -870,7 +870,7 @@ function trackForward(info, e, preventer) {
|
|
|
870
870
|
|
|
871
871
|
/**
|
|
872
872
|
* @license
|
|
873
|
-
* Copyright (c) 2021 -
|
|
873
|
+
* Copyright (c) 2021 - 2023 Vaadin Ltd.
|
|
874
874
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
875
875
|
*/
|
|
876
876
|
|