matcha-components 20.275.2 → 20.277.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
@@ -267,6 +267,18 @@ interface MatchaOptionParent {
267
267
  * @param option - A instância do MatchaOptionComponent selecionado
268
268
  */
269
269
  selectOption(option: any): void;
270
+ /**
271
+ * Quando true, as opções renderizam em modo múltiplo (com matcha-checkbox).
272
+ * Lido pela matcha-option para decidir a renderização já no primeiro ciclo.
273
+ * Usado por matcha-select-multiple.
274
+ */
275
+ multiple?: boolean;
276
+ /**
277
+ * Retorna se um value está selecionado (modo múltiplo).
278
+ * Permite que a matcha-option reflita o estado "marcado" já no primeiro render,
279
+ * evitando depender de atualização imperativa posterior.
280
+ */
281
+ isSelected?(value: any): boolean;
270
282
  }
271
283
  /**
272
284
  * Token de injeção para MatchaOptionParent
@@ -278,6 +290,27 @@ declare class MatchaOptionComponent {
278
290
  private parent;
279
291
  private elRef;
280
292
  value: any;
293
+ /**
294
+ * Modo múltiplo: renderiza um matcha-checkbox (puramente visual) à esquerda
295
+ * do conteúdo. Quando não definido explicitamente, é derivado do componente
296
+ * pai (matcha-select-multiple) — assim o checkbox aparece já no primeiro
297
+ * render, mesmo quando as opções são reprojetadas de forma assíncrona.
298
+ */
299
+ private _multiple;
300
+ set multiple(value: boolean);
301
+ get multiple(): boolean;
302
+ /**
303
+ * Estado "marcado" exibido no checkbox em modo múltiplo. Derivado do pai
304
+ * (via isSelected) para refletir corretamente já no primeiro render; cai
305
+ * para `selected` quando o pai não expõe isSelected.
306
+ */
307
+ get checked(): boolean;
308
+ /**
309
+ * Destaque de navegação por teclado, independente de `selected`
310
+ * (que em modo múltiplo representa o estado "marcado/checado").
311
+ */
312
+ active: boolean;
313
+ get multipleClass(): boolean;
281
314
  private _disabled;
282
315
  get disabled(): boolean;
283
316
  set disabled(value: boolean | string);
