ng-tailwind 4.1.15 → 4.1.16

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.
@@ -7631,13 +7631,13 @@ class NgtPopoverTooltipComponent {
7631
7631
  constructor() {
7632
7632
  this.position = NgtPopoverPosition.DEFAULT;
7633
7633
  this.positionClasses = {
7634
- [NgtPopoverPosition.TOP]: 'top-0 -mt-10',
7635
- [NgtPopoverPosition.BOTTOM]: 'bottom-0 -mb-10',
7634
+ [NgtPopoverPosition.TOP]: '-mt-10',
7635
+ [NgtPopoverPosition.BOTTOM]: '-mb-10',
7636
7636
  };
7637
7637
  }
7638
7638
  }
7639
7639
  NgtPopoverTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: NgtPopoverTooltipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
7640
- NgtPopoverTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.8", type: NgtPopoverTooltipComponent, selector: "ngt-popover-tooltip", ngImport: i0, template: "<div class=\"bg-white rounded-lg shadow-xl border border-gray-100 absolute max-w-7xl\"\n [ngClass]=\"positionClasses[position]\" style=\"z-index: 999999 !important; width: max-content !important;\"\n (click)=\"$event.stopPropagation()\" @enterAnimation>\n\n <div *ngIf=\"!popoverTemplate; else showTemplate\" class=\"px-2 py-1 text-gray-500 whitespace-nowrap\">\n {{ popover }}\n </div>\n\n <ng-template #showTemplate>\n <ng-container [ngTemplateOutlet]=\"popoverTemplate\"></ng-container>\n </ng-template>\n</div>\n", dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], animations: [
7640
+ NgtPopoverTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.8", type: NgtPopoverTooltipComponent, selector: "ngt-popover-tooltip", ngImport: i0, template: "<div class=\"bg-white rounded-lg shadow-2xl border border-gray-200 absolute max-w-7xl\"\n [ngClass]=\"positionClasses[position]\" [style.left.px]=\"positionX\" [style.top.px]=\"positionY\"\n style=\"z-index: 999999 !important; width: max-content !important;\"\n (click)=\"$event.stopPropagation()\" @enterAnimation>\n\n <div *ngIf=\"!popoverTemplate; else showTemplate\" class=\"px-2 py-1 text-gray-700 whitespace-nowrap\">\n {{ popover }}\n </div>\n\n <ng-template #showTemplate>\n <ng-container [ngTemplateOutlet]=\"popoverTemplate\"></ng-container>\n </ng-template>\n</div>\n", dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], animations: [
7641
7641
  trigger('enterAnimation', [
7642
7642
  state('void', style({ transform: 'translateY(-20px)', opacity: 0 })),
7643
7643
  transition(':enter', [
@@ -7654,7 +7654,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
7654
7654
  animate(200)
7655
7655
  ])
7656
7656
  ]),
7657
- ], template: "<div class=\"bg-white rounded-lg shadow-xl border border-gray-100 absolute max-w-7xl\"\n [ngClass]=\"positionClasses[position]\" style=\"z-index: 999999 !important; width: max-content !important;\"\n (click)=\"$event.stopPropagation()\" @enterAnimation>\n\n <div *ngIf=\"!popoverTemplate; else showTemplate\" class=\"px-2 py-1 text-gray-500 whitespace-nowrap\">\n {{ popover }}\n </div>\n\n <ng-template #showTemplate>\n <ng-container [ngTemplateOutlet]=\"popoverTemplate\"></ng-container>\n </ng-template>\n</div>\n" }]
7657
+ ], template: "<div class=\"bg-white rounded-lg shadow-2xl border border-gray-200 absolute max-w-7xl\"\n [ngClass]=\"positionClasses[position]\" [style.left.px]=\"positionX\" [style.top.px]=\"positionY\"\n style=\"z-index: 999999 !important; width: max-content !important;\"\n (click)=\"$event.stopPropagation()\" @enterAnimation>\n\n <div *ngIf=\"!popoverTemplate; else showTemplate\" class=\"px-2 py-1 text-gray-700 whitespace-nowrap\">\n {{ popover }}\n </div>\n\n <ng-template #showTemplate>\n <ng-container [ngTemplateOutlet]=\"popoverTemplate\"></ng-container>\n </ng-template>\n</div>\n" }]
7658
7658
  }] });
