@gloww/gloww 20.0.0-beta.10 → 20.0.0-beta.12

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.
@@ -12,7 +12,6 @@ import * as i2 from '@angular/router';
12
12
  import { NavigationEnd, RouterLink, RouterModule } from '@angular/router';
13
13
  import { MatButton, MatButtonModule } from '@angular/material/button';
14
14
  import * as i1$1 from '@angular/platform-browser';
15
- import { BrowserModule } from '@angular/platform-browser';
16
15
  import * as i5 from '@kolkov/angular-editor';
17
16
  import { AngularEditorModule } from '@kolkov/angular-editor';
18
17
  import { switchMap, map, tap, filter, catchError, take, mergeMap, retryWhen, scan, delay, first, distinctUntilChanged, debounceTime } from 'rxjs/operators';
@@ -33,10 +32,10 @@ import * as i2$1 from 'ngx-mat-datetime-picker-v2';
33
32
  import { NgxMatDatetimePickerModule, NgxMatTimepickerComponent, NgxMatNativeDateModule } from 'ngx-mat-datetime-picker-v2';
34
33
  import { MatSelect, MatOption, MatSelectModule } from '@angular/material/select';
35
34
  import { trigger, state, style, transition, animate } from '@angular/animations';
35
+ import { MatListItem } from '@angular/material/list';
36
36
  import prettier from 'node_modules/prettier/esm/standalone.mjs';
37
37
  import parserTypescript from 'node_modules/prettier/esm/parser-typescript.mjs';
38
38
  import parserBabel from 'node_modules/prettier/esm/parser-babel.mjs';
39
- import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
40
39
  import { MatToolbarModule } from '@angular/material/toolbar';
41
40
  import { MatSidenavModule } from '@angular/material/sidenav';
42
41
  import { MatFormFieldModule } from '@angular/material/form-field';
@@ -223,7 +222,10 @@ class RouteDirective {
223
222
  }
