novo-elements 6.1.2 → 6.1.3
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/bundles/novo-elements.umd.js +2 -2
- package/bundles/novo-elements.umd.js.map +1 -1
- package/bundles/novo-elements.umd.min.js +1 -1
- package/bundles/novo-elements.umd.min.js.map +1 -1
- package/esm2015/src/elements/dropdown/Dropdown.js +2 -2
- package/esm2015/src/elements/select/Select.js +2 -2
- package/fesm2015/novo-elements.js +2 -2
- package/fesm2015/novo-elements.js.map +1 -1
- package/package.json +1 -1
- package/schematics/package.json +1 -1
|
@@ -26909,7 +26909,7 @@
|
|
|
26909
26909
|
/** Sets up a key manager to listen to keyboard events on the overlay panel. */
|
|
26910
26910
|
NovoDropdownElement.prototype._initKeyManager = function () {
|
|
26911
26911
|
var _this = this;
|
|
26912
|
-
this._keyManager = new a11y.ActiveDescendantKeyManager(this.options).withTypeAhead(
|
|
26912
|
+
this._keyManager = new a11y.ActiveDescendantKeyManager(this.options).withTypeAhead(250).withHomeAndEnd();
|
|
26913
26913
|
// .withAllowedModifierKeys(['shiftKey']);
|
|
26914
26914
|
this._keyManager.tabOut.pipe(operators.takeUntil(this._onDestroy)).subscribe(function () {
|
|
26915
26915
|
if (_this.panelOpen) {
|
|
@@ -38881,7 +38881,7 @@
|
|
|
38881
38881
|
/** Sets up a key manager to listen to keyboard events on the overlay panel. */
|
|
38882
38882
|
NovoSelectElement.prototype._initKeyManager = function () {
|
|
38883
38883
|
var _this = this;
|
|
38884
|
-
this._keyManager = new a11y.ActiveDescendantKeyManager(this._getOptions()).withTypeAhead(
|
|
38884
|
+
this._keyManager = new a11y.ActiveDescendantKeyManager(this._getOptions()).withTypeAhead(250).withHomeAndEnd();
|
|
38885
38885
|
// .withAllowedModifierKeys(['shiftKey']);
|
|
38886
38886
|
this._keyManager.tabOut.pipe(operators.takeUntil(this._destroy)).subscribe(function () {
|
|
38887
38887
|
if (_this.panelOpen) {
|