ps-toolkit-ui 1.21.39 → 1.21.42
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/fesm2022/ps-toolkit-ui.mjs +95 -46
- package/fesm2022/ps-toolkit-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/ps-toolkit-ui.d.ts +266 -266
package/package.json
CHANGED
package/types/ps-toolkit-ui.d.ts
CHANGED
|
@@ -1,107 +1,14 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { OnInit,
|
|
2
|
+
import { OnInit, EventEmitter, ElementRef, OnDestroy, ModuleWithProviders } from '@angular/core';
|
|
3
|
+
import { Chart } from 'highcharts';
|
|
3
4
|
import * as i56 from '@angular/router';
|
|
4
5
|
import { Router } from '@angular/router';
|
|
5
|
-
import * as rxjs from 'rxjs';
|
|
6
|
-
import { Chart } from 'highcharts';
|
|
7
6
|
import moment from 'jalali-moment';
|
|
8
|
-
import * as
|
|
7
|
+
import * as rxjs from 'rxjs';
|
|
8
|
+
import * as i44 from '@angular/common';
|
|
9
9
|
import * as i57 from '@angular/forms';
|
|
10
10
|
import * as i58 from 'ckeditor4-angular';
|
|
11
11
|
|
|
12
|
-
declare class SidebarClass {
|
|
13
|
-
constructor(l: (k: any, v?: any) => string, id: string, name: string, controller: string, action: string, url: string, icon: string, children?: SidebarClass[]);
|
|
14
|
-
l: (k: any, v?: any) => string;
|
|
15
|
-
controller: string;
|
|
16
|
-
action: string;
|
|
17
|
-
url: string;
|
|
18
|
-
id: string;
|
|
19
|
-
name: string;
|
|
20
|
-
icon: string;
|
|
21
|
-
count: number;
|
|
22
|
-
countAll: number;
|
|
23
|
-
children: SidebarClass[];
|
|
24
|
-
active: boolean;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
declare class PsToolkitUiConfigService {
|
|
28
|
-
environment: any;
|
|
29
|
-
strings: any;
|
|
30
|
-
currentLang: string;
|
|
31
|
-
constructor(environment: any, strings: any, currentLang: string);
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
declare class SidebarItemComponent {
|
|
35
|
-
config: PsToolkitUiConfigService;
|
|
36
|
-
item: SidebarClass;
|
|
37
|
-
i: number;
|
|
38
|
-
base: boolean;
|
|
39
|
-
currentSidebar: any;
|
|
40
|
-
l: (k: any, v?: any) => string;
|
|
41
|
-
constructor(config: PsToolkitUiConfigService);
|
|
42
|
-
openClose(e: any): void;
|
|
43
|
-
isActive(item: SidebarClass): boolean;
|
|
44
|
-
closeSidebar(): void;
|
|
45
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarItemComponent, never>;
|
|
46
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarItemComponent, "lib-sidebar-item", never, { "item": { "alias": "item"; "required": false; }; "i": { "alias": "i"; "required": false; }; "base": { "alias": "base"; "required": false; }; "currentSidebar": { "alias": "currentSidebar"; "required": false; }; }, {}, never, never, false, never>;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
declare class CurrentDataClass {
|
|
50
|
-
constructor(data?: any);
|
|
51
|
-
user: any;
|
|
52
|
-
permissions: any[];
|
|
53
|
-
modules: any[];
|
|
54
|
-
software: {
|
|
55
|
-
Version: string;
|
|
56
|
-
};
|
|
57
|
-
setting: any;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
declare class SidebarService {
|
|
61
|
-
private countSource;
|
|
62
|
-
private countAllSource;
|
|
63
|
-
currentCount: rxjs.Observable<number>;
|
|
64
|
-
currentCountAll: rxjs.Observable<number>;
|
|
65
|
-
constructor();
|
|
66
|
-
changeCount(count: number): void;
|
|
67
|
-
changeCountAll(countAll: number): void;
|
|
68
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarService, never>;
|
|
69
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<SidebarService>;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
declare class SidebarComponent implements OnInit {
|
|
73
|
-
config: PsToolkitUiConfigService;
|
|
74
|
-
private router;
|
|
75
|
-
private service;
|
|
76
|
-
currentData: CurrentDataClass;
|
|
77
|
-
sidebar: SidebarClass[];
|
|
78
|
-
currentSidebar: any;
|
|
79
|
-
countItems: number;
|
|
80
|
-
l: (k: any, v?: any) => string;
|
|
81
|
-
constructor(config: PsToolkitUiConfigService, router: Router, service: SidebarService);
|
|
82
|
-
setActive(): void;
|
|
83
|
-
ngOnInit(): void;
|
|
84
|
-
getSidebar(parentId?: string): SidebarClass[];
|
|
85
|
-
getSidebarActive(item: SidebarClass[], active: any): SidebarClass;
|
|
86
|
-
toggleSidebar(): void;
|
|
87
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarComponent, never>;
|
|
88
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarComponent, "lib-sidebar", never, { "currentData": { "alias": "currentData"; "required": false; }; }, {}, never, never, false, never>;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
declare class SubHeaderComponent {
|
|
92
|
-
constructor();
|
|
93
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SubHeaderComponent, never>;
|
|
94
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SubHeaderComponent, "lib-sub-header", never, {}, {}, never, never, false, never>;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
declare class FooterComponent {
|
|
98
|
-
config: PsToolkitUiConfigService;
|
|
99
|
-
l: (k: any, v?: any) => string;
|
|
100
|
-
constructor(config: PsToolkitUiConfigService);
|
|
101
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FooterComponent, never>;
|
|
102
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "lib-footer", never, {}, {}, never, never, false, never>;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
12
|
declare class EnumUtils {
|
|
106
13
|
static getValues(enumObj: any): any[];
|
|
107
14
|
static getKeyByValue(enumObj: any, v: any): any[];
|
|
@@ -666,174 +573,6 @@ declare class AccordionRowClass {
|
|
|
666
573
|
open(): void;
|
|
667
574
|
}
|
|
668
575
|
|
|
669
|
-
declare class StepsClass {
|
|
670
|
-
constructor(environment: any, l: (k: any, v?: any) => string);
|
|
671
|
-
environment: any;
|
|
672
|
-
l: (k: any, v?: any) => string;
|
|
673
|
-
items: StepsItemClass[];
|
|
674
|
-
activeAll: boolean;
|
|
675
|
-
isDone: boolean;
|
|
676
|
-
updateAccess: boolean;
|
|
677
|
-
viewAccess: boolean;
|
|
678
|
-
onDone: () => void;
|
|
679
|
-
onLoadStep: (s: StepsItemClass) => void;
|
|
680
|
-
getCurrent(): number;
|
|
681
|
-
getActive(): number;
|
|
682
|
-
loadStep(s: StepsItemClass): void;
|
|
683
|
-
}
|
|
684
|
-
declare class StepsItemClass {
|
|
685
|
-
id: number;
|
|
686
|
-
name: string;
|
|
687
|
-
icon: string;
|
|
688
|
-
url: string;
|
|
689
|
-
active: boolean;
|
|
690
|
-
constructor(id: number, name: string, icon?: string, url?: string, active?: boolean);
|
|
691
|
-
title: string;
|
|
692
|
-
current: boolean;
|
|
693
|
-
description: string;
|
|
694
|
-
form: FormClass;
|
|
695
|
-
formType: any;
|
|
696
|
-
onClick: (item: any) => void;
|
|
697
|
-
onDelete: (item: any) => void;
|
|
698
|
-
}
|
|
699
|
-
|
|
700
|
-
declare class StepsComponent implements OnInit {
|
|
701
|
-
steps: StepsClass;
|
|
702
|
-
saveNext: InputClass;
|
|
703
|
-
editNext: InputClass;
|
|
704
|
-
saveDone: InputClass;
|
|
705
|
-
editDone: InputClass;
|
|
706
|
-
previous: InputClass;
|
|
707
|
-
constructor();
|
|
708
|
-
changeStep(s: StepsItemClass): void;
|
|
709
|
-
onDelete(s: StepsItemClass): void;
|
|
710
|
-
ngOnInit(): void;
|
|
711
|
-
nextStep(btn: InputClass, done?: boolean): void;
|
|
712
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<StepsComponent, never>;
|
|
713
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StepsComponent, "lib-steps", never, { "steps": { "alias": "steps"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
714
|
-
}
|
|
715
|
-
|
|
716
|
-
declare class HeaderClass {
|
|
717
|
-
constructor(environment: any, l: (k: any, v?: any) => string);
|
|
718
|
-
username: string;
|
|
719
|
-
info: string;
|
|
720
|
-
buttons: InputClass[];
|
|
721
|
-
logout: (btn: any) => void;
|
|
722
|
-
}
|
|
723
|
-
|
|
724
|
-
declare class HeaderComponent {
|
|
725
|
-
config: PsToolkitUiConfigService;
|
|
726
|
-
header: HeaderClass;
|
|
727
|
-
get type(): typeof InputType;
|
|
728
|
-
constructor(config: PsToolkitUiConfigService);
|
|
729
|
-
showUserDropDown(e: any): void;
|
|
730
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderComponent, never>;
|
|
731
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "lib-header", never, { "header": { "alias": "header"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
732
|
-
}
|
|
733
|
-
|
|
734
|
-
declare class TooltipComponent {
|
|
735
|
-
text: string;
|
|
736
|
-
position: string;
|
|
737
|
-
constructor();
|
|
738
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipComponent, never>;
|
|
739
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "lib-tooltip", never, { "text": { "alias": "text"; "required": false; }; "position": { "alias": "position"; "required": false; }; }, {}, never, never, false, never>;
|
|
740
|
-
}
|
|
741
|
-
|
|
742
|
-
declare class LayoutComponent {
|
|
743
|
-
currentData: CurrentDataClass;
|
|
744
|
-
header: HeaderClass;
|
|
745
|
-
constructor();
|
|
746
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutComponent, never>;
|
|
747
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutComponent, "lib-layout", never, { "currentData": { "alias": "currentData"; "required": false; }; "header": { "alias": "header"; "required": false; }; }, {}, never, ["[slot=sidebar]", "[slot=header]"], false, never>;
|
|
748
|
-
}
|
|
749
|
-
|
|
750
|
-
declare class LoadingComponent {
|
|
751
|
-
l: (k: any, v?: any) => string;
|
|
752
|
-
constructor(config: PsToolkitUiConfigService);
|
|
753
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingComponent, never>;
|
|
754
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LoadingComponent, "lib-loading", never, {}, {}, never, never, false, never>;
|
|
755
|
-
}
|
|
756
|
-
|
|
757
|
-
declare class NotfoundComponent {
|
|
758
|
-
config: PsToolkitUiConfigService;
|
|
759
|
-
back: InputClass;
|
|
760
|
-
l: (k: any, v?: any) => string;
|
|
761
|
-
constructor(config: PsToolkitUiConfigService);
|
|
762
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NotfoundComponent, never>;
|
|
763
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NotfoundComponent, "lib-notfound", never, {}, {}, never, never, false, never>;
|
|
764
|
-
}
|
|
765
|
-
|
|
766
|
-
declare class CalendarComponent {
|
|
767
|
-
config: PsToolkitUiConfigService;
|
|
768
|
-
state: string;
|
|
769
|
-
months: any[];
|
|
770
|
-
active: moment.Moment;
|
|
771
|
-
previousDays: DayClass[];
|
|
772
|
-
nextDays: DayClass[];
|
|
773
|
-
days: DayClass[];
|
|
774
|
-
todayDay: number;
|
|
775
|
-
todayMonth: number;
|
|
776
|
-
todayYear: number;
|
|
777
|
-
l: (k: any, v?: any) => string;
|
|
778
|
-
constructor(config: PsToolkitUiConfigService);
|
|
779
|
-
changeState(s: string): void;
|
|
780
|
-
getYears(): number[];
|
|
781
|
-
getActiveMonth(): string;
|
|
782
|
-
add(c: number): void;
|
|
783
|
-
changeMonth(c: number): void;
|
|
784
|
-
changeYear(c: number): void;
|
|
785
|
-
setDate(): void;
|
|
786
|
-
isToday(m: moment.Moment, d: number): boolean;
|
|
787
|
-
parseInt(n: any): number;
|
|
788
|
-
setActive(m: any): void;
|
|
789
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarComponent, never>;
|
|
790
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "lib-calendar", never, {}, {}, never, never, false, never>;
|
|
791
|
-
}
|
|
792
|
-
|
|
793
|
-
declare class ClockComponent implements OnInit, OnDestroy {
|
|
794
|
-
clockInterval: any;
|
|
795
|
-
active: moment.Moment;
|
|
796
|
-
constructor();
|
|
797
|
-
ngOnInit(): void;
|
|
798
|
-
ngOnDestroy(): void;
|
|
799
|
-
clockUpdate(): void;
|
|
800
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ClockComponent, never>;
|
|
801
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ClockComponent, "lib-clock", never, {}, {}, never, never, false, never>;
|
|
802
|
-
}
|
|
803
|
-
|
|
804
|
-
declare class LoginClass {
|
|
805
|
-
constructor(l: (k: any, v?: any) => string, type: string);
|
|
806
|
-
modal: ModalClass;
|
|
807
|
-
type: string;
|
|
808
|
-
l: (k: any, v?: any) => string;
|
|
809
|
-
steps: LoginStepClass[];
|
|
810
|
-
active: number;
|
|
811
|
-
onSuccess: (result: any) => void;
|
|
812
|
-
sendCodeUrl: string;
|
|
813
|
-
loginUrl: string;
|
|
814
|
-
rules: string;
|
|
815
|
-
setCookie(r: any): void;
|
|
816
|
-
showModal(): void;
|
|
817
|
-
}
|
|
818
|
-
declare class LoginStepClass {
|
|
819
|
-
constructor(form: FormClass);
|
|
820
|
-
form: FormClass;
|
|
821
|
-
show(result?: any): void;
|
|
822
|
-
}
|
|
823
|
-
|
|
824
|
-
declare class LoginComponent implements OnInit {
|
|
825
|
-
config: PsToolkitUiConfigService;
|
|
826
|
-
login: LoginClass;
|
|
827
|
-
loginTemplate: string;
|
|
828
|
-
mobile: InputClass;
|
|
829
|
-
username: InputClass;
|
|
830
|
-
rulesModal: ModalClass;
|
|
831
|
-
constructor(config: PsToolkitUiConfigService);
|
|
832
|
-
ngOnInit(): void;
|
|
833
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LoginComponent, never>;
|
|
834
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LoginComponent, "lib-login", never, { "login": { "alias": "login"; "required": false; }; "loginTemplate": { "alias": "loginTemplate"; "required": false; }; }, {}, never, never, false, never>;
|
|
835
|
-
}
|
|
836
|
-
|
|
837
576
|
declare class FormSelectItemComponent implements OnInit {
|
|
838
577
|
selectOption: EventEmitter<string>;
|
|
839
578
|
select: InputClass;
|
|
@@ -1169,6 +908,13 @@ declare class FormRadioComponent implements OnInit {
|
|
|
1169
908
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormRadioComponent, "lib-form-radio", never, { "inp": { "alias": "inp"; "required": false; }; }, { "changeIndex": "changeIndex"; }, never, never, true, never>;
|
|
1170
909
|
}
|
|
1171
910
|
|
|
911
|
+
declare class PsToolkitUiConfigService {
|
|
912
|
+
environment: any;
|
|
913
|
+
strings: any;
|
|
914
|
+
currentLang: string;
|
|
915
|
+
constructor(environment: any, strings: any, currentLang: string);
|
|
916
|
+
}
|
|
917
|
+
|
|
1172
918
|
declare class ConfirmComponent implements OnInit {
|
|
1173
919
|
config: PsToolkitUiConfigService;
|
|
1174
920
|
tableId: string;
|
|
@@ -1559,10 +1305,264 @@ declare class AlertComponent {
|
|
|
1559
1305
|
static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "lib-alert", never, {}, {}, never, never, true, never>;
|
|
1560
1306
|
}
|
|
1561
1307
|
|
|
1308
|
+
declare class SidebarClass {
|
|
1309
|
+
constructor(l: (k: any, v?: any) => string, id: string, name: string, controller: string, action: string, url: string, icon: string, children?: SidebarClass[]);
|
|
1310
|
+
l: (k: any, v?: any) => string;
|
|
1311
|
+
controller: string;
|
|
1312
|
+
action: string;
|
|
1313
|
+
url: string;
|
|
1314
|
+
id: string;
|
|
1315
|
+
name: string;
|
|
1316
|
+
icon: string;
|
|
1317
|
+
count: number;
|
|
1318
|
+
countAll: number;
|
|
1319
|
+
children: SidebarClass[];
|
|
1320
|
+
active: boolean;
|
|
1321
|
+
}
|
|
1322
|
+
|
|
1323
|
+
declare class CurrentDataClass {
|
|
1324
|
+
constructor(data?: any);
|
|
1325
|
+
user: any;
|
|
1326
|
+
permissions: any[];
|
|
1327
|
+
modules: any[];
|
|
1328
|
+
software: {
|
|
1329
|
+
Version: string;
|
|
1330
|
+
};
|
|
1331
|
+
setting: any;
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
declare class SidebarService {
|
|
1335
|
+
private countSource;
|
|
1336
|
+
private countAllSource;
|
|
1337
|
+
currentCount: rxjs.Observable<number>;
|
|
1338
|
+
currentCountAll: rxjs.Observable<number>;
|
|
1339
|
+
constructor();
|
|
1340
|
+
changeCount(count: number): void;
|
|
1341
|
+
changeCountAll(countAll: number): void;
|
|
1342
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarService, never>;
|
|
1343
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SidebarService>;
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1346
|
+
declare class SidebarComponent implements OnInit {
|
|
1347
|
+
config: PsToolkitUiConfigService;
|
|
1348
|
+
private router;
|
|
1349
|
+
private service;
|
|
1350
|
+
currentData: CurrentDataClass;
|
|
1351
|
+
sidebar: SidebarClass[];
|
|
1352
|
+
currentSidebar: any;
|
|
1353
|
+
countItems: number;
|
|
1354
|
+
l: (k: any, v?: any) => string;
|
|
1355
|
+
constructor(config: PsToolkitUiConfigService, router: Router, service: SidebarService);
|
|
1356
|
+
setActive(): void;
|
|
1357
|
+
ngOnInit(): void;
|
|
1358
|
+
getSidebar(parentId?: string): SidebarClass[];
|
|
1359
|
+
getSidebarActive(item: SidebarClass[], active: any): SidebarClass;
|
|
1360
|
+
toggleSidebar(): void;
|
|
1361
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarComponent, never>;
|
|
1362
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarComponent, "lib-sidebar", never, { "currentData": { "alias": "currentData"; "required": false; }; }, {}, never, never, true, never>;
|
|
1363
|
+
}
|
|
1364
|
+
|
|
1365
|
+
declare class SidebarItemComponent {
|
|
1366
|
+
config: PsToolkitUiConfigService;
|
|
1367
|
+
item: SidebarClass;
|
|
1368
|
+
i: number;
|
|
1369
|
+
base: boolean;
|
|
1370
|
+
currentSidebar: any;
|
|
1371
|
+
l: (k: any, v?: any) => string;
|
|
1372
|
+
constructor(config: PsToolkitUiConfigService);
|
|
1373
|
+
openClose(e: any): void;
|
|
1374
|
+
isActive(item: SidebarClass): boolean;
|
|
1375
|
+
closeSidebar(): void;
|
|
1376
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarItemComponent, never>;
|
|
1377
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarItemComponent, "lib-sidebar-item", never, { "item": { "alias": "item"; "required": false; }; "i": { "alias": "i"; "required": false; }; "base": { "alias": "base"; "required": false; }; "currentSidebar": { "alias": "currentSidebar"; "required": false; }; }, {}, never, never, true, never>;
|
|
1378
|
+
}
|
|
1379
|
+
|
|
1380
|
+
declare class HeaderClass {
|
|
1381
|
+
constructor(environment: any, l: (k: any, v?: any) => string);
|
|
1382
|
+
username: string;
|
|
1383
|
+
info: string;
|
|
1384
|
+
buttons: InputClass[];
|
|
1385
|
+
logout: (btn: any) => void;
|
|
1386
|
+
}
|
|
1387
|
+
|
|
1388
|
+
declare class HeaderComponent {
|
|
1389
|
+
config: PsToolkitUiConfigService;
|
|
1390
|
+
header: HeaderClass;
|
|
1391
|
+
get type(): typeof InputType;
|
|
1392
|
+
constructor(config: PsToolkitUiConfigService);
|
|
1393
|
+
showUserDropDown(e: any): void;
|
|
1394
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderComponent, never>;
|
|
1395
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "lib-header", never, { "header": { "alias": "header"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
1396
|
+
}
|
|
1397
|
+
|
|
1398
|
+
declare class FooterComponent {
|
|
1399
|
+
config: PsToolkitUiConfigService;
|
|
1400
|
+
l: (k: any, v?: any) => string;
|
|
1401
|
+
constructor(config: PsToolkitUiConfigService);
|
|
1402
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FooterComponent, never>;
|
|
1403
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "lib-footer", never, {}, {}, never, never, true, never>;
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
declare class SubHeaderComponent {
|
|
1407
|
+
constructor();
|
|
1408
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SubHeaderComponent, never>;
|
|
1409
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SubHeaderComponent, "lib-sub-header", never, {}, {}, never, never, true, never>;
|
|
1410
|
+
}
|
|
1411
|
+
|
|
1412
|
+
declare class LayoutComponent {
|
|
1413
|
+
currentData: CurrentDataClass;
|
|
1414
|
+
header: HeaderClass;
|
|
1415
|
+
constructor();
|
|
1416
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutComponent, never>;
|
|
1417
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutComponent, "lib-layout", never, { "currentData": { "alias": "currentData"; "required": false; }; "header": { "alias": "header"; "required": false; }; }, {}, never, ["[slot=sidebar]", "[slot=header]"], true, never>;
|
|
1418
|
+
}
|
|
1419
|
+
|
|
1420
|
+
declare class StepsClass {
|
|
1421
|
+
constructor(environment: any, l: (k: any, v?: any) => string);
|
|
1422
|
+
environment: any;
|
|
1423
|
+
l: (k: any, v?: any) => string;
|
|
1424
|
+
items: StepsItemClass[];
|
|
1425
|
+
activeAll: boolean;
|
|
1426
|
+
isDone: boolean;
|
|
1427
|
+
updateAccess: boolean;
|
|
1428
|
+
viewAccess: boolean;
|
|
1429
|
+
onDone: () => void;
|
|
1430
|
+
onLoadStep: (s: StepsItemClass) => void;
|
|
1431
|
+
getCurrent(): number;
|
|
1432
|
+
getActive(): number;
|
|
1433
|
+
loadStep(s: StepsItemClass): void;
|
|
1434
|
+
}
|
|
1435
|
+
declare class StepsItemClass {
|
|
1436
|
+
id: number;
|
|
1437
|
+
name: string;
|
|
1438
|
+
icon: string;
|
|
1439
|
+
url: string;
|
|
1440
|
+
active: boolean;
|
|
1441
|
+
constructor(id: number, name: string, icon?: string, url?: string, active?: boolean);
|
|
1442
|
+
title: string;
|
|
1443
|
+
current: boolean;
|
|
1444
|
+
description: string;
|
|
1445
|
+
form: FormClass;
|
|
1446
|
+
formType: any;
|
|
1447
|
+
onClick: (item: any) => void;
|
|
1448
|
+
onDelete: (item: any) => void;
|
|
1449
|
+
}
|
|
1450
|
+
|
|
1451
|
+
declare class StepsComponent implements OnInit {
|
|
1452
|
+
steps: StepsClass;
|
|
1453
|
+
saveNext: InputClass;
|
|
1454
|
+
editNext: InputClass;
|
|
1455
|
+
saveDone: InputClass;
|
|
1456
|
+
editDone: InputClass;
|
|
1457
|
+
previous: InputClass;
|
|
1458
|
+
constructor();
|
|
1459
|
+
changeStep(s: StepsItemClass): void;
|
|
1460
|
+
onDelete(s: StepsItemClass): void;
|
|
1461
|
+
ngOnInit(): void;
|
|
1462
|
+
nextStep(btn: InputClass, done?: boolean): void;
|
|
1463
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepsComponent, never>;
|
|
1464
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepsComponent, "lib-steps", never, { "steps": { "alias": "steps"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
1465
|
+
}
|
|
1466
|
+
|
|
1467
|
+
declare class NotfoundComponent {
|
|
1468
|
+
config: PsToolkitUiConfigService;
|
|
1469
|
+
back: InputClass;
|
|
1470
|
+
l: (k: any, v?: any) => string;
|
|
1471
|
+
constructor(config: PsToolkitUiConfigService);
|
|
1472
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotfoundComponent, never>;
|
|
1473
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotfoundComponent, "lib-notfound", never, {}, {}, never, never, true, never>;
|
|
1474
|
+
}
|
|
1475
|
+
|
|
1476
|
+
declare class CalendarComponent {
|
|
1477
|
+
config: PsToolkitUiConfigService;
|
|
1478
|
+
state: string;
|
|
1479
|
+
months: any[];
|
|
1480
|
+
active: moment.Moment;
|
|
1481
|
+
previousDays: DayClass[];
|
|
1482
|
+
nextDays: DayClass[];
|
|
1483
|
+
days: DayClass[];
|
|
1484
|
+
todayDay: number;
|
|
1485
|
+
todayMonth: number;
|
|
1486
|
+
todayYear: number;
|
|
1487
|
+
l: (k: any, v?: any) => string;
|
|
1488
|
+
constructor(config: PsToolkitUiConfigService);
|
|
1489
|
+
changeState(s: string): void;
|
|
1490
|
+
getYears(): number[];
|
|
1491
|
+
getActiveMonth(): string;
|
|
1492
|
+
add(c: number): void;
|
|
1493
|
+
changeMonth(c: number): void;
|
|
1494
|
+
changeYear(c: number): void;
|
|
1495
|
+
setDate(): void;
|
|
1496
|
+
isToday(m: moment.Moment, d: number): boolean;
|
|
1497
|
+
parseInt(n: any): number;
|
|
1498
|
+
setActive(m: any): void;
|
|
1499
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarComponent, never>;
|
|
1500
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "lib-calendar", never, {}, {}, never, never, true, never>;
|
|
1501
|
+
}
|
|
1502
|
+
|
|
1503
|
+
declare class ClockComponent implements OnInit, OnDestroy {
|
|
1504
|
+
clockInterval: any;
|
|
1505
|
+
active: moment.Moment;
|
|
1506
|
+
constructor();
|
|
1507
|
+
ngOnInit(): void;
|
|
1508
|
+
ngOnDestroy(): void;
|
|
1509
|
+
clockUpdate(): void;
|
|
1510
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ClockComponent, never>;
|
|
1511
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ClockComponent, "lib-clock", never, {}, {}, never, never, true, never>;
|
|
1512
|
+
}
|
|
1513
|
+
|
|
1514
|
+
declare class LoadingComponent {
|
|
1515
|
+
l: (k: any, v?: any) => string;
|
|
1516
|
+
constructor(config: PsToolkitUiConfigService);
|
|
1517
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingComponent, never>;
|
|
1518
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoadingComponent, "lib-loading", never, {}, {}, never, never, true, never>;
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
declare class LoginClass {
|
|
1522
|
+
constructor(l: (k: any, v?: any) => string, type: string);
|
|
1523
|
+
modal: ModalClass;
|
|
1524
|
+
type: string;
|
|
1525
|
+
l: (k: any, v?: any) => string;
|
|
1526
|
+
steps: LoginStepClass[];
|
|
1527
|
+
active: number;
|
|
1528
|
+
onSuccess: (result: any) => void;
|
|
1529
|
+
sendCodeUrl: string;
|
|
1530
|
+
loginUrl: string;
|
|
1531
|
+
rules: string;
|
|
1532
|
+
setCookie(r: any): void;
|
|
1533
|
+
showModal(): void;
|
|
1534
|
+
}
|
|
1535
|
+
declare class LoginStepClass {
|
|
1536
|
+
constructor(form: FormClass);
|
|
1537
|
+
form: FormClass;
|
|
1538
|
+
show(result?: any): void;
|
|
1539
|
+
}
|
|
1540
|
+
|
|
1541
|
+
declare class LoginComponent implements OnInit {
|
|
1542
|
+
config: PsToolkitUiConfigService;
|
|
1543
|
+
login: LoginClass;
|
|
1544
|
+
loginTemplate: string;
|
|
1545
|
+
mobile: InputClass;
|
|
1546
|
+
username: InputClass;
|
|
1547
|
+
rulesModal: ModalClass;
|
|
1548
|
+
constructor(config: PsToolkitUiConfigService);
|
|
1549
|
+
ngOnInit(): void;
|
|
1550
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoginComponent, never>;
|
|
1551
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoginComponent, "lib-login", never, { "login": { "alias": "login"; "required": false; }; "loginTemplate": { "alias": "loginTemplate"; "required": false; }; }, {}, never, never, true, never>;
|
|
1552
|
+
}
|
|
1553
|
+
|
|
1554
|
+
declare class TooltipComponent {
|
|
1555
|
+
text: string;
|
|
1556
|
+
position: string;
|
|
1557
|
+
constructor();
|
|
1558
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipComponent, never>;
|
|
1559
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "lib-tooltip", never, { "text": { "alias": "text"; "required": false; }; "position": { "alias": "position"; "required": false; }; }, {}, never, never, true, never>;
|
|
1560
|
+
}
|
|
1561
|
+
|
|
1562
1562
|
declare class PsToolkitUiModule {
|
|
1563
1563
|
static forRoot(config: any): ModuleWithProviders<PsToolkitUiModule>;
|
|
1564
1564
|
static ɵfac: i0.ɵɵFactoryDeclaration<PsToolkitUiModule, never>;
|
|
1565
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PsToolkitUiModule, [typeof
|
|
1565
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PsToolkitUiModule, never, [typeof FormSelectItemComponent, typeof FormCheckboxComponent, typeof TablePaginationComponent, typeof FormBankCardComponent, typeof FormPlaqueSelectComponent, typeof TableLoadingComponent, typeof FormTreeItemComponent, typeof FormTextboxComponent, typeof FormTextareaComponent, typeof FormIconComponent, typeof FormButtonComponent, typeof FormDatetimeComponent, typeof FormPlaqueComponent, typeof FormFileComponent, typeof FormSelectComponent, typeof FormTableComponent, typeof FormLabelComponent, typeof AccordionComponent, typeof FormRadioComponent, typeof ConfirmComponent, typeof TableComponent, typeof ModalComponent, typeof FormComponent, typeof TableRowComponent, typeof FormTreeComponent, typeof FormTimeComponent, typeof FormFingerComponent, typeof FormVehicleSearchComponent, typeof FormCkeditorComponent, typeof FormUploaderComponent, typeof FormVehicleComponent, typeof FormHiddenComponent, typeof FormToggleComponent, typeof ChartComponent, typeof FormTagComponent, typeof FormStarComponent, typeof FormSlideComponent, typeof FormDateComponent, typeof NotificationComponent, typeof ErrorComponent, typeof AlertComponent, typeof SidebarComponent, typeof SidebarItemComponent, typeof i44.CommonModule, typeof HeaderComponent, typeof FooterComponent, typeof SubHeaderComponent, typeof LayoutComponent, typeof StepsComponent, typeof NotfoundComponent, typeof CalendarComponent, typeof ClockComponent, typeof LoadingComponent, typeof LoginComponent, typeof TooltipComponent, typeof i56.RouterModule, typeof i57.FormsModule, typeof i58.CKEditorModule], [typeof FormSelectItemComponent, typeof FormCheckboxComponent, typeof TablePaginationComponent, typeof FormBankCardComponent, typeof SidebarItemComponent, typeof SidebarComponent, typeof FormDateComponent, typeof FormPlaqueSelectComponent, typeof TableLoadingComponent, typeof FormTreeItemComponent, typeof FormTextboxComponent, typeof FormTextareaComponent, typeof FormIconComponent, typeof FormButtonComponent, typeof FormDatetimeComponent, typeof FormPlaqueComponent, typeof SubHeaderComponent, typeof FooterComponent, typeof StepsComponent, typeof FormFileComponent, typeof FormSelectComponent, typeof FormTableComponent, typeof FormLabelComponent, typeof AccordionComponent, typeof FormRadioComponent, typeof HeaderComponent, typeof TooltipComponent, typeof ConfirmComponent, typeof TableComponent, typeof ModalComponent, typeof FormComponent, typeof TableRowComponent, typeof FormTreeComponent, typeof AlertComponent, typeof FormTimeComponent, typeof NotificationComponent, typeof FormFingerComponent, typeof FormVehicleSearchComponent, typeof FormCkeditorComponent, typeof FormUploaderComponent, typeof LayoutComponent, typeof LoadingComponent, typeof NotfoundComponent, typeof FormVehicleComponent, typeof FormHiddenComponent, typeof CalendarComponent, typeof FormToggleComponent, typeof ClockComponent, typeof ChartComponent, typeof FormTagComponent, typeof ErrorComponent, typeof LoginComponent, typeof FormStarComponent, typeof FormSlideComponent]>;
|
|
1566
1566
|
static ɵinj: i0.ɵɵInjectorDeclaration<PsToolkitUiModule>;
|
|
1567
1567
|
}
|
|
1568
1568
|
|