matcha-components 20.43.0 → 20.44.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
@@ -1920,8 +1920,6 @@ declare const initialConfig: MatchaMaskConfig;
1920
1920
  declare const timeMasks: string[];
1921
1921
  declare const withoutValidation: string[];
1922
1922
 
1923
- type CustomKeyboardEvent = KeyboardEvent;
1924
-
1925
1923
  declare class MatchaMaskApplierService {
1926
1924
  protected _config: MatchaMaskConfig;
1927
1925
  dropSpecialCharacters: MatchaMaskConfig['dropSpecialCharacters'];
@@ -2056,36 +2054,32 @@ declare class MatchaMaskService extends MatchaMaskApplierService {
2056
2054
  static ɵprov: i0.ɵɵInjectableDeclaration<MatchaMaskService>;
2057
2055
  }
2058
2056
 
2059
- declare class MatchaMaskDirective implements ControlValueAccessor, OnChanges, Validator {
2060
- mask: i0.InputSignal<string | null | undefined>;
2061
- specialCharacters: i0.InputSignal<string[] | readonly string[]>;
2062
- patterns: i0.InputSignal<Record<string, {
2063
- pattern: RegExp;
2064
- optional?: boolean;
2065
- symbol?: string;
2066
- }>>;
2067
- prefix: i0.InputSignal<string>;
2068
- suffix: i0.InputSignal<string>;
2069
- thousandSeparator: i0.InputSignal<string>;
2070
- decimalMarker: i0.InputSignal<"," | "." | [".", ","]>;
2071
- dropSpecialCharacters: i0.InputSignal<boolean | string[] | readonly string[] | null>;
2072
- hiddenInput: i0.InputSignal<boolean | null>;
2073
- showMaskTyped: i0.InputSignal<boolean | null>;
2074
- placeHolderCharacter: i0.InputSignal<string | null>;
2075
- shownMaskExpression: i0.InputSignal<string | null>;
2076
- clearIfNotMatch: i0.InputSignal<boolean | null>;
2077
- validation: i0.InputSignal<boolean | null>;
2078
- separatorLimit: i0.InputSignal<string | null>;
2079
- allowNegativeNumbers: i0.InputSignal<boolean | null>;
2080
- leadZeroDateTime: i0.InputSignal<boolean | null>;
2081
- leadZero: i0.InputSignal<boolean | null>;
2082
- triggerOnMaskChange: i0.InputSignal<boolean | null>;
2083
- apm: i0.InputSignal<boolean | null>;
2084
- inputTransformFn: i0.InputSignal<matcha_components.InputTransformFn | null>;
2085
- outputTransformFn: i0.InputSignal<matcha_components.OutputTransformFn | null>;
2086
- keepCharacterPositions: i0.InputSignal<boolean | null>;
2087
- instantPrefix: i0.InputSignal<boolean | null>;
2088
- maskFilled: i0.OutputEmitterRef<void>;
2057
+ declare class MatchaMaskCompatibleDirective implements ControlValueAccessor, OnChanges, Validator {
2058
+ mask: string | undefined | null;
2059
+ specialCharacters: MatchaMaskConfig['specialCharacters'];
2060
+ patterns: MatchaMaskConfig['patterns'];
2061
+ prefix: MatchaMaskConfig['prefix'];
2062
+ suffix: MatchaMaskConfig['suffix'];
2063
+ thousandSeparator: MatchaMaskConfig['thousandSeparator'];
2064
+ decimalMarker: MatchaMaskConfig['decimalMarker'];
2065
+ dropSpecialCharacters: MatchaMaskConfig['dropSpecialCharacters'] | null;
2066
+ hiddenInput: MatchaMaskConfig['hiddenInput'] | null;
2067
+ showMaskTyped: MatchaMaskConfig['showMaskTyped'] | null;
2068
+ placeHolderCharacter: MatchaMaskConfig['placeHolderCharacter'] | null;
2069
+ shownMaskExpression: MatchaMaskConfig['shownMaskExpression'] | null;
2070
+ clearIfNotMatch: MatchaMaskConfig['clearIfNotMatch'] | null;
2071
+ validation: MatchaMaskConfig['validation'] | null;
2072
+ separatorLimit: MatchaMaskConfig['separatorLimit'] | null;
2073
+ allowNegativeNumbers: MatchaMaskConfig['allowNegativeNumbers'] | null;
2074
+ leadZeroDateTime: MatchaMaskConfig['leadZeroDateTime'] | null;
2075
+ leadZero: MatchaMaskConfig['leadZero'] | null;
2076
+ triggerOnMaskChange: MatchaMaskConfig['triggerOnMaskChange'] | null;
2077
+ apm: MatchaMaskConfig['apm'] | null;
2078
+ inputTransformFn: MatchaMaskConfig['inputTransformFn'] | null;
2079
+ outputTransformFn: MatchaMaskConfig['outputTransformFn'] | null;
2080
+ keepCharacterPositions: MatchaMaskConfig['keepCharacterPositions'] | null;
2081
+ instantPrefix: MatchaMaskConfig['instantPrefix'] | null;
2082
+ maskFilled: EventEmitter<void>;
2089
2083
  private _maskValue;
2090
2084
  private _inputValue;
2091
2085
  private _position;
@@ -2101,55 +2095,34 @@ declare class MatchaMaskDirective implements ControlValueAccessor, OnChanges, Va
2101
2095
  onChange: (_: any) => void;
2102
2096
  onTouch: () => void;
2103
2097
  ngOnChanges(changes: SimpleChanges): void;
2104
- validate({ value }: FormControl): ValidationErrors | null;
2105
2098
  onPaste(): void;
2106
- onFocus(): void;
2107
- onModelChange(value: string | undefined | null | number): void;
2108
- onInput(e: CustomKeyboardEvent): void;
2109
- onCompositionStart(): void;
2110
- onCompositionEnd(e: CustomKeyboardEvent): void;
2111
- onBlur(e: CustomKeyboardEvent): void;
2112
- onClick(e: MouseEvent | CustomKeyboardEvent): void;
2113
- onKeyDown(e: CustomKeyboardEvent): void;
2114
- /** It writes the value in the input */
2115
- writeValue(controlValue: unknown): Promise<void>;
2116
- registerOnChange(fn: typeof this.onChange): void;
2117
- registerOnTouched(fn: typeof this.onTouch): void;
2118
- private _getActiveElement;
2119
- checkSelectionOnDeletion(el: HTMLInputElement): void;
2120
- /** It disables the input element */
2099
+ onFocus(event: FocusEvent): void;
2100
+ onModelChange(value: string): void;
2101
+ onInput(event: KeyboardEvent): void;
2102
+ onCompositionStart(event: CompositionEvent): void;
2103
+ onCompositionEnd(event: CompositionEvent): void;
2104
+ onBlur(event: FocusEvent): void;
2105
+ onClick(event: MouseEvent): void;
2106
+ onKeyDown(event: KeyboardEvent): void;
2107
+ writeValue(value: string): void;
2108
+ registerOnChange(fn: (value: string) => void): void;
2109
+ registerOnTouched(fn: () => void): void;
2121
2110
  setDisabledState(isDisabled: boolean): void;
2122
- private _applyMask;
2123
- private _validateTime;
2124
- private _getActualInputLength;
2125
- private _createValidationError;
2126
- private _setMask;
2127
- private _areAllCharactersInEachStringSame;
2128
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaMaskDirective, never>;
2129
- static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaMaskDirective, "input[mask], textarea[mask]", ["mask", "matchaMask"], { "mask": { "alias": "mask"; "required": false; "isSignal": true; }; "specialCharacters": { "alias": "specialCharacters"; "required": false; "isSignal": true; }; "patterns": { "alias": "patterns"; "required": false; "isSignal": true; }; "prefix": { "alias": "prefix"; "required": false; "isSignal": true; }; "suffix": { "alias": "suffix"; "required": false; "isSignal": true; }; "thousandSeparator": { "alias": "thousandSeparator"; "required": false; "isSignal": true; }; "decimalMarker": { "alias": "decimalMarker"; "required": false; "isSignal": true; }; "dropSpecialCharacters": { "alias": "dropSpecialCharacters"; "required": false; "isSignal": true; }; "hiddenInput": { "alias": "hiddenInput"; "required": false; "isSignal": true; }; "showMaskTyped": { "alias": "showMaskTyped"; "required": false; "isSignal": true; }; "placeHolderCharacter": { "alias": "placeHolderCharacter"; "required": false; "isSignal": true; }; "shownMaskExpression": { "alias": "shownMaskExpression"; "required": false; "isSignal": true; }; "clearIfNotMatch": { "alias": "clearIfNotMatch"; "required": false; "isSignal": true; }; "validation": { "alias": "validation"; "required": false; "isSignal": true; }; "separatorLimit": { "alias": "separatorLimit"; "required": false; "isSignal": true; }; "allowNegativeNumbers": { "alias": "allowNegativeNumbers"; "required": false; "isSignal": true; }; "leadZeroDateTime": { "alias": "leadZeroDateTime"; "required": false; "isSignal": true; }; "leadZero": { "alias": "leadZero"; "required": false; "isSignal": true; }; "triggerOnMaskChange": { "alias": "triggerOnMaskChange"; "required": false; "isSignal": true; }; "apm": { "alias": "apm"; "required": false; "isSignal": true; }; "inputTransformFn": { "alias": "inputTransformFn"; "required": false; "isSignal": true; }; "outputTransformFn": { "alias": "outputTransformFn"; "required": false; "isSignal": true; }; "keepCharacterPositions": { "alias": "keepCharacterPositions"; "required": false; "isSignal": true; }; "instantPrefix": { "alias": "instantPrefix"; "required": false; "isSignal": true; }; }, { "maskFilled": "maskFilled"; }, never, never, false, never>;
2130
- }
2131
-
2132
- declare class MatchaMaskPipe implements PipeTransform {
2133
- private readonly defaultOptions;
2134
- private readonly _maskService;
2135
- private _maskExpressionArray;
2136
- private mask;
2137
- transform(value: string | number, mask: string, { patterns, ...config }?: Partial<MatchaMaskConfig>): string;
2138
- private _setMask;
2139
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaMaskPipe, never>;
2140
- static ɵpipe: i0.ɵɵPipeDeclaration<MatchaMaskPipe, "mask", false>;
2111
+ validate(control: FormControl): ValidationErrors | null;
2112
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaMaskCompatibleDirective, never>;
2113
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaMaskCompatibleDirective, "input[mask], textarea[mask]", ["mask", "matchaMask"], { "mask": { "alias": "mask"; "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; }; }, { "maskFilled": "maskFilled"; }, never, never, false, never>;
2141
2114
  }
2142
2115
 
2143
- declare const options: MatchaMaskOptions;
2144
- declare class MatchaMaskModule {
2145
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaMaskModule, never>;
2146
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaMaskModule, [typeof MatchaMaskDirective, typeof MatchaMaskPipe], [typeof i2.CommonModule], [typeof MatchaMaskDirective, typeof MatchaMaskPipe]>;
2147
- static ɵinj: i0.ɵɵInjectorDeclaration<MatchaMaskModule>;
2116
+ declare const compatibleOptions: MatchaMaskOptions;
2117
+ declare class MatchaMaskCompatibleModule {
2118
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaMaskCompatibleModule, never>;
2119
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaMaskCompatibleModule, [typeof MatchaMaskCompatibleDirective], [typeof i2.CommonModule], [typeof MatchaMaskCompatibleDirective]>;
2120
+ static ɵinj: i0.ɵɵInjectorDeclaration<MatchaMaskCompatibleModule>;
2148
2121
  }
2149
2122
 
2150
2123
  declare class MatchaInputPhoneModule {
2151
2124
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaInputPhoneModule, never>;
2152
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaInputPhoneModule, [typeof MatchaInputPhoneComponent], [typeof i2.CommonModule, typeof MatchaFormFieldModule, typeof i3.FormsModule, typeof MatchaMaskModule], [typeof MatchaInputPhoneComponent]>;
2125
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaInputPhoneModule, [typeof MatchaInputPhoneComponent], [typeof i2.CommonModule, typeof MatchaFormFieldModule, typeof i3.FormsModule, typeof MatchaMaskCompatibleModule], [typeof MatchaInputPhoneComponent]>;
2153
2126
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaInputPhoneModule>;
2154
2127
  }
2155
2128
 
@@ -2345,6 +2318,99 @@ declare class MatchaHighlightModule {
2345
2318
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaHighlightModule>;
2346
2319
  }
2347
2320
 
2321
+ type CustomKeyboardEvent = KeyboardEvent;
2322
+
2323
+ declare class MatchaMaskDirective implements ControlValueAccessor, OnChanges, Validator {
2324
+ mask: i0.InputSignal<string | null | undefined>;
2325
+ specialCharacters: i0.InputSignal<string[] | readonly string[]>;
2326
+ patterns: i0.InputSignal<Record<string, {
2327
+ pattern: RegExp;
2328
+ optional?: boolean;
2329
+ symbol?: string;
2330
+ }>>;
2331
+ prefix: i0.InputSignal<string>;
2332
+ suffix: i0.InputSignal<string>;
2333
+ thousandSeparator: i0.InputSignal<string>;
2334
+ decimalMarker: i0.InputSignal<"," | "." | [".", ","]>;
2335
+ dropSpecialCharacters: i0.InputSignal<boolean | string[] | readonly string[] | null>;
2336
+ hiddenInput: i0.InputSignal<boolean | null>;
2337
+ showMaskTyped: i0.InputSignal<boolean | null>;
2338
+ placeHolderCharacter: i0.InputSignal<string | null>;
2339
+ shownMaskExpression: i0.InputSignal<string | null>;
2340
+ clearIfNotMatch: i0.InputSignal<boolean | null>;
2341
+ validation: i0.InputSignal<boolean | null>;
2342
+ separatorLimit: i0.InputSignal<string | null>;
2343
+ allowNegativeNumbers: i0.InputSignal<boolean | null>;
2344
+ leadZeroDateTime: i0.InputSignal<boolean | null>;
2345
+ leadZero: i0.InputSignal<boolean | null>;
2346
+ triggerOnMaskChange: i0.InputSignal<boolean | null>;
2347
+ apm: i0.InputSignal<boolean | null>;
2348
+ inputTransformFn: i0.InputSignal<matcha_components.InputTransformFn | null>;
2349
+ outputTransformFn: i0.InputSignal<matcha_components.OutputTransformFn | null>;
2350
+ keepCharacterPositions: i0.InputSignal<boolean | null>;
2351
+ instantPrefix: i0.InputSignal<boolean | null>;
2352
+ maskFilled: i0.OutputEmitterRef<void>;
2353
+ private _maskValue;
2354
+ private _inputValue;
2355
+ private _position;
2356
+ private _code;
2357
+ private _maskExpressionArray;
2358
+ private _justPasted;
2359
+ private _isFocused;
2360
+ /**For IME composition event */
2361
+ private _isComposing;
2362
+ _maskService: MatchaMaskService;
2363
+ private readonly document;
2364
+ protected _config: MatchaMaskConfig;
2365
+ onChange: (_: any) => void;
2366
+ onTouch: () => void;
2367
+ ngOnChanges(changes: SimpleChanges): void;
2368
+ validate({ value }: FormControl): ValidationErrors | null;
2369
+ onPaste(): void;
2370
+ onFocus(): void;
2371
+ onModelChange(value: string | undefined | null | number): void;
2372
+ onInput(e: CustomKeyboardEvent): void;
2373
+ onCompositionStart(): void;
2374
+ onCompositionEnd(e: CustomKeyboardEvent): void;
2375
+ onBlur(e: CustomKeyboardEvent): void;
2376
+ onClick(e: MouseEvent | CustomKeyboardEvent): void;
2377
+ onKeyDown(e: CustomKeyboardEvent): void;
2378
+ /** It writes the value in the input */
2379
+ writeValue(controlValue: unknown): Promise<void>;
2380
+ registerOnChange(fn: typeof this.onChange): void;
2381
+ registerOnTouched(fn: typeof this.onTouch): void;
2382
+ private _getActiveElement;
2383
+ checkSelectionOnDeletion(el: HTMLInputElement): void;
2384
+ /** It disables the input element */
2385
+ setDisabledState(isDisabled: boolean): void;
2386
+ private _applyMask;
2387
+ private _validateTime;
2388
+ private _getActualInputLength;
2389
+ private _createValidationError;
2390
+ private _setMask;
2391
+ private _areAllCharactersInEachStringSame;
2392
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaMaskDirective, never>;
2393
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaMaskDirective, "input[mask], textarea[mask]", ["mask", "matchaMask"], { "mask": { "alias": "mask"; "required": false; "isSignal": true; }; "specialCharacters": { "alias": "specialCharacters"; "required": false; "isSignal": true; }; "patterns": { "alias": "patterns"; "required": false; "isSignal": true; }; "prefix": { "alias": "prefix"; "required": false; "isSignal": true; }; "suffix": { "alias": "suffix"; "required": false; "isSignal": true; }; "thousandSeparator": { "alias": "thousandSeparator"; "required": false; "isSignal": true; }; "decimalMarker": { "alias": "decimalMarker"; "required": false; "isSignal": true; }; "dropSpecialCharacters": { "alias": "dropSpecialCharacters"; "required": false; "isSignal": true; }; "hiddenInput": { "alias": "hiddenInput"; "required": false; "isSignal": true; }; "showMaskTyped": { "alias": "showMaskTyped"; "required": false; "isSignal": true; }; "placeHolderCharacter": { "alias": "placeHolderCharacter"; "required": false; "isSignal": true; }; "shownMaskExpression": { "alias": "shownMaskExpression"; "required": false; "isSignal": true; }; "clearIfNotMatch": { "alias": "clearIfNotMatch"; "required": false; "isSignal": true; }; "validation": { "alias": "validation"; "required": false; "isSignal": true; }; "separatorLimit": { "alias": "separatorLimit"; "required": false; "isSignal": true; }; "allowNegativeNumbers": { "alias": "allowNegativeNumbers"; "required": false; "isSignal": true; }; "leadZeroDateTime": { "alias": "leadZeroDateTime"; "required": false; "isSignal": true; }; "leadZero": { "alias": "leadZero"; "required": false; "isSignal": true; }; "triggerOnMaskChange": { "alias": "triggerOnMaskChange"; "required": false; "isSignal": true; }; "apm": { "alias": "apm"; "required": false; "isSignal": true; }; "inputTransformFn": { "alias": "inputTransformFn"; "required": false; "isSignal": true; }; "outputTransformFn": { "alias": "outputTransformFn"; "required": false; "isSignal": true; }; "keepCharacterPositions": { "alias": "keepCharacterPositions"; "required": false; "isSignal": true; }; "instantPrefix": { "alias": "instantPrefix"; "required": false; "isSignal": true; }; }, { "maskFilled": "maskFilled"; }, never, never, false, never>;
2394
+ }
2395
+
2396
+ declare class MatchaMaskPipe implements PipeTransform {
2397
+ private readonly defaultOptions;
2398
+ private readonly _maskService;
2399
+ private _maskExpressionArray;
2400
+ private mask;
2401
+ transform(value: string | number, mask: string, { patterns, ...config }?: Partial<MatchaMaskConfig>): string;
2402
+ private _setMask;
2403
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaMaskPipe, never>;
2404
+ static ɵpipe: i0.ɵɵPipeDeclaration<MatchaMaskPipe, "mask", false>;
2405
+ }
2406
+
2407
+ declare const options: MatchaMaskOptions;
2408
+ declare class MatchaMaskModule {
2409
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaMaskModule, never>;
2410
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaMaskModule, [typeof MatchaMaskDirective, typeof MatchaMaskPipe], [typeof i2.CommonModule], [typeof MatchaMaskDirective, typeof MatchaMaskPipe]>;
2411
+ static ɵinj: i0.ɵɵInjectorDeclaration<MatchaMaskModule>;
2412
+ }
2413
+
2348
2414
  declare class MatchaAvatarModule {
2349
2415
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAvatarModule, never>;
2350
2416
  static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaAvatarModule, [typeof MatchaAvatarComponent], [typeof i2.CommonModule], [typeof MatchaAvatarComponent]>;
@@ -2529,5 +2595,5 @@ declare class StepContentDirective {
2529
2595
  static ɵdir: i0.ɵɵDirectiveDeclaration<StepContentDirective, "[step]", never, { "step": { "alias": "step"; "required": false; }; }, {}, never, never, true, never>;
2530
2596
  }
2531
2597
 
2532
- export { CopyButtonComponent, INITIAL_CONFIG, MATCHA_MASK_CONFIG, MATCHA_OPTION_PARENT, MaskExpression, MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteComponent, MatchaAutocompleteModule, MatchaAutocompleteTriggerDirective, MatchaAvatarComponent, MatchaAvatarModule, MatchaBadgeDirective, MatchaBadgeModule, MatchaBreakpointObservableModule, MatchaBreakpointObserver, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaComponentsModule, MatchaDateRangeComponent, MatchaDateRangeModule, MatchaDividerComponent, MatchaDividerModule, MatchaDragDirective, MatchaDragHandleDirective, MatchaDrawerComponent, MatchaDrawerContainerComponent, MatchaDrawerContentComponent, MatchaDrawerModule, MatchaDropListComponent, MatchaDropListModule, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaFormFieldComponent, MatchaFormFieldModule, MatchaGridComponent, MatchaGridModule, MatchaHighlightComponent, MatchaHighlightModule, MatchaHintTextComponent, MatchaHintTextModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputDirective, MatchaInputModule, MatchaInputPhoneComponent, MatchaInputPhoneModule, MatchaLabelComponent, MatchaLazyloadComponent, MatchaLazyloadDataComponent, MatchaLazyloadModule, MatchaMaskApplierService, MatchaMaskDirective, MatchaMaskModule, MatchaMaskPipe, MatchaMaskService, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaModalService, MatchaOptionComponent, MatchaOptionModule, MatchaOverlayService, MatchaPageLayoutComponent, MatchaPageLayoutModule, MatchaPaginatorComponent, MatchaPaginatorIntl, MatchaPaginatorModule, MatchaPanelComponent, MatchaPanelModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaRadioComponent, MatchaRadioModule, MatchaRippleDirective, MatchaRippleModule, MatchaSelectComponent, MatchaSelectModule, MatchaSelectTriggerDirective, MatchaSidenavDirective, MatchaSidenavModule, MatchaSkeletonComponent, MatchaSkeletonModule, MatchaSlideToggleComponent, MatchaSlideToggleModule, MatchaSliderComponent, MatchaSliderModule, MatchaSnackBarDirective, MatchaSnackBarModule, MatchaSortHeaderDirective, MatchaSortHeaderModule, MatchaSpinComponent, MatchaSpinModule, MatchaSpinnerComponent, MatchaSpinnerModule, MatchaStepperComponent, MatchaStepperContentComponent, MatchaStepperControllerComponent, MatchaStepperModule, MatchaStepperStateService, MatchaTabItemComponent, MatchaTableDirective, MatchaTableModule, MatchaTabsComponent, MatchaTabsModule, MatchaTimeComponent, MatchaTimeModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarCustomButtonComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, NEW_CONFIG, NextStepDirective, PrevStepDirective, StepComponent, StepContentDirective, initialConfig, options, timeMasks, withoutValidation };
2598
+ export { CopyButtonComponent, INITIAL_CONFIG, MATCHA_MASK_CONFIG, MATCHA_OPTION_PARENT, MaskExpression, MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteComponent, MatchaAutocompleteModule, MatchaAutocompleteTriggerDirective, MatchaAvatarComponent, MatchaAvatarModule, MatchaBadgeDirective, MatchaBadgeModule, MatchaBreakpointObservableModule, MatchaBreakpointObserver, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaComponentsModule, MatchaDateRangeComponent, MatchaDateRangeModule, MatchaDividerComponent, MatchaDividerModule, MatchaDragDirective, MatchaDragHandleDirective, MatchaDrawerComponent, MatchaDrawerContainerComponent, MatchaDrawerContentComponent, MatchaDrawerModule, MatchaDropListComponent, MatchaDropListModule, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaFormFieldComponent, MatchaFormFieldModule, MatchaGridComponent, MatchaGridModule, MatchaHighlightComponent, MatchaHighlightModule, MatchaHintTextComponent, MatchaHintTextModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputDirective, MatchaInputModule, MatchaInputPhoneComponent, MatchaInputPhoneModule, MatchaLabelComponent, MatchaLazyloadComponent, MatchaLazyloadDataComponent, MatchaLazyloadModule, MatchaMaskApplierService, MatchaMaskCompatibleDirective, MatchaMaskCompatibleModule, MatchaMaskDirective, MatchaMaskModule, MatchaMaskPipe, MatchaMaskService, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaModalService, MatchaOptionComponent, MatchaOptionModule, MatchaOverlayService, MatchaPageLayoutComponent, MatchaPageLayoutModule, MatchaPaginatorComponent, MatchaPaginatorIntl, MatchaPaginatorModule, MatchaPanelComponent, MatchaPanelModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaRadioComponent, MatchaRadioModule, MatchaRippleDirective, MatchaRippleModule, MatchaSelectComponent, MatchaSelectModule, MatchaSelectTriggerDirective, MatchaSidenavDirective, MatchaSidenavModule, MatchaSkeletonComponent, MatchaSkeletonModule, MatchaSlideToggleComponent, MatchaSlideToggleModule, MatchaSliderComponent, MatchaSliderModule, MatchaSnackBarDirective, MatchaSnackBarModule, MatchaSortHeaderDirective, MatchaSortHeaderModule, MatchaSpinComponent, MatchaSpinModule, MatchaSpinnerComponent, MatchaSpinnerModule, MatchaStepperComponent, MatchaStepperContentComponent, MatchaStepperControllerComponent, MatchaStepperModule, MatchaStepperStateService, MatchaTabItemComponent, MatchaTableDirective, MatchaTableModule, MatchaTabsComponent, MatchaTabsModule, MatchaTimeComponent, MatchaTimeModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarCustomButtonComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, NEW_CONFIG, NextStepDirective, PrevStepDirective, StepComponent, StepContentDirective, compatibleOptions, initialConfig, options, timeMasks, withoutValidation };
2533
2599
  export type { BreakpointState, DrawerItem, DrawerMode, DrawerPosition, DrawerSection, ILevelClasses, InputTransformFn, MatchaDropListConnectedToEvent, MatchaDropListDroppedEvent, MatchaMaskConfig, MatchaMaskOptions, MatchaOptionParent, ModalComponent, OutputTransformFn, PageEvent, PanelPlacement, PanelPosition, SliderOptions, TabChangeEvent };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matcha-components",
3
- "version": "20.43.0",
3
+ "version": "20.44.0",
4
4
  "peerDependencies": {},
5
5
  "dependencies": {
6
6
  "tslib": "^2.3.0"