7659
7659
  var NgtPopoverPosition;
7660
7660
  (function (NgtPopoverPosition) {
@@ -7742,12 +7742,12 @@ var NgtPopoverOpenMethod;
7742
7742
  })(NgtPopoverOpenMethod || (NgtPopoverOpenMethod = {}));
7743
7743
 
7744
7744
  class NgtPopoverDirective {
7745
- constructor(elementRef, componentFactoryResolver, viewContainerRef) {
7745
+ constructor(elementRef, viewContainerRef) {
7746
7746
  this.elementRef = elementRef;
7747
- this.componentFactoryResolver = componentFactoryResolver;
7748
7747
  this.viewContainerRef = viewContainerRef;
7749
7748
  this.ngtPopoverPosition = NgtPopoverPosition.DEFAULT;
7750
- this.dismissDelay = 150;
7749
+ this.dismissDelay = 1000;
7750
+ this.showDelay = 1000;
7751
7751
  this.openMethod = NgtPopoverOpenMethod.HOVER;
7752
7752
  this.componentRef = null;
7753
7753
  }
@@ -7770,6 +7770,9 @@ class NgtPopoverDirective {
7770
7770
  }
7771
7771
  }
7772
7772
  onMouseLeave() {
7773
+ if (this.showTimeoutInstance) {
7774
+ clearTimeout(this.showTimeoutInstance);
7775
+ }
7773
7776
  if (this.closeOnClick) {
7774
7777
  return;
7775
7778
  }
@@ -7782,14 +7785,13 @@ class NgtPopoverDirective {
7782
7785
  if (this.componentRef || this.openMethod != NgtPopoverOpenMethod.HOVER) {
7783
7786
  return;
7784
7787
  }
7785
- this.createPopover();
7788
+ this.showTimeoutInstance = setTimeout(() => this.createPopover(), this.showDelay);
7786
7789
  }
7787
7790
  ngOnDestroy() {
7788
7791
  this.destroy();
7789
7792
  }
7790
7793
  createPopover() {
7791
- const componentFactory = this.componentFactoryResolver.resolveComponentFactory(NgtPopoverTooltipComponent);
7792
- this.componentRef = this.viewContainerRef.createComponent(componentFactory);
7794
+ this.componentRef = this.viewContainerRef.createComponent(NgtPopoverTooltipComponent);
7793
7795
  this.setupPopoverComponent();
7794
7796
  }
7795
7797
  destroy() {
@@ -7800,23 +7802,25 @@ class NgtPopoverDirective {
7800
7802
  if (!this.componentRef) {
7801
7803
  return;
7802
7804
  }
7805
+ const rect = this.elementRef.nativeElement.getBoundingClientRect();
7806
+ this.componentRef.instance.positionX = rect.left;
7807
+ this.componentRef.instance.positionY = (this.ngtPopoverPosition === NgtPopoverPosition.TOP)
7808
+ ? rect.top
7809
+ : rect.bottom;
7803
7810
  this.componentRef.instance.popover = this.ngtPopoverContent;
7804
7811
  this.componentRef.instance.popoverTemplate = this.ngtPopoverTemplate;
7805
7812
  this.componentRef.instance.position = this.ngtPopoverPosition;
7806
- const hostElement = this.elementRef.nativeElement;
7807
- const popoverElement = this.componentRef.location.nativeElement;
7808
- hostElement.classList.add('relative');
7809
- hostElement.appendChild(popoverElement);
7813
+ document.body.appendChild(this.componentRef.location.nativeElement);
7810
7814
  }
7811
7815
  }
7812
- NgtPopoverDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: NgtPopoverDirective, deps: [{ token: i0.ElementRef }, { token: i0.ComponentFactoryResolver }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
7813
- NgtPopoverDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.8", type: NgtPopoverDirective, selector: "[ngt-popover]", inputs: { ngtPopoverContent: "ngtPopoverContent", ngtPopoverTemplate: "ngtPopoverTemplate", ngtPopoverPosition: "ngtPopoverPosition", dismissDelay: "dismissDelay", closeOnClick: "closeOnClick", openMethod: "openMethod" }, host: { listeners: { "click": "onClick()", "document:click": "onDocumentClick($event.target)", "mouseleave": "onMouseLeave()", "mouseenter": "onMouseEnter()" } }, ngImport: i0 });
7816
+ NgtPopoverDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: NgtPopoverDirective, deps: [{ token: i0.ElementRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
7817
+ NgtPopoverDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.8", type: NgtPopoverDirective, selector: "[ngt-popover]", inputs: { ngtPopoverContent: "ngtPopoverContent", ngtPopoverTemplate: "ngtPopoverTemplate", ngtPopoverPosition: "ngtPopoverPosition", dismissDelay: "dismissDelay", showDelay: "showDelay", closeOnClick: "closeOnClick", openMethod: "openMethod" }, host: { listeners: { "click": "onClick()", "document:click": "onDocumentClick($event.target)", "mouseleave": "onMouseLeave()", "mouseenter": "onMouseEnter()" } }, ngImport: i0 });
7814
7818
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: NgtPopoverDirective, decorators: [{
7815
7819
  type: Directive,
7816
7820
  args: [{
7817
7821
  selector: '[ngt-popover]'
7818
7822
  }]
7819
- }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ComponentFactoryResolver }, { type: i0.ViewContainerRef }]; }, propDecorators: { ngtPopoverContent: [{
7823
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ViewContainerRef }]; }, propDecorators: { ngtPopoverContent: [{
7820
7824
  type: Input
7821
7825
  }], ngtPopoverTemplate: [{
7822
7826
  type: Input
@@ -7824,6 +7828,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
7824
7828
  type: Input
7825
7829
  }], dismissDelay: [{
7826
7830
  type: Input
7831
+ }], showDelay: [{
7832
+ type: Input
7827
7833
  }], closeOnClick: [{
7828
7834
  type: Input
7829
7835
  }], openMethod: [{
@@ -7871,6 +7877,125 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
7871
7877
  }]
7872
7878
  }] });
