tin-spa 20.6.9 → 20.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { OnInit, OnDestroy, TemplateRef, ViewContainerRef, OnChanges, SimpleChanges, EventEmitter, AfterViewInit, PipeTransform, ElementRef, AfterViewChecked, ChangeDetectorRef } from '@angular/core';
2
+ import { InjectionToken, EnvironmentProviders, OnInit, OnDestroy, TemplateRef, ViewContainerRef, OnChanges, SimpleChanges, EventEmitter, AfterViewInit, PipeTransform, ElementRef, AfterViewChecked, ChangeDetectorRef } from '@angular/core';
3
3
  import * as i12 from '@angular/material/snack-bar';
4
4
  import { MatSnackBar } from '@angular/material/snack-bar';
5
5
  import * as i11 from '@angular/material/dialog';
@@ -8,10 +8,13 @@ import * as rxjs from 'rxjs';
8
8
  import { Observable, BehaviorSubject, Subject } from 'rxjs';
9
9
  import * as i1 from '@angular/router';
10
10
  import { Router, ActivatedRoute, CanActivateFn } from '@angular/router';
11
- import * as i62 from '@angular/common/http';
11
+ import * as i63 from '@angular/common/http';
12
12
  import { HttpClient, HttpErrorResponse } from '@angular/common/http';
13
13
  import * as i7$1 from '@abacritt/angularx-social-login';
14
14
  import { SocialUser, SocialAuthService } from '@abacritt/angularx-social-login';
15
+ import * as i4 from '@angular/common';
16
+ import { PlatformLocation, LocationStrategy, DecimalPipe, Location } from '@angular/common';
17
+ import { IPublicClientApplication } from '@azure/msal-browser';
15
18
  import { BreakpointObserver } from '@angular/cdk/layout';
16
19
  import { SwUpdate } from '@angular/service-worker';
17
20
  import * as tin_spa from 'tin-spa';
@@ -29,10 +32,10 @@ import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
29
32
  import * as i17 from '@angular/material/chips';
30
33
  import { MatChipInputEvent } from '@angular/material/chips';
31
34
  import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
32
- import * as i66 from '@angular/cdk/drag-drop';
35
+ import * as i66 from '@kolkov/angular-editor';
36
+ import { AngularEditorConfig } from '@kolkov/angular-editor';
37
+ import * as i68 from '@angular/cdk/drag-drop';
33
38
  import { CdkDragEnter, CdkDragExit, CdkDragDrop } from '@angular/cdk/drag-drop';
34
- import * as i4 from '@angular/common';
35
- import { DecimalPipe, Location } from '@angular/common';
36
39
  import * as i3$1 from '@angular/material/menu';
37
40
  import * as i4$1 from '@angular/material/slider';
38
41
  import * as i7 from '@angular/material/checkbox';
@@ -55,8 +58,8 @@ import * as i28 from '@angular/material/progress-bar';
55
58
  import * as i29 from '@angular/material/sidenav';
56
59
  import * as i30 from '@angular/material/toolbar';
57
60
  import * as i32 from '@angular/material/expansion';
58
- import * as i64 from 'ngx-doc-viewer';
59
- import * as i65 from 'ng2-charts';
61
+ import * as i65 from 'ngx-doc-viewer';
62
+ import * as i67 from 'ng2-charts';
60
63
  import { MsalService } from '@azure/msal-angular';
61
64
 
