matcha-components 20.232.0 → 20.234.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,30 +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) {
14715
+ constructor(_ngZone, _cdr, _el) {
14579
14716
  this._ngZone = _ngZone;
14717
+ this._cdr = _cdr;
14718
+ this._el = _el;
14580
14719
  this.editorId = `matcha-text-editor-${Math.random().toString(36).substring(2, 11)}`;
14581
14720
  this.isLoading = true;
14582
- this.config = { ...DEFAULT_CONFIG };
14721
+ this._config = { ...DEFAULT_CONFIG };
14583
14722
  this.contentChange = new EventEmitter();
14584
14723
  this._editor = null;
14585
14724
  this._pendingValue = '';
14586
14725
  this._isSettingValue = false;
14587
14726
  this._disabled = false;
14588
- this._observer = null;
14589
14727
  this._onChange = () => { };
14590
14728
  this._onTouched = () => { };
14591
14729
  }
@@ -14601,10 +14739,7 @@ class MatchaTextEditorComponent {
14601
14739
  });
14602
14740
  }
14603
14741
  ngOnDestroy() {
14604
- this._observer?.disconnect();
14605
- if (this._editor) {
14606
- this._editor.destroy();
14607
- }
14742
+ this._editor = null;
14608
14743
  }
14609
14744
  // ControlValueAccessor
14610
14745
  writeValue(value) {
@@ -14627,7 +14762,7 @@ class MatchaTextEditorComponent {
14627
14762
  setDisabledState(isDisabled) {
14628
14763
  this._disabled = isDisabled;
14629
14764
  if (this._editor) {
14630
- isDisabled ? this._editor.disabled() : this._editor.enabled();
14765
+ isDisabled ? this._editor.disable() : this._editor.enable();
14631
14766
  }
14632
14767
  }
14633
14768
  // Private
@@ -14671,58 +14806,78 @@ class MatchaTextEditorComponent {
14671
14806
  await this._injectStyle('suneditor-css', `${CDN_BASE}/css/suneditor.min.css`);
14672
14807
  await this._injectScript('suneditor-js', `${CDN_BASE}/js/suneditor.min.js`);
14673
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
+ }
14674
14820
  _initEditor() {
14675
14821
  const SUNEDITOR = window.SUNEDITOR;
14676
14822
  if (!SUNEDITOR) {
14677
14823
  console.error('[TextEditor] SUNEDITOR global não encontrado após injeção!');
14678
14824
  return;
14679
14825
  }
14680
- const mergedConfig = { ...DEFAULT_CONFIG, ...this.config };
14681
- this._editor = SUNEDITOR.create(this.editorId, mergedConfig);
14682
- if (this._pendingValue) {
14683
- this._editor.setContent(this._pendingValue);
14684
- this._pendingValue = '';
14826
+ if (!document.getElementById(this.editorId)) {
14827
+ requestAnimationFrame(() => this._ngZone.runOutsideAngular(() => this._initEditor()));
14828
+ return;
14685
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
+ });
14686
14840
  if (this._disabled) {
14687
- this._editor.disabled();
14841
+ this._editor.disable();
14688
14842
  }
14689
- setTimeout(() => {
14690
- this._attachObserver();
14691
- this._ngZone.run(() => { this.isLoading = false; });
14692
- }, 100);
14693
- }
14694
- _attachObserver() {
14695
- const container = document.getElementById(this.editorId)?.parentElement;
14696
- const iframe = container?.querySelector('iframe.input_editor');
14697
- const iframeBody = iframe?.contentWindow?.document?.body;
14698
- if (!iframeBody)
14699
- return;
14700
- 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) => {
14701
14848
  if (this._isSettingValue)
14702
14849
  return;
14703
14850
  this._ngZone.run(() => {
14704
- const content = this._editor.getContent();
14705
14851
  this._onChange(content);
14706
14852
  this.contentChange.emit(content);
14707
14853
  });
14708
14854
  });
14709
- this._observer.observe(iframeBody, {
14710
- childList: true,
14711
- subtree: true,
14712
- characterData: true,
14713
- });
14714
- iframeBody.addEventListener('blur', () => {
14855
+ this._editor.on('onBlur', () => {
14715
14856
  this._ngZone.run(() => this._onTouched());
14716
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);
14717
14872
  }
14718
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaTextEditorComponent, deps: [{ token: i0.NgZone }], 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 }); }
14719
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: [
14720
14875
  {
14721
14876
  provide: NG_VALUE_ACCESSOR,
14722
14877
  useExisting: forwardRef(() => MatchaTextEditorComponent),
14723
14878
  multi: true,
14724
14879
  },
14725
- ], 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"] }] }); }
14726
14881
  }