@@ -293,7 +326,7 @@ declare class MatchaOptionComponent {
293
326
  get nativeElement(): HTMLElement;
294
327
  getTextContent(): string;
295
328
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaOptionComponent, [{ optional: true; }, null]>;
296
- static ɵcmp: i0.ɵɵComponentDeclaration<MatchaOptionComponent, "matcha-option", never, { "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "optionClick": "optionClick"; "optionSelect": "optionSelect"; }, never, ["*"], false, never>;
329
+ static ɵcmp: i0.ɵɵComponentDeclaration<MatchaOptionComponent, "matcha-option", never, { "value": { "alias": "value"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "optionClick": "optionClick"; "optionSelect": "optionSelect"; }, never, ["*"], false, never>;
297
330
  }
298
331
 
299
332
  interface PanelPosition {
@@ -339,6 +372,7 @@ declare class MatchaPanelComponent implements OnInit, OnDestroy, OnChanges {
339
372
  private destroy$;
340
373
  private globalListener?;
341
374
  private clickListener?;
375
+ private resizeObserver?;
342
376
  constructor(elRef: ElementRef, renderer: Renderer2, cdr: ChangeDetectorRef);
343
377
  ngOnInit(): void;
344
378
  ngOnDestroy(): void;
@@ -353,6 +387,8 @@ declare class MatchaPanelComponent implements OnInit, OnDestroy, OnChanges {
353
387
  * Abre o painel
354
388
  */
355
389
  openPanel(): void;
390
+ /** Reposiciona o painel sempre que a altura/largura do conteúdo muda. */
391
+ private observeContentResize;
356
392
  /**
357
393
  * Fecha o painel
358
394
  */
@@ -478,9 +514,68 @@ declare class MatchaAutocompleteTriggerDirective implements AfterViewInit, OnDes
478
514
  static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaAutocompleteTriggerDirective, "[matchaAutocomplete]", never, { "panel": { "alias": "matchaAutocomplete"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, false, never>;
479
515
  }
480
516
 
517
+ declare class MatchaCheckboxComponent implements ControlValueAccessor {
518
+ private cdr;
519
+ inputElement: ElementRef<HTMLInputElement>;
520
+ private _color;
521
+ get colorAttr(): string;
522
+ get color(): string;
523
+ set color(value: string);
524
+ private _indeterminate;
525
+ get indeterminate(): boolean;
526
+ set indeterminate(value: boolean);
527
+ private _disabled;
528
+ get disabledAttr(): string | null;
529
+ get disabled(): boolean;
530
+ set disabled(value: boolean | string);
531
+ private _checked;
532
+ get checked(): boolean;
533
+ set checked(value: boolean | string);
534
+ checkedChange: EventEmitter<{
535
+ checked: boolean;
536
+ }>;
537
+ change: EventEmitter<{
538
+ source: MatchaCheckboxComponent;
539
+ checked: boolean;
540
+ }>;
541
+ onChange: any;
542
+ onTouched: any;
543
+ writeValue(value: boolean): void;
544
+ registerOnChange(fn: any): void;
545
+ registerOnTouched(fn: any): void;
546
+ setDisabledState(isDisabled: boolean): void;
547
+ constructor(cdr: ChangeDetectorRef);
548
+ onInputChange(event: Event): void;
549
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaCheckboxComponent, never>;
550
+ static ɵcmp: i0.ɵɵComponentDeclaration<MatchaCheckboxComponent, "matcha-checkbox", never, { "color": { "alias": "color"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, { "checkedChange": "checkedChange"; "change": "change"; }, never, ["*"], false, never>;
551
+ }
552
+
553
+ declare class MatchaRippleDirective implements OnDestroy {
554
+ private el;
555
+ rippleColor: string;
556
+ private ripples;
557
+ constructor(el: ElementRef);
558
+ onMouseDown(event: MouseEvent): void;
559
+ ngOnDestroy(): void;
560
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaRippleDirective, never>;
561
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaRippleDirective, "[matchaRipple]", never, { "rippleColor": { "alias": "rippleColor"; "required": false; }; }, {}, never, never, false, never>;
562
+ }
563
+
564
+ declare class MatchaRippleModule {
565
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaRippleModule, never>;
566
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaRippleModule, [typeof MatchaRippleDirective], [typeof i2.CommonModule], [typeof MatchaRippleDirective]>;
567
+ static ɵinj: i0.ɵɵInjectorDeclaration<MatchaRippleModule>;
568
+ }
569
+
570
+ declare class MatchaCheckboxModule {
571
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaCheckboxModule, never>;
572
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaCheckboxModule, [typeof MatchaCheckboxComponent], [typeof i2.CommonModule, typeof MatchaRippleModule], [typeof MatchaCheckboxComponent]>;
573
+ static ɵinj: i0.ɵɵInjectorDeclaration<MatchaCheckboxModule>;
574
+ }
575
+
481
576
  declare class MatchaOptionModule {
482
577
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaOptionModule, never>;
483
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaOptionModule, [typeof MatchaOptionComponent], [typeof i2.CommonModule], [typeof MatchaOptionComponent]>;
578
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaOptionModule, [typeof MatchaOptionComponent], [typeof i2.CommonModule, typeof MatchaCheckboxModule], [typeof MatchaOptionComponent]>;
484
579
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaOptionModule>;
485
580
  }
486
581
 
@@ -600,215 +695,114 @@ declare class MatchaSelectModule {
600
695
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaSelectModule>;
601
696
  }
602
697
 
603
- declare class MatchaButtonToggleComponent implements AfterContentInit {
604
- private elementRef;
605
- private _multiple;
606
- get multiple(): boolean | string;
607
- set multiple(v: boolean | string);
608
- private _disabled;
609
- get disabled(): boolean | string;
610
- set disabled(v: boolean | string);
611
- get isDisabled(): string | true | null;
612
- private _required;
613
- get required(): boolean | string;
614
- set required(v: boolean | string);
615
- inactiveColor: string;
616
- inactiveType: string;
617
- private _gap;
618
- set gap(v: string | number);
619
- get gapClass(): string;
620
- get gap(): number;
621
- buttons: QueryList<MatchaButtonComponent>;
622
- constructor(elementRef: ElementRef);
623
- ngAfterContentInit(): void;
624
- private setButtonState;
625
- private onButtonSelected;
626
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaButtonToggleComponent, never>;
627
- static ɵcmp: i0.ɵɵComponentDeclaration<MatchaButtonToggleComponent, "matcha-button-toggle", never, { "multiple": { "alias": "multiple"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "inactiveColor": { "alias": "inactiveColor"; "required": false; }; "inactiveType": { "alias": "inactiveType"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; }, {}, ["buttons"], ["*"], false, never>;
628
- }
629
-
630
- declare class MatchaButtonToggleModule {
631
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaButtonToggleModule, never>;
632
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaButtonToggleModule, [typeof MatchaButtonToggleComponent], [typeof i2.CommonModule, typeof MatchaTooltipModule], [typeof MatchaButtonToggleComponent]>;
633
- static ɵinj: i0.ɵɵInjectorDeclaration<MatchaButtonToggleModule>;
634
- }
635
-
636
- declare class MatchaCardComponent {
637
- private _color;
638
- get color(): string | null;
639
- set color(v: string | null);
640
- get colorAttr(): string | null;
641
- blockquote: 'left' | 'right' | 'none' | null;
642
- blockquoteColor: string | null;
643
- class: string | null;
644
- private _alpha;
645
- get alpha(): boolean | string;
646
- set alpha(v: boolean | string);
647
- get alphaAttr(): string | null;
648
- private _tint;
649
- get tint(): boolean | string;
650
- set tint(v: boolean | string);
651
- get tintAttr(): string | null;
652
- private _loading;
653
- get loading(): boolean | string;
654
- set loading(v: boolean | string);
655
- get classes(): string;
656
- hasBlockquotePosition(): boolean;
657
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaCardComponent, never>;
658
- static ɵcmp: i0.ɵɵComponentDeclaration<MatchaCardComponent, "matcha-card", never, { "color": { "alias": "color"; "required": false; }; "blockquote": { "alias": "blockquote"; "required": false; }; "blockquoteColor": { "alias": "blockquoteColor"; "required": false; }; "class": { "alias": "class"; "required": false; }; "alpha": { "alias": "alpha"; "required": false; }; "tint": { "alias": "tint"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; }, {}, never, ["*"], false, never>;
659
- }
660
-
661
- declare class MatchaElevationDirective {
662
- private _elementRef;
663
- private _renderer;
664
- elevation: number | string;
665
- constructor(_elementRef: ElementRef, _renderer: Renderer2);
666
- ngOnChanges(): void;
667
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaElevationDirective, never>;
668
- static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaElevationDirective, "[elevation]", never, { "elevation": { "alias": "elevation"; "required": false; }; }, {}, never, never, false, never>;
669
- }
670
-
671
- declare class MatchaElevationModule {
672
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaElevationModule, never>;
673
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaElevationModule, [typeof MatchaElevationDirective], [typeof i2.CommonModule], [typeof MatchaElevationDirective]>;
674
- static ɵinj: i0.ɵɵInjectorDeclaration<MatchaElevationModule>;
675
- }
676
-
677
- declare class MatchaCardModule {
678
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaCardModule, never>;
679
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaCardModule, [typeof MatchaCardComponent], [typeof i2.CommonModule, typeof MatchaElevationModule, typeof MatchaIconModule, typeof MatchaTitleModule, typeof MatchaDividerModule, typeof MatchaTooltipModule], [typeof MatchaCardComponent]>;
680
- static ɵinj: i0.ɵɵInjectorDeclaration<MatchaCardModule>;
681
- }
682
-
683
- declare class MatchaCheckboxComponent implements ControlValueAccessor {
684
- private cdr;
685
- inputElement: ElementRef<HTMLInputElement>;
686
- private _color;
687
- get colorAttr(): string;
688
- get color(): string;
689
- set color(value: string);
690
- private _indeterminate;
691
- get indeterminate(): boolean;
692
- set indeterminate(value: boolean);
693
- private _disabled;
694
- get disabledAttr(): string | null;
695
- get disabled(): boolean;
696
- set disabled(value: boolean | string);
697
- private _checked;
698
- get checked(): boolean;
699
- set checked(value: boolean | string);
700
- checkedChange: EventEmitter<{
701
- checked: boolean;
702
- }>;
703
- change: EventEmitter<{
704
- source: MatchaCheckboxComponent;
705
- checked: boolean;
706
- }>;
707
- onChange: any;
708
- onTouched: any;
709
- writeValue(value: boolean): void;
710
- registerOnChange(fn: any): void;
711
- registerOnTouched(fn: any): void;
712
- setDisabledState(isDisabled: boolean): void;
713
- constructor(cdr: ChangeDetectorRef);
714
- onInputChange(event: Event): void;
715
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaCheckboxComponent, never>;
716
- static ɵcmp: i0.ɵɵComponentDeclaration<MatchaCheckboxComponent, "matcha-checkbox", never, { "color": { "alias": "color"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, { "checkedChange": "checkedChange"; "change": "change"; }, never, ["*"], false, never>;
717
- }
718
-
719
- declare class MatchaRippleDirective implements OnDestroy {
720
- private el;
721
- rippleColor: string;
722
- private ripples;
723
- constructor(el: ElementRef);
724
- onMouseDown(event: MouseEvent): void;
725
- ngOnDestroy(): void;
726
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaRippleDirective, never>;
727
- static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaRippleDirective, "[matchaRipple]", never, { "rippleColor": { "alias": "rippleColor"; "required": false; }; }, {}, never, never, false, never>;
728
- }
729
-
730
- declare class MatchaRippleModule {
731
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaRippleModule, never>;
732
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaRippleModule, [typeof MatchaRippleDirective], [typeof i2.CommonModule], [typeof MatchaRippleDirective]>;
733
- static ɵinj: i0.ɵɵInjectorDeclaration<MatchaRippleModule>;
734
- }
735
-
736
- declare class MatchaCheckboxModule {
737
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaCheckboxModule, never>;
738
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaCheckboxModule, [typeof MatchaCheckboxComponent], [typeof i2.CommonModule, typeof MatchaRippleModule], [typeof MatchaCheckboxComponent]>;
739
- static ɵinj: i0.ɵɵInjectorDeclaration<MatchaCheckboxModule>;
740
- }
741
-
742
- declare class MatchaRadioComponent implements ControlValueAccessor {
698
+ declare class MatchaSelectMultipleComponent implements AfterContentInit, AfterViewInit, OnDestroy, MatchaOptionParent, ControlValueAccessor {
699
+ elRef: ElementRef;
743
700
  private cdr;
744
- inputElement: ElementRef<HTMLInputElement>;
745
- color: string;
746
- value: any;
747
- name: string;
748
- private _disabled;
749
- set disabled(value: boolean | string);
750
- get disabled(): boolean;
751
- get checked(): boolean;
752
- set checked(value: boolean);
753
- private _checked;
754
- private _modelValue;
755
- checkedChange: EventEmitter<{
756
- checked: boolean;
757
- }>;
758
- change: EventEmitter<{
759
- source: MatchaRadioComponent;
760
- value: any;
761
- }>;
762
- onChange: any;
763
- onTouched: any;
764
- writeValue(value: any): void;
765
- registerOnChange(fn: any): void;
766
- registerOnTouched(fn: any): void;
767
- setDisabledState(isDisabled: boolean): void;
768
- constructor(cdr: ChangeDetectorRef);
769
- onInputChange(event: Event): void;
770
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaRadioComponent, never>;
771
- static ɵcmp: i0.ɵɵComponentDeclaration<MatchaRadioComponent, "matcha-radio", never, { "color": { "alias": "color"; "required": false; }; "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, { "checkedChange": "checkedChange"; "change": "change"; }, never, ["*"], false, never>;
772
- }
773
-
774
- declare class MatchaRadioGroupComponent implements ControlValueAccessor, AfterContentInit, OnDestroy {
775
- private _cdr;
776
- radios: QueryList<MatchaRadioComponent>;
777
- get value(): any;
778
- set value(newValue: any);
779
- private _value;
780
- name: string;
781
- get disabled(): boolean;
782
- set disabled(value: boolean);
783
- private _disabled;
784
- change: EventEmitter<{
785
- source: MatchaRadioComponent;
701
+ options: QueryList<MatchaOptionComponent>;
702
+ panel: MatchaPanelComponent;
703
+ searchInputRef?: ElementRef<HTMLInputElement>;
704
+ selectedValues: any[];
705
+ /**
706
+ * Lido pela matcha-option (via MATCHA_OPTION_PARENT) para renderizar o
707
+ * checkbox já no primeiro ciclo, mesmo quando as opções são reprojetadas.
708
+ */
709
+ readonly multiple = true;
710
+ /**
711
+ * Itens selecionados renderizados na seção fixa do topo do painel.
712
+ * Mantidos pelo próprio componente (com labels capturados) para que
713
+ * permaneçam visíveis mesmo que a busca do pai remova suas opções.
714
+ */
715
+ selectedItems: {
786
716
  value: any;
717
+ label: string;
718
+ }[];
719
+ private selectedLabels;
720
+ placement: 'bottom' | 'top' | 'auto';
721
+ maxHeight: number;
722
+ minWidth: number;
723
+ placeholder: string;
724
+ disabled: boolean;
725
+ label: string;
726
+ /** Título da seção fixa de opções selecionadas no topo do painel. */
727
+ selectedHeader: string;
728
+ searchable: boolean;
729
+ searchPlaceholder: string;
730
+ searchDebounce: number;
731
+ opened: EventEmitter<void>;
732
+ closed: EventEmitter<void>;
733
+ selectionChange: EventEmitter<{
734
+ source: MatchaSelectMultipleComponent;
735
+ value: any[];
787
736
  }>;
788
- onChange: (value: any) => void;
789
- onTouched: () => void;
790
- private _unsubscribeAll;
791
- private _radioSubscriptions;
792
- private _isInitialized;
793
- constructor(_cdr: ChangeDetectorRef);
737
+ openedChange: EventEmitter<boolean>;
738
+ /** Emitido (com debounce) conforme o usuário digita no campo de busca. */
739
+ searchChange: EventEmitter<string>;
740
+ open: boolean;
741
+ triggerElement?: HTMLElement;
742
+ private activeIndex;
743
+ private optionsSub?;
744
+ private search$;
745
+ private searchSub?;
746
+ private onChange;
747
+ private onTouched;
748
+ private isDisabledByForm;
749
+ get isCurrentlyDisabled(): boolean;
750
+ get hostDisabledClass(): boolean;
751
+ get hostDisabledAttr(): string | null;
752
+ constructor(elRef: ElementRef, cdr: ChangeDetectorRef);
794
753
  ngAfterContentInit(): void;
795
- private updateNames;
796
- private subscribeToRadios;
754
+ ngAfterViewInit(): void;
755
+ ngOnDestroy(): void;
756
+ /** Handler do input de busca: empurra o valor para o fluxo com debounce. */
757
+ onSearchInput(event: Event): void;
758
+ /** Permite navegar/alternar/fechar usando o teclado a partir do campo de busca. */
759
+ onSearchKeydown(event: KeyboardEvent): void;
760
+ /** Dá foco ao campo de busca (chamado ao abrir o painel). */
761
+ private focusSearchInput;
762
+ /** Sincroniza o estado checado das opções (o modo múltiplo é derivado do pai). */
763
+ private setupOptions;
764
+ private setupKeyboardNavigation;
765
+ onTriggerClick(): void;
766
+ openPanel(): void;
767
+ closePanel(): void;
768
+ togglePanel(): void;
769
+ /** Chamado pelo matcha-option (via MATCHA_OPTION_PARENT) ao clicar na opção ou no checkbox. */
770
+ selectOption(option: MatchaOptionComponent): void;
771
+ /** Alterna a marcação de um value. Usado pelas opções e pela seção fixa de selecionados. */
772
+ toggleByValue(value: any): void;
773
+ private toggleValue;
774
+ isSelected(value: any): boolean;
775
+ trackByValue: (_: number, item: {
776
+ value: any;
777
+ }) => any;
778
+ private syncOptionStates;
779
+ /** Reconstrói a lista de selecionados, capturando/atualizando os labels. */
780
+ private rebuildSelectedItems;
781
+ private emitChange;
782
+ /** Retorna as opções com as marcadas primeiro, preservando a ordem de declaração. */
783
+ private getOrderedOptions;
784
+ /** Opções navegáveis por teclado: visíveis (não selecionadas) e habilitadas. */
785
+ private getNavigableOptions;
786
+ /** Reanexa os elementos no DOM colocando as opções marcadas no início. */
787
+ private reorderOptions;
788
+ private resetActive;
789
+ private clearActive;
790
+ private updateActiveStates;
791
+ highlightNext(): void;
792
+ highlightPrevious(): void;
793
+ private scrollToActive;
794
+ private toggleActive;
795
+ getSelectedLabel(): string;
796
+ get hasSelection(): boolean;
797
+ /** Limpa toda a seleção. */
798
+ clearSelection(): void;
797
799
  writeValue(value: any): void;
798
800
  registerOnChange(fn: (value: any) => void): void;
799
801
  registerOnTouched(fn: () => void): void;
800
802
  setDisabledState(isDisabled: boolean): void;
801
- private updateSelectedRadioFromValue;
802
- private updateDisabledState;
803
- ngOnDestroy(): void;
804
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaRadioGroupComponent, never>;
805
- static ɵcmp: i0.ɵɵComponentDeclaration<MatchaRadioGroupComponent, "matcha-radio-group", never, { "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "change": "change"; }, ["radios"], ["*"], false, never>;
806
- }
807
-
808
- declare class MatchaRadioModule {
809
- static ɵfac: i0.ɵɵFactoryDeclaration<MatchaRadioModule, never>;
810
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaRadioModule, [typeof MatchaRadioComponent, typeof MatchaRadioGroupComponent], [typeof i2.CommonModule, typeof MatchaRippleModule], [typeof MatchaRadioComponent, typeof MatchaRadioGroupComponent]>;
811
- static ɵinj: i0.ɵɵInjectorDeclaration<MatchaRadioModule>;
803
+ private ensurePanelClosed;
804
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSelectMultipleComponent, never>;
805
+ static ɵcmp: i0.ɵɵComponentDeclaration<MatchaSelectMultipleComponent, "matcha-select-multiple", never, { "placement": { "alias": "placement"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "selectedHeader": { "alias": "selectedHeader"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; }; "searchDebounce": { "alias": "searchDebounce"; "required": false; }; }, { "opened": "opened"; "closed": "closed"; "selectionChange": "selectionChange"; "openedChange": "openedChange"; "searchChange": "searchChange"; }, ["options"], ["*"], false, never>;
812
806
  }
813
807
 
814
808
  declare class MatchaFormFieldComponent implements AfterViewInit, OnDestroy {
@@ -1158,6 +1152,164 @@ declare class MatchaFormFieldModule {
1158
1152
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaFormFieldModule>;
1159
1153
  }
1160
1154
 
1155
+ declare class MatchaSelectMultipleModule {
1156
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSelectMultipleModule, never>;
1157
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaSelectMultipleModule, [typeof MatchaSelectMultipleComponent], [typeof i2.CommonModule, typeof MatchaOptionModule, typeof MatchaPanelModule, typeof MatchaFormFieldModule, typeof MatchaIconModule, typeof MatchaDividerModule], [typeof MatchaSelectMultipleComponent, typeof MatchaOptionModule, typeof MatchaDividerModule]>;
1158
+ static ɵinj: i0.ɵɵInjectorDeclaration<MatchaSelectMultipleModule>;
1159
+ }
1160
+
1161
+ declare class MatchaButtonToggleComponent implements AfterContentInit {
1162
+ private elementRef;
1163
+ private _multiple;
1164
+ get multiple(): boolean | string;
1165
+ set multiple(v: boolean | string);
1166
+ private _disabled;
1167
+ get disabled(): boolean | string;
1168
+ set disabled(v: boolean | string);
1169
+ get isDisabled(): string | true | null;
1170
+ private _required;
1171
+ get required(): boolean | string;
1172
+ set required(v: boolean | string);
1173
+ inactiveColor: string;
1174
+ inactiveType: string;
1175
+ private _gap;
1176
+ set gap(v: string | number);
1177
+ get gapClass(): string;
1178
+ get gap(): number;
1179
+ buttons: QueryList<MatchaButtonComponent>;
1180
+ constructor(elementRef: ElementRef);
1181
+ ngAfterContentInit(): void;
1182
+ private setButtonState;
1183
+ private onButtonSelected;
1184
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaButtonToggleComponent, never>;
1185
+ static ɵcmp: i0.ɵɵComponentDeclaration<MatchaButtonToggleComponent, "matcha-button-toggle", never, { "multiple": { "alias": "multiple"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "inactiveColor": { "alias": "inactiveColor"; "required": false; }; "inactiveType": { "alias": "inactiveType"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; }, {}, ["buttons"], ["*"], false, never>;
1186
+ }
1187
+
1188
+ declare class MatchaButtonToggleModule {
1189
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaButtonToggleModule, never>;
1190
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaButtonToggleModule, [typeof MatchaButtonToggleComponent], [typeof i2.CommonModule, typeof MatchaTooltipModule], [typeof MatchaButtonToggleComponent]>;
1191
+ static ɵinj: i0.ɵɵInjectorDeclaration<MatchaButtonToggleModule>;
1192
+ }
1193
+
1194
+ declare class MatchaCardComponent {
1195
+ private _color;
1196
+ get color(): string | null;
1197
+ set color(v: string | null);
1198
+ get colorAttr(): string | null;
1199
+ blockquote: 'left' | 'right' | 'none' | null;
1200
+ blockquoteColor: string | null;
1201
+ class: string | null;
1202
+ private _alpha;
1203
+ get alpha(): boolean | string;
1204
+ set alpha(v: boolean | string);
1205
+ get alphaAttr(): string | null;
1206
+ private _tint;
1207
+ get tint(): boolean | string;
1208
+ set tint(v: boolean | string);
1209
+ get tintAttr(): string | null;
1210
+ private _loading;
1211
+ get loading(): boolean | string;
1212
+ set loading(v: boolean | string);
1213
+ get classes(): string;
1214
+ hasBlockquotePosition(): boolean;
1215
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaCardComponent, never>;
1216
+ static ɵcmp: i0.ɵɵComponentDeclaration<MatchaCardComponent, "matcha-card", never, { "color": { "alias": "color"; "required": false; }; "blockquote": { "alias": "blockquote"; "required": false; }; "blockquoteColor": { "alias": "blockquoteColor"; "required": false; }; "class": { "alias": "class"; "required": false; }; "alpha": { "alias": "alpha"; "required": false; }; "tint": { "alias": "tint"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; }, {}, never, ["*"], false, never>;
1217
+ }
1218
+
1219
+ declare class MatchaElevationDirective {
1220
+ private _elementRef;
1221
+ private _renderer;
1222
+ elevation: number | string;
1223
+ constructor(_elementRef: ElementRef, _renderer: Renderer2);
1224
+ ngOnChanges(): void;
1225
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaElevationDirective, never>;
1226
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaElevationDirective, "[elevation]", never, { "elevation": { "alias": "elevation"; "required": false; }; }, {}, never, never, false, never>;
1227
+ }
1228
+
1229
+ declare class MatchaElevationModule {
1230
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaElevationModule, never>;
1231
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaElevationModule, [typeof MatchaElevationDirective], [typeof i2.CommonModule], [typeof MatchaElevationDirective]>;
1232
+ static ɵinj: i0.ɵɵInjectorDeclaration<MatchaElevationModule>;
1233
+ }
1234
+
1235
+ declare class MatchaCardModule {
1236
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaCardModule, never>;
1237
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaCardModule, [typeof MatchaCardComponent], [typeof i2.CommonModule, typeof MatchaElevationModule, typeof MatchaIconModule, typeof MatchaTitleModule, typeof MatchaDividerModule, typeof MatchaTooltipModule], [typeof MatchaCardComponent]>;
1238
+ static ɵinj: i0.ɵɵInjectorDeclaration<MatchaCardModule>;
1239
+ }
1240
+
1241
+ declare class MatchaRadioComponent implements ControlValueAccessor {
1242
+ private cdr;
1243
+ inputElement: ElementRef<HTMLInputElement>;
1244
+ color: string;
1245
+ value: any;
1246
+ name: string;
1247
+ private _disabled;
1248
+ set disabled(value: boolean | string);
1249
+ get disabled(): boolean;
1250
+ get checked(): boolean;
1251
+ set checked(value: boolean);
1252
+ private _checked;
1253
+ private _modelValue;
1254
+ checkedChange: EventEmitter<{
1255
+ checked: boolean;
1256
+ }>;
1257
+ change: EventEmitter<{
1258
+ source: MatchaRadioComponent;
1259
+ value: any;
1260
+ }>;
1261
+ onChange: any;
1262
+ onTouched: any;
1263
+ writeValue(value: any): void;
1264
+ registerOnChange(fn: any): void;
1265
+ registerOnTouched(fn: any): void;
1266
+ setDisabledState(isDisabled: boolean): void;
1267
+ constructor(cdr: ChangeDetectorRef);
1268
+ onInputChange(event: Event): void;
1269
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaRadioComponent, never>;
1270
+ static ɵcmp: i0.ɵɵComponentDeclaration<MatchaRadioComponent, "matcha-radio", never, { "color": { "alias": "color"; "required": false; }; "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, { "checkedChange": "checkedChange"; "change": "change"; }, never, ["*"], false, never>;
1271
+ }
1272
+
1273
+ declare class MatchaRadioGroupComponent implements ControlValueAccessor, AfterContentInit, OnDestroy {
1274
+ private _cdr;
1275
+ radios: QueryList<MatchaRadioComponent>;
1276
+ get value(): any;
1277
+ set value(newValue: any);
1278
+ private _value;
1279
+ name: string;
1280
+ get disabled(): boolean;
1281
+ set disabled(value: boolean);
1282
+ private _disabled;
1283
+ change: EventEmitter<{
1284
+ source: MatchaRadioComponent;
1285
+ value: any;
1286
+ }>;
1287
+ onChange: (value: any) => void;
1288
+ onTouched: () => void;
1289
+ private _unsubscribeAll;
1290
+ private _radioSubscriptions;
1291
+ private _isInitialized;
1292
+ constructor(_cdr: ChangeDetectorRef);
1293
+ ngAfterContentInit(): void;
1294
+ private updateNames;
1295
+ private subscribeToRadios;
1296
+ writeValue(value: any): void;
1297
+ registerOnChange(fn: (value: any) => void): void;
1298
+ registerOnTouched(fn: () => void): void;
1299
+ setDisabledState(isDisabled: boolean): void;
1300
+ private updateSelectedRadioFromValue;
1301
+ private updateDisabledState;
1302
+ ngOnDestroy(): void;
1303
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaRadioGroupComponent, never>;
1304
+ static ɵcmp: i0.ɵɵComponentDeclaration<MatchaRadioGroupComponent, "matcha-radio-group", never, { "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "change": "change"; }, ["radios"], ["*"], false, never>;
1305
+ }
1306
+
1307
+ declare class MatchaRadioModule {
1308
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaRadioModule, never>;
1309
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaRadioModule, [typeof MatchaRadioComponent, typeof MatchaRadioGroupComponent], [typeof i2.CommonModule, typeof MatchaRippleModule], [typeof MatchaRadioComponent, typeof MatchaRadioGroupComponent]>;
1310
+ static ɵinj: i0.ɵɵInjectorDeclaration<MatchaRadioModule>;
1311
+ }
1312
+
1161
1313
  declare class MatchaHintTextComponent {
1162
1314
  type: string;
1163
1315
  size: string;
@@ -2760,7 +2912,7 @@ declare class MatchaSnackBarComponent implements OnInit, OnDestroy {
2760
2912
  visible: boolean;
2761
2913
  private timeoutId;
2762
2914
  get colorAttr(): "error" | "warning" | "info" | "success";
2763
- get positionAttr(): "top" | "bottom";
2915
+ get positionAttr(): "bottom" | "top";
2764
2916
  get classes(): string;
2765
2917
  constructor(snackBarService: MatchaSnackBarService);
2766
2918
  ngOnInit(): void;
@@ -2904,7 +3056,7 @@ declare class MatchaAvatarModule {
2904
3056
 
2905
3057
  declare class MatchaComponentsModule {
2906
3058
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaComponentsModule, never>;
2907
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaComponentsModule, [typeof MatchaOverflowDraggableComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof MatchaAccordionModule, typeof MatchaAutocompleteModule, typeof MatchaOptionModule, typeof MatchaPanelModule, typeof MatchaSelectModule, typeof MatchaButtonModule, typeof MatchaButtonToggleModule, typeof MatchaCardModule, typeof MatchaCheckboxModule, typeof MatchaRadioModule, typeof MatchaDividerModule, typeof MatchaElevationModule, typeof MatchaFormFieldModule, typeof MatchaHintTextModule, typeof MatchaIconModule, typeof MatchaInfiniteScrollModule, typeof MatchaLazyloadModule, typeof MatchaInputPhoneModule, typeof MatchaMasonryModule, typeof MatchaModalModule, typeof MatchaPaginatorModule, typeof MatchaRippleModule, typeof MatchaSlideToggleModule, typeof MatchaMsgBoxModule, typeof MatchaSliderModule, typeof MatchaSpinModule, typeof MatchaSpinnerModule, typeof MatchaProgressBarModule, typeof MatchaStepperModule, typeof MatchaTabsModule, typeof MatchaTitleModule, typeof MatchaTooltipModule, typeof MatchaDateRangeModule, typeof MatchaTimeModule, typeof MatchaTimeRangeModule, typeof MatchaDropListModule, typeof MatchaPageLayoutModule, typeof MatchaDrawerModule, typeof MatchaHighlightModule, typeof MatchaMaskModule, typeof MatchaChipModule, typeof MatchaMenuModule, typeof MatchaListModule, typeof MatchaSnackBarModule, typeof MatchaTextEditorModule], [typeof MatchaAccordionModule, typeof MatchaAutocompleteModule, typeof MatchaOptionModule, typeof MatchaPanelModule, typeof MatchaSelectModule, typeof MatchaButtonModule, typeof MatchaButtonToggleModule, typeof MatchaCardModule, typeof MatchaCheckboxModule, typeof MatchaRadioModule, typeof MatchaDividerModule, typeof MatchaElevationModule, typeof MatchaFormFieldModule, typeof MatchaHintTextModule, typeof MatchaIconModule, typeof MatchaInfiniteScrollModule, typeof MatchaLazyloadModule, typeof MatchaInputPhoneModule, typeof MatchaMasonryModule, typeof MatchaModalModule, typeof MatchaPaginatorModule, typeof MatchaRippleModule, typeof MatchaSlideToggleModule, typeof MatchaMsgBoxModule, typeof MatchaSliderModule, typeof MatchaSpinModule, typeof MatchaSpinnerModule, typeof MatchaProgressBarModule, typeof MatchaStepperModule, typeof MatchaTabsModule, typeof MatchaTitleModule, typeof MatchaTooltipModule, typeof MatchaDateRangeModule, typeof MatchaTimeModule, typeof MatchaTimeRangeModule, typeof MatchaDropListModule, typeof MatchaPageLayoutModule, typeof MatchaAvatarModule, typeof MatchaDrawerModule, typeof MatchaHighlightModule, typeof MatchaMaskModule, typeof MatchaChipModule, typeof MatchaMenuModule, typeof MatchaListModule, typeof MatchaSnackBarModule, typeof MatchaTextEditorModule]>;
3059
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaComponentsModule, [typeof MatchaOverflowDraggableComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof MatchaAccordionModule, typeof MatchaAutocompleteModule, typeof MatchaOptionModule, typeof MatchaPanelModule, typeof MatchaSelectModule, typeof MatchaSelectMultipleModule, typeof MatchaButtonModule, typeof MatchaButtonToggleModule, typeof MatchaCardModule, typeof MatchaCheckboxModule, typeof MatchaRadioModule, typeof MatchaDividerModule, typeof MatchaElevationModule, typeof MatchaFormFieldModule, typeof MatchaHintTextModule, typeof MatchaIconModule, typeof MatchaInfiniteScrollModule, typeof MatchaLazyloadModule, typeof MatchaInputPhoneModule, typeof MatchaMasonryModule, typeof MatchaModalModule, typeof MatchaPaginatorModule, typeof MatchaRippleModule, typeof MatchaSlideToggleModule, typeof MatchaMsgBoxModule, typeof MatchaSliderModule, typeof MatchaSpinModule, typeof MatchaSpinnerModule, typeof MatchaProgressBarModule, typeof MatchaStepperModule, typeof MatchaTabsModule, typeof MatchaTitleModule, typeof MatchaTooltipModule, typeof MatchaDateRangeModule, typeof MatchaTimeModule, typeof MatchaTimeRangeModule, typeof MatchaDropListModule, typeof MatchaPageLayoutModule, typeof MatchaDrawerModule, typeof MatchaHighlightModule, typeof MatchaMaskModule, typeof MatchaChipModule, typeof MatchaMenuModule, typeof MatchaListModule, typeof MatchaSnackBarModule, typeof MatchaTextEditorModule], [typeof MatchaAccordionModule, typeof MatchaAutocompleteModule, typeof MatchaOptionModule, typeof MatchaPanelModule, typeof MatchaSelectModule, typeof MatchaSelectMultipleModule, typeof MatchaButtonModule, typeof MatchaButtonToggleModule, typeof MatchaCardModule, typeof MatchaCheckboxModule, typeof MatchaRadioModule, typeof MatchaDividerModule, typeof MatchaElevationModule, typeof MatchaFormFieldModule, typeof MatchaHintTextModule, typeof MatchaIconModule, typeof MatchaInfiniteScrollModule, typeof MatchaLazyloadModule, typeof MatchaInputPhoneModule, typeof MatchaMasonryModule, typeof MatchaModalModule, typeof MatchaPaginatorModule, typeof MatchaRippleModule, typeof MatchaSlideToggleModule, typeof MatchaMsgBoxModule, typeof MatchaSliderModule, typeof MatchaSpinModule, typeof MatchaSpinnerModule, typeof MatchaProgressBarModule, typeof MatchaStepperModule, typeof MatchaTabsModule, typeof MatchaTitleModule, typeof MatchaTooltipModule, typeof MatchaDateRangeModule, typeof MatchaTimeModule, typeof MatchaTimeRangeModule, typeof MatchaDropListModule, typeof MatchaPageLayoutModule, typeof MatchaAvatarModule, typeof MatchaDrawerModule, typeof MatchaHighlightModule, typeof MatchaMaskModule, typeof MatchaChipModule, typeof MatchaMenuModule, typeof MatchaListModule, typeof MatchaSnackBarModule, typeof MatchaTextEditorModule]>;
2908
3060
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaComponentsModule>;
2909
3061
  }
2910
3062
 
@@ -3283,5 +3435,5 @@ declare class MatchaToolbarModule {
3283
3435
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaToolbarModule>;
3284
3436
  }
3285
3437
 
3286
- export { CopyButtonComponent, INITIAL_CONFIG, MATCHA_MASK_CONFIG, MATCHA_OPTION_PARENT, MaskExpression, MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteComponent, MatchaAutocompleteModule, MatchaAutocompleteTriggerDirective, MatchaAvatarComponent, MatchaAvatarModule, MatchaBreakpointObservableModule, MatchaBreakpointObserver, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaChipComponent, MatchaChipListComponent, MatchaChipModule, MatchaComponentsModule, MatchaDateComponent, MatchaDateModule, MatchaDateRangeComponent, MatchaDateRangeModule, MatchaDividerComponent, MatchaDividerModule, MatchaDragDirective, MatchaDragHandleDirective, MatchaDrawerComponent, MatchaDrawerContainerComponent, MatchaDrawerContentComponent, MatchaDrawerModule, MatchaDropListComponent, MatchaDropListModule, MatchaDropListService, MatchaDropZoneDirective, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaFormFieldComponent, MatchaFormFieldModule, MatchaGridComponent, MatchaGridModule, MatchaHighlightComponent, MatchaHighlightModule, MatchaHintTextComponent, MatchaHintTextModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputPhoneComponent, MatchaInputPhoneModule, MatchaLabelComponent, MatchaLazyloadComponent, MatchaLazyloadDataComponent, MatchaLazyloadModule, MatchaListComponent, MatchaListItemComponent, MatchaListModule, MatchaMaskApplierService, MatchaMaskCompatibleDirective, MatchaMaskModule, MatchaMaskPipe, MatchaMaskService, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuItemDirective, MatchaMenuModule, MatchaMenuTriggerDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaModalService, MatchaMsgBoxActionsComponent, MatchaMsgBoxComponent, MatchaMsgBoxModule, MatchaOptionComponent, MatchaOptionModule, MatchaOverlayService, MatchaPageBuilderComponent, MatchaPageBuilderModule, MatchaPageLayoutComponent, MatchaPageLayoutModule, MatchaPaginatorComponent, MatchaPaginatorIntl, MatchaPaginatorModule, MatchaPanelComponent, MatchaPanelModule, MatchaProgressBarComponent, MatchaProgressBarModule, MatchaRadioComponent, MatchaRadioGroupComponent, MatchaRadioModule, MatchaRippleDirective, MatchaRippleModule, MatchaSelectComponent, MatchaSelectModule, MatchaSelectTriggerDirective, MatchaSkeletonComponent, MatchaSkeletonModule, MatchaSlideToggleComponent, MatchaSlideToggleModule, MatchaSliderComponent, MatchaSliderModule, MatchaSnackBarComponent, MatchaSnackBarModule, MatchaSnackBarService, MatchaSpinComponent, MatchaSpinModule, MatchaSpinnerComponent, MatchaSpinnerModule, MatchaStepperComponent, MatchaStepperContentComponent, MatchaStepperControllerComponent, MatchaStepperModule, MatchaStepperStateService, MatchaSubmenuTriggerDirective, MatchaTabItemComponent, MatchaTableComponent, MatchaTableModule, MatchaTabsComponent, MatchaTabsModule, MatchaTextEditorComponent, MatchaTextEditorModule, MatchaTimeComponent, MatchaTimeModule, MatchaTimeRangeComponent, MatchaTimeRangeModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarCustomButtonComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, NEW_CONFIG, NextStepDirective, PrevStepDirective, StepComponent, StepContentDirective, buildSunEditorConfig, compatibleOptions, initialConfig, timeMasks, withoutValidation };
3438
+ export { CopyButtonComponent, INITIAL_CONFIG, MATCHA_MASK_CONFIG, MATCHA_OPTION_PARENT, MaskExpression, MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteComponent, MatchaAutocompleteModule, MatchaAutocompleteTriggerDirective, MatchaAvatarComponent, MatchaAvatarModule, MatchaBreakpointObservableModule, MatchaBreakpointObserver, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaChipComponent, MatchaChipListComponent, MatchaChipModule, MatchaComponentsModule, MatchaDateComponent, MatchaDateModule, MatchaDateRangeComponent, MatchaDateRangeModule, MatchaDividerComponent, MatchaDividerModule, MatchaDragDirective, MatchaDragHandleDirective, MatchaDrawerComponent, MatchaDrawerContainerComponent, MatchaDrawerContentComponent, MatchaDrawerModule, MatchaDropListComponent, MatchaDropListModule, MatchaDropListService, MatchaDropZoneDirective, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaFormFieldComponent, MatchaFormFieldModule, MatchaGridComponent, MatchaGridModule, MatchaHighlightComponent, MatchaHighlightModule, MatchaHintTextComponent, MatchaHintTextModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputPhoneComponent, MatchaInputPhoneModule, MatchaLabelComponent, MatchaLazyloadComponent, MatchaLazyloadDataComponent, MatchaLazyloadModule, MatchaListComponent, MatchaListItemComponent, MatchaListModule, MatchaMaskApplierService, MatchaMaskCompatibleDirective, MatchaMaskModule, MatchaMaskPipe, MatchaMaskService, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuItemDirective, MatchaMenuModule, MatchaMenuTriggerDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaModalService, MatchaMsgBoxActionsComponent, MatchaMsgBoxComponent, MatchaMsgBoxModule, MatchaOptionComponent, MatchaOptionModule, MatchaOverlayService, MatchaPageBuilderComponent, MatchaPageBuilderModule, MatchaPageLayoutComponent, MatchaPageLayoutModule, MatchaPaginatorComponent, MatchaPaginatorIntl, MatchaPaginatorModule, MatchaPanelComponent, MatchaPanelModule, MatchaProgressBarComponent, MatchaProgressBarModule, MatchaRadioComponent, MatchaRadioGroupComponent, MatchaRadioModule, MatchaRippleDirective, MatchaRippleModule, MatchaSelectComponent, MatchaSelectModule, MatchaSelectMultipleComponent, MatchaSelectMultipleModule, MatchaSelectTriggerDirective, MatchaSkeletonComponent, MatchaSkeletonModule, MatchaSlideToggleComponent, MatchaSlideToggleModule, MatchaSliderComponent, MatchaSliderModule, MatchaSnackBarComponent, MatchaSnackBarModule, MatchaSnackBarService, MatchaSpinComponent, MatchaSpinModule, MatchaSpinnerComponent, MatchaSpinnerModule, MatchaStepperComponent, MatchaStepperContentComponent, MatchaStepperControllerComponent, MatchaStepperModule, MatchaStepperStateService, MatchaSubmenuTriggerDirective, MatchaTabItemComponent, MatchaTableComponent, MatchaTableModule, MatchaTabsComponent, MatchaTabsModule, MatchaTextEditorComponent, MatchaTextEditorModule, MatchaTimeComponent, MatchaTimeModule, MatchaTimeRangeComponent, MatchaTimeRangeModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarCustomButtonComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, NEW_CONFIG, NextStepDirective, PrevStepDirective, StepComponent, StepContentDirective, buildSunEditorConfig, compatibleOptions, initialConfig, timeMasks, withoutValidation };
3287
3439
  export type { BreakpointState, DrawerMode, DrawerPosition, ILevelClasses, InputTransformFn, MatchaDropListConnectedToEvent, MatchaDropListDroppedEvent, MatchaDropZoneDroppedEvent, MatchaMaskConfig, MatchaMaskOptions, MatchaOptionParent, MatchaSnackBarConfig, MatchaTextEditorOptions, ModalComponent, OutputTransformFn, PageEvent, PanelPlacement, PanelPosition, SliderOptions, TabChangeEvent };