62
65
  declare class TinSpaService {
@@ -472,6 +475,30 @@ declare class HttpService {
472
475
  static ɵprov: i0.ɵɵInjectableDeclaration<HttpService>;
473
476
  }
474
477
 
478
+ interface TinSpaMsalConfig {
479
+ clientId: string;
480
+ authority: string;
481
+ redirectUri: string;
482
+ }
483
+ interface TinSpaRuntimeConfig {
484
+ /** Use path routing (/home) instead of hash routing (/#/home). Default false (hash). */
485
+ pathRouting: boolean;
486
+ /** Enable real-time (SignalR) features. Default false (disabled). */
487
+ realTime: boolean;
488
+ /** Enable Microsoft SSO (MSAL). Only activates in a secure context (HTTPS/localhost). Default false. */
489
+ microsoftAuth: boolean;
490
+ /** MSAL credentials — required only when microsoftAuth is used. */
491
+ msal?: TinSpaMsalConfig;
492
+ }
493
+ declare const TIN_SPA_RUNTIME_CONFIG: InjectionToken<TinSpaRuntimeConfig>;
494
+ declare function tinSpaLocationStrategyFactory(platformLocation: PlatformLocation, baseHref: string, config: TinSpaRuntimeConfig): LocationStrategy;
495
+ declare function tinSpaMsalInstanceFactory(config: TinSpaRuntimeConfig): IPublicClientApplication;
496
+ /**
497
+ * Wires up tin-spa runtime behaviours (routing strategy, real-time, MSAL) from a single config.
498
+ * Add the result to your AppModule (or bootstrap) providers.
499
+ */
500
+ declare function provideTinSpaRuntime(config: Partial<TinSpaRuntimeConfig>): EnvironmentProviders;
501
+
475
502
  interface EntityChangeEvent {
476
503
  entityName: string;
477
504
  data: any;
@@ -483,6 +510,7 @@ interface NotificationEvent {
483
510
  sender: string;
484
511
  }
485
512
  declare class SignalRService {
513
+ private runtimeConfig;
486
514
  private hubConnection;
487
515
  private notificationCount;
488
516
  notificationCount$: rxjs.Observable<number>;
@@ -503,10 +531,13 @@ declare class SignalRService {
503
531
  private dataHubConnected;
504
532
  dataHubConnected$: rxjs.Observable<boolean>;
505
533
  private currentToken;
534
+ constructor(runtimeConfig: TinSpaRuntimeConfig | null);
535
+ /** Effective real-time enablement: legacy E2E kill-switch wins, else the configured runtime flag. */
536
+ private realTimeEnabled;
506
537
  startConnection(hubUrl: string, token: string): void;
507
538
  updateToken(token: string): void;
508
539
  stopConnection(): void;
509
- static ɵfac: i0.ɵɵFactoryDeclaration<SignalRService, never>;
540
+ static ɵfac: i0.ɵɵFactoryDeclaration<SignalRService, [{ optional: true; }]>;
510
541
  static ɵprov: i0.ɵɵInjectableDeclaration<SignalRService>;
511
542
  }
512
543
 
@@ -673,7 +704,7 @@ interface AutoRefreshConfig {
673
704
  interface Field {
674
705
  securityConfig?: SecurityConfig;
675
706
  name: string;
676
- type: 'text' | 'text-area' | 'text-single' | 'text-multi' | 'text-mask' | 'date' | 'date-short' | 'datetime' | 'datetimesec' | 'checkbox' | 'select' | 'select-multi' | 'money' | 'number' | 'section' | 'blank' | 'chip' | 'file' | 'file-view' | 'icon' | 'spinner' | 'button' | 'label' | 'email' | 'composite' | 'string' | 'html';
707
+ type: 'text' | 'text-area' | 'text-single' | 'text-multi' | 'text-mask' | 'date' | 'date-short' | 'datetime' | 'datetimesec' | 'checkbox' | 'select' | 'select-multi' | 'money' | 'number' | 'section' | 'blank' | 'chip' | 'file' | 'file-view' | 'icon' | 'spinner' | 'button' | 'label' | 'email' | 'composite' | 'string' | 'html' | 'editor';
677
708
  alias?: string;
678
709
  options?: any[];
679
710
  optionDisplay?: string;
@@ -725,6 +756,7 @@ interface Field {
725
756
  collapsed?: boolean;
726
757
  collapsedCondition?: (value: any) => boolean;
727
758
  maxHeight?: string;
759
+ editorConfig?: any;
728
760
  valueCalculation?: (value: any) => any;
729
761
  regex?: {
730
762
  pattern: string;
@@ -1074,7 +1106,7 @@ declare class AppConfig {
1074
1106
  selfService: boolean;
1075
1107
  capItems: CapItem[];
1076
1108
  multitenant: boolean;
1077
- navigation: 'top' | 'side' | 'side-modern';
1109
+ navigation: 'top' | 'side' | 'side-modern' | 'top-modern';
1078
1110
  progressLine: boolean;
1079
1111
  docsBaseUrl: string;
1080
1112
  loginStyle: string;
@@ -1086,6 +1118,7 @@ declare class AppConfig {
1086
1118
  navWidth: string;
1087
1119
  navColor: string;
1088
1120
  navImage: string;
1121
+ keepSignedIn: boolean;
1089
1122
  }
1090
1123
 
1091
1124
  declare class DataServiceLib {
@@ -1287,6 +1320,27 @@ declare class LoaderService {
1287
1320
  static ɵprov: i0.ɵɵInjectableDeclaration<LoaderService>;
1288
1321
  }
1289
1322
 
1323
+ declare class viewerDialog implements OnInit {
1324
+ private httpService;
1325
+ private dataServiceLib;
1326
+ data: any;
1327
+ constructor(httpService: HttpService, dataServiceLib: DataServiceLib, data: any);
1328
+ ngOnInit(): void;
1329
+ isProcessing: boolean;
1330
+ fullPath: string;
1331
+ fileNames: any[];
1332
+ fileName: string;
1333
+ currIndex: number;
1334
+ currentFileUrl: string;
1335
+ previous(): void;
1336
+ next(): void;
1337
+ imageDoc: boolean;
1338
+ setURL(): void;
1339
+ change(fileName: any): void;
1340
+ static ɵfac: i0.ɵɵFactoryDeclaration<viewerDialog, never>;
1341
+ static ɵcmp: i0.ɵɵComponentDeclaration<viewerDialog, "app-editRequest", never, {}, {}, never, never, false, never>;
1342
+ }
1343
+
1290
1344
  declare class DialogService {
1291
1345
  private dialog;
1292
1346
  private breakpointObserver;
@@ -1305,6 +1359,7 @@ declare class DialogService {
1305
1359
  inputChange: Observable<any>;
1306
1360
  dialogRef: MatDialogRef<any>;
1307
1361
  };
1362
+ openViewerDialog(fileName: string, fileNames: string[] | string, path: string): MatDialogRef<viewerDialog>;
1308
1363
  openPrintDialog(htmlContent: any): void;
1309
1364
  static ɵfac: i0.ɵɵFactoryDeclaration<DialogService, [null, null, { optional: true; }]>;
1310
1365
  static ɵprov: i0.ɵɵInjectableDeclaration<DialogService>;
@@ -2270,6 +2325,7 @@ declare class OptionComponent implements OnInit {
2270
2325
  infoMessage: string;
2271
2326
  copyContent: boolean;
2272
2327
  suffix: string;
2328
+ editorConfig: any;
2273
2329
  loadAction: Action;
2274
2330
  valueChange: EventEmitter<any>;
2275
2331
  enterPress: EventEmitter<any>;
@@ -2279,7 +2335,7 @@ declare class OptionComponent implements OnInit {
2279
2335
  resetValue(): void;
2280
2336
  onInfoClick(event: MouseEvent): void;
2281
2337
  static ɵfac: i0.ɵɵFactoryDeclaration<OptionComponent, never>;
2282
- static ɵcmp: i0.ɵɵComponentDeclaration<OptionComponent, "spa-option", never, { "options": { "alias": "options"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "optionDisplay": { "alias": "optionDisplay"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; "display": { "alias": "display"; "required": false; }; "show": { "alias": "show"; "required": false; }; "required": { "alias": "required"; "required": false; }; "infoMessage": { "alias": "infoMessage"; "required": false; }; "copyContent": { "alias": "copyContent"; "required": false; }; "suffix": { "alias": "suffix"; "required": false; }; "loadAction": { "alias": "loadAction"; "required": false; }; }, { "valueChange": "valueChange"; "enterPress": "enterPress"; }, never, never, false, never>;
2338
+ static ɵcmp: i0.ɵɵComponentDeclaration<OptionComponent, "spa-option", never, { "options": { "alias": "options"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "optionDisplay": { "alias": "optionDisplay"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; "display": { "alias": "display"; "required": false; }; "show": { "alias": "show"; "required": false; }; "required": { "alias": "required"; "required": false; }; "infoMessage": { "alias": "infoMessage"; "required": false; }; "copyContent": { "alias": "copyContent"; "required": false; }; "suffix": { "alias": "suffix"; "required": false; }; "editorConfig": { "alias": "editorConfig"; "required": false; }; "loadAction": { "alias": "loadAction"; "required": false; }; }, { "valueChange": "valueChange"; "enterPress": "enterPress"; }, never, never, false, never>;
2283
2339
  }
2284
2340
 
2285
2341
  declare class TilesComponent implements OnInit {
@@ -2734,27 +2790,6 @@ declare class ViewerComponent implements OnInit {
2734
2790
  static ɵcmp: i0.ɵɵComponentDeclaration<ViewerComponent, "spa-viewer", never, { "fileAction": { "alias": "fileAction"; "required": false; }; "path": { "alias": "path"; "required": false; }; "folderName": { "alias": "folderName"; "required": false; }; "fileNames": { "alias": "fileNames"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; "display": { "alias": "display"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, { "remove": "remove"; }, never, never, false, never>;
2735
2791
  }
2736
2792
 
2737
- declare class viewerDialog implements OnInit {
2738
- private httpService;
2739
- private dataServiceLib;
2740
- data: any;
2741
- constructor(httpService: HttpService, dataServiceLib: DataServiceLib, data: any);
2742
- ngOnInit(): void;
2743
- isProcessing: boolean;
2744
- fullPath: string;
2745
- fileNames: any[];
2746
- fileName: string;
2747
- currIndex: number;
2748
- currentFileUrl: string;
2749
- previous(): void;
2750
- next(): void;
2751
- imageDoc: boolean;
2752
- setURL(): void;
2753
- change(fileName: any): void;
2754
- static ɵfac: i0.ɵɵFactoryDeclaration<viewerDialog, never>;
2755
- static ɵcmp: i0.ɵɵComponentDeclaration<viewerDialog, "app-editRequest", never, {}, {}, never, never, false, never>;
2756
- }
2757
-
2758
2793
  declare class ListDialogComponent implements OnInit {
2759
2794
  private dataService;
2760
2795
  private dialogRef;
@@ -3145,6 +3180,30 @@ declare class HtmlComponent implements OnInit {
3145
3180
  static ɵcmp: i0.ɵɵComponentDeclaration<HtmlComponent, "spa-html", never, { "value": { "alias": "value"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "display": { "alias": "display"; "required": false; }; }, {}, never, never, false, never>;
3146
3181
  }
3147
3182
 
3183
+ declare class EditorComponent implements OnInit {
3184
+ constructor();
3185
+ ngOnInit(): void;
3186
+ ngOnChanges(): void;
3187
+ display: string;
3188
+ value: string;
3189
+ readonly: boolean;
3190
+ required: boolean;
3191
+ hint: string;
3192
+ infoMessage: string;
3193
+ placeholder: string;
3194
+ width: string;
3195
+ height: string;
3196
+ minHeight: string;
3197
+ defaultFontName: string;
3198
+ editorConfig: AngularEditorConfig;
3199
+ valueChange: EventEmitter<any>;
3200
+ config: AngularEditorConfig;
3201
+ private buildConfig;
3202
+ changed(val: any): void;
3203
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditorComponent, never>;
3204
+ static ɵcmp: i0.ɵɵComponentDeclaration<EditorComponent, "spa-editor", never, { "display": { "alias": "display"; "required": false; }; "value": { "alias": "value"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "infoMessage": { "alias": "infoMessage"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "minHeight": { "alias": "minHeight"; "required": false; }; "defaultFontName": { "alias": "defaultFontName"; "required": false; }; "editorConfig": { "alias": "editorConfig"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
3205
+ }
3206
+
3148
3207
  declare class NotesComponent implements OnInit {
3149
3208
  private dataService;
3150
3209
  constructor(dataService: DataServiceLib);
@@ -3691,7 +3750,7 @@ declare class CurrencyInputModule {
3691
3750
 
3692
3751
  declare class TinSpaModule {
3693
3752
  static ɵfac: i0.ɵɵFactoryDeclaration<TinSpaModule, never>;
3694
- static ɵmod: i0.ɵɵNgModuleDeclaration<TinSpaModule, [typeof TinSpaComponent, typeof TextComponent, typeof TextMaskComponent, typeof TextAreaComponent, typeof TextSingleComponent, typeof CheckComponent, typeof DateComponent, typeof DatetimeComponent, typeof LabelComponent, typeof SelectComponent, typeof ActivityComponent, typeof FilterComponent, typeof messageDialog, typeof MoneyComponent, typeof OptionComponent, typeof TilesComponent, typeof StepsComponent, typeof AttachComponent, typeof ChipsComponent, typeof LoaderComponent, typeof NavMenuComponent, typeof TableComponent, typeof DetailsDialog, typeof FormComponent, typeof CamelToWordsPipe, typeof NumberComponent, typeof SearchComponent, typeof ViewerComponent, typeof viewerDialog, typeof ListDialogComponent, typeof InvitationsTableComponent, typeof TableHeaderComponent, typeof TableRowComponent, typeof TableActionComponent, typeof AlertComponent, typeof EmailComponent, typeof PageComponent, typeof SelectCommonComponent, typeof SuffixComponent, typeof SelectContextDirective, typeof SelectLiteComponent, typeof TextMultiComponent, typeof SelectMultiComponent, typeof SelectBitwiseComponent, typeof HtmlComponent, typeof NotesComponent, typeof CapsulesComponent, typeof CardsComponent, typeof TabsComponent, typeof StatusesComponent, typeof GroupsComponent, typeof TitleActionsComponent, typeof WelcomeComponent, typeof TermsDialogComponent, typeof PrivacyDialogComponent, typeof ChartsComponent, typeof FeatureDirective, typeof SpaLandingComponent, typeof ToastComponent, typeof AgentComponent], [typeof SpaMatModule, typeof i62.HttpClientModule, typeof CurrencyInputModule, typeof i64.NgxDocViewerModule, typeof i65.BaseChartDirective, typeof i66.DragDropModule], [typeof TinSpaComponent, typeof SpaMatModule, typeof AlertComponent, typeof TextComponent, typeof TextMaskComponent, typeof TextAreaComponent, typeof TextSingleComponent, typeof TextMultiComponent, typeof messageDialog, typeof NavMenuComponent, typeof LoaderComponent, typeof TilesComponent, typeof DateComponent, typeof SelectComponent, typeof SelectBitwiseComponent, typeof SelectMultiComponent, typeof DatetimeComponent, typeof CheckComponent, typeof AttachComponent, typeof MoneyComponent, typeof ChipsComponent, typeof ActivityComponent, typeof OptionComponent, typeof LabelComponent, typeof StepsComponent, typeof FilterComponent, typeof TableComponent, typeof DetailsDialog, typeof FormComponent, typeof NumberComponent, typeof SearchComponent, typeof ViewerComponent, typeof viewerDialog, typeof ListDialogComponent, typeof ListDialogComponent, typeof EmailComponent, typeof PageComponent, typeof HtmlComponent, typeof NotesComponent, typeof CapsulesComponent, typeof TabsComponent, typeof StatusesComponent, typeof GroupsComponent, typeof TitleActionsComponent, typeof WelcomeComponent, typeof InvitationsTableComponent, typeof TermsDialogComponent, typeof PrivacyDialogComponent, typeof SelectLiteComponent, typeof ChartsComponent, typeof FeatureDirective, typeof SpaLandingComponent, typeof AgentComponent]>;
3753
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TinSpaModule, [typeof TinSpaComponent, typeof TextComponent, typeof TextMaskComponent, typeof TextAreaComponent, typeof TextSingleComponent, typeof CheckComponent, typeof DateComponent, typeof DatetimeComponent, typeof LabelComponent, typeof SelectComponent, typeof ActivityComponent, typeof FilterComponent, typeof messageDialog, typeof MoneyComponent, typeof OptionComponent, typeof TilesComponent, typeof StepsComponent, typeof AttachComponent, typeof ChipsComponent, typeof LoaderComponent, typeof NavMenuComponent, typeof TableComponent, typeof DetailsDialog, typeof FormComponent, typeof CamelToWordsPipe, typeof NumberComponent, typeof SearchComponent, typeof ViewerComponent, typeof viewerDialog, typeof ListDialogComponent, typeof InvitationsTableComponent, typeof TableHeaderComponent, typeof TableRowComponent, typeof TableActionComponent, typeof AlertComponent, typeof EmailComponent, typeof PageComponent, typeof SelectCommonComponent, typeof SuffixComponent, typeof SelectContextDirective, typeof SelectLiteComponent, typeof TextMultiComponent, typeof SelectMultiComponent, typeof SelectBitwiseComponent, typeof HtmlComponent, typeof EditorComponent, typeof NotesComponent, typeof CapsulesComponent, typeof CardsComponent, typeof TabsComponent, typeof StatusesComponent, typeof GroupsComponent, typeof TitleActionsComponent, typeof WelcomeComponent, typeof TermsDialogComponent, typeof PrivacyDialogComponent, typeof ChartsComponent, typeof FeatureDirective, typeof SpaLandingComponent, typeof ToastComponent, typeof AgentComponent], [typeof SpaMatModule, typeof i63.HttpClientModule, typeof CurrencyInputModule, typeof i65.NgxDocViewerModule, typeof i66.AngularEditorModule, typeof i67.BaseChartDirective, typeof i68.DragDropModule], [typeof TinSpaComponent, typeof SpaMatModule, typeof AlertComponent, typeof TextComponent, typeof TextMaskComponent, typeof TextAreaComponent, typeof TextSingleComponent, typeof TextMultiComponent, typeof messageDialog, typeof NavMenuComponent, typeof LoaderComponent, typeof TilesComponent, typeof DateComponent, typeof SelectComponent, typeof SelectBitwiseComponent, typeof SelectMultiComponent, typeof DatetimeComponent, typeof CheckComponent, typeof AttachComponent, typeof MoneyComponent, typeof ChipsComponent, typeof ActivityComponent, typeof OptionComponent, typeof LabelComponent, typeof StepsComponent, typeof FilterComponent, typeof TableComponent, typeof DetailsDialog, typeof FormComponent, typeof NumberComponent, typeof SearchComponent, typeof ViewerComponent, typeof viewerDialog, typeof ListDialogComponent, typeof ListDialogComponent, typeof EmailComponent, typeof PageComponent, typeof HtmlComponent, typeof EditorComponent, typeof NotesComponent, typeof CapsulesComponent, typeof TabsComponent, typeof StatusesComponent, typeof GroupsComponent, typeof TitleActionsComponent, typeof WelcomeComponent, typeof InvitationsTableComponent, typeof TermsDialogComponent, typeof PrivacyDialogComponent, typeof SelectLiteComponent, typeof ChartsComponent, typeof FeatureDirective, typeof SpaLandingComponent, typeof AgentComponent]>;
3695
3754
  static ɵinj: i0.ɵɵInjectorDeclaration<TinSpaModule>;
3696
3755
  }
3697
3756
 
@@ -4861,5 +4920,5 @@ declare class SpaHomeModule {
4861
4920
  static ɵinj: i0.ɵɵInjectorDeclaration<SpaHomeModule>;
4862
4921
  }
4863
4922
 
4864
- export { ALSQUARE_SVG_DARK, ALSQUARE_SVG_WHITE, Account, AccountsComponent as AccountingAccountsComponent, AggregatesComponent as AccountingAggregatesComponent, AgingComponent as AccountingAgingComponent, CurrenciesComponent as AccountingCurrenciesComponent, AccountingDashboardComponent, InvoicesComponent as AccountingInvoicesComponent, AccountingModule, ReportsComponent as AccountingReportsComponent, AccountingService, StatementComponent as AccountingStatementComponent, TransactionTypesComponent as AccountingTransactionTypesComponent, TransactionsComponent as AccountingTransactionsComponent, Action, ActivityComponent, AdminModule, AgentComponent, AgentService, AlertComponent, AlertConfig, AlertMessage, AnalyticsService, ApiResponse, AppConfig, AppModelsComponent, AssetStatus, AssetsService, AttachComponent, AuthService, BillingPageComponent, BrandsComponent, CacheConfig, CapItem, CapsulesComponent, CategoriesComponent, ChangePasswordComponent, ChangeUserPassword, ChartConfig, ChartsComponent, CheckComponent, ChipsComponent, Constants, Core, CreateAccountComponent, CustomersComponent, DataServiceLib, DateComponent, DatetimeComponent, DepartmentsComponent, DetailsDialog, DetailsDialogConfig, DetailsDialogProcessor, DetailsSource, DialogService, EmailComponent, EmployeesComponent, ExportService, FeatureDirective, FilterComponent, FormComponent, FormConfig, GeneralModule, GeneralService, GradesComponent, GroupsComponent, HRModule, HtmlComponent, HttpService, IndexModule, InventoryDashboardComponent, InventoryModule, InventoryService, InvitationsTableComponent, InvoiceDashboardComponent, InvoiceItemType, InvoiceStatus, LabelComponent, ListDialogComponent, ListDialogConfig, LoaderComponent, LoaderService, LoanPaymentsComponent, LoanProductsComponent, LoansComponent, LoansModule, LoansService, LogLevel, LogService, LoginComponent, LogsComponent, ManufacturingModule, MembershipComponent, MessageService, MoneyComponent, MovementType, NavMenuComponent, NotesComponent, NotesConfig, NotificationsService, NumberComponent, OnboardingComponent, OptionComponent, OverviewDashboardComponent, OverviewModule, PageComponent, PageConfig, PayrollDashboardComponent, PayrollModule, PlansComponent, PositionsComponent, PreferencesComponent, PrivacyDialogComponent, Profile, ProfileComponent, PurchaseStatus, PurchasingDashboardComponent, PurchasingModule, PushNotificationService, ReceiptStatus, RecoverAccountComponent, Register, Role, RoleAccess, RolesComponent, SalesDashboardComponent, SalesModule, SearchComponent, SearchConfig, SecurityConfig, SelectBitwiseComponent, SelectComponent, SelectLiteComponent, SelectMultiComponent, SettingsComponent, SignupComponent, SignupData, SpaAdminModule, SpaHomeModule, SpaIndexModule, SpaLandingComponent, SpaMatModule, SpaUserModule, StatusesComponent, Step, StepConfig, StepsComponent, StorageService, SubCategoriesComponent, SubscriptionPageComponent, SubscriptionService, SuppliersComponent, TabService, TableComponent, TableConfig, TabsComponent, TasksComponent, TenancyModule, TenantsComponent, TermsDialogComponent, TextAreaComponent, TextComponent, TextMaskComponent, TextMultiComponent, TextSingleComponent, TileConfig, TilesComponent, TinSpaComponent, TinSpaModule, TinSpaService, TitleActionsComponent, TransactionTiming, UnitOfMeasure, UpdateService, User, UserModule, UsersComponent, ViewerComponent, WelcomeComponent, WorkflowModule, authGuard, dialogOptions, featureGuard, loginConfig, messageDialog, viewerDialog };
4865
- export type { AgentMessage, AutoRefreshConfig, BitwiseOption, Button, CacheRule, CapsuleConfig, CardConfig, ChartItem, ChildField, CloseOptions, Color, Column, Confirm, ConversationSummary, Field, GroupConfig, GroupData, Icon, LandingBrandOverride, LandingColors, LandingConfig, LandingFeature, LandingFooterColumn, LandingFooterLink, LandingMetric, LandingModuleGroup, LandingModuleTile, LandingNavLink, LandingPricingPlan, LandingSecurityItem, LandingStep, LandingTestimonial, SearchField, SpaChartType, StatusConfig, StatusItem, StatusState, TableViewType, Tile, TileChartConfig, TileChartType, TileStyle, VisibleTab };
4923
+ export { ALSQUARE_SVG_DARK, ALSQUARE_SVG_WHITE, Account, AccountsComponent as AccountingAccountsComponent, AggregatesComponent as AccountingAggregatesComponent, AgingComponent as AccountingAgingComponent, CurrenciesComponent as AccountingCurrenciesComponent, AccountingDashboardComponent, InvoicesComponent as AccountingInvoicesComponent, AccountingModule, ReportsComponent as AccountingReportsComponent, AccountingService, StatementComponent as AccountingStatementComponent, TransactionTypesComponent as AccountingTransactionTypesComponent, TransactionsComponent as AccountingTransactionsComponent, Action, ActivityComponent, AdminModule, AgentComponent, AgentService, AlertComponent, AlertConfig, AlertMessage, AnalyticsService, ApiResponse, AppConfig, AppModelsComponent, AssetStatus, AssetsService, AttachComponent, AuthService, BillingPageComponent, BrandsComponent, CacheConfig, CapItem, CapsulesComponent, CategoriesComponent, ChangePasswordComponent, ChangeUserPassword, ChartConfig, ChartsComponent, CheckComponent, ChipsComponent, Constants, Core, CreateAccountComponent, CustomersComponent, DataServiceLib, DateComponent, DatetimeComponent, DepartmentsComponent, DetailsDialog, DetailsDialogConfig, DetailsDialogProcessor, DetailsSource, DialogService, EditorComponent, EmailComponent, EmployeesComponent, ExportService, FeatureDirective, FilterComponent, FormComponent, FormConfig, GeneralModule, GeneralService, GradesComponent, GroupsComponent, HRModule, HtmlComponent, HttpService, IndexModule, InventoryDashboardComponent, InventoryModule, InventoryService, InvitationsTableComponent, InvoiceDashboardComponent, InvoiceItemType, InvoiceStatus, LabelComponent, ListDialogComponent, ListDialogConfig, LoaderComponent, LoaderService, LoanPaymentsComponent, LoanProductsComponent, LoansComponent, LoansModule, LoansService, LogLevel, LogService, LoginComponent, LogsComponent, ManufacturingModule, MembershipComponent, MessageService, MoneyComponent, MovementType, NavMenuComponent, NotesComponent, NotesConfig, NotificationsService, NumberComponent, OnboardingComponent, OptionComponent, OverviewDashboardComponent, OverviewModule, PageComponent, PageConfig, PayrollDashboardComponent, PayrollModule, PlansComponent, PositionsComponent, PreferencesComponent, PrivacyDialogComponent, Profile, ProfileComponent, PurchaseStatus, PurchasingDashboardComponent, PurchasingModule, PushNotificationService, ReceiptStatus, RecoverAccountComponent, Register, Role, RoleAccess, RolesComponent, SalesDashboardComponent, SalesModule, SearchComponent, SearchConfig, SecurityConfig, SelectBitwiseComponent, SelectComponent, SelectLiteComponent, SelectMultiComponent, SettingsComponent, SignupComponent, SignupData, SpaAdminModule, SpaHomeModule, SpaIndexModule, SpaLandingComponent, SpaMatModule, SpaUserModule, StatusesComponent, Step, StepConfig, StepsComponent, StorageService, SubCategoriesComponent, SubscriptionPageComponent, SubscriptionService, SuppliersComponent, TIN_SPA_RUNTIME_CONFIG, TabService, TableComponent, TableConfig, TabsComponent, TasksComponent, TenancyModule, TenantsComponent, TermsDialogComponent, TextAreaComponent, TextComponent, TextMaskComponent, TextMultiComponent, TextSingleComponent, TileConfig, TilesComponent, TinSpaComponent, TinSpaModule, TinSpaService, TitleActionsComponent, TransactionTiming, UnitOfMeasure, UpdateService, User, UserModule, UsersComponent, ViewerComponent, WelcomeComponent, WorkflowModule, authGuard, dialogOptions, featureGuard, loginConfig, messageDialog, provideTinSpaRuntime, tinSpaLocationStrategyFactory, tinSpaMsalInstanceFactory, viewerDialog };
4924
+ export type { AgentMessage, AutoRefreshConfig, BitwiseOption, Button, CacheRule, CapsuleConfig, CardConfig, ChartItem, ChildField, CloseOptions, Color, Column, Confirm, ConversationSummary, Field, GroupConfig, GroupData, Icon, LandingBrandOverride, LandingColors, LandingConfig, LandingFeature, LandingFooterColumn, LandingFooterLink, LandingMetric, LandingModuleGroup, LandingModuleTile, LandingNavLink, LandingPricingPlan, LandingSecurityItem, LandingStep, LandingTestimonial, SearchField, SpaChartType, StatusConfig, StatusItem, StatusState, TableViewType, Tile, TileChartConfig, TileChartType, TileStyle, TinSpaMsalConfig, TinSpaRuntimeConfig, VisibleTab };
package/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "tin-spa",
3
- "version": "20.6.9",
3
+ "version": "20.8.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.0.0",
6
- "@angular/core": "^20.0.0"
6
+ "@angular/core": "^20.0.0",
7
+ "@azure/msal-angular": "^4.0.0",
8
+ "@azure/msal-browser": "^4.0.0",
9
+ "@kolkov/angular-editor": "^3.0.5"
7
10
  },
8
11
  "dependencies": {
9
12
  "tslib": "^2.3.0"