matcha-components 20.77.0 → 20.78.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 +464 -435
- package/fesm2022/matcha-components.mjs.map +1 -1
- package/index.d.ts +12 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2112,11 +2112,20 @@ declare class MatchaMaskService extends MatchaMaskApplierService {
|
|
|
2112
2112
|
}
|
|
2113
2113
|
|
|
2114
2114
|
declare class MatchaMaskCompatibleDirective implements ControlValueAccessor, OnChanges, Validator {
|
|
2115
|
-
|
|
2115
|
+
private _mask;
|
|
2116
|
+
get mask(): string | undefined | null;
|
|
2117
|
+
set mask(v: string | undefined | null);
|
|
2118
|
+
get maskAttr(): string | null;
|
|
2116
2119
|
specialCharacters: MatchaMaskConfig['specialCharacters'];
|
|
2117
2120
|
patterns: MatchaMaskConfig['patterns'];
|
|
2118
|
-
|
|
2119
|
-
|
|
2121
|
+
private _prefix;
|
|
2122
|
+
get prefix(): MatchaMaskConfig['prefix'];
|
|
2123
|
+
set prefix(v: MatchaMaskConfig['prefix']);
|
|
2124
|
+
get prefixAttr(): string | null;
|
|
2125
|
+
private _suffix;
|
|
2126
|
+
get suffix(): MatchaMaskConfig['suffix'];
|
|
2127
|
+
set suffix(v: MatchaMaskConfig['suffix']);
|
|
2128
|
+
get suffixAttr(): string | null;
|
|
2120
2129
|
thousandSeparator: MatchaMaskConfig['thousandSeparator'];
|
|
2121
2130
|
decimalMarker: MatchaMaskConfig['decimalMarker'];
|
|
2122
2131
|
dropSpecialCharacters: MatchaMaskConfig['dropSpecialCharacters'] | null;
|