tin-spa 2.6.1 → 2.6.3

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.
Files changed (39) hide show
  1. package/esm2020/lib/classes/Classes.mjs +1 -1
  2. package/esm2020/lib/components/form/form.component.mjs +5 -4
  3. package/esm2020/lib/components/multi-text/multi-text.component.mjs +168 -0
  4. package/esm2020/lib/components/nav-menu/nav-menu.component.mjs +24 -20
  5. package/esm2020/lib/components/page/page.component.mjs +39 -3
  6. package/esm2020/lib/components/table/detailsDialog.component.mjs +15 -7
  7. package/esm2020/lib/components/table/table.component.mjs +4 -1
  8. package/esm2020/lib/components/table-internal/detailsDialog-internal.component.mjs +15 -7
  9. package/esm2020/lib/components/table-internal/table-internal.component.mjs +4 -1
  10. package/esm2020/lib/components/table-lite/detailsDialog-lite.component.mjs +15 -7
  11. package/esm2020/lib/components/table-lite/table-lite.component.mjs +4 -1
  12. package/esm2020/lib/components/viewer/viewerDialog.component.mjs +20 -13
  13. package/esm2020/lib/modules/admin/admin-routing.module.mjs +3 -1
  14. package/esm2020/lib/pages/approvals/approvals.component.mjs +3 -2
  15. package/esm2020/lib/pages/approvals-config/approvals-config.component.mjs +2 -3
  16. package/esm2020/lib/pages/login/login.component.mjs +20 -13
  17. package/esm2020/lib/pages/logs/logs.component.mjs +1 -1
  18. package/esm2020/lib/pages/notifications/notifications.component.mjs +95 -6
  19. package/esm2020/lib/pages/tenant-settings/tenant-settings.component.mjs +37 -4
  20. package/esm2020/lib/services/datalib.service.mjs +1 -1
  21. package/esm2020/lib/services/notifications.service.mjs +33 -0
  22. package/esm2020/lib/tin-spa.module.mjs +6 -3
  23. package/esm2020/public-api.mjs +2 -1
  24. package/fesm2015/tin-spa.mjs +461 -70
  25. package/fesm2015/tin-spa.mjs.map +1 -1
  26. package/fesm2020/tin-spa.mjs +454 -64
  27. package/fesm2020/tin-spa.mjs.map +1 -1
  28. package/lib/classes/Classes.d.ts +3 -2
  29. package/lib/components/multi-text/multi-text.component.d.ts +46 -0
  30. package/lib/components/nav-menu/nav-menu.component.d.ts +4 -1
  31. package/lib/components/page/page.component.d.ts +13 -1
  32. package/lib/components/viewer/viewerDialog.component.d.ts +3 -1
  33. package/lib/pages/login/login.component.d.ts +4 -1
  34. package/lib/pages/notifications/notifications.component.d.ts +10 -1
  35. package/lib/pages/tenant-settings/tenant-settings.component.d.ts +2 -0
  36. package/lib/services/notifications.service.d.ts +12 -0
  37. package/lib/tin-spa.module.d.ts +6 -5
  38. package/package.json +1 -1
  39. package/public-api.d.ts +1 -0
