matcha-components 19.107.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.
@@ -1,4 +1,4 @@
1
- import type { NgxMaskConfig } from './ngx-mask.config';
1
+ import { NgxMaskConfig } from './ngx-mask.config';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class NgxMaskApplierService {
4
4
  protected _config: NgxMaskConfig;
@@ -1,7 +1,7 @@
1
- import type { OnChanges, SimpleChanges } from '@angular/core';
2
- import type { ControlValueAccessor, FormControl, ValidationErrors, Validator } from '@angular/forms';
3
- import type { CustomKeyboardEvent } from './custom-keyboard-event';
4
- import type { NgxMaskConfig } from './ngx-mask.config';
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matcha-components",
3
- "version": "19.107.0",
3
+ "version": "19.109.0",
4
4
  "peerDependencies": {},
5
5
  "dependencies": {
6
6
  "tslib": "^2.3.0"
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';