7873
7879
 
7880
+ class NgtContextMenuComponent {
7881
+ constructor() {
7882
+ this.onMenuItemClick = new EventEmitter();
7883
+ this.onTemplateClick = new EventEmitter();
7884
+ this.menuItems = [];
7885
+ }
7886
+ hasOptions() {
7887
+ return !this.menuTemplate && !!this.menuItems?.length;
7888
+ }
7889
+ }
7890
+ NgtContextMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: NgtContextMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
7891
+ NgtContextMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.8", type: NgtContextMenuComponent, selector: "ngt-context-menu", outputs: { onMenuItemClick: "onMenuItemClick", onTemplateClick: "onTemplateClick" }, ngImport: i0, template: "<div class=\"absolute max-w-7xl -mr-10 -mb-10\" style=\"z-index: 999999 !important; width: max-content !important;\"\n [style.left.px]=\"positionX\" [style.top.px]=\"positionY\" (click)=\"$event.stopPropagation()\">\n\n <ng-container *ngIf=\"hasOptions(); else showTemplate\">\n <ul class=\"cursor-pointer rounded-xl bg-white border border-gray-200 shadow-2xl \">\n <li *ngFor=\"let item of menuItems; last as isLast; first as isFirst\" class=\"flex\"\n class=\"flex items-center w-full px-4 py-2 gap-3 text-sm text-gray-700 hover:text-white\"\n [class.rounded-b-xl]=\"isLast\" [class.rounded-t-xl]=\"isFirst\"\n [ngClass]=\"item.background_color || 'hover:bg-green-500'\" (click)=\"onMenuItemClick.emit(item)\">\n\n <ngt-svg *ngIf=\"item.icon\" class=\"text-lg\" [src]=\"item.icon\"></ngt-svg>\n\n {{ item.caption }}\n </li>\n </ul>\n </ng-container>\n\n <ng-template #showTemplate>\n <div class=\"block rounded-lg bg-white border border-gray-200 w-full h-auto shadow-2xl\"\n (click)=\"onTemplateClick.emit()\">\n <ng-container [ngTemplateOutlet]=\"menuTemplate\"></ng-container>\n </div>\n </ng-template>\n</div>\n", dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: NgtSvgComponent, selector: "ngt-svg", inputs: ["src", "class"] }] });
7892
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: NgtContextMenuComponent, decorators: [{
7893
+ type: Component,
7894
+ args: [{ selector: 'ngt-context-menu', template: "<div class=\"absolute max-w-7xl -mr-10 -mb-10\" style=\"z-index: 999999 !important; width: max-content !important;\"\n [style.left.px]=\"positionX\" [style.top.px]=\"positionY\" (click)=\"$event.stopPropagation()\">\n\n <ng-container *ngIf=\"hasOptions(); else showTemplate\">\n <ul class=\"cursor-pointer rounded-xl bg-white border border-gray-200 shadow-2xl \">\n <li *ngFor=\"let item of menuItems; last as isLast; first as isFirst\" class=\"flex\"\n class=\"flex items-center w-full px-4 py-2 gap-3 text-sm text-gray-700 hover:text-white\"\n [class.rounded-b-xl]=\"isLast\" [class.rounded-t-xl]=\"isFirst\"\n [ngClass]=\"item.background_color || 'hover:bg-green-500'\" (click)=\"onMenuItemClick.emit(item)\">\n\n <ngt-svg *ngIf=\"item.icon\" class=\"text-lg\" [src]=\"item.icon\"></ngt-svg>\n\n {{ item.caption }}\n </li>\n </ul>\n </ng-container>\n\n <ng-template #showTemplate>\n <div class=\"block rounded-lg bg-white border border-gray-200 w-full h-auto shadow-2xl\"\n (click)=\"onTemplateClick.emit()\">\n <ng-container [ngTemplateOutlet]=\"menuTemplate\"></ng-container>\n </div>\n </ng-template>\n</div>\n" }]
7895
+ }], propDecorators: { onMenuItemClick: [{
7896
+ type: Output
7897
+ }], onTemplateClick: [{
7898
+ type: Output
7899
+ }] } });
7900
+
7901
+ class NgtContextMenuDirective {
7902
+ constructor(viewContainerRef) {
7903
+ this.viewContainerRef = viewContainerRef;
7904
+ this.onNgtContextMenuClick = new EventEmitter();
7905
+ this.componentRef = null;
7906
+ }
7907
+ onContextMenu(event) {
7908
+ event.preventDefault();
7909
+ this.destroy();
7910
+ this.createComponent(event);
7911
+ }
7912
+ onDocumentClick() {
7913
+ this.destroy();
7914
+ }
7915
+ onClick() {
7916
+ this.destroy();
7917
+ }
7918
+ ngOnDestroy() {
7919
+ this.destroy();
7920
+ }
7921
+ createComponent(event) {
7922
+ this.componentRef = this.viewContainerRef.createComponent(NgtContextMenuComponent);
7923
+ this.componentRef.instance.positionX = event.clientX;
7924
+ this.componentRef.instance.positionY = event.clientY;
7925
+ this.componentRef.instance.menuItems = this.ngtContextMenuOptions;
7926
+ this.componentRef.instance.menuTemplate = this.ngtContextMenuTemplate;
7927
+ this.bindSubscriptions();
7928
+ document.body.appendChild(this.componentRef.location.nativeElement);
7929
+ }
7930
+ bindSubscriptions() {
7931
+ this.menuItemClickSubscription = this.componentRef.instance
7932
+ .onMenuItemClick
7933
+ .subscribe((event) => {
7934
+ this.onNgtContextMenuClick.emit(event);
7935
+ this.destroy();
7936
+ });
7937
+ this.templateClickSubscription = this.componentRef.instance
7938
+ .onTemplateClick
7939
+ .subscribe((event) => this.destroy());
7940
+ }
7941
+ destroy() {
7942
+ this.menuItemClickSubscription?.unsubscribe();
7943
+ this.templateClickSubscription?.unsubscribe();
7944
+ this.componentRef?.destroy();
7945
+ this.componentRef = null;
7946
+ }
7947
+ }
7948
+ NgtContextMenuDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: NgtContextMenuDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
7949
+ NgtContextMenuDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.8", type: NgtContextMenuDirective, selector: "[ngt-contextmenu]", inputs: { ngtContextMenuOptions: "ngtContextMenuOptions", ngtContextMenuTemplate: "ngtContextMenuTemplate" }, outputs: { onNgtContextMenuClick: "onNgtContextMenuClick" }, host: { listeners: { "contextmenu": "onContextMenu($event)", "document:click": "onDocumentClick()", "click": "onClick()" } }, ngImport: i0 });
7950
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: NgtContextMenuDirective, decorators: [{
7951
+ type: Directive,
7952
+ args: [{
7953
+ selector: '[ngt-contextmenu]'
7954
+ }]
7955
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { onNgtContextMenuClick: [{
7956
+ type: Output
7957
+ }], ngtContextMenuOptions: [{
7958
+ type: Input
7959
+ }], ngtContextMenuTemplate: [{
7960
+ type: Input
7961
+ }], onContextMenu: [{
7962
+ type: HostListener,
7963
+ args: ['contextmenu', ['$event']]
7964
+ }], onDocumentClick: [{
7965
+ type: HostListener,
7966
+ args: ['document:click']
7967
+ }], onClick: [{
7968
+ type: HostListener,
7969
+ args: ['click']
7970
+ }] } });
7971
+
7972
+ class NgtContextMenuModule {
7973
+ }
7974
+ NgtContextMenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: NgtContextMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
7975
+ NgtContextMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.8", ngImport: i0, type: NgtContextMenuModule, declarations: [NgtContextMenuDirective,
7976
+ NgtContextMenuComponent], imports: [CommonModule,
7977
+ NgtSvgModule], exports: [NgtContextMenuDirective,
7978
+ NgtContextMenuComponent] });
7979
+ NgtContextMenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: NgtContextMenuModule, imports: [CommonModule,
7980
+ NgtSvgModule] });
7981
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImport: i0, type: NgtContextMenuModule, decorators: [{
7982
+ type: NgModule,
7983
+ args: [{
7984
+ declarations: [
7985
+ NgtContextMenuDirective,
7986
+ NgtContextMenuComponent,
7987
+ ],
7988
+ exports: [
7989
+ NgtContextMenuDirective,
7990
+ NgtContextMenuComponent,
7991
+ ],
7992
+ imports: [
7993
+ CommonModule,
7994
+ NgtSvgModule
7995
+ ],
7996
+ }]
7997
+ }] });
7998
+
7874
7999
  /*
7875
8000
  * Public API Surface of ng-tailwind
7876
8001
  */
