tin-spa 2.6.3 → 2.6.5

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 (45) hide show
  1. package/esm2020/lib/classes/Classes.mjs +1 -1
  2. package/esm2020/lib/classes/TinCore.mjs +3 -17
  3. package/esm2020/lib/components/form/form.component.mjs +35 -16
  4. package/esm2020/lib/components/multi-select/multi-select.component.mjs +165 -0
  5. package/esm2020/lib/components/multi-text/multi-text.component.mjs +54 -14
  6. package/esm2020/lib/components/option/option.component.mjs +7 -3
  7. package/esm2020/lib/components/search/search.component.mjs +3 -3
  8. package/esm2020/lib/components/select/select.component.mjs +3 -3
  9. package/esm2020/lib/components/select-common/select-common.component.mjs +16 -11
  10. package/esm2020/lib/components/select-internal/select-internal.component.mjs +3 -3
  11. package/esm2020/lib/components/select-lite/select-lite.component.mjs +3 -3
  12. package/esm2020/lib/components/table/detailsDialog.component.mjs +3 -3
  13. package/esm2020/lib/components/table-internal/detailsDialog-internal.component.mjs +3 -3
  14. package/esm2020/lib/components/table-lite/detailsDialog-lite.component.mjs +3 -3
  15. package/esm2020/lib/components/text/text.component.mjs +78 -28
  16. package/esm2020/lib/pages/accounts/accountDialog.component.mjs +1 -1
  17. package/esm2020/lib/pages/change-password/change-password.component.mjs +1 -1
  18. package/esm2020/lib/pages/create-account/create-account.component.mjs +1 -1
  19. package/esm2020/lib/pages/inventory/quantityDialog.component.mjs +1 -1
  20. package/esm2020/lib/pages/login/login.component.mjs +1 -1
  21. package/esm2020/lib/pages/notifications/notifications.component.mjs +5 -15
  22. package/esm2020/lib/pages/profile/profile.component.mjs +1 -1
  23. package/esm2020/lib/pages/recover-account/recover-account.component.mjs +1 -1
  24. package/esm2020/lib/pages/signup/signup.component.mjs +1 -1
  25. package/esm2020/lib/pages/transactions/transactDialog.component.mjs +1 -1
  26. package/esm2020/lib/pages/welcome/welcome.component.mjs +1 -1
  27. package/esm2020/lib/services/datalib.service.mjs +38 -4
  28. package/esm2020/lib/tin-spa.module.mjs +6 -3
  29. package/esm2020/public-api.mjs +2 -1
  30. package/fesm2015/tin-spa.mjs +473 -211
  31. package/fesm2015/tin-spa.mjs.map +1 -1
  32. package/fesm2020/tin-spa.mjs +484 -211
  33. package/fesm2020/tin-spa.mjs.map +1 -1
  34. package/lib/classes/Classes.d.ts +2 -0
  35. package/lib/components/form/form.component.d.ts +2 -3
  36. package/lib/components/multi-select/multi-select.component.d.ts +47 -0
  37. package/lib/components/multi-text/multi-text.component.d.ts +12 -2
  38. package/lib/components/option/option.component.d.ts +3 -1
  39. package/lib/components/select-common/select-common.component.d.ts +3 -2
  40. package/lib/components/text/text.component.d.ts +10 -2
  41. package/lib/pages/notifications/notifications.component.d.ts +0 -1
  42. package/lib/services/datalib.service.d.ts +5 -0
  43. package/lib/tin-spa.module.d.ts +6 -5
  44. package/package.json +1 -1
  45. package/public-api.d.ts +1 -0
@@ -44,6 +44,7 @@ export declare class Action {
44
44
  params?: any[];
45
45
  successMessage?: string;
46
46
  isFormData?: boolean;
47
+ forceRefresh?: boolean;
47
48
  }
