matcha-components 20.233.0 → 20.235.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.
@@ -8342,19 +8342,22 @@ class MatchaTabItemComponent {
8342
8342
  this.title = '';
8343
8343
  this.icon = '';
8344
8344
  this._active = false;
8345
+ this._hasBeenActivated = false;
8345
8346
  }
8346
8347
  set active(value) {
8347
8348
  this._active = value === '' || value === true || value === 'true';
8349
+ if (this._active) {
8350
+ this._hasBeenActivated = true;
8351
+ }
8348
8352
  }
8349
- get active() {
8350
- return this._active;
8351
- }
8353
+ get active() { return this._active; }
8354
+ get hasBeenActivated() { return this._hasBeenActivated; }
8352
8355
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaTabItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
8353
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: MatchaTabItemComponent, isStandalone: false, selector: "matcha-tab", inputs: { title: "title", icon: "icon", active: "active" }, ngImport: i0, template: "<ng-content *ngIf=\"active\"></ng-content>\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
8356
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: MatchaTabItemComponent, isStandalone: false, selector: "matcha-tab", inputs: { title: "title", icon: "icon", active: "active" }, ngImport: i0, template: "<div *ngIf=\"hasBeenActivated\" [hidden]=\"!active\">\n <ng-content></ng-content>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
8354
8357
  }
