matcha-components 20.76.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/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
- mask: string | undefined | null;
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
- prefix: MatchaMaskConfig['prefix'];
2119
- suffix: MatchaMaskConfig['suffix'];
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;
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "matcha-components",
3
- "version": "20.76.0",
3
+ "version": "20.78.0",
4
4
  "peerDependencies": {},
5
5
  "dependencies": {
6
6
  "tslib": "^2.3.0"
7
7
  },
8
- "sideEffects": false,
8
+ "sideEffects": true,
9
9
  "module": "fesm2022/matcha-components.mjs",
10
10
  "typings": "index.d.ts",
11
11
  "exports": {