48
49
  export declare class SearchConfig {
49
50
  fields: SearchField[];
@@ -110,6 +111,7 @@ export interface Field {
110
111
  options?: any[];
111
112
  optionDisplay?: string;
112
113
  optionValue?: string;
114
+ masterOptionValue?: string;
113
115
  defaultValue?: any;
114
116
  defaultFirstValue?: boolean;
115
117
  required?: boolean;
@@ -10,8 +10,6 @@ export declare class FormComponent implements OnInit {
10
10
  ngOnInit(): void;
11
11
  initializeCompositeFields(): void;
12
12
  getVisibleSubfields(field: Field): Field[];
13
- ngOnChanges(): void;
14
- ngAfterViewInit(): void;
15
13
  getVisibleFields(): Field[];
16
14
  testReadOnly(f: Field): boolean;
17
15
  dynamicSelectTemplate: TemplateRef<any>;
@@ -30,7 +28,8 @@ export declare class FormComponent implements OnInit {
30
28
  inputChange: EventEmitter<any>;
31
29
  selectChanged(field: Field): void;
32
30
  inputChanged(field: Field, value: any): void;
33
- updateChildOptions(masterField: Field): void;
31
+ updateChildOptions(masterFieldName: string): void;
32
+ private loadChildMasterOptions;
34
33
  buttonClicked(): void;
35
34
  processCall(button: Button): void;
36
35
  processForm(): void;
@@ -0,0 +1,47 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
3
+ import { MessageService } from '../../services/message.service';
4
+ import { Action } from '../../classes/Classes';
5
+ import { DataServiceLib } from '../../services/datalib.service';
6
+ import * as i0 from "@angular/core";
7
+ export declare class MultiSelectComponent implements OnInit {
8
+ private messageService;
9
+ private dataService;
10
+ constructor(messageService: MessageService, dataService: DataServiceLib);
11
+ display: string;
12
+ value: string;
13
+ valueChange: EventEmitter<string>;
14
+ readonly: boolean;
15
+ required: boolean;
16
+ hint: string;
17
+ options: any[];
18
+ optionDisplay: string;
19
+ optionValue: string;
20
+ infoMessage: string;
21
+ copyContent: boolean;
22
+ clearContent: boolean;
23
+ nullable: boolean;
24
+ placeholder: string;
25
+ width: string;
26
+ suffix: string;
27
+ loadAction: Action;
28
+ control: FormControl<any[]>;
29
+ selectedValues: any[];
30
+ ngOnInit(): void;
31
+ ngOnChanges(): void;
32
+ private initializeValues;
33
+ selectionChange(event: any): void;
34
+ private updateValue;
35
+ getOptionDisplay(value: any): string;
36
+ compareWith(v1: any, v2: any): boolean;
37
+ clear(): void;
38
+ copyValues(): void;
39
+ isHovered: boolean;
40
+ hoverChange: EventEmitter<boolean>;
41
+ onMouseEnter(): void;
42
+ onMouseLeave(): void;
43
+ refresh(event: MouseEvent): void;
44
+ getData(action: Action): void;
45
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectComponent, never>;
46
+ static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent, "spa-multi-select", never, { "display": "display"; "value": "value"; "readonly": "readonly"; "required": "required"; "hint": "hint"; "options": "options"; "optionDisplay": "optionDisplay"; "optionValue": "optionValue"; "infoMessage": "infoMessage"; "copyContent": "copyContent"; "clearContent": "clearContent"; "nullable": "nullable"; "placeholder": "placeholder"; "width": "width"; "suffix": "suffix"; "loadAction": "loadAction"; }, { "valueChange": "valueChange"; "hoverChange": "hoverChange"; }, never, never, false>;
47
+ }
@@ -4,10 +4,13 @@ import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
4
4
  import { MatChipInputEvent } from '@angular/material/chips';
5
5
  import { Observable } from 'rxjs';
6
6
  import { MessageService } from '../../services/message.service';
7
+ import { Action } from '../../classes/Classes';
8
+ import { DataServiceLib } from '../../services/datalib.service';
7
9
  import * as i0 from "@angular/core";
8
10
  export declare class MultiTextComponent implements OnInit {
9
11
  private messageService;
10
- constructor(messageService: MessageService);
12
+ private dataService;
13
+ constructor(messageService: MessageService, dataService: DataServiceLib);
11
14
  textInput: ElementRef<HTMLInputElement>;
12
15
  display: string;
13
16
  value: string;
@@ -23,6 +26,7 @@ export declare class MultiTextComponent implements OnInit {
23
26
  options: any[];
24
27
  optionDisplay: string;
25
28
  optionValue: string;
29
+ loadAction: Action;
26
30
  values: string[];
27
31
  control: FormControl<string>;
28
32
  filteredOptions: Observable<any[]>;
@@ -41,6 +45,12 @@ export declare class MultiTextComponent implements OnInit {
41
45
  clear(): void;
42
46
  getDisplayValue(value: string): string;
43
47
  copyValues(): void;
48
+ isHovered: boolean;
49
+ hoverChange: EventEmitter<boolean>;
50
+ onMouseEnter(): void;
51
+ onMouseLeave(): void;
52
+ refresh(event: MouseEvent): void;
53
+ getData(action: Action): void;
44
54
  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>;
55
+ 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"; "loadAction": "loadAction"; }, { "valueChange": "valueChange"; "hoverChange": "hoverChange"; }, never, never, false>;
46
56
  }
@@ -1,5 +1,6 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { MessageService } from '../../services/message.service';
3
+ import { Action } from '../../classes/Classes';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class OptionComponent implements OnInit {
5
6
  private messageService;
@@ -18,6 +19,7 @@ export declare class OptionComponent implements OnInit {
18
19
  infoMessage: string;
19
20
  copyContent: boolean;
20
21
  suffix: string;
22
+ loadAction: Action;
21
23
  valueChange: EventEmitter<any>;
22
24
  enterPress: EventEmitter<any>;
23
25
  changed(): void;
@@ -26,5 +28,5 @@ export declare class OptionComponent implements OnInit {
26
28
  resetValue(): void;
27
29
  onInfoClick(event: MouseEvent): void;
28
30
  static ɵfac: i0.ɵɵFactoryDeclaration<OptionComponent, never>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<OptionComponent, "spa-option", never, { "options": "options"; "optionValue": "optionValue"; "optionDisplay": "optionDisplay"; "readonly": "readonly"; "type": "type"; "value": "value"; "display": "display"; "show": "show"; "required": "required"; "infoMessage": "infoMessage"; "copyContent": "copyContent"; "suffix": "suffix"; }, { "valueChange": "valueChange"; "enterPress": "enterPress"; }, never, never, false>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<OptionComponent, "spa-option", never, { "options": "options"; "optionValue": "optionValue"; "optionDisplay": "optionDisplay"; "readonly": "readonly"; "type": "type"; "value": "value"; "display": "display"; "show": "show"; "required": "required"; "infoMessage": "infoMessage"; "copyContent": "copyContent"; "suffix": "suffix"; "loadAction": "loadAction"; }, { "valueChange": "valueChange"; "enterPress": "enterPress"; }, never, never, false>;
30
32
  }
@@ -23,6 +23,7 @@ export declare class SelectCommonComponent implements OnInit {
23
23
  value: any;
24
24
  options: any;
25
25
  masterOptions: any;
26
+ masterField: string;
26
27
  optionValue: string;
27
28
  optionDisplay: string;
28
29
  optionDisplayExtra: string;
@@ -36,7 +37,7 @@ export declare class SelectCommonComponent implements OnInit {
36
37
  onMouseEnter(): void;
37
38
  onMouseLeave(): void;
38
39
  refresh(event: MouseEvent): void;
39
- getData(): void;
40
+ getData(loadAction: Action): void;
40
41
  static ɵfac: i0.ɵɵFactoryDeclaration<SelectCommonComponent, never>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<SelectCommonComponent, "spa-select-common", 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"; "infoMessage": "infoMessage"; "copyContent": "copyContent"; "loadAction": "loadAction"; }, { "valueChange": "valueChange"; "hoverChange": "hoverChange"; }, never, ["[additionalButtons]"], false>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<SelectCommonComponent, "spa-select-common", 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"; "masterField": "masterField"; "optionValue": "optionValue"; "optionDisplay": "optionDisplay"; "optionDisplayExtra": "optionDisplayExtra"; "nullable": "nullable"; "infoMessage": "infoMessage"; "copyContent": "copyContent"; "loadAction": "loadAction"; }, { "valueChange": "valueChange"; "hoverChange": "hoverChange"; }, never, ["[additionalButtons]"], false>;
42
43
  }
@@ -1,9 +1,12 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { FormControl } from '@angular/forms';
3
3
  import { Observable } from 'rxjs';
4
+ import { Action } from '../../classes/Classes';
5
+ import { DataServiceLib } from '../../services/datalib.service';
4
6
  import * as i0 from "@angular/core";
5
7
  export declare class TextComponent implements OnInit {
6
- constructor();
8
+ private dataService;
9
+ constructor(dataService: DataServiceLib);
7
10
  ngOnInit(): void;
8
11
  ngAfterViewInit(): void;
9
12
  filteredOptions: Observable<string[]>;
@@ -25,7 +28,9 @@ export declare class TextComponent implements OnInit {
25
28
  copyContent: boolean;
26
29
  clearContent: boolean;
27
30
  options: any;
31
+ optionDisplay: string;
28
32
  optionValue: string;
33
+ loadAction: Action;
29
34
  required: boolean;
30
35
  min: number;
31
36
  max: number;
@@ -38,13 +43,16 @@ export declare class TextComponent implements OnInit {
38
43
  private initFilter;
39
44
  private _filter;
40
45
  initControl(control: FormControl): void;
46
+ getDisplayValue(value: any): string;
41
47
  changed(): void;
42
48
  leaved(): void;
43
49
  clear(): void;
44
50
  enterPressed(): void;
51
+ refresh(event: MouseEvent): void;
52
+ getData(action: Action): void;
45
53
  myControl: FormControl<string>;
46
54
  control: FormControl<string>;
47
55
  validate(control: FormControl): string;
48
56
  static ɵfac: i0.ɵɵFactoryDeclaration<TextComponent, never>;
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"; "clearContent": "clearContent"; "options": "options"; "optionValue": "optionValue"; "required": "required"; "min": "min"; "max": "max"; "regex": "regex"; "suffix": "suffix"; "infoMessage": "infoMessage"; }, { "valueChange": "valueChange"; "leave": "leave"; "enterPress": "enterPress"; }, never, never, false>;
57
+ 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"; "clearContent": "clearContent"; "options": "options"; "optionDisplay": "optionDisplay"; "optionValue": "optionValue"; "loadAction": "loadAction"; "required": "required"; "min": "min"; "max": "max"; "regex": "regex"; "suffix": "suffix"; "infoMessage": "infoMessage"; }, { "valueChange": "valueChange"; "leave": "leave"; "enterPress": "enterPress"; }, never, never, false>;
50
58
  }
@@ -8,7 +8,6 @@ export declare class NotificationsComponent implements OnInit {
8
8
  private notificationsService;
9
9
  constructor(dataService: DataServiceLib, notificationsService: NotificationsService);
10
10
  ngOnInit(): void;
11
- loadRoles(): void;
12
11
  createDialog: DetailsDialogConfig;
13
12
  notificationsTableConfig: TableConfig;
14
13
  actionClicked(x: any): void;
@@ -52,7 +52,12 @@ export declare class DataServiceLib {
52
52
  departmentFormConfig: FormConfig;
53
53
  editDepartmentButton: Button;
54
54
  departmentTableConfig: TableConfig;
55
+ private listCache;
56
+ private cacheDuration;
57
+ private cacheTimestamps;
55
58
  CallApi(action: Action, data?: any): Observable<any>;
59
+ private handleListCall;
60
+ invalidateListCache(entityUrl: string): void;
56
61
  CheckWelcomed(path?: string): void;
57
62
  Navigate(path: string): void;
58
63
  NavigateWithValue(path: string, value: string): void;
@@ -65,12 +65,13 @@ 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
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";
68
+ import * as i67 from "./components/multi-select/multi-select.component";
69
+ import * as i68 from "./modules/spa-mat.module";
70
+ import * as i69 from "@angular/common/http";
71
+ import * as i70 from "./components/money/currency-input-mask.module";
72
+ import * as i71 from "ngx-doc-viewer";
72
73
  export declare class TinSpaModule {
73
74
  static ɵfac: i0.ɵɵFactoryDeclaration<TinSpaModule, never>;
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]>;
75
+ 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.MultiSelectComponent], [typeof i68.SpaMatModule, typeof i69.HttpClientModule, typeof i70.CurrencyInputModule, typeof i71.NgxDocViewerModule], [typeof i1.TinSpaComponent, typeof i68.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 i67.MultiSelectComponent, 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]>;
75
76
  static ɵinj: i0.ɵɵInjectorDeclaration<TinSpaModule>;
76
77
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tin-spa",
3
- "version": "2.6.3",
3
+ "version": "2.6.5",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^14.2.0",
6
6
  "@angular/core": "^14.2.0"
package/public-api.d.ts CHANGED
@@ -27,6 +27,7 @@ export * from './lib/components/multi-text/multi-text.component';
27
27
  export * from './lib/components/label/label.component';
28
28
  export * from './lib/components/datetime/datetime.component';
29
29
  export * from './lib/components/select/select.component';
30
+ export * from './lib/components/multi-select/multi-select.component';
30
31
  export * from './lib/components/attach/attach.component';
31
32
  export * from './lib/components/check/check.component';
32
33
  export * from './lib/components/money/money.component';