@acorex/components 7.1.47 → 7.1.49
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/button/src/button.component.mjs +2 -2
- package/esm2022/chips/src/chips.component.mjs +2 -2
- package/esm2022/number-box/src/number-box.component.mjs +9 -38
- package/esm2022/switch/src/switch.module.mjs +1 -1
- package/esm2022/textbox/src/mask-options.directive.mjs +2 -2
- package/esm2022/textbox/src/textbox.component.mjs +8 -20
- package/esm2022/time-box/src/time-box.component.mjs +8 -24
- package/fesm2022/acorex-components-button.mjs +2 -2
- package/fesm2022/acorex-components-button.mjs.map +1 -1
- package/fesm2022/acorex-components-chips.mjs +2 -2
- package/fesm2022/acorex-components-chips.mjs.map +1 -1
- package/fesm2022/acorex-components-number-box.mjs +6 -35
- package/fesm2022/acorex-components-number-box.mjs.map +1 -1
- package/fesm2022/acorex-components-switch.mjs.map +1 -1
- package/fesm2022/acorex-components-textbox.mjs +8 -20
- package/fesm2022/acorex-components-textbox.mjs.map +1 -1
- package/fesm2022/acorex-components-time-box.mjs +6 -22
- package/fesm2022/acorex-components-time-box.mjs.map +1 -1
- package/number-box/src/number-box.component.d.ts +2 -2
- package/package.json +7 -7
- package/textbox/src/mask-options.directive.d.ts +4 -4
- package/textbox/src/textbox.component.d.ts +2 -2
- package/time-box/src/time-box.component.d.ts +2 -2
@@ -16,8 +16,8 @@ export declare class AXTextBoxComponent extends AXBaseTextBoxMixin {
|
|
16
16
|
set maskOptions(value: AXMaskOptions);
|
17
17
|
protected _maskOptionsContent: AXMaskOptionsDirective;
|
18
18
|
/**
|
19
|
-
|
20
|
-
|
19
|
+
* @ignore
|
20
|
+
*/
|
21
21
|
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
22
22
|
ngAfterContentInit(): void;
|
23
23
|
focus(): void;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { ElementRef, ChangeDetectorRef, EventEmitter } from '@angular/core';
|
2
|
-
import
|
2
|
+
import { MaskedPattern } from 'imask';
|
3
3
|
import { AXBaseTextBoxMixin, AXComponentOptionChanged } from '@acorex/components/mixin';
|
4
4
|
import * as i0 from "@angular/core";
|
5
5
|
export type AX_TIME_FORMAT = 'HH:mm' | 'HH:mm:ss';
|
@@ -28,7 +28,7 @@ export declare class AXTimeBoxComponent extends AXBaseTextBoxMixin {
|
|
28
28
|
/**
|
29
29
|
* @ignore
|
30
30
|
*/
|
31
|
-
protected _maskObj:
|
31
|
+
protected _maskObj: MaskedPattern;
|
32
32
|
private _maskDirective;
|
33
33
|
/**
|
34
34
|
* @ignore
|