tin-spa 2.4.1 → 2.4.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 (56) hide show
  1. package/esm2020/lib/classes/Classes.mjs +1 -1
  2. package/esm2020/lib/components/filter/filter.component.mjs +7 -3
  3. package/esm2020/lib/components/form/form.component.mjs +3 -3
  4. package/esm2020/lib/components/list-dialog/list-dialog.component.mjs +1 -1
  5. package/esm2020/lib/components/option/option.component.mjs +3 -3
  6. package/esm2020/lib/components/page/page.component.mjs +73 -0
  7. package/esm2020/lib/components/select/select.component.mjs +13 -3
  8. package/esm2020/lib/components/table/detailsDialog.component.mjs +1 -1
  9. package/esm2020/lib/components/table/table.component.mjs +16 -4
  10. package/esm2020/lib/components/table-header/table-header.component.mjs +14 -5
  11. package/esm2020/lib/components/table-internal/table-internal.component.mjs +16 -4
  12. package/esm2020/lib/components/table-row/table-row.component.mjs +1 -1
  13. package/esm2020/lib/components/text/text.component.mjs +25 -15
  14. package/esm2020/lib/components/tiles/tiles.component.mjs +31 -27
  15. package/esm2020/lib/pages/accounts/accountDialog.component.mjs +1 -1
  16. package/esm2020/lib/pages/change-password/change-password.component.mjs +1 -1
  17. package/esm2020/lib/pages/create-account/create-account.component.mjs +1 -1
  18. package/esm2020/lib/pages/customers/customers.component.mjs +1 -1
  19. package/esm2020/lib/pages/departments/departments.component.mjs +1 -1
  20. package/esm2020/lib/pages/employees/employees.component.mjs +1 -1
  21. package/esm2020/lib/pages/inventory/inventory.component.mjs +1 -1
  22. package/esm2020/lib/pages/inventory/quantityDialog.component.mjs +1 -1
  23. package/esm2020/lib/pages/invitations-table/invitations-table.component.mjs +1 -1
  24. package/esm2020/lib/pages/login/login.component.mjs +1 -1
  25. package/esm2020/lib/pages/membership/membership.component.mjs +1 -1
  26. package/esm2020/lib/pages/plans/plans.component.mjs +1 -1
  27. package/esm2020/lib/pages/positions/positions.component.mjs +1 -1
  28. package/esm2020/lib/pages/profile/profile.component.mjs +1 -1
  29. package/esm2020/lib/pages/recover-account/recover-account.component.mjs +1 -1
  30. package/esm2020/lib/pages/signup/signup.component.mjs +1 -1
  31. package/esm2020/lib/pages/suppliers/suppliers.component.mjs +1 -1
  32. package/esm2020/lib/pages/tasks/tasks.component.mjs +1 -1
  33. package/esm2020/lib/pages/tenant-settings/inviteDialog.component.mjs +1 -1
  34. package/esm2020/lib/pages/tenant-settings/tenant-settings.component.mjs +1 -1
  35. package/esm2020/lib/pages/tenants/tenants.component.mjs +1 -1
  36. package/esm2020/lib/pages/transactions/transactDialog.component.mjs +1 -1
  37. package/esm2020/lib/pages/transactions/transactions.component.mjs +1 -1
  38. package/esm2020/lib/pages/welcome/welcome.component.mjs +1 -1
  39. package/esm2020/lib/tin-spa.module.mjs +6 -5
  40. package/esm2020/public-api.mjs +2 -1
  41. package/fesm2015/tin-spa.mjs +188 -79
  42. package/fesm2015/tin-spa.mjs.map +1 -1
  43. package/fesm2020/tin-spa.mjs +204 -79
  44. package/fesm2020/tin-spa.mjs.map +1 -1
  45. package/lib/classes/Classes.d.ts +10 -0
  46. package/lib/components/filter/filter.component.d.ts +1 -0
  47. package/lib/components/page/page.component.d.ts +25 -0
  48. package/lib/components/select/select.component.d.ts +3 -1
  49. package/lib/components/table/table.component.d.ts +5 -1
  50. package/lib/components/table-header/table-header.component.d.ts +5 -2
  51. package/lib/components/table-internal/table-internal.component.d.ts +5 -1
  52. package/lib/components/text/text.component.d.ts +6 -2
  53. package/lib/components/tiles/tiles.component.d.ts +5 -4
  54. package/lib/tin-spa.module.d.ts +6 -5
  55. package/package.json +1 -1
  56. package/public-api.d.ts +1 -0