14727
14882
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaTextEditorComponent, decorators: [{
14728
14883
  type: Component,
@@ -14732,8 +14887,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
14732
14887
  useExisting: forwardRef(() => MatchaTextEditorComponent),
14733
14888
  multi: true,
14734
14889
  },
14735
- ], template: "<matcha-spinner *ngIf=\"isLoading\"></matcha-spinner>\n<textarea [id]=\"editorId\" style=\"display:none; width:100%;\"></textarea>\n" }]
14736
- }], ctorParameters: () => [{ type: i0.NgZone }], 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: [{
14737
14892
  type: Input
14738
14893
  }], config: [{
14739
14894
  type: Input
@@ -14744,16 +14899,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
14744
14899
  args: ['attr.disabled']
14745
14900
  }] } });
14746
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
+
14747
14918
  class MatchaTextEditorModule {
14748
14919
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaTextEditorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
14749
- 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] }); }
14750
- 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] }); }
14751
14922
  }
14752
14923
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaTextEditorModule, decorators: [{
14753
14924
  type: NgModule,
14754
14925
  args: [{
14755
14926
  declarations: [MatchaTextEditorComponent],
14756
- imports: [CommonModule, ReactiveFormsModule, MatchaSpinnerModule],
14927
+ imports: [CommonModule, ReactiveFormsModule, MatchaSkeletonModule],
14757
14928
  exports: [MatchaTextEditorComponent],
14758
14929
  }]
14759
14930
  }] });
@@ -15203,91 +15374,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
15203
15374
  }]
15204
15375
  }] });
15205
15376
 
15206
- class MatchaSkeletonComponent {
15207
- constructor() {
15208
- this.amount = 3;
15209
- this.grid = 3;
15210
- this.height = 100;
15211
- this.model = 'empty';
15212
- this.gap = 16;
15213
- }
15214
- // Getters privados para conversão sem modificar os inputs
15215
- get amountNumber() {
15216
- return typeof this.amount === 'string' ? parseInt(this.amount, 10) : this.amount;
15217
- }
15218
- get gridNumber() {
15219
- return typeof this.grid === 'string' ? parseInt(this.grid, 10) : this.grid;
15220
- }
15221
- get classes() {
15222
- // Usa os valores convertidos sem modificar os inputs
15223
- const amountValue = this.amountNumber;
15224
- const gridValue = this.gridNumber;
15225
- let classes = `gap-${this.gap} `;
15226
- amountValue > 1 ? classes += `grid-sm-${gridValue - 1} ` : classes;
15227
- amountValue > 2 ? classes += `grid-md-${gridValue} ` : classes;
15228
- return classes;
15229
- }
15230
- get heightClass() {
15231
- return `h-${this.height}`;
15232
- }
15233
- get amountArray() {
15234
- const amountValue = this.amountNumber;
15235
- return Array(amountValue).fill(0).map((_, index) => index);
15236
- }
15237
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaSkeletonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
15238
- 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"] }] }); }
15239
- }
15240
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaSkeletonComponent, decorators: [{
15241
- type: Component,
15242
- 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" }]
15243
- }], propDecorators: { amount: [{
15244
- type: Input,
15245
- args: ['amount']
15246
- }, {
15247
- type: HostBinding,
15248
- args: ['attr.amount']
15249
- }], grid: [{
15250
- type: Input,
15251
- args: ['grid']
15252
- }, {
15253
- type: HostBinding,
15254
- args: ['attr.grid']
15255
- }], height: [{
15256
- type: Input,
15257
- args: ['height']
15258
- }, {
15259
- type: HostBinding,
15260
- args: ['attr.height']
15261
- }], model: [{
15262
- type: Input,
15263
- args: ['model']
15264
- }, {
15265
- type: HostBinding,
15266
- args: ['attr.model']
15267
- }], gap: [{
15268
- type: Input,
15269
- args: ['gap']
15270
- }, {
15271
- type: HostBinding,
15272
- args: ['attr.gap']
15273
- }] } });
15274
-
15275
- class MatchaSkeletonModule {
15276
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaSkeletonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
15277
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.19", ngImport: i0, type: MatchaSkeletonModule, declarations: [MatchaSkeletonComponent], imports: [CommonModule], exports: [MatchaSkeletonComponent] }); }
15278
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaSkeletonModule, imports: [CommonModule] }); }
15279
- }
15280
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: MatchaSkeletonModule, decorators: [{
15281
- type: NgModule,
15282
- args: [{
15283
- declarations: [MatchaSkeletonComponent],
15284
- imports: [
15285
- CommonModule
15286
- ],
15287
- exports: [MatchaSkeletonComponent],
15288
- }]
15289
- }] });
15290
-
15291
15377
  class StepContentDirective {
15292
15378
  constructor(template) {
15293
15379
  this.template = template;
@@ -15660,5 +15746,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
15660
15746
  * Generated bundle index. Do not edit.
15661
15747
  */
15662
15748
 
15663
- 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 };
15664
15750
  //# sourceMappingURL=matcha-components.mjs.map