@ptsecurity/mosaic 16.5.0 → 16.5.2
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/esm2022/core/pop-up/pop-up-trigger.mjs +2 -2
- package/esm2022/core/version.mjs +2 -2
- package/esm2022/textarea/textarea.component.mjs +8 -4
- package/esm2022/tree-select/tree-select.component.mjs +17 -7
- package/fesm2022/ptsecurity-mosaic-core.mjs +2 -2
- package/fesm2022/ptsecurity-mosaic-core.mjs.map +1 -1
- package/fesm2022/ptsecurity-mosaic-textarea.mjs +7 -3
- package/fesm2022/ptsecurity-mosaic-textarea.mjs.map +1 -1
- package/fesm2022/ptsecurity-mosaic-tree-select.mjs +16 -6
- package/fesm2022/ptsecurity-mosaic-tree-select.mjs.map +1 -1
- package/package.json +21 -21
- package/textarea/textarea.component.d.ts +1 -0
- package/tree-select/tree-select.component.d.ts +5 -2
@@ -2678,7 +2678,7 @@ class McPopUpTrigger {
|
|
2678
2678
|
this.listeners
|
2679
2679
|
.set('keydown', (event) => {
|
2680
2680
|
if (event instanceof KeyboardEvent && [ENTER, SPACE].includes(event.keyCode)) {
|
2681
|
-
this.show();
|
2681
|
+
setTimeout(() => this.show());
|
2682
2682
|
}
|
2683
2683
|
});
|
2684
2684
|
}
|
@@ -2964,7 +2964,7 @@ const validationTooltipShowDelay = 10;
|
|
2964
2964
|
const validationTooltipHideDelay = 3000;
|
2965
2965
|
const MC_VALIDATION = new InjectionToken('McUseValidation', { factory: () => ({ useValidation: true }) });
|
2966
2966
|
|
2967
|
-
const VERSION = new Version('16.5.
|
2967
|
+
const VERSION = new Version('16.5.2+sha-6c39700');
|
2968
2968
|
|
2969
2969
|
/**
|
2970
2970
|
* Generated bundle index. Do not edit.
|