@@ -47,6 +47,8 @@ export declare class Action {
47
47
  export declare class SearchConfig {
48
48
  fields: SearchField[];
49
49
  searchAction?: Action;
50
+ emailResults?: boolean;
51
+ tileConfig?: TileConfig;
50
52
  }
51
53
  export interface SearchField extends Field {
52
54
  show?: boolean;
@@ -96,6 +98,12 @@ export interface Confirm {
96
98
  export interface Condition {
97
99
  condition?: (value: any) => boolean;
98
100
  }
101
+ export interface PageConfig {
102
+ title?: string;
103
+ searchConfig?: SearchConfig;
104
+ tableConfig?: TableConfig;
105
+ searchTableConfig?: TableConfig;
106
+ }
99
107
  export interface Field {
100
108
  name: string;
101
109
  type: 'text' | 'date' | 'datetime' | 'checkbox' | 'select' | 'multi-select' | 'money' | 'number' | 'section' | 'blank' | 'chip' | 'file' | 'file-view' | 'icon' | 'spinner' | 'button' | 'label' | 'email' | 'composite' | 'string';
@@ -122,6 +130,7 @@ export interface Field {
122
130
  children?: ChildField[];
123
131
  masterOptions?: any[];
124
132
  nullable?: boolean;
133
+ copyContent?: boolean;
125
134
  hideOnCreate?: boolean;
126
135
  hideOnExists?: boolean;
127
136
  hiddenCondition?: (value: any) => boolean;
@@ -219,6 +228,7 @@ export interface Tile {
219
228
  info?: string;
220
229
  prefix?: string;
221
230
  suffix?: string;
231
+ action?: Action;
222
232
  }
223
233
  export declare class Step {
224
234
  name: string;
@@ -14,6 +14,7 @@ export declare class FilterComponent implements OnInit {
14
14
  keyUp(event: KeyboardEvent): void;
15
15
  applyFilter(filterValue: string): void;
16
16
  refreshClicked(): void;
17
+ clear(): void;
17
18
  static ɵfac: i0.ɵɵFactoryDeclaration<FilterComponent, never>;
18
19
  static ɵcmp: i0.ɵɵComponentDeclaration<FilterComponent, "spa-filter", never, { "flatButtons": "flatButtons"; "showText": "showText"; "showButton": "showButton"; "data": "data"; }, { "refreshClick": "refreshClick"; }, never, never, false>;
19
20
  }
@@ -0,0 +1,25 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { PageConfig, TableConfig } from '../../classes/Classes';
3
+ import { MessageService } from '../../services/message.service';
4
+ import { DataServiceLib } from '../../services/datalib.service';
5
+ import { Subject } from 'rxjs';
6
+ import * as i0 from "@angular/core";
7
+ export declare class PageComponent implements OnInit {
8
+ private messageService;
9
+ dataServiceLib: DataServiceLib;
10
+ constructor(messageService: MessageService, dataServiceLib: DataServiceLib);
11
+ ngOnInit(): void;
12
+ config: PageConfig;
13
+ searchModeActivated: EventEmitter<any>;
14
+ tableReload: Subject<boolean>;
15
+ searchMode: boolean;
16
+ searchTileData: any;
17
+ lastSearch: any;
18
+ searchTableData: any[];
19
+ searchClicked(data: any, sendEmail: boolean): void;
20
+ toggleSearch(): void;
21
+ getNormalTableConfig(): TableConfig;
22
+ getSearchTableConfig(): TableConfig;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<PageComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<PageComponent, "spa-page", never, { "config": "config"; }, { "searchModeActivated": "searchModeActivated"; }, never, never, false>;
25
+ }
@@ -29,8 +29,10 @@ export declare class SelectComponent implements OnInit {
29
29
  nullable: boolean;
30
30
  peekConfig: PeekDialogConfig;
31
31
  infoMessage: string;
32
+ copyContent: boolean;
32
33
  valueChange: EventEmitter<any>;
33
34
  infoClick: EventEmitter<void>;
35
+ copyText(event: MouseEvent): void;
34
36
  changed(): void;
35
37
  onMouseEnter(): void;
36
38
  onMouseLeave(): void;
@@ -38,5 +40,5 @@ export declare class SelectComponent implements OnInit {
38
40
  onViewClick(event: MouseEvent): void;
39
41
  onInfoClick(event: MouseEvent): void;
40
42
  static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, never>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "spa-select", never, { "width": "width"; "readonly": "readonly"; "required": "required"; "defaultFirstValue": "defaultFirstValue"; "readonlyMode": "readonlyMode"; "hint": "hint"; "placeholder": "placeholder"; "multiple": "multiple"; "display": "display"; "value": "value"; "options": "options"; "masterOptions": "masterOptions"; "optionValue": "optionValue"; "optionDisplay": "optionDisplay"; "optionDisplayExtra": "optionDisplayExtra"; "nullable": "nullable"; "peekConfig": "peekConfig"; "infoMessage": "infoMessage"; }, { "valueChange": "valueChange"; "infoClick": "infoClick"; }, never, never, false>;
43
+ static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "spa-select", never, { "width": "width"; "readonly": "readonly"; "required": "required"; "defaultFirstValue": "defaultFirstValue"; "readonlyMode": "readonlyMode"; "hint": "hint"; "placeholder": "placeholder"; "multiple": "multiple"; "display": "display"; "value": "value"; "options": "options"; "masterOptions": "masterOptions"; "optionValue": "optionValue"; "optionDisplay": "optionDisplay"; "optionDisplayExtra": "optionDisplayExtra"; "nullable": "nullable"; "peekConfig": "peekConfig"; "infoMessage": "infoMessage"; "copyContent": "copyContent"; }, { "valueChange": "valueChange"; "infoClick": "infoClick"; }, never, never, false>;
42
44
  }
@@ -32,9 +32,11 @@ export declare class TableComponent implements OnInit {
32
32
  dataSource: any[];
33
33
  displayedColumns: any[];
34
34
  displayedButtons: any[];
35
+ originalTableLoadAction: Action;
35
36
  tablePaginator: MatPaginator;
36
37
  hideTitle: boolean;
37
38
  data: any;
39
+ tileData: any;
38
40
  config: TableConfig;
39
41
  reload: Subject<boolean>;
40
42
  dataLoad: EventEmitter<any>;
@@ -62,6 +64,8 @@ export declare class TableComponent implements OnInit {
62
64
  testDisabled(row: any, buttonName: string): boolean;
63
65
  testVisible(row: any, buttonName: string): boolean;
64
66
  searchClicked(x: any): void;
67
+ tileClicked(tile: any): void;
68
+ tileUnClicked(tile: any): void;
65
69
  refreshClicked(): void;
66
70
  dataLoaded(x: any): void;
67
71
  actionClicked(name: string, row: any): void;
@@ -78,5 +82,5 @@ export declare class TableComponent implements OnInit {
78
82
  execAction(b: Button, row: any): void;
79
83
  private getElevationClass;
80
84
  static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
81
- static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "spa-table", never, { "hideTitle": "hideTitle"; "data": "data"; "config": "config"; "reload": "reload"; }, { "dataLoad": "dataLoad"; "refreshClick": "refreshClick"; "searchClick": "searchClick"; "createClick": "createClick"; "actionClick": "actionClick"; "inputChange": "inputChange"; }, never, never, false>;
85
+ static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "spa-table", never, { "hideTitle": "hideTitle"; "data": "data"; "tileData": "tileData"; "config": "config"; "reload": "reload"; }, { "dataLoad": "dataLoad"; "refreshClick": "refreshClick"; "searchClick": "searchClick"; "createClick": "createClick"; "actionClick": "actionClick"; "inputChange": "inputChange"; }, never, never, false>;
82
86
  }
@@ -22,21 +22,24 @@ export declare class TableHeaderComponent {
22
22
  tileReload: Subject<boolean>;
23
23
  showFilterButton: boolean;
24
24
  data: any;
25
+ tileData: any;
25
26
  createClick: EventEmitter<void>;
26
27
  customClick: EventEmitter<any>;
27
28
  refreshClick: EventEmitter<void>;
28
29
  tileClick: EventEmitter<string>;
30
+ tileUnClick: EventEmitter<string>;
29
31
  uploadDetailsDialog: DetailsDialogConfig;
30
32
  onButtonClick(button: Button): void;
31
33
  onDownloadClick(): void;
32
34
  onUploadClick(): void;
33
35
  onRefreshClick(): void;
34
- onTileClick(tileName: string): void;
36
+ onTileClick(tile: any): void;
37
+ onTileUnClick(tile: any): void;
35
38
  getHeaderButtons(): Button[];
36
39
  testVisibleHeaderButton(btn: any): boolean;
37
40
  testVisible(button: Button): boolean;
38
41
  testDisabled(button: Button): boolean;
39
42
  getButtonColor(button: Button, row: any): string;
40
43
  static ɵfac: i0.ɵɵFactoryDeclaration<TableHeaderComponent, never>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<TableHeaderComponent, "app-table-header", never, { "config": "config"; "hideTitle": "hideTitle"; "tableDataSource": "tableDataSource"; "tileConfig": "tileConfig"; "smallScreen": "smallScreen"; "tileReload": "tileReload"; "showFilterButton": "showFilterButton"; "data": "data"; }, { "createClick": "createClick"; "customClick": "customClick"; "refreshClick": "refreshClick"; "tileClick": "tileClick"; }, never, never, false>;
44
+ static ɵcmp: i0.ɵɵComponentDeclaration<TableHeaderComponent, "app-table-header", never, { "config": "config"; "hideTitle": "hideTitle"; "tableDataSource": "tableDataSource"; "tileConfig": "tileConfig"; "smallScreen": "smallScreen"; "tileReload": "tileReload"; "showFilterButton": "showFilterButton"; "data": "data"; "tileData": "tileData"; }, { "createClick": "createClick"; "customClick": "customClick"; "refreshClick": "refreshClick"; "tileClick": "tileClick"; "tileUnClick": "tileUnClick"; }, never, never, false>;
42
45
  }
@@ -32,9 +32,11 @@ export declare class TableInternalComponent implements OnInit {
32
32
  dataSource: any[];
33
33
  displayedColumns: any[];
34
34
  displayedButtons: any[];
35
+ originalTableLoadAction: Action;
35
36
  tablePaginator: MatPaginator;
36
37
  hideTitle: boolean;
37
38
  data: any;
39
+ tileData: any;
38
40
  config: TableConfig;
39
41
  reload: Subject<boolean>;
40
42
  dataLoad: EventEmitter<any>;
@@ -62,6 +64,8 @@ export declare class TableInternalComponent implements OnInit {
62
64
  testDisabled(row: any, buttonName: string): boolean;
63
65
  testVisible(row: any, buttonName: string): boolean;
64
66
  searchClicked(x: any): void;
67
+ tileClicked(tile: any): void;
68
+ tileUnClicked(tile: any): void;
65
69
  refreshClicked(): void;
66
70
  dataLoaded(x: any): void;
67
71
  actionClicked(name: string, row: any): void;
@@ -78,5 +82,5 @@ export declare class TableInternalComponent implements OnInit {
78
82
  execAction(b: Button, row: any): void;
79
83
  private getElevationClass;
80
84
  static ɵfac: i0.ɵɵFactoryDeclaration<TableInternalComponent, never>;
81
- static ɵcmp: i0.ɵɵComponentDeclaration<TableInternalComponent, "spa-table-internal", never, { "hideTitle": "hideTitle"; "data": "data"; "config": "config"; "reload": "reload"; }, { "dataLoad": "dataLoad"; "refreshClick": "refreshClick"; "searchClick": "searchClick"; "createClick": "createClick"; "actionClick": "actionClick"; "inputChange": "inputChange"; }, never, never, false>;
85
+ static ɵcmp: i0.ɵɵComponentDeclaration<TableInternalComponent, "spa-table-internal", never, { "hideTitle": "hideTitle"; "data": "data"; "tileData": "tileData"; "config": "config"; "reload": "reload"; }, { "dataLoad": "dataLoad"; "refreshClick": "refreshClick"; "searchClick": "searchClick"; "createClick": "createClick"; "actionClick": "actionClick"; "inputChange": "inputChange"; }, never, never, false>;
82
86
  }
@@ -1,9 +1,11 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { FormControl } from '@angular/forms';
3
3
  import { Observable } from 'rxjs';
4
+ import { MessageService } from '../../services/message.service';
4
5
  import * as i0 from "@angular/core";
5
6
  export declare class TextComponent implements OnInit {
6
- constructor();
7
+ private messageService;
8
+ constructor(messageService: MessageService);
7
9
  ngOnInit(): void;
8
10
  ngAfterViewInit(): void;
9
11
  filteredOptions: Observable<string[]>;
@@ -22,6 +24,7 @@ export declare class TextComponent implements OnInit {
22
24
  enterPress: EventEmitter<any>;
23
25
  rows: number;
24
26
  width: string;
27
+ copyContent: boolean;
25
28
  options: any;
26
29
  optionValue: string;
27
30
  required: boolean;
@@ -34,6 +37,7 @@ export declare class TextComponent implements OnInit {
34
37
  onInfoClick(event: MouseEvent): void;
35
38
  private initFilter;
36
39
  private _filter;
40
+ copyText(): void;
37
41
  initControl(control: FormControl): void;
38
42
  changed(): void;
39
43
  leaved(): void;
@@ -42,5 +46,5 @@ export declare class TextComponent implements OnInit {
42
46
  control: FormControl<string>;
43
47
  validate(control: FormControl): string;
44
48
  static ɵfac: i0.ɵɵFactoryDeclaration<TextComponent, never>;
45
- static ɵcmp: i0.ɵɵComponentDeclaration<TextComponent, "spa-text", never, { "readonly": "readonly"; "hint": "hint"; "display": "display"; "placeholder": "placeholder"; "value": "value"; "format": "format"; "type": "type"; "rows": "rows"; "width": "width"; "options": "options"; "optionValue": "optionValue"; "required": "required"; "min": "min"; "max": "max"; "regex": "regex"; "suffix": "suffix"; "infoMessage": "infoMessage"; }, { "valueChange": "valueChange"; "leave": "leave"; "enterPress": "enterPress"; "infoClick": "infoClick"; }, never, never, false>;
49
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextComponent, "spa-text", never, { "readonly": "readonly"; "hint": "hint"; "display": "display"; "placeholder": "placeholder"; "value": "value"; "format": "format"; "type": "type"; "rows": "rows"; "width": "width"; "copyContent": "copyContent"; "options": "options"; "optionValue": "optionValue"; "required": "required"; "min": "min"; "max": "max"; "regex": "regex"; "suffix": "suffix"; "infoMessage": "infoMessage"; }, { "valueChange": "valueChange"; "leave": "leave"; "enterPress": "enterPress"; "infoClick": "infoClick"; }, never, never, false>;
46
50
  }
@@ -12,14 +12,15 @@ export declare class TilesComponent implements OnInit {
12
12
  ngOnChanges(): void;
13
13
  tiles: Tile[];
14
14
  config: TileConfig;
15
+ tileActionSelected: EventEmitter<Action>;
15
16
  data: any;
16
17
  reload: Subject<boolean>;
17
18
  tileClick: EventEmitter<any>;
19
+ tileUnClick: EventEmitter<any>;
18
20
  selectedTile: string;
19
- new: boolean;
20
- clicked(v: Tile): void;
21
- pop(x: any): void;
22
21
  loadData(action: Action, data: any): void;
22
+ clicked(clickedTile: Tile): void;
23
+ pop(x: any): void;
23
24
  static ɵfac: i0.ɵɵFactoryDeclaration<TilesComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<TilesComponent, "spa-tiles", never, { "config": "config"; "data": "data"; "reload": "reload"; }, { "tileClick": "tileClick"; }, never, never, false>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<TilesComponent, "spa-tiles", never, { "config": "config"; "data": "data"; "reload": "reload"; }, { "tileActionSelected": "tileActionSelected"; "tileClick": "tileClick"; "tileUnClick": "tileUnClick"; }, never, never, false>;
25
26
  }
@@ -56,12 +56,13 @@ import * as i54 from "./components/table-row/table-row.component";
56
56
  import * as i55 from "./components/table-action/table-action.component";
57
57
  import * as i56 from "./components/alert/alert.component";
58
58
  import * as i57 from "./components/email/email.component";
59
- import * as i58 from "./modules/spa-mat.module";
60
- import * as i59 from "@angular/common/http";
61
- import * as i60 from "./components/money/currency-input-mask.module";
62
- import * as i61 from "ngx-doc-viewer";
59
+ import * as i58 from "./components/page/page.component";
60
+ import * as i59 from "./modules/spa-mat.module";
61
+ import * as i60 from "@angular/common/http";
62
+ import * as i61 from "./components/money/currency-input-mask.module";
63
+ import * as i62 from "ngx-doc-viewer";
63
64
  export declare class TinSpaModule {
64
65
  static ɵfac: i0.ɵɵFactoryDeclaration<TinSpaModule, never>;
65
- 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.inviteDialog, typeof i31.TenantsComponent, typeof i32.BugComponent, typeof i33.MembershipComponent, typeof i34.PlansComponent, typeof i35.CustomersComponent, typeof i36.InventoryComponent, typeof i37.quantityDialog, typeof i38.AccountsComponent, typeof i39.accountDialog, typeof i40.SuppliersComponent, typeof i41.TransactionsComponent, typeof i42.transactDialog, typeof i43.ListDialogComponent, typeof i44.TasksComponent, typeof i45.DepartmentsComponent, typeof i46.EmployeesComponent, typeof i47.PositionsComponent, typeof i48.GradesComponent, typeof i49.WelcomeComponent, typeof i50.InvitationsComponent, typeof i51.NotificationsComponent, typeof i52.InvitationsTableComponent, typeof i53.TableHeaderComponent, typeof i54.TableRowComponent, typeof i55.TableActionComponent, typeof i56.AlertComponent, typeof i57.EmailComponent], [typeof i58.SpaMatModule, typeof i59.HttpClientModule, typeof i60.CurrencyInputModule, typeof i61.NgxDocViewerModule], [typeof i1.TinSpaComponent, typeof i58.SpaMatModule, typeof i56.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 i43.ListDialogComponent, typeof i35.CustomersComponent, typeof i38.AccountsComponent, typeof i36.InventoryComponent, typeof i40.SuppliersComponent, typeof i41.TransactionsComponent, typeof i43.ListDialogComponent, typeof i44.TasksComponent, typeof i45.DepartmentsComponent, typeof i46.EmployeesComponent, typeof i47.PositionsComponent, typeof i48.GradesComponent, typeof i49.WelcomeComponent, typeof i57.EmailComponent]>;
66
+ 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.inviteDialog, typeof i31.TenantsComponent, typeof i32.BugComponent, typeof i33.MembershipComponent, typeof i34.PlansComponent, typeof i35.CustomersComponent, typeof i36.InventoryComponent, typeof i37.quantityDialog, typeof i38.AccountsComponent, typeof i39.accountDialog, typeof i40.SuppliersComponent, typeof i41.TransactionsComponent, typeof i42.transactDialog, typeof i43.ListDialogComponent, typeof i44.TasksComponent, typeof i45.DepartmentsComponent, typeof i46.EmployeesComponent, typeof i47.PositionsComponent, typeof i48.GradesComponent, typeof i49.WelcomeComponent, typeof i50.InvitationsComponent, typeof i51.NotificationsComponent, typeof i52.InvitationsTableComponent, typeof i53.TableHeaderComponent, typeof i54.TableRowComponent, typeof i55.TableActionComponent, typeof i56.AlertComponent, typeof i57.EmailComponent, typeof i58.PageComponent], [typeof i59.SpaMatModule, typeof i60.HttpClientModule, typeof i61.CurrencyInputModule, typeof i62.NgxDocViewerModule], [typeof i1.TinSpaComponent, typeof i59.SpaMatModule, typeof i56.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 i43.ListDialogComponent, typeof i35.CustomersComponent, typeof i38.AccountsComponent, typeof i36.InventoryComponent, typeof i40.SuppliersComponent, typeof i41.TransactionsComponent, typeof i43.ListDialogComponent, typeof i44.TasksComponent, typeof i45.DepartmentsComponent, typeof i46.EmployeesComponent, typeof i47.PositionsComponent, typeof i48.GradesComponent, typeof i49.WelcomeComponent, typeof i57.EmailComponent, typeof i58.PageComponent]>;
66
67
  static ɵinj: i0.ɵɵInjectorDeclaration<TinSpaModule>;
67
68
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tin-spa",
3
- "version": "2.4.1",
3
+ "version": "2.4.3",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^14.2.0",
6
6
  "@angular/core": "^14.2.0"
package/public-api.d.ts CHANGED
@@ -46,6 +46,7 @@ export * from './lib/components/viewer/viewerDialog.component';
46
46
  export * from './lib/components/nav-menu/nav-menu.component';
47
47
  export * from './lib/components/list-dialog/list-dialog.component';
48
48
  export * from './lib/components/email/email.component';
49
+ export * from './lib/components/page/page.component';
49
50
  export * from './lib/pages/transactions/transactions.component';
50
51
  export * from './lib/pages/tasks/tasks.component';
51
52
  export * from './lib/pages/departments/departments.component';