@@ -72,7 +72,6 @@ export declare class FormConfig {
72
72
  button?: Button;
73
73
  multiColumn?: boolean;
74
74
  reset?: boolean;
75
- fileAction?: Action;
76
75
  loadAction?: Action;
77
76
  heroField?: any;
78
77
  heroValue?: any;
@@ -106,7 +105,7 @@ export declare class PageConfig {
106
105
  }
107
106
  export interface Field {
108
107
  name: string;
109
- type: 'text' | 'password' | 'date' | 'datetime' | 'datetimesec' | 'checkbox' | 'select' | 'multi-select' | 'money' | 'number' | 'section' | 'blank' | 'chip' | 'file' | 'file-view' | 'icon' | 'spinner' | 'button' | 'label' | 'email' | 'composite' | 'string';
108
+ type: 'text' | 'multi-text' | 'password' | 'date' | 'datetime' | 'datetimesec' | 'checkbox' | 'select' | 'multi-select' | 'money' | 'number' | 'section' | 'blank' | 'chip' | 'file' | 'file-view' | 'icon' | 'spinner' | 'button' | 'label' | 'email' | 'composite' | 'string';
110
109
  alias?: string;
111
110
  options?: any[];
112
111
  optionDisplay?: string;
@@ -122,6 +121,7 @@ export interface Field {
122
121
  size?: string;
123
122
  readonly?: boolean;
124
123
  hidden?: boolean;
124
+ strict?: boolean;
125
125
  path?: string;
126
126
  keyField?: string;
127
127
  hint?: string;
@@ -264,6 +264,7 @@ export declare class AppConfig {
264
264
  multitenant: boolean;
265
265
  navigation: 'top' | 'side';
266
266
  progressLine: boolean;
267
+ docsBaseUrl: string;
267
268
  }
268
269
  export declare class CapItem {
269
270
  constructor();
@@ -0,0 +1,46 @@
1
+ import { ElementRef, EventEmitter, OnInit } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
3
+ import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
4
+ import { MatChipInputEvent } from '@angular/material/chips';
5
+ import { Observable } from 'rxjs';
6
+ import { MessageService } from '../../services/message.service';
7
+ import * as i0 from "@angular/core";
8
+ export declare class MultiTextComponent implements OnInit {
9
+ private messageService;
10
+ constructor(messageService: MessageService);
11
+ textInput: ElementRef<HTMLInputElement>;
12
+ display: string;
13
+ value: string;
14
+ valueChange: EventEmitter<string>;
15
+ readonly: boolean;
16
+ required: boolean;
17
+ hint: string;
18
+ strict: boolean;
19
+ suffix: string;
20
+ infoMessage: string;
21
+ copyContent: boolean;
22
+ clearContent: boolean;
23
+ options: any[];
24
+ optionDisplay: string;
25
+ optionValue: string;
26
+ values: string[];
27
+ control: FormControl<string>;
28
+ filteredOptions: Observable<any[]>;
29
+ errorState: boolean;
30
+ private selectedFromAutocomplete;
31
+ ngOnInit(): void;
32
+ ngOnChanges(): void;
33
+ private setupAutoComplete;
34
+ private filterOptions;
35
+ add(event: MatChipInputEvent): void;
36
+ private addValue;
37
+ remove(value: string): void;
38
+ optionSelected(event: MatAutocompleteSelectedEvent): void;
39
+ private resetInput;
40
+ updateValue(): void;
41
+ clear(): void;
42
+ getDisplayValue(value: string): string;
43
+ copyValues(): void;
44
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultiTextComponent, never>;
45
+ static ɵcmp: i0.ɵɵComponentDeclaration<MultiTextComponent, "spa-multi-text", never, { "display": "display"; "value": "value"; "readonly": "readonly"; "required": "required"; "hint": "hint"; "strict": "strict"; "suffix": "suffix"; "infoMessage": "infoMessage"; "copyContent": "copyContent"; "clearContent": "clearContent"; "options": "options"; "optionDisplay": "optionDisplay"; "optionValue": "optionValue"; }, { "valueChange": "valueChange"; }, never, never, false>;
46
+ }
@@ -5,16 +5,19 @@ import { StorageService } from '../../services/storage.service';
5
5
  import { SocialAuthService } from '@abacritt/angularx-social-login';
6
6
  import { DataServiceLib } from '../../services/datalib.service';
7
7
  import { BreakpointObserver } from '@angular/cdk/layout';
8
+ import { NotificationsService } from '../../services/notifications.service';
8
9
  import * as i0 from "@angular/core";
9
10
  export declare class NavMenuComponent {
10
11
  router: Router;
11
12
  authService: AuthService;
12
13
  private storageService;
14
+ private notificationsService;
13
15
  private socialService;
14
16
  private breakpointObserver;
15
17
  dataService: DataServiceLib;
16
- constructor(router: Router, authService: AuthService, storageService: StorageService, socialService: SocialAuthService, breakpointObserver: BreakpointObserver, dataService: DataServiceLib);
18
+ constructor(router: Router, authService: AuthService, storageService: StorageService, notificationsService: NotificationsService, socialService: SocialAuthService, breakpointObserver: BreakpointObserver, dataService: DataServiceLib);
17
19
  ngOnInit(): void;
20
+ notificationCount$: import("rxjs").Observable<number>;
18
21
  smallScreen: any;
19
22
  myRole: any;
20
23
  loggedUserFullName: string;
@@ -13,6 +13,12 @@ export declare class PageComponent implements OnInit {
13
13
  searchModeActivated: EventEmitter<any>;
14
14
  searchModeDeactivated: EventEmitter<any>;
15
15
  refreshClick: EventEmitter<any>;
16
+ actionClick: EventEmitter<any>;
17
+ actionResponse: EventEmitter<any>;
18
+ inputChange: EventEmitter<any>;
19
+ createClick: EventEmitter<any>;
20
+ searchClick: EventEmitter<any>;
21
+ dataLoad: EventEmitter<any>;
16
22
  tableReload: Subject<boolean>;
17
23
  searchMode: boolean;
18
24
  normalTableConfig: TableConfig;
@@ -21,6 +27,12 @@ export declare class PageComponent implements OnInit {
21
27
  getNormalTableConfig(): TableConfig;
22
28
  getSearchTableConfig(): TableConfig;
23
29
  refreshClicked(): void;
30
+ actionClicked(x: any): void;
31
+ actionResponded(x: any): void;
32
+ inputChanged(x: any): void;
33
+ createClicked(x: any): void;
34
+ searchClicked(x: any): void;
35
+ dataLoaded(x: any): void;
24
36
  static ɵfac: i0.ɵɵFactoryDeclaration<PageComponent, never>;
25
- static ɵcmp: i0.ɵɵComponentDeclaration<PageComponent, "spa-page", never, { "config": "config"; }, { "searchModeActivated": "searchModeActivated"; "searchModeDeactivated": "searchModeDeactivated"; "refreshClick": "refreshClick"; }, never, never, false>;
37
+ static ɵcmp: i0.ɵɵComponentDeclaration<PageComponent, "spa-page", never, { "config": "config"; }, { "searchModeActivated": "searchModeActivated"; "searchModeDeactivated": "searchModeDeactivated"; "refreshClick": "refreshClick"; "actionClick": "actionClick"; "actionResponse": "actionResponse"; "inputChange": "inputChange"; "createClick": "createClick"; "searchClick": "searchClick"; "dataLoad": "dataLoad"; }, never, never, false>;
26
38
  }
@@ -1,10 +1,12 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { HttpService } from '../../services/http.service';
3
+ import { DataServiceLib } from '../../services/datalib.service';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class viewerDialog implements OnInit {
5
6
  private httpService;
7
+ private dataServiceLib;
6
8
  data: any;
7
- constructor(httpService: HttpService, data: any);
9
+ constructor(httpService: HttpService, dataServiceLib: DataServiceLib, data: any);
8
10
  ngOnInit(): void;
9
11
  isProcessing: boolean;
10
12
  fullPath: string;
@@ -9,6 +9,7 @@ import { AppConfig } from "../../classes/Classes";
9
9
  import { HttpService } from "../../services/http.service";
10
10
  import { SocialAuthService, SocialUser } from '@abacritt/angularx-social-login';
11
11
  import { User } from "../../classes/LibClasses";
12
+ import { NotificationsService } from "../../services/notifications.service";
12
13
  import * as i0 from "@angular/core";
13
14
  export declare class LoginComponent implements OnInit {
14
15
  private httpService;
@@ -20,7 +21,8 @@ export declare class LoginComponent implements OnInit {
20
21
  private logService;
21
22
  private route;
22
23
  private socialService;
23
- constructor(httpService: HttpService, storageService: StorageService, router: Router, messageService: MessageService, dataService: DataServiceLib, authService: AuthService, logService: LogService, route: ActivatedRoute, socialService: SocialAuthService);
24
+ private notificationsService;
25
+ constructor(httpService: HttpService, storageService: StorageService, router: Router, messageService: MessageService, dataService: DataServiceLib, authService: AuthService, logService: LogService, route: ActivatedRoute, socialService: SocialAuthService, notificationsService: NotificationsService);
24
26
  ngOnInit(): void;
25
27
  autoLogin: boolean;
26
28
  socialUser: SocialUser | null;
@@ -35,6 +37,7 @@ export declare class LoginComponent implements OnInit {
35
37
  signup(): void;
36
38
  recoverAccount(): void;
37
39
  login(): void;
40
+ notifications(): void;
38
41
  static ɵfac: i0.ɵɵFactoryDeclaration<LoginComponent, never>;
39
42
  static ɵcmp: i0.ɵɵComponentDeclaration<LoginComponent, "spa-login", never, {}, {}, never, never, false>;
40
43
  }
@@ -1,8 +1,17 @@
1
1
  import { OnInit } from '@angular/core';
2
+ import { DetailsDialogConfig, TableConfig } from '../../classes/Classes';
3
+ import { DataServiceLib } from '../../services/datalib.service';
4
+ import { NotificationsService } from '../../services/notifications.service';
2
5
  import * as i0 from "@angular/core";
3
6
  export declare class NotificationsComponent implements OnInit {
4
- constructor();
7
+ private dataService;
8
+ private notificationsService;
9
+ constructor(dataService: DataServiceLib, notificationsService: NotificationsService);
5
10
  ngOnInit(): void;
11
+ loadRoles(): void;
12
+ createDialog: DetailsDialogConfig;
13
+ notificationsTableConfig: TableConfig;
14
+ actionClicked(x: any): void;
6
15
  static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsComponent, never>;
7
16
  static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsComponent, "spa-notifications", never, {}, {}, never, never, false>;
8
17
  }
@@ -40,6 +40,8 @@ export declare class TenantSettingsComponent implements OnInit {
40
40
  renameOrgDialogConfig: DetailsDialogConfig;
41
41
  orgsReload: Subject<boolean>;
42
42
  orgsTableConfig: TableConfig;
43
+ mailerFormConfig: FormConfig;
44
+ mailerTableConfig: TableConfig;
43
45
  static ɵfac: i0.ɵɵFactoryDeclaration<TenantSettingsComponent, never>;
44
46
  static ɵcmp: i0.ɵɵComponentDeclaration<TenantSettingsComponent, "spa-tenant-settings", never, {}, {}, never, never, false>;
45
47
  }
@@ -0,0 +1,12 @@
1
+ import { DataServiceLib } from './datalib.service';
2
+ import * as i0 from "@angular/core";
3
+ export declare class NotificationsService {
4
+ private dataService;
5
+ private notificationCount;
6
+ notificationCount$: import("rxjs").Observable<number>;
7
+ constructor(dataService: DataServiceLib);
8
+ loadNotifications(): void;
9
+ refreshCount(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsService, never>;
11
+ static ɵprov: i0.ɵɵInjectableDeclaration<NotificationsService>;
12
+ }
@@ -64,12 +64,13 @@ import * as i62 from "./components/table-lite/table-lite.component";
64
64
  import * as i63 from "./components/table-lite/detailsDialog-lite.component";
65
65
  import * as i64 from "./pages/approvals/approvals.component";
66
66
  import * as i65 from "./pages/approvals-config/approvals-config.component";
67
- import * as i66 from "./modules/spa-mat.module";
68
- import * as i67 from "@angular/common/http";
69
- import * as i68 from "./components/money/currency-input-mask.module";
70
- import * as i69 from "ngx-doc-viewer";
67
+ import * as i66 from "./components/multi-text/multi-text.component";
68
+ import * as i67 from "./modules/spa-mat.module";
69
+ import * as i68 from "@angular/common/http";
70
+ import * as i69 from "./components/money/currency-input-mask.module";
71
+ import * as i70 from "ngx-doc-viewer";
71
72
  export declare class TinSpaModule {
72
73
  static ɵfac: i0.ɵɵFactoryDeclaration<TinSpaModule, never>;
73
- static ɵmod: i0.ɵɵNgModuleDeclaration<TinSpaModule, [typeof i1.TinSpaComponent, typeof i2.TextComponent, typeof i3.CheckComponent, typeof i4.DateComponent, typeof i5.DatetimeComponent, typeof i6.LabelComponent, typeof i7.SelectComponent, typeof i8.ActivityComponent, typeof i9.FilterComponent, typeof i10.messageDialog, typeof i11.MoneyComponent, typeof i12.OptionComponent, typeof i13.TilesComponent, typeof i14.StepsComponent, typeof i15.AttachComponent, typeof i16.ChipsComponent, typeof i17.LoaderComponent, typeof i18.NavMenuComponent, typeof i19.TableComponent, typeof i20.TableInternalComponent, typeof i21.DetailsDialog, typeof i22.DetailsDialogInternal, typeof i23.FormComponent, typeof i24.CamelToWordsPipe, typeof i25.NumberComponent, typeof i26.SearchComponent, typeof i27.ViewerComponent, typeof i28.viewerDialog, typeof i29.TenantSettingsComponent, typeof i30.TenantsComponent, typeof i31.BugComponent, typeof i32.MembershipComponent, typeof i33.PlansComponent, typeof i34.CustomersComponent, typeof i35.InventoryComponent, typeof i36.quantityDialog, typeof i37.AccountsComponent, typeof i38.accountDialog, typeof i39.SuppliersComponent, typeof i40.TransactionsComponent, typeof i41.transactDialog, typeof i42.ListDialogComponent, typeof i43.TasksComponent, typeof i44.DepartmentsComponent, typeof i45.EmployeesComponent, typeof i46.PositionsComponent, typeof i47.GradesComponent, typeof i48.WelcomeComponent, typeof i49.NotificationsComponent, typeof i50.InvitationsTableComponent, typeof i51.TableHeaderComponent, typeof i52.TableRowComponent, typeof i53.TableActionComponent, typeof i54.AlertComponent, typeof i55.EmailComponent, typeof i56.PageComponent, typeof i57.SelectCommonComponent, typeof i58.SelectInternalComponent, typeof i59.SuffixComponent, typeof i60.SelectContextDirective, typeof i61.SelectLiteComponent, typeof i62.TableLiteComponent, typeof i63.DetailsDialogLite, typeof i64.ApprovalsComponent, typeof i65.ApprovalsConfigComponent], [typeof i66.SpaMatModule, typeof i67.HttpClientModule, typeof i68.CurrencyInputModule, typeof i69.NgxDocViewerModule], [typeof i1.TinSpaComponent, typeof i66.SpaMatModule, typeof i54.AlertComponent, typeof i2.TextComponent, typeof i10.messageDialog, typeof i18.NavMenuComponent, typeof i17.LoaderComponent, typeof i13.TilesComponent, typeof i4.DateComponent, typeof i7.SelectComponent, typeof i5.DatetimeComponent, typeof i3.CheckComponent, typeof i15.AttachComponent, typeof i11.MoneyComponent, typeof i16.ChipsComponent, typeof i8.ActivityComponent, typeof i12.OptionComponent, typeof i6.LabelComponent, typeof i14.StepsComponent, typeof i9.FilterComponent, typeof i19.TableComponent, typeof i21.DetailsDialog, typeof i23.FormComponent, typeof i25.NumberComponent, typeof i26.SearchComponent, typeof i27.ViewerComponent, typeof i28.viewerDialog, typeof i42.ListDialogComponent, typeof i34.CustomersComponent, typeof i37.AccountsComponent, typeof i35.InventoryComponent, typeof i39.SuppliersComponent, typeof i40.TransactionsComponent, typeof i42.ListDialogComponent, typeof i43.TasksComponent, typeof i44.DepartmentsComponent, typeof i45.EmployeesComponent, typeof i46.PositionsComponent, typeof i47.GradesComponent, typeof i48.WelcomeComponent, typeof i55.EmailComponent, typeof i56.PageComponent]>;
74
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TinSpaModule, [typeof i1.TinSpaComponent, typeof i2.TextComponent, typeof i3.CheckComponent, typeof i4.DateComponent, typeof i5.DatetimeComponent, typeof i6.LabelComponent, typeof i7.SelectComponent, typeof i8.ActivityComponent, typeof i9.FilterComponent, typeof i10.messageDialog, typeof i11.MoneyComponent, typeof i12.OptionComponent, typeof i13.TilesComponent, typeof i14.StepsComponent, typeof i15.AttachComponent, typeof i16.ChipsComponent, typeof i17.LoaderComponent, typeof i18.NavMenuComponent, typeof i19.TableComponent, typeof i20.TableInternalComponent, typeof i21.DetailsDialog, typeof i22.DetailsDialogInternal, typeof i23.FormComponent, typeof i24.CamelToWordsPipe, typeof i25.NumberComponent, typeof i26.SearchComponent, typeof i27.ViewerComponent, typeof i28.viewerDialog, typeof i29.TenantSettingsComponent, typeof i30.TenantsComponent, typeof i31.BugComponent, typeof i32.MembershipComponent, typeof i33.PlansComponent, typeof i34.CustomersComponent, typeof i35.InventoryComponent, typeof i36.quantityDialog, typeof i37.AccountsComponent, typeof i38.accountDialog, typeof i39.SuppliersComponent, typeof i40.TransactionsComponent, typeof i41.transactDialog, typeof i42.ListDialogComponent, typeof i43.TasksComponent, typeof i44.DepartmentsComponent, typeof i45.EmployeesComponent, typeof i46.PositionsComponent, typeof i47.GradesComponent, typeof i48.WelcomeComponent, typeof i49.NotificationsComponent, typeof i50.InvitationsTableComponent, typeof i51.TableHeaderComponent, typeof i52.TableRowComponent, typeof i53.TableActionComponent, typeof i54.AlertComponent, typeof i55.EmailComponent, typeof i56.PageComponent, typeof i57.SelectCommonComponent, typeof i58.SelectInternalComponent, typeof i59.SuffixComponent, typeof i60.SelectContextDirective, typeof i61.SelectLiteComponent, typeof i62.TableLiteComponent, typeof i63.DetailsDialogLite, typeof i64.ApprovalsComponent, typeof i65.ApprovalsConfigComponent, typeof i66.MultiTextComponent], [typeof i67.SpaMatModule, typeof i68.HttpClientModule, typeof i69.CurrencyInputModule, typeof i70.NgxDocViewerModule], [typeof i1.TinSpaComponent, typeof i67.SpaMatModule, typeof i54.AlertComponent, typeof i2.TextComponent, typeof i66.MultiTextComponent, typeof i10.messageDialog, typeof i18.NavMenuComponent, typeof i17.LoaderComponent, typeof i13.TilesComponent, typeof i4.DateComponent, typeof i7.SelectComponent, typeof i5.DatetimeComponent, typeof i3.CheckComponent, typeof i15.AttachComponent, typeof i11.MoneyComponent, typeof i16.ChipsComponent, typeof i8.ActivityComponent, typeof i12.OptionComponent, typeof i6.LabelComponent, typeof i14.StepsComponent, typeof i9.FilterComponent, typeof i19.TableComponent, typeof i21.DetailsDialog, typeof i23.FormComponent, typeof i25.NumberComponent, typeof i26.SearchComponent, typeof i27.ViewerComponent, typeof i28.viewerDialog, typeof i42.ListDialogComponent, typeof i34.CustomersComponent, typeof i37.AccountsComponent, typeof i35.InventoryComponent, typeof i39.SuppliersComponent, typeof i40.TransactionsComponent, typeof i42.ListDialogComponent, typeof i43.TasksComponent, typeof i44.DepartmentsComponent, typeof i45.EmployeesComponent, typeof i46.PositionsComponent, typeof i47.GradesComponent, typeof i48.WelcomeComponent, typeof i55.EmailComponent, typeof i56.PageComponent]>;
74
75
  static ɵinj: i0.ɵɵInjectorDeclaration<TinSpaModule>;
75
76
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tin-spa",
3
- "version": "2.6.1",
3
+ "version": "2.6.3",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^14.2.0",
6
6
  "@angular/core": "^14.2.0"
package/public-api.d.ts CHANGED
@@ -23,6 +23,7 @@ export * from './lib/components/tiles/tiles.component';
23
23
  export * from './lib/components/alert/alert.component';
24
24
  export * from './lib/components/date/date.component';
25
25
  export * from './lib/components/text/text.component';
26
+ export * from './lib/components/multi-text/multi-text.component';
26
27
  export * from './lib/components/label/label.component';
27
28
  export * from './lib/components/datetime/datetime.component';
28
29
  export * from './lib/components/select/select.component';