8355
8358
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaTabItemComponent, decorators: [{
8356
8359
  type: Component,
8357
- args: [{ selector: 'matcha-tab', standalone: false, template: "<ng-content *ngIf=\"active\"></ng-content>\n" }]
8360
+ args: [{ selector: 'matcha-tab', standalone: false, template: "<div *ngIf=\"hasBeenActivated\" [hidden]=\"!active\">\n <ng-content></ng-content>\n</div>\n" }]
8358
8361
  }], propDecorators: { title: [{
8359
8362
  type: Input
8360
8363
  }], icon: [{
@@ -14562,31 +14565,165 @@ const DEFAULT_CONFIG = {
14562
14565
  showLink: true,
14563
14566
  showImage: true,
14564
14567
  showVideo: true,
14568
+ showMarkdown: false,
14565
14569
  showFullScreen: true,
14566
14570
  showCodeView: true,
14567
14571
  videoX: 560,
14568
14572
  videoY: 315,
14569
14573
  imageSize: '350px',
14570
14574
  };
14575
+ function buildButtonList(options) {
14576
+ const groups = [['undo', 'redo']];
14577
+ const formats = [
14578
+ options.showFont && 'font',
14579
+ options.showFormats && 'formatBlock',
14580
+ ].filter(Boolean);
14581
+ if (formats.length)
14582
+ groups.push(formats);
14583
+ const inline = [
14584
+ options.showBold && 'bold',
14585
+ options.showItalic && 'italic',
14586
+ options.showUnderline && 'underline',
14587
+ options.showStrike && 'strike',
14588
+ ].filter(Boolean);
14589
+ if (inline.length)
14590
+ groups.push(inline);
14591
+ const colors = [
14592
+ options.showFontColor && 'fontColor',
14593
+ options.showHiliteColor && 'backgroundColor',
14594
+ ].filter(Boolean);
14595
+ if (colors.length)
14596
+ groups.push(colors);
14597
+ const para = [
14598
+ options.showInOutDent && 'outdent',
14599
+ options.showInOutDent && 'indent',
14600
+ options.showAlign && 'align',
14601
+ options.showList && 'list',
14602
+ options.showLine && 'line',
14603
+ ].filter(Boolean);
14604
+ if (para.length)
14605
+ groups.push(para);
14606
+ const insert = [
14607
+ options.showTable && 'table',
14608
+ options.showLink && 'link',
14609
+ options.showImage && 'image',
14610
+ options.showVideo && 'video',
14611
+ ].filter(Boolean);
14612
+ if (insert.length)
14613
+ groups.push(insert);
14614
+ if (options.showMarkdown)
14615
+ groups.push(['markdown']);
14616
+ const view = [
14617
+ options.showFullScreen && 'fullScreen',
14618
+ options.showCodeView && 'codeView',
14619
+ ].filter(Boolean);
14620
+ if (view.length)
14621
+ groups.push(view);
14622
+ return groups;
14623
+ }
14624
+
14625
+ class MatchaSkeletonComponent {
14626
+ constructor() {
14627
+ this.amount = 3;
14628
+ this.grid = 3;
14629
+ this.height = 100;
14630
+ this.model = 'empty';
14631
+ this.gap = 16;
14632
+ }
14633
+ // Getters privados para conversão sem modificar os inputs
14634
+ get amountNumber() {
14635
+ return typeof this.amount === 'string' ? parseInt(this.amount, 10) : this.amount;
14636
+ }
14637
+ get gridNumber() {
14638
+ return typeof this.grid === 'string' ? parseInt(this.grid, 10) : this.grid;
14639
+ }
14640
+ get classes() {
14641
+ // Usa os valores convertidos sem modificar os inputs
14642
+ const amountValue = this.amountNumber;
14643
+ const gridValue = this.gridNumber;
14644
+ let classes = `gap-${this.gap} `;
14645
+ amountValue > 1 ? classes += `grid-sm-${gridValue - 1} ` : classes;
14646
+ amountValue > 2 ? classes += `grid-md-${gridValue} ` : classes;
14647
+ return classes;
14648
+ }
14649
+ get _isCssHeight() {
14650
+ return typeof this.height === 'string' && /[a-z%]/i.test(this.height);
14651
+ }
14652
+ get heightStyle() {
14653
+ return this._isCssHeight ? String(this.height) : null;
14654
+ }
14655
+ get heightClass() {
14656
+ return this._isCssHeight ? 'flex-column--force p-16' : `h-${this.height} flex-column--force p-16`;
14657
+ }
14658
+ get amountArray() {
14659
+ const amountValue = this.amountNumber;
14660
+ return Array(amountValue).fill(0).map((_, index) => index);
14661
+ }
14662
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaSkeletonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
14663
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: MatchaSkeletonComponent, isStandalone: false, selector: "matcha-skeleton", inputs: { amount: "amount", grid: "grid", height: "height", model: "model", gap: "gap" }, host: { properties: { "attr.amount": "this.amount", "attr.grid": "this.grid", "attr.height": "this.height", "attr.model": "this.model", "attr.gap": "this.gap" } }, ngImport: i0, template: "<ng-content></ng-content>\n<!-- CARD SKELETON -->\n<div [class]=\"classes\" *ngIf=\"model !== 'table'\">\n <div class=\"skeleton-animated-background flex-column--force p-0 radius-8 user-select-none overflow-hidden\" *ngFor=\"let i of amountArray\">\n\n <ng-container *ngIf=\"model === 'profile'\"><span class=\"h8 title p-16 m-0\"> <span class=\"radius-full background-surface-alpha h-48 w-48\"></span>&nbsp;</span></ng-container>\n\n <div [class]=\"heightClass\" [style.height]=\"heightStyle\"></div>\n\n <ng-container *ngIf=\"model === 'profile'\">\n <div class=\"flex-column--force\">\n <div class=\"flex-column--force p-16 gap-16\">\n <div class=\"w-100-p h-16 background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p h-16 background-surface-alpha radius-full\"></div>\n </div>\n </div>\n </ng-container>\n\n </div>\n</div>\n<!-- CARD SKELETON -->\n\n<!-- TABLE SKELETON -->\n<div class=\"skeleton-animated-background w-100-p mr-16 flex-column--force p-0 radius-8 user-select-none\" *ngIf=\"model === 'table'\">\n\n <div class=\"flex-column--force h-64 background-surface-alpha\">\n <ng-container>&nbsp;</ng-container>\n </div>\n\n <ng-container *ngFor=\"let i of amountArray\">\n <div class=\"grid-4 h-80 px-16 gap-16 flex-align-center--force\">\n <div class=\"w-100-p flex-row--force gap-16\">\n <div class=\"min-h-48 min-w-48 h-48 w-48 background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p flex-column--force flex-center--force gap-16\">\n <div class=\"h-16 w-60-p background-surface-alpha radius-full\"></div>\n <div class=\"h-16 w-100-p background-surface-alpha radius-full\"></div>\n </div>\n </div>\n <div class=\"h-16 w-100-p flex-column--force background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p flex-row--force gap-16\">\n <div class=\"w-100-p flex-column--force flex-center--force gap-16\">\n <div class=\"h-16 w-60-p background-surface-alpha radius-full\"></div>\n <div class=\"h-16 w-100-p background-surface-alpha radius-full\"></div>\n </div>\n </div>\n <div class=\"h-16 w-100-p flex-column--force background-surface-alpha radius-full\"></div>\n </div>\n\n <div class=\"grid-4 h-80 px-16 gap-16 flex-align-center--force background-bg-alpha\">\n <div class=\"w-100-p flex-row--force gap-16\">\n <div class=\"min-h-48 min-w-48 h-48 w-48 background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p flex-column--force flex-center--force gap-16\">\n <div class=\"h-16 w-100-p background-surface-alpha radius-full\"></div>\n <div class=\"h-16 w-30-p background-surface-alpha radius-full\"></div>\n </div>\n </div>\n <div class=\"h-16 w-100-p flex-column--force background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p flex-row--force gap-16\">\n <div class=\"w-100-p flex-column--force flex-center--force gap-16\">\n <div class=\"h-16 w-60-p background-surface-alpha radius-full\"></div>\n <div class=\"h-16 w-100-p background-surface-alpha radius-full\"></div>\n </div>\n </div>\n <div class=\"h-16 w-100-p flex-column--force background-surface-alpha radius-full\"></div>\n </div>\n\n </ng-container>\n\n</div>\n<!-- TABLE SKELETON -->\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
14664
+ }
14665
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaSkeletonComponent, decorators: [{
14666
+ type: Component,
14667
+ args: [{ selector: 'matcha-skeleton', standalone: false, template: "<ng-content></ng-content>\n<!-- CARD SKELETON -->\n<div [class]=\"classes\" *ngIf=\"model !== 'table'\">\n <div class=\"skeleton-animated-background flex-column--force p-0 radius-8 user-select-none overflow-hidden\" *ngFor=\"let i of amountArray\">\n\n <ng-container *ngIf=\"model === 'profile'\"><span class=\"h8 title p-16 m-0\"> <span class=\"radius-full background-surface-alpha h-48 w-48\"></span>&nbsp;</span></ng-container>\n\n <div [class]=\"heightClass\" [style.height]=\"heightStyle\"></div>\n\n <ng-container *ngIf=\"model === 'profile'\">\n <div class=\"flex-column--force\">\n <div class=\"flex-column--force p-16 gap-16\">\n <div class=\"w-100-p h-16 background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p h-16 background-surface-alpha radius-full\"></div>\n </div>\n </div>\n </ng-container>\n\n </div>\n</div>\n<!-- CARD SKELETON -->\n\n<!-- TABLE SKELETON -->\n<div class=\"skeleton-animated-background w-100-p mr-16 flex-column--force p-0 radius-8 user-select-none\" *ngIf=\"model === 'table'\">\n\n <div class=\"flex-column--force h-64 background-surface-alpha\">\n <ng-container>&nbsp;</ng-container>\n </div>\n\n <ng-container *ngFor=\"let i of amountArray\">\n <div class=\"grid-4 h-80 px-16 gap-16 flex-align-center--force\">\n <div class=\"w-100-p flex-row--force gap-16\">\n <div class=\"min-h-48 min-w-48 h-48 w-48 background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p flex-column--force flex-center--force gap-16\">\n <div class=\"h-16 w-60-p background-surface-alpha radius-full\"></div>\n <div class=\"h-16 w-100-p background-surface-alpha radius-full\"></div>\n </div>\n </div>\n <div class=\"h-16 w-100-p flex-column--force background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p flex-row--force gap-16\">\n <div class=\"w-100-p flex-column--force flex-center--force gap-16\">\n <div class=\"h-16 w-60-p background-surface-alpha radius-full\"></div>\n <div class=\"h-16 w-100-p background-surface-alpha radius-full\"></div>\n </div>\n </div>\n <div class=\"h-16 w-100-p flex-column--force background-surface-alpha radius-full\"></div>\n </div>\n\n <div class=\"grid-4 h-80 px-16 gap-16 flex-align-center--force background-bg-alpha\">\n <div class=\"w-100-p flex-row--force gap-16\">\n <div class=\"min-h-48 min-w-48 h-48 w-48 background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p flex-column--force flex-center--force gap-16\">\n <div class=\"h-16 w-100-p background-surface-alpha radius-full\"></div>\n <div class=\"h-16 w-30-p background-surface-alpha radius-full\"></div>\n </div>\n </div>\n <div class=\"h-16 w-100-p flex-column--force background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p flex-row--force gap-16\">\n <div class=\"w-100-p flex-column--force flex-center--force gap-16\">\n <div class=\"h-16 w-60-p background-surface-alpha radius-full\"></div>\n <div class=\"h-16 w-100-p background-surface-alpha radius-full\"></div>\n </div>\n </div>\n <div class=\"h-16 w-100-p flex-column--force background-surface-alpha radius-full\"></div>\n </div>\n\n </ng-container>\n\n</div>\n<!-- TABLE SKELETON -->\n" }]
14668
+ }], propDecorators: { amount: [{
14669
+ type: Input,
14670
+ args: ['amount']
14671
+ }, {
14672
+ type: HostBinding,
14673
+ args: ['attr.amount']
14674
+ }], grid: [{
14675
+ type: Input,
14676
+ args: ['grid']
14677
+ }, {
14678
+ type: HostBinding,
14679
+ args: ['attr.grid']
14680
+ }], height: [{
14681
+ type: Input,
14682
+ args: ['height']
14683
+ }, {
14684
+ type: HostBinding,
14685
+ args: ['attr.height']
14686
+ }], model: [{
14687
+ type: Input,
14688
+ args: ['model']
14689
+ }, {
14690
+ type: HostBinding,
14691
+ args: ['attr.model']
14692
+ }], gap: [{
14693
+ type: Input,
14694
+ args: ['gap']
14695
+ }, {
14696
+ type: HostBinding,
14697
+ args: ['attr.gap']
14698
+ }] } });
14571
14699
 
14572
14700
  const CDN_BASE = 'https://unpkg.com/matcha-components/assets/text-editor';
14573
14701
  class MatchaTextEditorComponent {
14702
+ get skeletonHeight() {
14703
+ return this._config?.height || '400px';
14704
+ }
14574
14705
  set value(v) { this.writeValue(v); }
14706
+ set config(v) {
14707
+ this._config = v;
14708
+ if (this._editor) {
14709
+ this._reloadEditor();
14710
+ }
14711
+ }
14575
14712
  get disabledAttr() {
14576
14713
  return this._disabled ? '' : null;
14577
14714
  }
14578
- constructor(_ngZone, _cdr) {
14715
+ constructor(_ngZone, _cdr, _el) {
14579
14716
  this._ngZone = _ngZone;
14580
14717
  this._cdr = _cdr;
14718
+ this._el = _el;
14581
14719
  this.editorId = `matcha-text-editor-${Math.random().toString(36).substring(2, 11)}`;
14582
14720
  this.isLoading = true;
14583
- this.config = { ...DEFAULT_CONFIG };
14721
+ this._config = { ...DEFAULT_CONFIG };
14584
14722
  this.contentChange = new EventEmitter();
14585
14723
  this._editor = null;
14586
14724
  this._pendingValue = '';
14587
14725
  this._isSettingValue = false;
14588
14726
  this._disabled = false;
14589
- this._observer = null;
14590
14727
  this._onChange = () => { };
14591
14728
  this._onTouched = () => { };
14592
14729
  }
@@ -14602,7 +14739,6 @@ class MatchaTextEditorComponent {
14602
14739
  });
14603
14740
  }
14604
14741
  ngOnDestroy() {
14605
- this._observer?.disconnect();
14606
14742
  this._editor = null;
14607
14743
  }
14608
14744
  // ControlValueAccessor
@@ -14626,7 +14762,7 @@ class MatchaTextEditorComponent {
14626
14762
  setDisabledState(isDisabled) {
14627
14763
  this._disabled = isDisabled;
14628
14764
  if (this._editor) {
14629
- isDisabled ? this._editor.disabled() : this._editor.enabled();
14765
+ isDisabled ? this._editor.disable() : this._editor.enable();
14630
14766
  }
14631
14767
  }
14632
14768
  // Private
@@ -14670,61 +14806,78 @@ class MatchaTextEditorComponent {
14670
14806
  await this._injectStyle('suneditor-css', `${CDN_BASE}/css/suneditor.min.css`);
14671
14807
  await this._injectScript('suneditor-js', `${CDN_BASE}/js/suneditor.min.js`);
14672
14808
  }
14809
+ _reloadEditor() {
14810
+ this._el.nativeElement.querySelectorAll('.sun-editor').forEach((el) => el.remove());
14811
+ const content = this._editor?.getValue() ?? '';
14812
+ this._editor = null;
14813
+ this._pendingValue = content;
14814
+ this.isLoading = true;
14815
+ this._cdr.detectChanges();
14816
+ this._ngZone.runOutsideAngular(() => {
14817
+ this._initEditor();
14818
+ });
14819
+ }
14673
14820
  _initEditor() {
14674
14821
  const SUNEDITOR = window.SUNEDITOR;
14675
14822
  if (!SUNEDITOR) {
14676
14823
  console.error('[TextEditor] SUNEDITOR global não encontrado após injeção!');
14677
14824
  return;
14678
14825
  }
14679
- const mergedConfig = { ...DEFAULT_CONFIG, ...this.config };
14680
- this._editor = SUNEDITOR.create(this.editorId, mergedConfig);
14681
- if (this._pendingValue) {
14682
- this._editor.setContent(this._pendingValue);
14683
- this._pendingValue = '';
14826
+ if (!document.getElementById(this.editorId)) {
14827
+ requestAnimationFrame(() => this._ngZone.runOutsideAngular(() => this._initEditor()));
14828
+ return;
14684
14829
  }
14830
+ const mergedConfig = { ...DEFAULT_CONFIG, ...this._config };
14831
+ this._editor = SUNEDITOR.create(`#${this.editorId}`, {
14832
+ plugins: SUNEDITOR.plugins,
14833
+ buttonList: buildButtonList(mergedConfig),
14834
+ height: mergedConfig.height || '400px',
14835
+ width: mergedConfig.width,
14836
+ imageWidth: mergedConfig.imageSize,
14837
+ videoWidth: mergedConfig.videoX,
14838
+ videoHeight: mergedConfig.videoY,
14839
+ });
14685
14840
  if (this._disabled) {
14686
- this._editor.disabled();
14841
+ this._editor.disable();
14687
14842
  }
14688
- setTimeout(() => {
14689
- this._attachObserver();
14690
- this._ngZone.run(() => {
14691
- this.isLoading = false;
14692
- this._cdr.detectChanges();
14693
- });
14694
- }, 100);
14695
- }
14696
- _attachObserver() {
14697
- const container = document.getElementById(this.editorId)?.parentElement;
14698
- const iframe = container?.querySelector('iframe.input_editor');
14699
- const iframeBody = iframe?.contentWindow?.document?.body;
14700
- if (!iframeBody)
14701
- return;
14702
- this._observer = new MutationObserver(() => {
14843
+ // Hide immediately so the skeleton doesn't overlap the editor during initialization
14844
+ const sunEditorEl = this._el.nativeElement.querySelector('.sun-editor');
14845
+ if (sunEditorEl)
14846
+ sunEditorEl.style.display = 'none';
14847
+ this._editor.on('onChange', (content) => {
14703
14848
  if (this._isSettingValue)
14704
14849
  return;
14705
14850
  this._ngZone.run(() => {
14706
- const content = this._editor.getContent();
14707
14851
  this._onChange(content);
14708
14852
  this.contentChange.emit(content);
14709
14853
  });
14710
14854
  });
14711
- this._observer.observe(iframeBody, {
14712
- childList: true,
14713
- subtree: true,
14714
- characterData: true,
14715
- });
14716
- iframeBody.addEventListener('blur', () => {
14855
+ this._editor.on('onBlur', () => {
14717
14856
  this._ngZone.run(() => this._onTouched());
14718
14857
  });
14858
+ setTimeout(() => {
14859
+ if (this._pendingValue) {
14860
+ this._isSettingValue = true;
14861
+ this._editor.setContent(this._pendingValue);
14862
+ this._pendingValue = '';
14863
+ setTimeout(() => { this._isSettingValue = false; }, 0);
14864
+ }
14865
+ if (sunEditorEl)
14866
+ sunEditorEl.style.display = '';
14867
+ this._ngZone.run(() => {
14868
+ this.isLoading = false;
14869
+ this._cdr.detectChanges();
14870
+ });
14871
+ }, 100);
14719
14872
  }
14720
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaTextEditorComponent, deps: [{ token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
14873
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaTextEditorComponent, deps: [{ token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
14721
14874
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: MatchaTextEditorComponent, isStandalone: false, selector: "matcha-text-editor", inputs: { value: "value", config: "config" }, outputs: { contentChange: "contentChange" }, host: { properties: { "attr.disabled": "this.disabledAttr" } }, providers: [
14722
14875
  {
14723
14876
  provide: NG_VALUE_ACCESSOR,
14724
14877
  useExisting: forwardRef(() => MatchaTextEditorComponent),
14725
14878
  multi: true,
14726
14879
  },
14727
- ], ngImport: i0, template: "<matcha-spinner *ngIf=\"isLoading\"></matcha-spinner>\n<textarea [id]=\"editorId\" style=\"display:none; width:100%;\"></textarea>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: MatchaSpinnerComponent, selector: "matcha-spinner", inputs: ["progress", "color", "size", "size-xs", "size-sm", "size-md", "size-lg", "size-xl"] }] }); }
14880
+ ], ngImport: i0, template: "<matcha-skeleton *ngIf=\"isLoading\" [height]=\"skeletonHeight\" [amount]=\"1\" model=\"empty\"></matcha-skeleton>\n<textarea [id]=\"editorId\" style=\"display:none; width:100%;\"></textarea>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: MatchaSkeletonComponent, selector: "matcha-skeleton", inputs: ["amount", "grid", "height", "model", "gap"] }] }); }
14728
14881
  }
14729
14882
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaTextEditorComponent, decorators: [{
14730
14883
  type: Component,
@@ -14734,8 +14887,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
14734
14887
  useExisting: forwardRef(() => MatchaTextEditorComponent),
14735
14888
  multi: true,
14736
14889
  },
14737
- ], template: "<matcha-spinner *ngIf=\"isLoading\"></matcha-spinner>\n<textarea [id]=\"editorId\" style=\"display:none; width:100%;\"></textarea>\n" }]
14738
- }], ctorParameters: () => [{ type: i0.NgZone }, { type: i0.ChangeDetectorRef }], propDecorators: { value: [{
14890
+ ], template: "<matcha-skeleton *ngIf=\"isLoading\" [height]=\"skeletonHeight\" [amount]=\"1\" model=\"empty\"></matcha-skeleton>\n<textarea [id]=\"editorId\" style=\"display:none; width:100%;\"></textarea>\n" }]
14891
+ }], ctorParameters: () => [{ type: i0.NgZone }, { type: i0.ChangeDetectorRef }, { type: i0.ElementRef }], propDecorators: { value: [{
14739
14892
  type: Input
14740
14893
  }], config: [{
14741
14894
  type: Input
@@ -14746,16 +14899,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
14746
14899
  args: ['attr.disabled']
14747
14900
  }] } });
14748
14901
 
14902
+ class MatchaSkeletonModule {
14903
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaSkeletonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
14904
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.19", ngImport: i0, type: MatchaSkeletonModule, declarations: [MatchaSkeletonComponent], imports: [CommonModule], exports: [MatchaSkeletonComponent] }); }
14905
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaSkeletonModule, imports: [CommonModule] }); }
14906
+ }
14907
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaSkeletonModule, decorators: [{
14908
+ type: NgModule,
14909
+ args: [{
14910
+ declarations: [MatchaSkeletonComponent],
14911
+ imports: [
14912
+ CommonModule
14913
+ ],
14914
+ exports: [MatchaSkeletonComponent],
14915
+ }]
14916
+ }] });
14917
+
14749
14918
  class MatchaTextEditorModule {
14750
14919
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaTextEditorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
14751
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.19", ngImport: i0, type: MatchaTextEditorModule, declarations: [MatchaTextEditorComponent], imports: [CommonModule, ReactiveFormsModule, MatchaSpinnerModule], exports: [MatchaTextEditorComponent] }); }
14752
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaTextEditorModule, imports: [CommonModule, ReactiveFormsModule, MatchaSpinnerModule] }); }
14920
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.19", ngImport: i0, type: MatchaTextEditorModule, declarations: [MatchaTextEditorComponent], imports: [CommonModule, ReactiveFormsModule, MatchaSkeletonModule], exports: [MatchaTextEditorComponent] }); }
14921
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaTextEditorModule, imports: [CommonModule, ReactiveFormsModule, MatchaSkeletonModule] }); }
14753
14922
  }