@@ -7879,5 +8004,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
7879
8004
  * Generated bundle index. Do not edit.
7880
8005
  */
7881
8006
 
7882
- export { NgtActionComponent, NgtActionModule, NgtAttachmentHttpService, NgtButtonComponent, NgtButtonModule, NgtCheckboxComponent, NgtCheckboxMode, NgtCheckboxModule, NgtCheckedElement, NgtContentComponent, NgtContentModule, NgtCustomFilter, NgtDatatableComponent, NgtDatatableModule, NgtDatatableParam, NgtDatatableSearchType, NgtDatatableType, NgtDateComponent, NgtDateLocale, NgtDateMode, NgtDateModule, NgtDropdownComponent, NgtDropdownContainerComponent, NgtDropdownModule, NgtDropdownOpenMethod, NgtDropzoneComponent, NgtDropzoneErrorType, NgtDropzoneFileTypeEnum, NgtDropzoneModule, NgtDropzonePreviewType, NgtFloatingButtonComponent, NgtFloatingButtonModule, NgtFloatingButtonType, NgtFormComponent, NgtFormModule, NgtFormState, NgtFormValidationMessageComponent, NgtHeaderNavComponent, NgtHeaderNavModule, NgtHelperComponent, NgtHelperModule, NgtHttpFormService, NgtHttpResourceService, NgtHttpService, NgtHttpValidationService, NgtInputComponent, NgtInputModule, NgtModalBodyComponent, NgtModalComponent, NgtModalFooterComponent, NgtModalHeaderComponent, NgtModalModule, NgtMultiSelectComponent, NgtMultiSelectModule, NgtPaginationComponent, NgtPaginationModule, NgtPopoverComponent, NgtPopoverDirective, NgtPopoverModule, NgtPopoverOpenMethod, NgtPortletBodyComponent, NgtPortletComponent, NgtPortletFooterComponent, NgtPortletHeaderComponent, NgtPortletModule, NgtRadioButtonComponent, NgtRadioButtonContainerComponent, NgtRadioButtonModule, NgtSectionComponent, NgtSectionModule, NgtSelectComponent, NgtSelectDropdownPanelHeight, NgtSelectHeaderTmp, NgtSelectModule, NgtSelectOptionSelectedTmp, NgtSelectOptionTmp, NgtShiningComponent, NgtShiningModule, NgtShiningWidth, NgtSidenavComponent, NgtSidenavModule, NgtSliderColorSchemeEnum, NgtSliderComponent, NgtSliderModule, NgtStylizableDirective, NgtStylizableModule, NgtSvgComponent, NgtSvgModule, NgtTagComponent, NgtTagModule, NgtTbodyComponent, NgtTdCheckComponent, NgtTdComponent, NgtTextareaComponent, NgtTextareaModule, NgtThCheckComponent, NgtThComponent, NgtTheadComponent, NgtTrComponent, NgtTranslateService, Size, fadeDownAnimation, fadeUpAnimation, slideLeftToRightAnimation, slideRightToLeftAnimation };
8007
+ export { NgtActionComponent, NgtActionModule, NgtAttachmentHttpService, NgtButtonComponent, NgtButtonModule, NgtCheckboxComponent, NgtCheckboxMode, NgtCheckboxModule, NgtCheckedElement, NgtContentComponent, NgtContentModule, NgtContextMenuComponent, NgtContextMenuDirective, NgtContextMenuModule, NgtCustomFilter, NgtDatatableComponent, NgtDatatableModule, NgtDatatableParam, NgtDatatableSearchType, NgtDatatableType, NgtDateComponent, NgtDateLocale, NgtDateMode, NgtDateModule, NgtDropdownComponent, NgtDropdownContainerComponent, NgtDropdownModule, NgtDropdownOpenMethod, NgtDropzoneComponent, NgtDropzoneErrorType, NgtDropzoneFileTypeEnum, NgtDropzoneModule, NgtDropzonePreviewType, NgtFloatingButtonComponent, NgtFloatingButtonModule, NgtFloatingButtonType, NgtFormComponent, NgtFormModule, NgtFormState, NgtFormValidationMessageComponent, NgtHeaderNavComponent, NgtHeaderNavModule, NgtHelperComponent, NgtHelperModule, NgtHttpFormService, NgtHttpResourceService, NgtHttpService, NgtHttpValidationService, NgtInputComponent, NgtInputModule, NgtModalBodyComponent, NgtModalComponent, NgtModalFooterComponent, NgtModalHeaderComponent, NgtModalModule, NgtMultiSelectComponent, NgtMultiSelectModule, NgtPaginationComponent, NgtPaginationModule, NgtPopoverComponent, NgtPopoverDirective, NgtPopoverModule, NgtPopoverOpenMethod, NgtPortletBodyComponent, NgtPortletComponent, NgtPortletFooterComponent, NgtPortletHeaderComponent, NgtPortletModule, NgtRadioButtonComponent, NgtRadioButtonContainerComponent, NgtRadioButtonModule, NgtSectionComponent, NgtSectionModule, NgtSelectComponent, NgtSelectDropdownPanelHeight, NgtSelectHeaderTmp, NgtSelectModule, NgtSelectOptionSelectedTmp, NgtSelectOptionTmp, NgtShiningComponent, NgtShiningModule, NgtShiningWidth, NgtSidenavComponent, NgtSidenavModule, NgtSliderColorSchemeEnum, NgtSliderComponent, NgtSliderModule, NgtStylizableDirective, NgtStylizableModule, NgtSvgComponent, NgtSvgModule, NgtTagComponent, NgtTagModule, NgtTbodyComponent, NgtTdCheckComponent, NgtTdComponent, NgtTextareaComponent, NgtTextareaModule, NgtThCheckComponent, NgtThComponent, NgtTheadComponent, NgtTrComponent, NgtTranslateService, Size, fadeDownAnimation, fadeUpAnimation, slideLeftToRightAnimation, slideRightToLeftAnimation };
7883
8008
  //# sourceMappingURL=ng-tailwind.mjs.map