matcha-components 20.136.0 → 20.142.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 +117 -117
- package/fesm2022/matcha-components.mjs.map +1 -1
- package/index.d.ts +12 -12
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2196,10 +2196,21 @@ declare class MatchaMaskCompatibleDirective implements ControlValueAccessor, OnC
|
|
|
2196
2196
|
static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaMaskCompatibleDirective, "input[matchaMask], textarea[matchaMask]", ["matchaMask"], { "mask": { "alias": "matchaMask"; "required": false; }; "specialCharacters": { "alias": "specialCharacters"; "required": false; }; "patterns": { "alias": "patterns"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "suffix": { "alias": "suffix"; "required": false; }; "thousandSeparator": { "alias": "thousandSeparator"; "required": false; }; "decimalMarker": { "alias": "decimalMarker"; "required": false; }; "dropSpecialCharacters": { "alias": "dropSpecialCharacters"; "required": false; }; "hiddenInput": { "alias": "hiddenInput"; "required": false; }; "showMaskTyped": { "alias": "showMaskTyped"; "required": false; }; "placeHolderCharacter": { "alias": "placeHolderCharacter"; "required": false; }; "shownMaskExpression": { "alias": "shownMaskExpression"; "required": false; }; "clearIfNotMatch": { "alias": "clearIfNotMatch"; "required": false; }; "validation": { "alias": "validation"; "required": false; }; "separatorLimit": { "alias": "separatorLimit"; "required": false; }; "allowNegativeNumbers": { "alias": "allowNegativeNumbers"; "required": false; }; "leadZeroDateTime": { "alias": "leadZeroDateTime"; "required": false; }; "leadZero": { "alias": "leadZero"; "required": false; }; "triggerOnMaskChange": { "alias": "triggerOnMaskChange"; "required": false; }; "apm": { "alias": "apm"; "required": false; }; "inputTransformFn": { "alias": "inputTransformFn"; "required": false; }; "outputTransformFn": { "alias": "outputTransformFn"; "required": false; }; "keepCharacterPositions": { "alias": "keepCharacterPositions"; "required": false; }; "instantPrefix": { "alias": "instantPrefix"; "required": false; }; "currencyMode": { "alias": "currencyMode"; "required": false; }; }, { "maskFilled": "maskFilled"; }, never, never, false, never>;
|
|
2197
2197
|
}
|
|
2198
2198
|
|
|
2199
|
+
declare class MatchaMaskPipe implements PipeTransform {
|
|
2200
|
+
private readonly defaultOptions;
|
|
2201
|
+
private readonly _maskService;
|
|
2202
|
+
private _maskExpressionArray;
|
|
2203
|
+
private mask;
|
|
2204
|
+
transform(value: string | number, mask: string, { patterns, ...config }?: Partial<MatchaMaskConfig>): string;
|
|
2205
|
+
private _setMask;
|
|
2206
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaMaskPipe, never>;
|
|
2207
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MatchaMaskPipe, "matchaMask", false>;
|
|
2208
|
+
}
|
|
2209
|
+
|
|
2199
2210
|
declare const compatibleOptions: MatchaMaskOptions;
|
|
2200
2211
|
declare class MatchaMaskModule {
|
|
2201
2212
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaMaskModule, never>;
|
|
2202
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaMaskModule, [typeof MatchaMaskCompatibleDirective], [typeof i2.CommonModule], [typeof MatchaMaskCompatibleDirective]>;
|
|
2213
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaMaskModule, [typeof MatchaMaskCompatibleDirective, typeof MatchaMaskPipe], [typeof i2.CommonModule], [typeof MatchaMaskCompatibleDirective, typeof MatchaMaskPipe]>;
|
|
2203
2214
|
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaMaskModule>;
|
|
2204
2215
|
}
|
|
2205
2216
|
|
|
@@ -2472,17 +2483,6 @@ declare class MatchaBreakpointObservableModule {
|
|
|
2472
2483
|
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaBreakpointObservableModule>;
|
|
2473
2484
|
}
|
|
2474
2485
|
|
|
2475
|
-
declare class MatchaMaskPipe implements PipeTransform {
|
|
2476
|
-
private readonly defaultOptions;
|
|
2477
|
-
private readonly _maskService;
|
|
2478
|
-
private _maskExpressionArray;
|
|
2479
|
-
private mask;
|
|
2480
|
-
transform(value: string | number, mask: string, { patterns, ...config }?: Partial<MatchaMaskConfig>): string;
|
|
2481
|
-
private _setMask;
|
|
2482
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaMaskPipe, never>;
|
|
2483
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<MatchaMaskPipe, "mask", false>;
|
|
2484
|
-
}
|
|
2485
|
-
|
|
2486
2486
|
declare const enum MaskExpression {
|
|
2487
2487
|
SEPARATOR = "separator",
|
|
2488
2488
|
PERCENT = "percent",
|