14754
14923
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaTextEditorModule, decorators: [{
14755
14924
  type: NgModule,
14756
14925
  args: [{
14757
14926
  declarations: [MatchaTextEditorComponent],
14758
- imports: [CommonModule, ReactiveFormsModule, MatchaSpinnerModule],
14927
+ imports: [CommonModule, ReactiveFormsModule, MatchaSkeletonModule],
14759
14928
  exports: [MatchaTextEditorComponent],
14760
14929
  }]
14761
14930
  }] });
@@ -15205,91 +15374,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
15205
15374
  }]
15206
15375
  }] });
15207
15376
 
15208
- class MatchaSkeletonComponent {
15209
- constructor() {
15210
- this.amount = 3;
15211
- this.grid = 3;
15212
- this.height = 100;
15213
- this.model = 'empty';
15214
- this.gap = 16;
15215
- }
15216
- // Getters privados para conversão sem modificar os inputs
15217
- get amountNumber() {
15218
- return typeof this.amount === 'string' ? parseInt(this.amount, 10) : this.amount;
15219
- }
15220
- get gridNumber() {
15221
- return typeof this.grid === 'string' ? parseInt(this.grid, 10) : this.grid;
15222
- }
15223
- get classes() {
15224
- // Usa os valores convertidos sem modificar os inputs
15225
- const amountValue = this.amountNumber;
15226
- const gridValue = this.gridNumber;
15227
- let classes = `gap-${this.gap} `;
15228
- amountValue > 1 ? classes += `grid-sm-${gridValue - 1} ` : classes;
15229
- amountValue > 2 ? classes += `grid-md-${gridValue} ` : classes;
15230
- return classes;
15231
- }
15232
- get heightClass() {
15233
- return `h-${this.height}`;
15234
- }
15235
- get amountArray() {
15236
- const amountValue = this.amountNumber;
15237
- return Array(amountValue).fill(0).map((_, index) => index);
15238
- }
15239
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaSkeletonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
15240
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: MatchaSkeletonComponent, isStandalone: false, selector: "matcha-skeleton", inputs: { amount: "amount", grid: "grid", height: "height", model: "model", gap: "gap" }, host: { properties: { "attr.amount": "this.amount", "attr.grid": "this.grid", "attr.height": "this.height", "attr.model": "this.model", "attr.gap": "this.gap" } }, ngImport: i0, template: "<ng-content></ng-content>\n<!-- CARD SKELETON -->\n<div [class]=\"classes\" *ngIf=\"model !== 'table'\">\n <div class=\"skeleton-animated-background flex-column--force p-0 radius-8 user-select-none overflow-hidden\" *ngFor=\"let i of amountArray\">\n\n <ng-container *ngIf=\"model === 'profile'\"><span class=\"h8 title p-16 m-0\"> <span class=\"radius-full background-surface-alpha h-48 w-48\"></span>&nbsp;</span></ng-container>\n\n <div [class]=\"'h-'+ height + ' flex-column--force p-16'\"></div>\n\n <ng-container *ngIf=\"model === 'profile'\">\n <div class=\"flex-column--force\">\n <div class=\"flex-column--force p-16 gap-16\">\n <div class=\"w-100-p h-16 background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p h-16 background-surface-alpha radius-full\"></div>\n </div>\n </div>\n </ng-container>\n\n </div>\n</div>\n<!-- CARD SKELETON -->\n\n<!-- TABLE SKELETON -->\n<div class=\"skeleton-animated-background w-100-p mr-16 flex-column--force p-0 radius-8 user-select-none\" *ngIf=\"model === 'table'\">\n\n <div class=\"flex-column--force h-64 background-surface-alpha\">\n <ng-container>&nbsp;</ng-container>\n </div>\n\n <ng-container *ngFor=\"let i of amountArray\">\n <div class=\"grid-4 h-80 px-16 gap-16 flex-align-center--force\">\n <div class=\"w-100-p flex-row--force gap-16\">\n <div class=\"min-h-48 min-w-48 h-48 w-48 background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p flex-column--force flex-center--force gap-16\">\n <div class=\"h-16 w-60-p background-surface-alpha radius-full\"></div>\n <div class=\"h-16 w-100-p background-surface-alpha radius-full\"></div>\n </div>\n </div>\n <div class=\"h-16 w-100-p flex-column--force background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p flex-row--force gap-16\">\n <div class=\"w-100-p flex-column--force flex-center--force gap-16\">\n <div class=\"h-16 w-60-p background-surface-alpha radius-full\"></div>\n <div class=\"h-16 w-100-p background-surface-alpha radius-full\"></div>\n </div>\n </div>\n <div class=\"h-16 w-100-p flex-column--force background-surface-alpha radius-full\"></div>\n </div>\n\n <div class=\"grid-4 h-80 px-16 gap-16 flex-align-center--force background-bg-alpha\">\n <div class=\"w-100-p flex-row--force gap-16\">\n <div class=\"min-h-48 min-w-48 h-48 w-48 background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p flex-column--force flex-center--force gap-16\">\n <div class=\"h-16 w-100-p background-surface-alpha radius-full\"></div>\n <div class=\"h-16 w-30-p background-surface-alpha radius-full\"></div>\n </div>\n </div>\n <div class=\"h-16 w-100-p flex-column--force background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p flex-row--force gap-16\">\n <div class=\"w-100-p flex-column--force flex-center--force gap-16\">\n <div class=\"h-16 w-60-p background-surface-alpha radius-full\"></div>\n <div class=\"h-16 w-100-p background-surface-alpha radius-full\"></div>\n </div>\n </div>\n <div class=\"h-16 w-100-p flex-column--force background-surface-alpha radius-full\"></div>\n </div>\n\n </ng-container>\n\n</div>\n<!-- TABLE SKELETON -->\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
15241
- }
15242
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaSkeletonComponent, decorators: [{
15243
- type: Component,
15244
- args: [{ selector: 'matcha-skeleton', standalone: false, template: "<ng-content></ng-content>\n<!-- CARD SKELETON -->\n<div [class]=\"classes\" *ngIf=\"model !== 'table'\">\n <div class=\"skeleton-animated-background flex-column--force p-0 radius-8 user-select-none overflow-hidden\" *ngFor=\"let i of amountArray\">\n\n <ng-container *ngIf=\"model === 'profile'\"><span class=\"h8 title p-16 m-0\"> <span class=\"radius-full background-surface-alpha h-48 w-48\"></span>&nbsp;</span></ng-container>\n\n <div [class]=\"'h-'+ height + ' flex-column--force p-16'\"></div>\n\n <ng-container *ngIf=\"model === 'profile'\">\n <div class=\"flex-column--force\">\n <div class=\"flex-column--force p-16 gap-16\">\n <div class=\"w-100-p h-16 background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p h-16 background-surface-alpha radius-full\"></div>\n </div>\n </div>\n </ng-container>\n\n </div>\n</div>\n<!-- CARD SKELETON -->\n\n<!-- TABLE SKELETON -->\n<div class=\"skeleton-animated-background w-100-p mr-16 flex-column--force p-0 radius-8 user-select-none\" *ngIf=\"model === 'table'\">\n\n <div class=\"flex-column--force h-64 background-surface-alpha\">\n <ng-container>&nbsp;</ng-container>\n </div>\n\n <ng-container *ngFor=\"let i of amountArray\">\n <div class=\"grid-4 h-80 px-16 gap-16 flex-align-center--force\">\n <div class=\"w-100-p flex-row--force gap-16\">\n <div class=\"min-h-48 min-w-48 h-48 w-48 background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p flex-column--force flex-center--force gap-16\">\n <div class=\"h-16 w-60-p background-surface-alpha radius-full\"></div>\n <div class=\"h-16 w-100-p background-surface-alpha radius-full\"></div>\n </div>\n </div>\n <div class=\"h-16 w-100-p flex-column--force background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p flex-row--force gap-16\">\n <div class=\"w-100-p flex-column--force flex-center--force gap-16\">\n <div class=\"h-16 w-60-p background-surface-alpha radius-full\"></div>\n <div class=\"h-16 w-100-p background-surface-alpha radius-full\"></div>\n </div>\n </div>\n <div class=\"h-16 w-100-p flex-column--force background-surface-alpha radius-full\"></div>\n </div>\n\n <div class=\"grid-4 h-80 px-16 gap-16 flex-align-center--force background-bg-alpha\">\n <div class=\"w-100-p flex-row--force gap-16\">\n <div class=\"min-h-48 min-w-48 h-48 w-48 background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p flex-column--force flex-center--force gap-16\">\n <div class=\"h-16 w-100-p background-surface-alpha radius-full\"></div>\n <div class=\"h-16 w-30-p background-surface-alpha radius-full\"></div>\n </div>\n </div>\n <div class=\"h-16 w-100-p flex-column--force background-surface-alpha radius-full\"></div>\n <div class=\"w-100-p flex-row--force gap-16\">\n <div class=\"w-100-p flex-column--force flex-center--force gap-16\">\n <div class=\"h-16 w-60-p background-surface-alpha radius-full\"></div>\n <div class=\"h-16 w-100-p background-surface-alpha radius-full\"></div>\n </div>\n </div>\n <div class=\"h-16 w-100-p flex-column--force background-surface-alpha radius-full\"></div>\n </div>\n\n </ng-container>\n\n</div>\n<!-- TABLE SKELETON -->\n" }]
15245
- }], propDecorators: { amount: [{
15246
- type: Input,
15247
- args: ['amount']
15248
- }, {
15249
- type: HostBinding,
15250
- args: ['attr.amount']
15251
- }], grid: [{
15252
- type: Input,
15253
- args: ['grid']
15254
- }, {
15255
- type: HostBinding,
15256
- args: ['attr.grid']
15257
- }], height: [{
15258
- type: Input,
15259
- args: ['height']
15260
- }, {
15261
- type: HostBinding,
15262
- args: ['attr.height']
15263
- }], model: [{
15264
- type: Input,
15265
- args: ['model']
15266
- }, {
15267
- type: HostBinding,
15268
- args: ['attr.model']
15269
- }], gap: [{
15270
- type: Input,
15271
- args: ['gap']
15272
- }, {
15273
- type: HostBinding,
15274
- args: ['attr.gap']
15275
- }] } });
15276
-
15277
- class MatchaSkeletonModule {
15278
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaSkeletonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
15279
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.19", ngImport: i0, type: MatchaSkeletonModule, declarations: [MatchaSkeletonComponent], imports: [CommonModule], exports: [MatchaSkeletonComponent] }); }
15280
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaSkeletonModule, imports: [CommonModule] }); }
15281
- }
15282
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaSkeletonModule, decorators: [{
15283
- type: NgModule,
15284
- args: [{
15285
- declarations: [MatchaSkeletonComponent],
15286
- imports: [
15287
- CommonModule
15288
- ],
15289
- exports: [MatchaSkeletonComponent],
15290
- }]
15291
- }] });
15292
-
15293
15377
  class StepContentDirective {
15294
15378
  constructor(template) {
15295
15379
  this.template = template;
@@ -15662,5 +15746,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
15662
15746
  * Generated bundle index. Do not edit.
15663
15747
  */
15664
15748
 
15665
- export { CopyButtonComponent, DEFAULT_CONFIG, INITIAL_CONFIG, MATCHA_MASK_CONFIG, MATCHA_OPTION_PARENT, 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, 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, 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, compatibleOptions, initialConfig, timeMasks, withoutValidation };
15749
+ export { CopyButtonComponent, DEFAULT_CONFIG, INITIAL_CONFIG, MATCHA_MASK_CONFIG, MATCHA_OPTION_PARENT, 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, 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, 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, buildButtonList, compatibleOptions, initialConfig, timeMasks, withoutValidation };
15666
15750
  //# sourceMappingURL=matcha-components.mjs.map