224
223
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: RouteDirective, decorators: [{
225
224
  type: Directive,
226
- args: [{ selector: '[glowwRoute]' }]
225
+ args: [{
226
+ selector: '[glowwRoute]',
227
+ standalone: true
228
+ }]
227
229
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i2.Router }], propDecorators: { dlg: [{
228
230
  type: Input
229
231
  }], onClick: [{
@@ -245,7 +247,10 @@ class SafeHtmlPipe {
245
247
  }
246
248
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: SafeHtmlPipe, decorators: [{
247
249
  type: Pipe,
248
- args: [{ name: 'safeHtml' }]
250
+ args: [{
251
+ name: 'safeHtml',
252
+ standalone: true
253
+ }]
249
254
  }], ctorParameters: () => [{ type: i1$1.DomSanitizer }] });
250
255
 
251
256
  class ConfirmationComponent {
@@ -455,7 +460,10 @@ class FileSinkDirective {
455
460
  }
456
461
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: FileSinkDirective, decorators: [{
457
462
  type: Directive,
458
- args: [{ selector: '[glowwFileSink]' }]
463
+ args: [{
464
+ selector: '[glowwFileSink]',
465
+ standalone: true
466
+ }]
459
467
  }], propDecorators: { fileOver: [{
460
468
  type: HostBinding,
461
469
  args: ['class.fileover']
@@ -1711,7 +1719,10 @@ class SecurePipe {
1711
1719
  }
1712
1720
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: SecurePipe, decorators: [{
1713
1721
  type: Pipe,
1714
- args: [{ name: 'secure' }]
1722
+ args: [{
1723
+ name: 'secure',
1724
+ standalone: true
1725
+ }]
1715
1726
  }], ctorParameters: () => [{ type: i1.HttpClient }, { type: i1$1.DomSanitizer }] });
1716
1727
 
1717
1728
  class MenuListItemComponent {
@@ -1782,7 +1793,7 @@ class MenuListItemComponent {
1782
1793
  return this.item.hidden();
1783
1794
  }
1784
1795
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: MenuListItemComponent, deps: [{ token: 'glowwService' }, { token: NavService }, { token: i2.Router }], target: i0.ɵɵFactoryTarget.Component }); }
1785
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.18", type: MenuListItemComponent, isStandalone: true, selector: "gloww-menu-list-item", inputs: { item: "item", depth: "depth" }, host: { properties: { "attr.aria-expanded": "this.ariaExpanded" } }, ngImport: i0, template: "@if (item) {\n @if (!(_hidden | async)) {\n <div class=\"thisMenu\" (click)=\"onItemSelected(item)\" [class.disabled]=\"(_disabled | async)\">\n <a mat-list-item\n [ngStyle]=\"{'padding-left': (depth * 12) + 'px'}\"\n [ngClass]=\"{'active': isActive(item) && !(_disabled | async), 'expanded': expanded}\"\n class=\"menu-list-item\"\n [routerLink]=\"routerLink(item)\">\n <mat-icon class=\"routeIcon\">\n <i [ngClass]=\"item.icon\" [ngStyle]=\"item.iconStyle\"></i>\n </mat-icon>\n <span class=\"menu-label\">{{item.displayName}}</span>\n </a>\n @if (item.children?.length && !(_disabled | async)) {\n <div class=\"expand-container\">\n <mat-icon [@indicatorRotate]=\"expanded ? 'expanded': 'collapsed'\" class=\"expandIcon\">\n expand_more\n </mat-icon>\n </div>\n }\n </div>\n }\n @if (expanded && !(_disabled | async)) {\n <div>\n @for (child of item.children; track child) {\n <gloww-menu-list-item [item]=\"child\" [depth]=\"depth+1\">\n </gloww-menu-list-item>\n }\n </div>\n }\n}", styles: [".thisMenu{display:flex;flex-direction:row;align-items:center;outline:none;width:calc(100% - 20px);margin:10px;cursor:pointer}.menu-list-item{display:flex;align-items:center;flex:1;padding:8px 0;text-decoration:none;color:inherit;min-width:0}.menu-list-item .routeIcon{margin-right:20px;flex-shrink:0}.menu-list-item .menu-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.expand-container{display:flex;align-items:center;justify-content:center;flex-shrink:0}mat-icon{height:32px;width:40px;display:flex;align-items:center;justify-content:center}.expandIcon{cursor:pointer}:disabled,.disabled{color:#d3d3d3!important;pointer-events:none}:disabled mat-icon i,.disabled mat-icon i{color:#d3d3d3!important}\n"], dependencies: [{ kind: "component", type: MenuListItemComponent, selector: "gloww-menu-list-item", inputs: ["item", "depth"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "component", type: MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: GlowwModule }, { kind: "pipe", type: AsyncPipe, name: "async" }], animations: [
1796
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.18", type: MenuListItemComponent, isStandalone: true, selector: "gloww-menu-list-item", inputs: { item: "item", depth: "depth" }, host: { properties: { "attr.aria-expanded": "this.ariaExpanded" } }, ngImport: i0, template: "@if (item) {\n @if (!(_hidden | async)) {\n <div class=\"thisMenu\" (click)=\"onItemSelected(item)\" [class.disabled]=\"(_disabled | async)\">\n <a mat-list-item\n [ngStyle]=\"{'padding-left': (depth * 12) + 'px'}\"\n [ngClass]=\"{'active': isActive(item) && !(_disabled | async), 'expanded': expanded}\"\n class=\"menu-list-item\"\n [routerLink]=\"routerLink(item)\">\n <mat-icon class=\"routeIcon\">\n <i [ngClass]=\"item.icon\" [ngStyle]=\"item.iconStyle\"></i>\n </mat-icon>\n <span class=\"menu-label\">{{item.displayName}}</span>\n </a>\n @if (item.children?.length && !(_disabled | async)) {\n <div class=\"expand-container\">\n <mat-icon [@indicatorRotate]=\"expanded ? 'expanded': 'collapsed'\" class=\"expandIcon\">\n expand_more\n </mat-icon>\n </div>\n }\n </div>\n }\n @if (expanded && !(_disabled | async)) {\n <div>\n @for (child of item.children; track child) {\n <gloww-menu-list-item [item]=\"child\" [depth]=\"depth+1\">\n </gloww-menu-list-item>\n }\n </div>\n }\n}", styles: [".thisMenu{display:flex;flex-direction:row;align-items:center;outline:none;width:calc(100% - 20px);margin:10px;cursor:pointer}.menu-list-item{display:flex;align-items:center;flex:1;padding:8px 0;text-decoration:none;color:inherit;min-width:0}.menu-list-item .routeIcon{margin-right:20px;flex-shrink:0}.menu-list-item .menu-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.expand-container{display:flex;align-items:center;justify-content:center;flex-shrink:0}mat-icon{height:32px;width:40px;display:flex;align-items:center;justify-content:center}.expandIcon{cursor:pointer}:disabled,.disabled{color:#d3d3d3!important;pointer-events:none}:disabled mat-icon i,.disabled mat-icon i{color:#d3d3d3!important}\n"], dependencies: [{ kind: "component", type: MenuListItemComponent, selector: "gloww-menu-list-item", inputs: ["item", "depth"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "component", type: MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: MatListItem, selector: "mat-list-item, a[mat-list-item], button[mat-list-item]", inputs: ["activated"], exportAs: ["matListItem"] }, { kind: "pipe", type: AsyncPipe, name: "async" }], animations: [
1786
1797
  trigger('indicatorRotate', [
1787
1798
  state('collapsed', style({ transform: 'rotate(0deg)' })),
1788
1799
  state('expanded', style({ transform: 'rotate(180deg)' })),
@@ -1798,7 +1809,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImpo
1798
1809
  state('expanded', style({ transform: 'rotate(180deg)' })),
1799
1810
  transition('expanded <=> collapsed', animate('225ms cubic-bezier(0.4,0.0,0.2,1)'))
1800
1811
  ])
1801
- ], imports: [NgStyle, NgClass, RouterLink, MatIcon, GlowwModule, AsyncPipe], template: "@if (item) {\n @if (!(_hidden | async)) {\n <div class=\"thisMenu\" (click)=\"onItemSelected(item)\" [class.disabled]=\"(_disabled | async)\">\n <a mat-list-item\n [ngStyle]=\"{'padding-left': (depth * 12) + 'px'}\"\n [ngClass]=\"{'active': isActive(item) && !(_disabled | async), 'expanded': expanded}\"\n class=\"menu-list-item\"\n [routerLink]=\"routerLink(item)\">\n <mat-icon class=\"routeIcon\">\n <i [ngClass]=\"item.icon\" [ngStyle]=\"item.iconStyle\"></i>\n </mat-icon>\n <span class=\"menu-label\">{{item.displayName}}</span>\n </a>\n @if (item.children?.length && !(_disabled | async)) {\n <div class=\"expand-container\">\n <mat-icon [@indicatorRotate]=\"expanded ? 'expanded': 'collapsed'\" class=\"expandIcon\">\n expand_more\n </mat-icon>\n </div>\n }\n </div>\n }\n @if (expanded && !(_disabled | async)) {\n <div>\n @for (child of item.children; track child) {\n <gloww-menu-list-item [item]=\"child\" [depth]=\"depth+1\">\n </gloww-menu-list-item>\n }\n </div>\n }\n}", styles: [".thisMenu{display:flex;flex-direction:row;align-items:center;outline:none;width:calc(100% - 20px);margin:10px;cursor:pointer}.menu-list-item{display:flex;align-items:center;flex:1;padding:8px 0;text-decoration:none;color:inherit;min-width:0}.menu-list-item .routeIcon{margin-right:20px;flex-shrink:0}.menu-list-item .menu-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.expand-container{display:flex;align-items:center;justify-content:center;flex-shrink:0}mat-icon{height:32px;width:40px;display:flex;align-items:center;justify-content:center}.expandIcon{cursor:pointer}:disabled,.disabled{color:#d3d3d3!important;pointer-events:none}:disabled mat-icon i,.disabled mat-icon i{color:#d3d3d3!important}\n"] }]
1812
+ ], imports: [NgStyle, NgClass, RouterLink, MatIcon, MatListItem, AsyncPipe], template: "@if (item) {\n @if (!(_hidden | async)) {\n <div class=\"thisMenu\" (click)=\"onItemSelected(item)\" [class.disabled]=\"(_disabled | async)\">\n <a mat-list-item\n [ngStyle]=\"{'padding-left': (depth * 12) + 'px'}\"\n [ngClass]=\"{'active': isActive(item) && !(_disabled | async), 'expanded': expanded}\"\n class=\"menu-list-item\"\n [routerLink]=\"routerLink(item)\">\n <mat-icon class=\"routeIcon\">\n <i [ngClass]=\"item.icon\" [ngStyle]=\"item.iconStyle\"></i>\n </mat-icon>\n <span class=\"menu-label\">{{item.displayName}}</span>\n </a>\n @if (item.children?.length && !(_disabled | async)) {\n <div class=\"expand-container\">\n <mat-icon [@indicatorRotate]=\"expanded ? 'expanded': 'collapsed'\" class=\"expandIcon\">\n expand_more\n </mat-icon>\n </div>\n }\n </div>\n }\n @if (expanded && !(_disabled | async)) {\n <div>\n @for (child of item.children; track child) {\n <gloww-menu-list-item [item]=\"child\" [depth]=\"depth+1\">\n </gloww-menu-list-item>\n }\n </div>\n }\n}", styles: [".thisMenu{display:flex;flex-direction:row;align-items:center;outline:none;width:calc(100% - 20px);margin:10px;cursor:pointer}.menu-list-item{display:flex;align-items:center;flex:1;padding:8px 0;text-decoration:none;color:inherit;min-width:0}.menu-list-item .routeIcon{margin-right:20px;flex-shrink:0}.menu-list-item .menu-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.expand-container{display:flex;align-items:center;justify-content:center;flex-shrink:0}mat-icon{height:32px;width:40px;display:flex;align-items:center;justify-content:center}.expandIcon{cursor:pointer}:disabled,.disabled{color:#d3d3d3!important;pointer-events:none}:disabled mat-icon i,.disabled mat-icon i{color:#d3d3d3!important}\n"] }]
1802
1813
  }], ctorParameters: () => [{ type: GlowwService, decorators: [{
1803
1814
  type: Inject,
1804
1815
  args: ['glowwService']
@@ -1986,7 +1997,10 @@ class HtmlFormatPipe {
1986
1997
  }
1987
1998
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: HtmlFormatPipe, decorators: [{
1988
1999
  type: Pipe,
1989
- args: [{ name: 'htmlFormat' }]
2000
+ args: [{
2001
+ name: 'htmlFormat',
2002
+ standalone: true
2003
+ }]
1990
2004
  }], ctorParameters: () => [{ type: i1$1.DomSanitizer }] });
1991
2005
 
1992
2006
  class SocialNetworkComponent {
@@ -2499,6 +2513,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImpo
2499
2513
  }]
2500
2514
  }], ctorParameters: () => [{ type: i2.Router }, { type: AuthenticationService }, { type: i3.PlatformLocation }] });
