matcha-components 19.108.0 → 19.109.0
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/fesm2022/matcha-components.mjs +49 -2
- package/fesm2022/matcha-components.mjs.map +1 -1
- package/lib/matcha-input-phone/lib/ngx-mask-applier.service.d.ts +1 -1
- package/lib/matcha-input-phone/lib/ngx-mask.directive.d.ts +5 -5
- package/lib/matcha-input-phone/lib/ngx-mask.providers.d.ts +4 -0
- package/package.json +1 -1
- package/public-api.d.ts +9 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
1
|
+
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor, FormControl, ValidationErrors, Validator } from '@angular/forms';
|
|
3
|
+
import { CustomKeyboardEvent } from './custom-keyboard-event';
|
|
4
|
+
import { NgxMaskConfig } from './ngx-mask.config';
|
|
5
5
|
import { NgxMaskService } from './ngx-mask.service';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class NgxMaskDirective implements ControlValueAccessor, OnChanges, Validator {
|
|
@@ -15,7 +15,7 @@ export declare class NgxMaskDirective implements ControlValueAccessor, OnChanges
|
|
|
15
15
|
prefix: import("@angular/core").InputSignal<string>;
|
|
16
16
|
suffix: import("@angular/core").InputSignal<string>;
|
|
17
17
|
thousandSeparator: import("@angular/core").InputSignal<string>;
|
|
18
|
-
decimalMarker: import("@angular/core").InputSignal<"
|
|
18
|
+
decimalMarker: import("@angular/core").InputSignal<"." | "," | [".", ","]>;
|
|
19
19
|
dropSpecialCharacters: import("@angular/core").InputSignal<boolean | string[] | readonly string[] | null>;
|
|
20
20
|
hiddenInput: import("@angular/core").InputSignal<boolean | null>;
|
|
21
21
|
showMaskTyped: import("@angular/core").InputSignal<boolean | null>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { EnvironmentProviders, Provider } from '@angular/core';
|
|
2
|
+
import type { NgxMaskOptions } from './ngx-mask.config';
|
|
3
|
+
export declare function provideNgxMask(configValue?: NgxMaskOptions | (() => NgxMaskOptions)): Provider[];
|
|
4
|
+
export declare function provideEnvironmentNgxMask(configValue?: NgxMaskOptions | (() => NgxMaskOptions)): EnvironmentProviders;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -104,3 +104,12 @@ export * from './lib/matcha-ripple/ripple.directive';
|
|
|
104
104
|
export * from './lib/matcha-stepper/next-step.diretive';
|
|
105
105
|
export * from './lib/matcha-stepper/prev-step.diretive';
|
|
106
106
|
export * from './lib/matcha-stepper/step-content.diretive';
|
|
107
|
+
export * from './lib/matcha-input-phone/lib/ngx-mask-applier.service';
|
|
108
|
+
export * from './lib/matcha-input-phone/lib/ngx-mask.directive';
|
|
109
|
+
export * from './lib/matcha-input-phone/lib/ngx-mask.module';
|
|
110
|
+
export * from './lib/matcha-input-phone/lib/ngx-mask.pipe';
|
|
111
|
+
export * from './lib/matcha-input-phone/lib/ngx-mask.service';
|
|
112
|
+
export * from './lib/matcha-input-phone/lib/ngx-mask.providers';
|
|
113
|
+
export * from './lib/matcha-input-phone/lib/custom-keyboard-event';
|
|
114
|
+
export * from './lib/matcha-input-phone/lib/ngx-mask.config';
|
|
115
|
+
export * from './lib/matcha-input-phone/lib/ngx-mask-expression.enum';
|