tin-spa 14.4.2 → 14.13.2
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/README.md +24 -24
- package/esm2020/lib/classes/Classes.mjs +57 -32
- package/esm2020/lib/classes/LibClasses.mjs +2 -1
- package/esm2020/lib/classes/TinCore.mjs +194 -44
- package/esm2020/lib/components/alert/alert.component.mjs +12 -6
- package/esm2020/lib/components/attach/attach.component.mjs +49 -33
- package/esm2020/lib/components/capsules/capsules.component.mjs +63 -0
- package/esm2020/lib/components/cards/cards.component.mjs +103 -0
- package/esm2020/lib/components/date/date.component.mjs +4 -4
- package/esm2020/lib/components/email/email.component.mjs +19 -17
- package/esm2020/lib/components/form/form.component.mjs +142 -57
- package/esm2020/lib/components/html/html.component.mjs +34 -0
- package/esm2020/lib/components/label/label.component.mjs +9 -3
- package/esm2020/lib/components/list-dialog/list-dialog.component.mjs +3 -3
- package/esm2020/lib/components/money/money.component.mjs +26 -9
- package/esm2020/lib/components/multi-select/multi-select.component.mjs +165 -0
- package/esm2020/lib/components/multi-text/multi-text.component.mjs +208 -0
- package/esm2020/lib/components/nav-menu/nav-menu.component.mjs +31 -27
- package/esm2020/lib/components/notes/notes.component.mjs +62 -0
- package/esm2020/lib/components/number/number.component.mjs +23 -8
- package/esm2020/lib/components/option/option.component.mjs +36 -14
- package/esm2020/lib/components/page/page.component.mjs +101 -0
- package/esm2020/lib/components/search/search.component.mjs +10 -5
- package/esm2020/lib/components/select/select.component.mjs +56 -129
- package/esm2020/lib/components/select-bitwise/select-bitwise.component.mjs +87 -0
- package/esm2020/lib/components/select-common/select-common.component.mjs +208 -0
- package/esm2020/lib/components/select-internal/select-internal.component.mjs +75 -0
- package/esm2020/lib/components/select-lite/select-lite.component.mjs +18 -0
- package/esm2020/lib/components/steps/steps.component.mjs +83 -61
- package/esm2020/lib/components/suffix/suffix.component.mjs +70 -0
- package/esm2020/lib/components/table/detailsDialog.component.mjs +169 -37
- package/esm2020/lib/components/table/table.component.mjs +136 -111
- package/esm2020/lib/components/table-action/table-action.component.mjs +42 -8
- package/esm2020/lib/components/table-header/table-header.component.mjs +12 -8
- package/esm2020/lib/components/table-internal/detailsDialog-internal.component.mjs +169 -35
- package/esm2020/lib/components/table-internal/table-internal.component.mjs +138 -112
- package/esm2020/lib/components/table-lite/detailsDialog-lite.component.mjs +371 -0
- package/esm2020/lib/components/table-lite/table-lite.component.mjs +441 -0
- package/esm2020/lib/components/table-row/table-row.component.mjs +23 -4
- package/esm2020/lib/components/tabs/tabs.component.mjs +83 -0
- package/esm2020/lib/components/text/text.component.mjs +85 -40
- package/esm2020/lib/components/tiles/tiles.component.mjs +32 -20
- package/esm2020/lib/components/viewer/viewer.component.mjs +7 -3
- package/esm2020/lib/components/viewer/viewerDialog.component.mjs +20 -13
- package/esm2020/lib/modules/admin/admin-routing.module.mjs +11 -1
- package/esm2020/lib/pages/accounts/accountDialog.component.mjs +1 -1
- package/esm2020/lib/pages/app-models/app-models.component.mjs +56 -0
- package/esm2020/lib/pages/approvals/approvals.component.mjs +19 -0
- package/esm2020/lib/pages/approvals-config/approvals-config.component.mjs +165 -0
- package/esm2020/lib/pages/bug/bug.component.mjs +3 -3
- package/esm2020/lib/pages/change-password/change-password.component.mjs +1 -1
- package/esm2020/lib/pages/create-account/create-account.component.mjs +1 -1
- package/esm2020/lib/pages/customers/customers.component.mjs +9 -48
- package/esm2020/lib/pages/departments/departments.component.mjs +2 -4
- package/esm2020/lib/pages/employees/employees.component.mjs +3 -4
- package/esm2020/lib/pages/grades/grades.component.mjs +3 -3
- package/esm2020/lib/pages/inventory/inventory.component.mjs +3 -3
- package/esm2020/lib/pages/inventory/quantityDialog.component.mjs +1 -1
- package/esm2020/lib/pages/invitations-table/invitations-table.component.mjs +11 -10
- package/esm2020/lib/pages/login/login.component.mjs +52 -14
- package/esm2020/lib/pages/logs/logs.component.mjs +27 -22
- package/esm2020/lib/pages/membership/membership.component.mjs +15 -19
- package/esm2020/lib/pages/notifications/notifications.component.mjs +82 -6
- package/esm2020/lib/pages/notifications-config/notifications-config.component.mjs +113 -0
- package/esm2020/lib/pages/plans/plans.component.mjs +16 -19
- package/esm2020/lib/pages/positions/positions.component.mjs +4 -4
- package/esm2020/lib/pages/profile/profile.component.mjs +4 -3
- package/esm2020/lib/pages/recover-account/recover-account.component.mjs +1 -1
- package/esm2020/lib/pages/roles/addRoleDialog.component.mjs +2 -2
- package/esm2020/lib/pages/roles/roles.component.mjs +77 -17
- package/esm2020/lib/pages/settings/settings.component.mjs +5 -13
- package/esm2020/lib/pages/signup/signup.component.mjs +1 -1
- package/esm2020/lib/pages/suppliers/suppliers.component.mjs +3 -31
- package/esm2020/lib/pages/tasks/tasks.component.mjs +9 -9
- package/esm2020/lib/pages/tenant-settings/tenant-settings.component.mjs +145 -72
- package/esm2020/lib/pages/tenants/tenants.component.mjs +10 -10
- package/esm2020/lib/pages/transactions/transactDialog.component.mjs +1 -1
- package/esm2020/lib/pages/transactions/transactions.component.mjs +3 -3
- package/esm2020/lib/pages/users/users.component.mjs +115 -92
- package/esm2020/lib/pages/welcome/welcome.component.mjs +9 -9
- package/esm2020/lib/select-context.directive.mjs +23 -0
- package/esm2020/lib/services/button.service.mjs +90 -30
- package/esm2020/lib/services/csv.service.mjs +1 -1
- package/esm2020/lib/services/datalib.service.mjs +504 -76
- package/esm2020/lib/services/dialog.service.mjs +24 -7
- package/esm2020/lib/services/notifications.service.mjs +33 -0
- package/esm2020/lib/services/table-config.service.mjs +55 -7
- package/esm2020/lib/tin-spa.module.mjs +47 -11
- package/esm2020/public-api.mjs +9 -1
- package/fesm2015/tin-spa.mjs +6333 -2671
- package/fesm2015/tin-spa.mjs.map +1 -1
- package/fesm2020/tin-spa.mjs +6492 -2770
- package/fesm2020/tin-spa.mjs.map +1 -1
- package/lib/classes/Classes.d.ts +233 -127
- package/lib/classes/LibClasses.d.ts +1 -0
- package/lib/classes/TinCore.d.ts +11 -3
- package/lib/components/attach/attach.component.d.ts +13 -6
- package/lib/components/capsules/capsules.component.d.ts +26 -0
- package/lib/components/cards/cards.component.d.ts +39 -0
- package/lib/components/email/email.component.d.ts +4 -3
- package/lib/components/form/form.component.d.ts +20 -11
- package/lib/components/html/html.component.d.ts +16 -0
- package/lib/components/label/label.component.d.ts +3 -1
- package/lib/components/money/money.component.d.ts +8 -1
- package/lib/components/multi-select/multi-select.component.d.ts +47 -0
- package/lib/components/multi-text/multi-text.component.d.ts +56 -0
- package/lib/components/nav-menu/nav-menu.component.d.ts +6 -2
- package/lib/components/notes/notes.component.d.ts +19 -0
- package/lib/components/number/number.component.d.ts +7 -1
- package/lib/components/option/option.component.d.ts +10 -2
- package/lib/components/page/page.component.d.ts +38 -0
- package/lib/components/search/search.component.d.ts +3 -1
- package/lib/components/select/select.component.d.ts +16 -37
- package/lib/components/select-bitwise/select-bitwise.component.d.ts +31 -0
- package/lib/components/select-common/select-common.component.d.ts +53 -0
- package/lib/components/select-internal/select-internal.component.d.ts +23 -0
- package/lib/components/select-lite/select-lite.component.d.ts +8 -0
- package/lib/components/steps/steps.component.d.ts +18 -9
- package/lib/components/suffix/suffix.component.d.ts +23 -0
- package/lib/components/table/detailsDialog.component.d.ts +24 -7
- package/lib/components/table/table.component.d.ts +15 -9
- package/lib/components/table-action/table-action.component.d.ts +4 -1
- package/lib/components/table-header/table-header.component.d.ts +3 -1
- package/lib/components/table-internal/detailsDialog-internal.component.d.ts +24 -7
- package/lib/components/table-internal/table-internal.component.d.ts +15 -9
- package/lib/components/table-lite/detailsDialog-lite.component.d.ts +81 -0
- package/lib/components/table-lite/table-lite.component.d.ts +91 -0
- package/lib/components/table-row/table-row.component.d.ts +4 -1
- package/lib/components/tabs/tabs.component.d.ts +32 -0
- package/lib/components/text/text.component.d.ts +16 -7
- package/lib/components/tiles/tiles.component.d.ts +4 -3
- package/lib/components/viewer/viewerDialog.component.d.ts +3 -1
- package/lib/pages/app-models/app-models.component.d.ts +15 -0
- package/lib/pages/approvals/approvals.component.d.ts +10 -0
- package/lib/pages/approvals-config/approvals-config.component.d.ts +24 -0
- package/lib/pages/customers/customers.component.d.ts +2 -8
- package/lib/pages/invitations-table/invitations-table.component.d.ts +1 -1
- package/lib/pages/login/login.component.d.ts +7 -1
- package/lib/pages/logs/logs.component.d.ts +2 -6
- package/lib/pages/membership/membership.component.d.ts +2 -6
- package/lib/pages/notifications/notifications.component.d.ts +9 -1
- package/lib/pages/notifications-config/notifications-config.component.d.ts +17 -0
- package/lib/pages/plans/plans.component.d.ts +2 -6
- package/lib/pages/roles/roles.component.d.ts +14 -2
- package/lib/pages/suppliers/suppliers.component.d.ts +1 -4
- package/lib/pages/tasks/tasks.component.d.ts +1 -1
- package/lib/pages/tenant-settings/tenant-settings.component.d.ts +12 -7
- package/lib/pages/tenants/tenants.component.d.ts +2 -2
- package/lib/pages/users/users.component.d.ts +8 -16
- package/lib/select-context.directive.d.ts +10 -0
- package/lib/services/button.service.d.ts +10 -7
- package/lib/services/datalib.service.d.ts +54 -10
- package/lib/services/dialog.service.d.ts +2 -2
- package/lib/services/notifications.service.d.ts +12 -0
- package/lib/services/table-config.service.d.ts +9 -1
- package/lib/tin-spa.module.d.ts +51 -33
- package/package.json +1 -1
- package/public-api.d.ts +8 -0
- package/esm2020/lib/pages/invitations/invitations.component.mjs +0 -14
- package/esm2020/lib/pages/tenant-settings/inviteDialog.component.mjs +0 -60
- package/lib/pages/invitations/invitations.component.d.ts +0 -8
- package/lib/pages/tenant-settings/inviteDialog.component.d.ts +0 -28
package/lib/tin-spa.module.d.ts
CHANGED
|
@@ -28,40 +28,58 @@ import * as i26 from "./components/search/search.component";
|
|
|
28
28
|
import * as i27 from "./components/viewer/viewer.component";
|
|
29
29
|
import * as i28 from "./components/viewer/viewerDialog.component";
|
|
30
30
|
import * as i29 from "./pages/tenant-settings/tenant-settings.component";
|
|
31
|
-
import * as i30 from "./pages/
|
|
32
|
-
import * as i31 from "./pages/
|
|
33
|
-
import * as i32 from "./pages/
|
|
34
|
-
import * as i33 from "./pages/
|
|
35
|
-
import * as i34 from "./pages/
|
|
36
|
-
import * as i35 from "./pages/
|
|
37
|
-
import * as i36 from "./pages/inventory/
|
|
38
|
-
import * as i37 from "./pages/
|
|
39
|
-
import * as i38 from "./pages/accounts/
|
|
40
|
-
import * as i39 from "./pages/
|
|
41
|
-
import * as i40 from "./pages/
|
|
42
|
-
import * as i41 from "./pages/transactions/
|
|
43
|
-
import * as i42 from "./
|
|
44
|
-
import * as i43 from "./
|
|
45
|
-
import * as i44 from "./pages/
|
|
46
|
-
import * as i45 from "./pages/
|
|
47
|
-
import * as i46 from "./pages/
|
|
48
|
-
import * as i47 from "./pages/
|
|
49
|
-
import * as i48 from "./pages/
|
|
50
|
-
import * as i49 from "./pages/
|
|
51
|
-
import * as i50 from "./pages/invitations/invitations.component";
|
|
52
|
-
import * as i51 from "./
|
|
53
|
-
import * as i52 from "./
|
|
54
|
-
import * as i53 from "./components/table-
|
|
55
|
-
import * as i54 from "./components/
|
|
56
|
-
import * as i55 from "./components/
|
|
57
|
-
import * as i56 from "./components/
|
|
58
|
-
import * as i57 from "./components/
|
|
59
|
-
import * as i58 from "./
|
|
60
|
-
import * as i59 from "
|
|
61
|
-
import * as i60 from "./
|
|
62
|
-
import * as i61 from "
|
|
31
|
+
import * as i30 from "./pages/tenants/tenants.component";
|
|
32
|
+
import * as i31 from "./pages/bug/bug.component";
|
|
33
|
+
import * as i32 from "./pages/membership/membership.component";
|
|
34
|
+
import * as i33 from "./pages/plans/plans.component";
|
|
35
|
+
import * as i34 from "./pages/customers/customers.component";
|
|
36
|
+
import * as i35 from "./pages/inventory/inventory.component";
|
|
37
|
+
import * as i36 from "./pages/inventory/quantityDialog.component";
|
|
38
|
+
import * as i37 from "./pages/accounts/accounts.component";
|
|
39
|
+
import * as i38 from "./pages/accounts/accountDialog.component";
|
|
40
|
+
import * as i39 from "./pages/suppliers/suppliers.component";
|
|
41
|
+
import * as i40 from "./pages/transactions/transactions.component";
|
|
42
|
+
import * as i41 from "./pages/transactions/transactDialog.component";
|
|
43
|
+
import * as i42 from "./components/list-dialog/list-dialog.component";
|
|
44
|
+
import * as i43 from "./pages/tasks/tasks.component";
|
|
45
|
+
import * as i44 from "./pages/departments/departments.component";
|
|
46
|
+
import * as i45 from "./pages/employees/employees.component";
|
|
47
|
+
import * as i46 from "./pages/positions/positions.component";
|
|
48
|
+
import * as i47 from "./pages/grades/grades.component";
|
|
49
|
+
import * as i48 from "./pages/welcome/welcome.component";
|
|
50
|
+
import * as i49 from "./pages/notifications/notifications.component";
|
|
51
|
+
import * as i50 from "./pages/invitations-table/invitations-table.component";
|
|
52
|
+
import * as i51 from "./components/table-header/table-header.component";
|
|
53
|
+
import * as i52 from "./components/table-row/table-row.component";
|
|
54
|
+
import * as i53 from "./components/table-action/table-action.component";
|
|
55
|
+
import * as i54 from "./components/alert/alert.component";
|
|
56
|
+
import * as i55 from "./components/email/email.component";
|
|
57
|
+
import * as i56 from "./components/page/page.component";
|
|
58
|
+
import * as i57 from "./components/select-common/select-common.component";
|
|
59
|
+
import * as i58 from "./components/select-internal/select-internal.component";
|
|
60
|
+
import * as i59 from "./components/suffix/suffix.component";
|
|
61
|
+
import * as i60 from "./select-context.directive";
|
|
62
|
+
import * as i61 from "./components/select-lite/select-lite.component";
|
|
63
|
+
import * as i62 from "./components/table-lite/table-lite.component";
|
|
64
|
+
import * as i63 from "./components/table-lite/detailsDialog-lite.component";
|
|
65
|
+
import * as i64 from "./pages/approvals/approvals.component";
|
|
66
|
+
import * as i65 from "./pages/approvals-config/approvals-config.component";
|
|
67
|
+
import * as i66 from "./components/multi-text/multi-text.component";
|
|
68
|
+
import * as i67 from "./components/multi-select/multi-select.component";
|
|
69
|
+
import * as i68 from "./components/select-bitwise/select-bitwise.component";
|
|
70
|
+
import * as i69 from "./pages/app-models/app-models.component";
|
|
71
|
+
import * as i70 from "./pages/notifications-config/notifications-config.component";
|
|
72
|
+
import * as i71 from "./components/html/html.component";
|
|
73
|
+
import * as i72 from "./components/notes/notes.component";
|
|
74
|
+
import * as i73 from "./components/capsules/capsules.component";
|
|
75
|
+
import * as i74 from "./components/cards/cards.component";
|
|
76
|
+
import * as i75 from "./components/tabs/tabs.component";
|
|
77
|
+
import * as i76 from "./modules/spa-mat.module";
|
|
78
|
+
import * as i77 from "@angular/common/http";
|
|
79
|
+
import * as i78 from "./components/money/currency-input-mask.module";
|
|
80
|
+
import * as i79 from "ngx-doc-viewer";
|
|
63
81
|
export declare class TinSpaModule {
|
|
64
82
|
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.
|
|
83
|
+
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.SelectBitwiseComponent, typeof i69.AppModelsComponent, typeof i70.NotificationsConfigComponent, typeof i71.HtmlComponent, typeof i72.NotesComponent, typeof i73.CapsulesComponent, typeof i74.CardsComponent, typeof i75.TabsComponent], [typeof i76.SpaMatModule, typeof i77.HttpClientModule, typeof i78.CurrencyInputModule, typeof i79.NgxDocViewerModule], [typeof i1.TinSpaComponent, typeof i76.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 i68.SelectBitwiseComponent, 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, typeof i71.HtmlComponent, typeof i72.NotesComponent, typeof i73.CapsulesComponent, typeof i75.TabsComponent]>;
|
|
66
84
|
static ɵinj: i0.ɵɵInjectorDeclaration<TinSpaModule>;
|
|
67
85
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -23,9 +23,12 @@ 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';
|
|
30
|
+
export * from './lib/components/multi-select/multi-select.component';
|
|
31
|
+
export * from './lib/components/select-bitwise/select-bitwise.component';
|
|
29
32
|
export * from './lib/components/attach/attach.component';
|
|
30
33
|
export * from './lib/components/check/check.component';
|
|
31
34
|
export * from './lib/components/money/money.component';
|
|
@@ -46,6 +49,11 @@ export * from './lib/components/viewer/viewerDialog.component';
|
|
|
46
49
|
export * from './lib/components/nav-menu/nav-menu.component';
|
|
47
50
|
export * from './lib/components/list-dialog/list-dialog.component';
|
|
48
51
|
export * from './lib/components/email/email.component';
|
|
52
|
+
export * from './lib/components/page/page.component';
|
|
53
|
+
export * from './lib/components/html/html.component';
|
|
54
|
+
export * from './lib/components/notes/notes.component';
|
|
55
|
+
export * from './lib/components/capsules/capsules.component';
|
|
56
|
+
export * from './lib/components/tabs/tabs.component';
|
|
49
57
|
export * from './lib/pages/transactions/transactions.component';
|
|
50
58
|
export * from './lib/pages/tasks/tasks.component';
|
|
51
59
|
export * from './lib/pages/departments/departments.component';
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Component } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class InvitationsComponent {
|
|
4
|
-
constructor() { }
|
|
5
|
-
ngOnInit() {
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
InvitationsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: InvitationsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
9
|
-
InvitationsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: InvitationsComponent, selector: "spa-invitations", ngImport: i0, template: "<p>invitations works!</p>\n", styles: [""] });
|
|
10
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: InvitationsComponent, decorators: [{
|
|
11
|
-
type: Component,
|
|
12
|
-
args: [{ selector: 'spa-invitations', template: "<p>invitations works!</p>\n" }]
|
|
13
|
-
}], ctorParameters: function () { return []; } });
|
|
14
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW52aXRhdGlvbnMuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdGluLXNwYS9zcmMvbGliL3BhZ2VzL2ludml0YXRpb25zL2ludml0YXRpb25zLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3Rpbi1zcGEvc3JjL2xpYi9wYWdlcy9pbnZpdGF0aW9ucy9pbnZpdGF0aW9ucy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFVLE1BQU0sZUFBZSxDQUFDOztBQU9sRCxNQUFNLE9BQU8sb0JBQW9CO0lBRS9CLGdCQUFnQixDQUFDO0lBRWpCLFFBQVE7SUFDUixDQUFDOztpSEFMVSxvQkFBb0I7cUdBQXBCLG9CQUFvQix1RENQakMsNkJBQ0E7MkZETWEsb0JBQW9CO2tCQUxoQyxTQUFTOytCQUNFLGlCQUFpQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ3NwYS1pbnZpdGF0aW9ucycsXG4gIHRlbXBsYXRlVXJsOiAnLi9pbnZpdGF0aW9ucy5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2ludml0YXRpb25zLmNvbXBvbmVudC5jc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBJbnZpdGF0aW9uc0NvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG5cbiAgY29uc3RydWN0b3IoKSB7IH1cblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgfVxuXG59XG4iLCI8cD5pbnZpdGF0aW9ucyB3b3JrcyE8L3A+XG4iXX0=
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
import { Component, Inject } from "@angular/core";
|
|
2
|
-
import { MAT_DIALOG_DATA } from "@angular/material/dialog";
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "../../services/loader.service";
|
|
5
|
-
import * as i2 from "../../services/message.service";
|
|
6
|
-
import * as i3 from "../../services/datalib.service";
|
|
7
|
-
import * as i4 from "@angular/material/dialog";
|
|
8
|
-
import * as i5 from "@angular/material/button";
|
|
9
|
-
import * as i6 from "../../components/text/text.component";
|
|
10
|
-
import * as i7 from "../../components/select/select.component";
|
|
11
|
-
export class inviteDialog {
|
|
12
|
-
constructor(loaderService, messageService, dataService, dialogRef, data) {
|
|
13
|
-
this.loaderService = loaderService;
|
|
14
|
-
this.messageService = messageService;
|
|
15
|
-
this.dataService = dataService;
|
|
16
|
-
this.dialogRef = dialogRef;
|
|
17
|
-
this.data = data;
|
|
18
|
-
this.isProcessing = false;
|
|
19
|
-
this.invited = false;
|
|
20
|
-
this.email = '';
|
|
21
|
-
this.roleID = 0;
|
|
22
|
-
this.link = "";
|
|
23
|
-
this.roles = [
|
|
24
|
-
{ roleName: 'Default', roleID: 1 },
|
|
25
|
-
];
|
|
26
|
-
}
|
|
27
|
-
ngOnInit() {
|
|
28
|
-
this.loaderService.isLoading.subscribe(x => this.isProcessing = x);
|
|
29
|
-
}
|
|
30
|
-
loadMeta() {
|
|
31
|
-
this.dataService.CallApi({ url: 'tenant/member_roles/x' }, "").subscribe((apiResponse) => {
|
|
32
|
-
this.roles = apiResponse.data;
|
|
33
|
-
});
|
|
34
|
-
}
|
|
35
|
-
submit() {
|
|
36
|
-
let invite = { email: this.email, roleID: this.roleID };
|
|
37
|
-
this.dataService.CallApi({ url: 'tenant/members?action=invite', method: 'post' }, invite).subscribe((apiResponse) => {
|
|
38
|
-
if (apiResponse.success) {
|
|
39
|
-
this.messageService.toast("Updated");
|
|
40
|
-
this.dialogRef.close("success");
|
|
41
|
-
// this.invited = true;
|
|
42
|
-
// let url = new URL(window.location.href);
|
|
43
|
-
// this.link = `${url.protocol}//${url.host}/login?code=` + apiResponse.message;
|
|
44
|
-
}
|
|
45
|
-
else {
|
|
46
|
-
this.messageService.toast(apiResponse.message);
|
|
47
|
-
}
|
|
48
|
-
});
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
inviteDialog.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: inviteDialog, deps: [{ token: i1.LoaderService }, { token: i2.MessageService }, { token: i3.DataServiceLib }, { token: i4.MatDialogRef }, { token: MAT_DIALOG_DATA }], target: i0.ɵɵFactoryTarget.Component });
|
|
52
|
-
inviteDialog.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: inviteDialog, selector: "app-addModel", ngImport: i0, template: "\r\n<div >\r\n <label style=\"font-size: 28px;\">Invite</label>\r\n</div>\r\n\r\n<mat-dialog-content class=\"mat-typography\">\r\n\r\n<div class=\"mt-3\" style=\"font-size:14px\">\r\n\r\n <div>\r\n <spa-text display=\"Email\" [(value)]=\"email\" ></spa-text>\r\n <spa-select display=\"Role\" [(value)]=\"roleID\" [options]=\"roles\" optionDisplay=\"roleName\" optionValue=\"roleID\" [defaultFirstValue]=\"true\"></spa-select>\r\n </div>\r\n</div>\r\n\r\n</mat-dialog-content>\r\n\r\n<mat-dialog-actions>\r\n <button [disabled]=\"isProcessing\" mat-stroked-button color=\"primary\" (click)=\"submit()\">Submit</button>\r\n <button mat-button mat-dialog-close>Cancel</button>\r\n</mat-dialog-actions>\r\n\r\n\r\n\r\n", styles: [".title{margin-top:1em;font-size:28px;font-weight:300}.subtitle{font-size:smaller}\n"], dependencies: [{ kind: "component", type: i5.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "directive", type: i4.MatDialogClose, selector: "[mat-dialog-close], [matDialogClose]", inputs: ["aria-label", "type", "mat-dialog-close", "matDialogClose"], exportAs: ["matDialogClose"] }, { kind: "directive", type: i4.MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }, { kind: "directive", type: i4.MatDialogActions, selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]", inputs: ["align"] }, { kind: "component", type: i6.TextComponent, selector: "spa-text", inputs: ["readonly", "hint", "display", "placeholder", "value", "format", "type", "rows", "width", "copyContent", "options", "optionValue", "required", "min", "max", "regex", "suffix", "infoMessage"], outputs: ["valueChange", "leave", "enterPress", "infoClick"] }, { kind: "component", type: i7.SelectComponent, selector: "spa-select", inputs: ["width", "readonly", "required", "defaultFirstValue", "readonlyMode", "hint", "placeholder", "multiple", "display", "value", "options", "masterOptions", "optionValue", "optionDisplay", "optionDisplayExtra", "nullable", "peekConfig", "infoMessage", "copyContent"], outputs: ["valueChange", "infoClick"] }] });
|
|
53
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: inviteDialog, decorators: [{
|
|
54
|
-
type: Component,
|
|
55
|
-
args: [{ selector: "app-addModel", template: "\r\n<div >\r\n <label style=\"font-size: 28px;\">Invite</label>\r\n</div>\r\n\r\n<mat-dialog-content class=\"mat-typography\">\r\n\r\n<div class=\"mt-3\" style=\"font-size:14px\">\r\n\r\n <div>\r\n <spa-text display=\"Email\" [(value)]=\"email\" ></spa-text>\r\n <spa-select display=\"Role\" [(value)]=\"roleID\" [options]=\"roles\" optionDisplay=\"roleName\" optionValue=\"roleID\" [defaultFirstValue]=\"true\"></spa-select>\r\n </div>\r\n</div>\r\n\r\n</mat-dialog-content>\r\n\r\n<mat-dialog-actions>\r\n <button [disabled]=\"isProcessing\" mat-stroked-button color=\"primary\" (click)=\"submit()\">Submit</button>\r\n <button mat-button mat-dialog-close>Cancel</button>\r\n</mat-dialog-actions>\r\n\r\n\r\n\r\n", styles: [".title{margin-top:1em;font-size:28px;font-weight:300}.subtitle{font-size:smaller}\n"] }]
|
|
56
|
-
}], ctorParameters: function () { return [{ type: i1.LoaderService }, { type: i2.MessageService }, { type: i3.DataServiceLib }, { type: i4.MatDialogRef }, { type: undefined, decorators: [{
|
|
57
|
-
type: Inject,
|
|
58
|
-
args: [MAT_DIALOG_DATA]
|
|
59
|
-
}] }]; } });
|
|
60
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW52aXRlRGlhbG9nLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3Rpbi1zcGEvc3JjL2xpYi9wYWdlcy90ZW5hbnQtc2V0dGluZ3MvaW52aXRlRGlhbG9nLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3Rpbi1zcGEvc3JjL2xpYi9wYWdlcy90ZW5hbnQtc2V0dGluZ3MvaW52aXRlRGlhbG9nLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE9BQU8sRUFBRSxTQUFTLEVBQVUsTUFBTSxFQUFhLE1BQU0sZUFBZSxDQUFDO0FBQ3JFLE9BQU8sRUFBZ0IsZUFBZSxFQUFFLE1BQU0sMEJBQTBCLENBQUM7Ozs7Ozs7OztBQVl6RSxNQUFNLE9BQU8sWUFBWTtJQUV2QixZQUFvQixhQUE0QixFQUFVLGNBQThCLEVBQVMsV0FBMkIsRUFBVSxTQUFxQyxFQUFrQyxJQUFJO1FBQTdMLGtCQUFhLEdBQWIsYUFBYSxDQUFlO1FBQVUsbUJBQWMsR0FBZCxjQUFjLENBQWdCO1FBQVMsZ0JBQVcsR0FBWCxXQUFXLENBQWdCO1FBQVUsY0FBUyxHQUFULFNBQVMsQ0FBNEI7UUFBa0MsU0FBSSxHQUFKLElBQUksQ0FBQTtRQU1qTixpQkFBWSxHQUFHLEtBQUssQ0FBQztRQUNyQixZQUFPLEdBQUcsS0FBSyxDQUFDO1FBQ2hCLFVBQUssR0FBRyxFQUFFLENBQUE7UUFDVixXQUFNLEdBQUcsQ0FBQyxDQUFBO1FBQ1YsU0FBSSxHQUFHLEVBQUUsQ0FBQztRQUVWLFVBQUssR0FBRztZQUNOLEVBQUMsUUFBUSxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUcsQ0FBQyxFQUFDO1NBQ2xDLENBQUE7SUFkb04sQ0FBQztJQUV0TixRQUFRO1FBQ04sSUFBSSxDQUFDLGFBQWEsQ0FBQyxTQUFTLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsSUFBSSxDQUFDLFlBQVksR0FBRyxDQUFDLENBQUMsQ0FBQztJQUNyRSxDQUFDO0lBWUQsUUFBUTtRQUNOLElBQUksQ0FBQyxXQUFXLENBQUMsT0FBTyxDQUFDLEVBQUUsR0FBRyxFQUFFLHVCQUF1QixFQUFFLEVBQUUsRUFBRSxDQUFDLENBQUMsU0FBUyxDQUFDLENBQUMsV0FBd0IsRUFBRSxFQUFFO1lBQ3BHLElBQUksQ0FBQyxLQUFLLEdBQUcsV0FBVyxDQUFDLElBQUksQ0FBQTtRQUMvQixDQUFDLENBQUMsQ0FBQztJQUNMLENBQUM7SUFFRCxNQUFNO1FBRUosSUFBSSxNQUFNLEdBQUcsRUFBQyxLQUFLLEVBQUcsSUFBSSxDQUFDLEtBQUssRUFBRyxNQUFNLEVBQUUsSUFBSSxDQUFDLE1BQU0sRUFBQyxDQUFBO1FBRXZELElBQUksQ0FBQyxXQUFXLENBQUMsT0FBTyxDQUFDLEVBQUUsR0FBRyxFQUFFLDhCQUE4QixFQUFFLE1BQU0sRUFBRSxNQUFNLEVBQUUsRUFBRSxNQUFNLENBQUMsQ0FBQyxTQUFTLENBQUMsQ0FBQyxXQUF3QixFQUFFLEVBQUU7WUFDL0gsSUFBSSxXQUFXLENBQUMsT0FBTyxFQUFDO2dCQUN0QixJQUFJLENBQUMsY0FBYyxDQUFDLEtBQUssQ0FBQyxTQUFTLENBQUMsQ0FBQztnQkFDckMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxLQUFLLENBQUMsU0FBUyxDQUFDLENBQUM7Z0JBRWhDLHVCQUF1QjtnQkFDdkIsMkNBQTJDO2dCQUMzQyxnRkFBZ0Y7YUFFakY7aUJBQUk7Z0JBQ0gsSUFBSSxDQUFDLGNBQWMsQ0FBQyxLQUFLLENBQUMsV0FBVyxDQUFDLE9BQU8sQ0FBQyxDQUFBO2FBQy9DO1FBQ0gsQ0FBQyxDQUFDLENBQUM7SUFDTCxDQUFDOzt5R0F6Q1UsWUFBWSx1SUFFOEosZUFBZTs2RkFGekwsWUFBWSxvRENkekIsdXRCQXdCQTsyRkRWYSxZQUFZO2tCQUx4QixTQUFTOytCQUNFLGNBQWM7OzBCQU1zSixNQUFNOzJCQUFDLGVBQWUiLCJzb3VyY2VzQ29udGVudCI6WyJcclxuaW1wb3J0IHsgQ29tcG9uZW50LCBPbkluaXQsIEluamVjdCwgVmlld0NoaWxkIH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuaW1wb3J0IHsgTWF0RGlhbG9nUmVmLCBNQVRfRElBTE9HX0RBVEEgfSBmcm9tIFwiQGFuZ3VsYXIvbWF0ZXJpYWwvZGlhbG9nXCI7XHJcbmltcG9ydCB7IE1lc3NhZ2VTZXJ2aWNlIH0gZnJvbSBcIi4uLy4uL3NlcnZpY2VzL21lc3NhZ2Uuc2VydmljZVwiO1xyXG5pbXBvcnQgeyBEYXRhU2VydmljZUxpYiB9IGZyb20gXCIuLi8uLi9zZXJ2aWNlcy9kYXRhbGliLnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgTG9hZGVyU2VydmljZSB9IGZyb20gXCIuLi8uLi9zZXJ2aWNlcy9sb2FkZXIuc2VydmljZVwiO1xyXG5pbXBvcnQgeyBBcGlSZXNwb25zZSB9IGZyb20gXCIuLi8uLi9jbGFzc2VzL0NsYXNzZXNcIjtcclxuXHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogXCJhcHAtYWRkTW9kZWxcIixcclxuICB0ZW1wbGF0ZVVybDogXCIuL2ludml0ZURpYWxvZy5jb21wb25lbnQuaHRtbFwiLFxyXG4gIHN0eWxlVXJsczogW1wiLi90ZW5hbnQtc2V0dGluZ3MuY29tcG9uZW50LmNzc1wiXSxcclxufSlcclxuZXhwb3J0IGNsYXNzIGludml0ZURpYWxvZyBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcblxyXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgbG9hZGVyU2VydmljZTogTG9hZGVyU2VydmljZSAscHJpdmF0ZSBtZXNzYWdlU2VydmljZTogTWVzc2FnZVNlcnZpY2UsIHB1YmxpYyBkYXRhU2VydmljZTogRGF0YVNlcnZpY2VMaWIsIHByaXZhdGUgZGlhbG9nUmVmOiBNYXREaWFsb2dSZWY8aW52aXRlRGlhbG9nPiwgQEluamVjdChNQVRfRElBTE9HX0RBVEEpIHB1YmxpYyBkYXRhKSB7IH1cclxuXHJcbiAgbmdPbkluaXQoKSB7XHJcbiAgICB0aGlzLmxvYWRlclNlcnZpY2UuaXNMb2FkaW5nLnN1YnNjcmliZSh4ID0+IHRoaXMuaXNQcm9jZXNzaW5nID0geCk7XHJcbiAgfVxyXG5cclxuICBpc1Byb2Nlc3NpbmcgPSBmYWxzZTtcclxuICBpbnZpdGVkID0gZmFsc2U7XHJcbiAgZW1haWwgPSAnJ1xyXG4gIHJvbGVJRCA9IDBcclxuICBsaW5rID0gXCJcIjtcclxuXHJcbiAgcm9sZXMgPSBbXHJcbiAgICB7cm9sZU5hbWUgOidEZWZhdWx0Jywgcm9sZUlEIDogMX0sXHJcbiAgXVxyXG5cclxuICBsb2FkTWV0YSgpIHtcclxuICAgIHRoaXMuZGF0YVNlcnZpY2UuQ2FsbEFwaSh7IHVybDogJ3RlbmFudC9tZW1iZXJfcm9sZXMveCcgfSwgXCJcIikuc3Vic2NyaWJlKChhcGlSZXNwb25zZTogQXBpUmVzcG9uc2UpID0+IHtcclxuICAgICAgdGhpcy5yb2xlcyA9IGFwaVJlc3BvbnNlLmRhdGFcclxuICAgIH0pO1xyXG4gIH1cclxuXHJcbiAgc3VibWl0KCl7XHJcblxyXG4gICAgbGV0IGludml0ZSA9IHtlbWFpbCA6IHRoaXMuZW1haWwgLCByb2xlSUQ6IHRoaXMucm9sZUlEfVxyXG5cclxuICAgIHRoaXMuZGF0YVNlcnZpY2UuQ2FsbEFwaSh7IHVybDogJ3RlbmFudC9tZW1iZXJzP2FjdGlvbj1pbnZpdGUnLCBtZXRob2Q6ICdwb3N0JyB9LCBpbnZpdGUpLnN1YnNjcmliZSgoYXBpUmVzcG9uc2U6IEFwaVJlc3BvbnNlKSA9PiB7XHJcbiAgICAgIGlmIChhcGlSZXNwb25zZS5zdWNjZXNzKXtcclxuICAgICAgICB0aGlzLm1lc3NhZ2VTZXJ2aWNlLnRvYXN0KFwiVXBkYXRlZFwiKTtcclxuICAgICAgICB0aGlzLmRpYWxvZ1JlZi5jbG9zZShcInN1Y2Nlc3NcIik7XHJcblxyXG4gICAgICAgIC8vIHRoaXMuaW52aXRlZCA9IHRydWU7XHJcbiAgICAgICAgLy8gbGV0IHVybCA9IG5ldyBVUkwod2luZG93LmxvY2F0aW9uLmhyZWYpO1xyXG4gICAgICAgIC8vIHRoaXMubGluayA9IGAke3VybC5wcm90b2NvbH0vLyR7dXJsLmhvc3R9L2xvZ2luP2NvZGU9YCArIGFwaVJlc3BvbnNlLm1lc3NhZ2U7XHJcblxyXG4gICAgICB9ZWxzZXtcclxuICAgICAgICB0aGlzLm1lc3NhZ2VTZXJ2aWNlLnRvYXN0KGFwaVJlc3BvbnNlLm1lc3NhZ2UpXHJcbiAgICAgIH1cclxuICAgIH0pO1xyXG4gIH1cclxufVxyXG4iLCJcclxuPGRpdiA+XHJcbiAgPGxhYmVsIHN0eWxlPVwiZm9udC1zaXplOiAyOHB4O1wiPkludml0ZTwvbGFiZWw+XHJcbjwvZGl2PlxyXG5cclxuPG1hdC1kaWFsb2ctY29udGVudCBjbGFzcz1cIm1hdC10eXBvZ3JhcGh5XCI+XHJcblxyXG48ZGl2IGNsYXNzPVwibXQtM1wiIHN0eWxlPVwiZm9udC1zaXplOjE0cHhcIj5cclxuXHJcbiAgPGRpdj5cclxuICAgIDxzcGEtdGV4dCBkaXNwbGF5PVwiRW1haWxcIiBbKHZhbHVlKV09XCJlbWFpbFwiID48L3NwYS10ZXh0PlxyXG4gICAgPHNwYS1zZWxlY3QgZGlzcGxheT1cIlJvbGVcIiBbKHZhbHVlKV09XCJyb2xlSURcIiBbb3B0aW9uc109XCJyb2xlc1wiIG9wdGlvbkRpc3BsYXk9XCJyb2xlTmFtZVwiIG9wdGlvblZhbHVlPVwicm9sZUlEXCIgW2RlZmF1bHRGaXJzdFZhbHVlXT1cInRydWVcIj48L3NwYS1zZWxlY3Q+XHJcbiAgPC9kaXY+XHJcbjwvZGl2PlxyXG5cclxuPC9tYXQtZGlhbG9nLWNvbnRlbnQ+XHJcblxyXG48bWF0LWRpYWxvZy1hY3Rpb25zPlxyXG4gIDxidXR0b24gW2Rpc2FibGVkXT1cImlzUHJvY2Vzc2luZ1wiIG1hdC1zdHJva2VkLWJ1dHRvbiBjb2xvcj1cInByaW1hcnlcIiAoY2xpY2spPVwic3VibWl0KClcIj5TdWJtaXQ8L2J1dHRvbj5cclxuICA8YnV0dG9uIG1hdC1idXR0b24gbWF0LWRpYWxvZy1jbG9zZT5DYW5jZWw8L2J1dHRvbj5cclxuPC9tYXQtZGlhbG9nLWFjdGlvbnM+XHJcblxyXG5cclxuXHJcbiJdfQ==
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class InvitationsComponent implements OnInit {
|
|
4
|
-
constructor();
|
|
5
|
-
ngOnInit(): void;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InvitationsComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InvitationsComponent, "spa-invitations", never, {}, {}, never, never, false>;
|
|
8
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { OnInit } from "@angular/core";
|
|
2
|
-
import { MatDialogRef } from "@angular/material/dialog";
|
|
3
|
-
import { MessageService } from "../../services/message.service";
|
|
4
|
-
import { DataServiceLib } from "../../services/datalib.service";
|
|
5
|
-
import { LoaderService } from "../../services/loader.service";
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class inviteDialog implements OnInit {
|
|
8
|
-
private loaderService;
|
|
9
|
-
private messageService;
|
|
10
|
-
dataService: DataServiceLib;
|
|
11
|
-
private dialogRef;
|
|
12
|
-
data: any;
|
|
13
|
-
constructor(loaderService: LoaderService, messageService: MessageService, dataService: DataServiceLib, dialogRef: MatDialogRef<inviteDialog>, data: any);
|
|
14
|
-
ngOnInit(): void;
|
|
15
|
-
isProcessing: boolean;
|
|
16
|
-
invited: boolean;
|
|
17
|
-
email: string;
|
|
18
|
-
roleID: number;
|
|
19
|
-
link: string;
|
|
20
|
-
roles: {
|
|
21
|
-
roleName: string;
|
|
22
|
-
roleID: number;
|
|
23
|
-
}[];
|
|
24
|
-
loadMeta(): void;
|
|
25
|
-
submit(): void;
|
|
26
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<inviteDialog, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<inviteDialog, "app-addModel", never, {}, {}, never, never, false>;
|
|
28
|
-
}
|