2501
2515
 
2516
+ const GLOWW_SECURITY_STANDALONE_DECLARATIONS = [
2517
+ LoginComponent,
2518
+ ChangePasswordDlgComponent,
2519
+ UserMenuComponent,
2520
+ SocialNetworkDlgComponent,
2521
+ SocialNetworkComponent
2522
+ ];
2502
2523
  class GlowwSecurityModule {
2503
2524
  static forRoot(authenticationServiceConfig) {
2504
2525
  /*
@@ -2572,8 +2593,6 @@ class GlowwSecurityModule {
2572
2593
  static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.18", ngImport: i0, type: GlowwSecurityModule, imports: [CommonModule,
2573
2594
  FormsModule,
2574
2595
  ReactiveFormsModule,
2575
- BrowserModule,
2576
- BrowserAnimationsModule,
2577
2596
  MatToolbarModule,
2578
2597
  MatButtonModule,
2579
2598
  MatSidenavModule,
@@ -2585,12 +2604,14 @@ class GlowwSecurityModule {
2585
2604
  ChangePasswordDlgComponent,
2586
2605
  UserMenuComponent,
2587
2606
  SocialNetworkDlgComponent,
2588
- SocialNetworkComponent], exports: [LoginComponent, RouterModule, UserMenuComponent] }); }
2607
+ SocialNetworkComponent], exports: [LoginComponent,
2608
+ ChangePasswordDlgComponent,
2609
+ UserMenuComponent,
2610
+ SocialNetworkDlgComponent,
2611
+ SocialNetworkComponent, RouterModule] }); }
2589
2612
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: GlowwSecurityModule, providers: [provideHttpClient(withInterceptorsFromDi())], imports: [CommonModule,
2590
2613
  FormsModule,
2591
2614
  ReactiveFormsModule,
2592
- BrowserModule,
2593
- BrowserAnimationsModule,
2594
2615
  MatToolbarModule,
2595
2616
  MatButtonModule,
2596
2617
  MatSidenavModule,
@@ -2605,11 +2626,9 @@ class GlowwSecurityModule {
2605
2626
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: GlowwSecurityModule, decorators: [{
2606
2627
  type: NgModule,
2607
2628
  args: [{
2608
- exports: [LoginComponent, RouterModule, UserMenuComponent], imports: [CommonModule,
2629
+ exports: [...GLOWW_SECURITY_STANDALONE_DECLARATIONS, RouterModule], imports: [CommonModule,
2609
2630
  FormsModule,
2610
2631
  ReactiveFormsModule,
2611
- BrowserModule,
2612
- BrowserAnimationsModule,
2613
2632
  MatToolbarModule,
2614
2633
  MatButtonModule,
2615
2634
  MatSidenavModule,
@@ -2617,11 +2636,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImpo
2617
2636
  MatFormFieldModule,
2618
2637
  MatCardModule,
2619
2638
  MatDialogModule,
2620
- RouterModule, LoginComponent,
2621
- ChangePasswordDlgComponent,
2622
- UserMenuComponent,
2623
- SocialNetworkDlgComponent,
2624
- SocialNetworkComponent], providers: [provideHttpClient(withInterceptorsFromDi())]
2639
+ RouterModule,
2640
+ ...GLOWW_SECURITY_STANDALONE_DECLARATIONS], providers: [provideHttpClient(withInterceptorsFromDi())]
2625
2641
  }]
2626
2642
  }] });
2627
2643
 
@@ -3598,6 +3614,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImpo
3598
3614
  type: Input
3599
3615
  }] } });
3600
3616
 
3617
+ class CallbackDirective {
3618
+ constructor() { }
3619
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: CallbackDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3620
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.18", type: CallbackDirective, isStandalone: true, selector: "[glowwCallback]", ngImport: i0 }); }
3621
+ }
3622
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: CallbackDirective, decorators: [{
3623
+ type: Directive,
3624
+ args: [{
3625
+ selector: '[glowwCallback]',
3626
+ standalone: true
3627
+ }]
3628
+ }], ctorParameters: () => [] });
3629
+
3601
3630
  class BaseCollectionComponent {
3602
3631
  constructor(_formBuilder) {
3603
3632
  this._formBuilder = _formBuilder;
@@ -3639,6 +3668,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImpo
3639
3668
  type: Injectable
3640
3669
  }] });
3641
3670
 
3671
+ const GLOWW_STANDALONE_DECLARATIONS = [
3672
+ UploadDocComponent,
3673
+ SafeHtmlPipe,
3674
+ DisplayObjectsComponent,
3675
+ HeaderComponent,
3676
+ ResultTableComponent,
3677
+ SearchFormComponent,
3678
+ ConfirmationComponent,
3679
+ PromptComponent,
3680
+ SecurePipe,
3681
+ SecureImgComponent,
3682
+ MenuListItemComponent,
3683
+ CodeEditorComponent,
3684
+ HtmlEditorComponent,
3685
+ HtmlFormatPipe,
3686
+ UploadFileComponent,
3687
+ FileSinkDirective,
3688
+ FileEditComponent,
3689
+ FoldersComponent,
3690
+ DownloadProgressComponent,
3691
+ SecureAComponent,
3692
+ DummyComponent,
3693
+ SelectComponent,
3694
+ AutoCompleteComponent,
3695
+ DatetimeComponent,
3696
+ RouteDirective,
3697
+ CallbackDirective,
3698
+ FilterFormComponent
3699
+ ];
3700
+ const GLOWW_MODULE_EXPORTS = [
3701
+ ...GLOWW_STANDALONE_DECLARATIONS,
3702
+ MatDatepickerModule,
3703
+ NgxMatDatetimePickerModule,
3704
+ NgxMatTimepickerComponent,
3705
+ NgxMatNativeDateModule
3706
+ ];
3642
3707
  class GlowwModule {
3643
3708
  static forRoot(folderServiceConfig) {
3644
3709
  console.log(`forRoot ${folderServiceConfig}`);
@@ -3658,7 +3723,6 @@ class GlowwModule {
3658
3723
  }
3659
3724
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: GlowwModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3660
3725
  static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.18", ngImport: i0, type: GlowwModule, imports: [CommonModule,
3661
- BrowserModule,
3662
3726
  RouterModule,
3663
3727
  FormsModule,
3664
3728
  ReactiveFormsModule,
@@ -3683,8 +3747,7 @@ class GlowwModule {
3683
3747
  NgxMatNativeDateModule, // Existe selon ta liste
3684
3748
  //NgxMatMomentModule,
3685
3749
  DragDropModule,
3686
- AngularResizeEventModule,
3687
- UploadDocComponent,
3750
+ AngularResizeEventModule, UploadDocComponent,
3688
3751
  SafeHtmlPipe,
3689
3752
  DisplayObjectsComponent,
3690
3753
  HeaderComponent,
@@ -3709,9 +3772,9 @@ class GlowwModule {
3709
3772
  AutoCompleteComponent,
3710
3773
  DatetimeComponent,
3711
3774
  RouteDirective,
3712
- FilterFormComponent], exports: [SafeHtmlPipe,
3713
- UploadDocComponent,
3714
- UploadFileComponent,
3775
+ CallbackDirective,
3776
+ FilterFormComponent], exports: [UploadDocComponent,
3777
+ SafeHtmlPipe,
3715
3778
  DisplayObjectsComponent,
3716
3779
  HeaderComponent,
3717
3780
  ResultTableComponent,
@@ -3724,6 +3787,9 @@ class GlowwModule {
3724
3787
  CodeEditorComponent,
3725
3788
  HtmlEditorComponent,
3726
3789
  HtmlFormatPipe,
3790
+ UploadFileComponent,
3791
+ FileSinkDirective,
3792
+ FileEditComponent,
3727
3793
  FoldersComponent,
3728
3794
  DownloadProgressComponent,
3729
3795
  SecureAComponent,
@@ -3731,14 +3797,13 @@ class GlowwModule {
3731
3797
  SelectComponent,
3732
3798
  AutoCompleteComponent,
3733
3799
  DatetimeComponent,
3734
- MatDatepickerModule,
3735
- NgxMatDatetimePickerModule, // Existe selon ta liste
3736
- NgxMatTimepickerComponent, // Attention : ta liste dit "NgxMatTimepickerComponent"
3737
- NgxMatNativeDateModule, // Existe selon ta liste
3738
- //NgxMatMomentModule,
3739
- FilterFormComponent] }); }
3800
+ RouteDirective,
3801
+ CallbackDirective,
3802
+ FilterFormComponent, MatDatepickerModule,
3803
+ NgxMatDatetimePickerModule,
3804
+ NgxMatTimepickerComponent,
3805
+ NgxMatNativeDateModule] }); }
3740
3806
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: GlowwModule, imports: [CommonModule,
3741
- BrowserModule,
3742
3807
  RouterModule,
3743
3808
  FormsModule,
3744
3809
  ReactiveFormsModule,
@@ -3763,8 +3828,7 @@ class GlowwModule {
3763
3828
  NgxMatNativeDateModule, // Existe selon ta liste
3764
3829
  //NgxMatMomentModule,
3765
3830
  DragDropModule,
3766
- AngularResizeEventModule,
3767
- UploadDocComponent,
3831
+ AngularResizeEventModule, UploadDocComponent,
3768
3832
  DisplayObjectsComponent,
3769
3833
  ConfirmationComponent,
3770
3834
  PromptComponent,
@@ -3779,7 +3843,7 @@ class GlowwModule {
3779
3843
  AutoCompleteComponent,
3780
3844
  DatetimeComponent,
3781
3845
  FilterFormComponent, MatDatepickerModule,
3782
- NgxMatDatetimePickerModule, // Attention : ta liste dit "NgxMatTimepickerComponent"
3846
+ NgxMatDatetimePickerModule,
3783
3847
  NgxMatNativeDateModule] }); }
3784
3848
  }
3785
3849
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: GlowwModule, decorators: [{
@@ -3787,7 +3851,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImpo
3787
3851
  args: [{
3788
3852
  imports: [
3789
3853
  CommonModule,
3790
- BrowserModule,
3791
3854
  RouterModule,
3792
3855
  FormsModule,
3793
3856
  ReactiveFormsModule,
@@ -3813,64 +3876,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImpo
3813
3876
  //NgxMatMomentModule,
3814
3877
  DragDropModule,
3815
3878
  AngularResizeEventModule,
3816
- UploadDocComponent,
3817
- SafeHtmlPipe,
3818
- DisplayObjectsComponent,
3819
- HeaderComponent,
3820
- ResultTableComponent,
3821
- SearchFormComponent,
3822
- ConfirmationComponent,
3823
- PromptComponent,
3824
- SecurePipe,
3825
- SecureImgComponent,
3826
- MenuListItemComponent,
3827
- CodeEditorComponent,
3828
- HtmlEditorComponent,
3829
- HtmlFormatPipe,
3830
- UploadFileComponent,
3831
- FileSinkDirective,
3832
- FileEditComponent,
3833
- FoldersComponent,
3834
- DownloadProgressComponent,
3835
- SecureAComponent,
3836
- DummyComponent,
3837
- SelectComponent,
3838
- AutoCompleteComponent,
3839
- DatetimeComponent,
3840
- RouteDirective,
3841
- FilterFormComponent
3879
+ ...GLOWW_STANDALONE_DECLARATIONS
3842
3880
  ],
3843
3881
  providers: [],
3844
- exports: [
3845
- SafeHtmlPipe,
3846
- UploadDocComponent,
3847
- UploadFileComponent,
3848
- DisplayObjectsComponent,
3849
- HeaderComponent,
3850
- ResultTableComponent,
3851
- SearchFormComponent,
3852
- ConfirmationComponent,
3853
- PromptComponent,
3854
- SecurePipe,
3855
- SecureImgComponent,
3856
- MenuListItemComponent,
3857
- CodeEditorComponent,
3858
- HtmlEditorComponent,
3859
- HtmlFormatPipe,
3860
- FoldersComponent,
3861
- DownloadProgressComponent,
3862
- SecureAComponent,
3863
- DummyComponent,
3864
- SelectComponent,
3865
- AutoCompleteComponent,
3866
- DatetimeComponent,
3867
- MatDatepickerModule,
3868
- NgxMatDatetimePickerModule, // Existe selon ta liste
3869
- NgxMatTimepickerComponent, // Attention : ta liste dit "NgxMatTimepickerComponent"
3870
- NgxMatNativeDateModule, // Existe selon ta liste
3871
- //NgxMatMomentModule,
3872
- FilterFormComponent
3873
- ]
3882
+ exports: [...GLOWW_MODULE_EXPORTS]
3874
3883
  }]
3875
3884
  }] });
3876
3885
 
@@ -4010,5 +4019,5 @@ class GlowwValidators {
4010
4019
  * Generated bundle index. Do not edit.
4011
4020
  */
4012
4021
 
4013
- export { API_SERVER_URL, AdministratorGuard, AuthGuard, AuthenticationService, AuthenticationServiceConfig, AutoCompleteComponent, BaseCollectionComponent, ChangePasswordDlgComponent, CodeEditorComponent, ConfirmationComponent, ConfirmationModel, DatetimeComponent, DialogService, DisplayObjectsComponent, DownloadProgressComponent, DummyComponent, ErrorInterceptor, FilterFormComponent, FolderService, FolderServiceConfig, FoldersComponent, GLOWW_APPLI, GlowwModule, GlowwSecurityModule, GlowwSecurityService, GlowwService, GlowwValidators, HasUnsavedDataGuard, HeaderComponent, HtmlEditorComponent, HtmlFormatPipe, JwtInterceptor, LoginComponent, MenuListItemComponent, NavService, PromptComponent, PromptModel, ResultTableComponent, SafeHtmlPipe, SearchFormComponent, SecureAComponent, SecureImgComponent, SecurePipe, SelectComponent, StagingInterceptor, UploadDocComponent, UploadFileComponent, UserMenuComponent, VersionCheckService, VoiceRecognitionService };
4022
+ export { API_SERVER_URL, AdministratorGuard, AuthGuard, AuthenticationService, AuthenticationServiceConfig, AutoCompleteComponent, BaseCollectionComponent, CallbackDirective, ChangePasswordDlgComponent, CodeEditorComponent, ConfirmationComponent, ConfirmationModel, DatetimeComponent, DialogService, DisplayObjectsComponent, DownloadProgressComponent, DummyComponent, ErrorInterceptor, FileEditComponent, FileSinkDirective, FilterFormComponent, FolderService, FolderServiceConfig, FoldersComponent, GLOWW_APPLI, GLOWW_MODULE_EXPORTS, GLOWW_SECURITY_STANDALONE_DECLARATIONS, GLOWW_STANDALONE_DECLARATIONS, GlowwModule, GlowwSecurityModule, GlowwSecurityService, GlowwService, GlowwValidators, HasUnsavedDataGuard, HeaderComponent, HtmlEditorComponent, HtmlFormatPipe, JwtInterceptor, LoginComponent, MenuListItemComponent, NavService, PromptComponent, PromptModel, ResultTableComponent, RouteDirective, SafeHtmlPipe, SearchFormComponent, SecureAComponent, SecureImgComponent, SecurePipe, SelectComponent, SocialNetworkComponent, SocialNetworkDlgComponent, StagingInterceptor, UploadDocComponent, UploadFileComponent, UserMenuComponent, VersionCheckService, VoiceRecognitionService };
4014
4023
  //# sourceMappingURL=gloww-gloww.mjs.map