@simpleangularcontrols/sac-common 16.0.0-rc.7 → 16.0.0-rc.9
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/common/basedatetimecontrol.d.ts +1 -1
- package/common/basedatetimecontrol.d.ts.map +1 -1
- package/common/baseinputcontrol.d.ts +1 -5
- package/common/baseinputcontrol.d.ts.map +1 -1
- package/common/basemodelcontrol.d.ts +26 -2
- package/common/basemodelcontrol.d.ts.map +1 -1
- package/common/baseuploadcontrol.d.ts +0 -5
- package/common/baseuploadcontrol.d.ts.map +1 -1
- package/controls/checkbox/checkbox.d.ts +13 -4
- package/controls/checkbox/checkbox.d.ts.map +1 -1
- package/controls/datetime/date.d.ts +0 -4
- package/controls/datetime/date.d.ts.map +1 -1
- package/controls/datetime/datetime.d.ts +0 -4
- package/controls/datetime/datetime.d.ts.map +1 -1
- package/controls/datetime/time.d.ts +0 -4
- package/controls/datetime/time.d.ts.map +1 -1
- package/controls/grid/grid.d.ts +38 -36
- package/controls/grid/grid.d.ts.map +1 -1
- package/controls/grid/gridbutton.d.ts +14 -14
- package/controls/grid/gridbutton.d.ts.map +1 -1
- package/controls/grid/gridcolumn.d.ts +8 -8
- package/controls/grid/gridcolumn.d.ts.map +1 -1
- package/controls/grid/gridcolumnaction.d.ts +3 -3
- package/controls/grid/gridcolumnaction.d.ts.map +1 -1
- package/controls/grid/gridcolumnbase.d.ts +38 -38
- package/controls/grid/gridcolumnbase.d.ts.map +1 -1
- package/controls/grid/gridimage.d.ts +2 -2
- package/controls/grid/gridimage.d.ts.map +1 -1
- package/controls/grid/model.d.ts +51 -42
- package/controls/grid/model.d.ts.map +1 -1
- package/controls/grid/paging.d.ts +41 -43
- package/controls/grid/paging.d.ts.map +1 -1
- package/controls/input/inputsearch.d.ts +14 -5
- package/controls/input/inputsearch.d.ts.map +1 -1
- package/controls/layout/formlayout.d.ts +13 -1
- package/controls/layout/formlayout.d.ts.map +1 -1
- package/controls/static/formcontainer.d.ts +3 -7
- package/controls/static/formcontainer.d.ts.map +1 -1
- package/controls/tooltip/tooltip.d.ts +88 -63
- package/controls/tooltip/tooltip.d.ts.map +1 -1
- package/esm2022/common/basedatetimecontrol.mjs +3 -3
- package/esm2022/common/baseinputcontrol.mjs +8 -10
- package/esm2022/common/basemodelcontrol.mjs +66 -57
- package/esm2022/common/baseuploadcontrol.mjs +42 -42
- package/esm2022/controls/checkbox/checkbox.mjs +12 -6
- package/esm2022/controls/datetime/date.mjs +16 -15
- package/esm2022/controls/datetime/datetime.mjs +16 -15
- package/esm2022/controls/datetime/time.mjs +16 -15
- package/esm2022/controls/grid/grid.mjs +23 -23
- package/esm2022/controls/grid/gridbutton.mjs +20 -15
- package/esm2022/controls/grid/gridcolumn.mjs +20 -13
- package/esm2022/controls/grid/gridcolumnaction.mjs +8 -7
- package/esm2022/controls/grid/gridcolumnbase.mjs +31 -30
- package/esm2022/controls/grid/gridimage.mjs +5 -5
- package/esm2022/controls/grid/model.mjs +53 -35
- package/esm2022/controls/grid/paging.mjs +42 -44
- package/esm2022/controls/input/inputsearch.mjs +14 -7
- package/esm2022/controls/layout/formlayout.mjs +16 -12
- package/esm2022/controls/static/formcontainer.mjs +13 -10
- package/esm2022/controls/tooltip/tooltip.mjs +101 -76
- package/esm2022/interfaces/ISacConfigurationService.mjs +3 -3
- package/esm2022/interfaces/ISacIconService.mjs +3 -3
- package/esm2022/services/sac-configuration.service.mjs +18 -12
- package/esm2022/services/sac-icon.service.mjs +15 -11
- package/esm2022/validation/isDateValid.mjs +10 -5
- package/fesm2022/simpleangularcontrols-sac-common.mjs +1294 -1194
- package/fesm2022/simpleangularcontrols-sac-common.mjs.map +1 -1
- package/interfaces/ISacConfigurationService.d.ts +12 -0
- package/interfaces/ISacConfigurationService.d.ts.map +1 -1
- package/interfaces/ISacIconService.d.ts +8 -0
- package/interfaces/ISacIconService.d.ts.map +1 -1
- package/package.json +1 -1
- package/services/sac-configuration.service.d.ts +24 -0
- package/services/sac-configuration.service.d.ts.map +1 -1
- package/services/sac-icon.service.d.ts +16 -0
- package/services/sac-icon.service.d.ts.map +1 -1
- package/simpleangularcontrols-sac-common-16.0.0-rc.9.tgz +0 -0
- package/validation/isDateValid.d.ts.map +1 -1
- package/simpleangularcontrols-sac-common-16.0.0-rc.7.tgz +0 -0
|
@@ -1,90 +1,90 @@
|
|
|
1
1
|
import { ElementRef, Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { SacGridCommon } from './grid';
|
|
3
2
|
import { ISacIconService } from '../../interfaces/ISacIconService';
|
|
3
|
+
import { SacGridCommon } from './grid';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
6
|
-
* Base
|
|
6
|
+
* Base component for GridColumn
|
|
7
7
|
*/
|
|
8
8
|
export declare class SacGridColumnBaseCommon implements OnInit, OnDestroy {
|
|
9
9
|
private grid;
|
|
10
10
|
protected injector: Injector;
|
|
11
11
|
private el;
|
|
12
12
|
/**
|
|
13
|
-
*
|
|
14
|
-
* @param grid reference to grid component
|
|
15
|
-
* @param injector di injector to resolve icon service
|
|
16
|
-
* @param el reference to html element
|
|
13
|
+
* icon service for reading the icons
|
|
17
14
|
*/
|
|
18
|
-
|
|
15
|
+
protected iconService: ISacIconService;
|
|
19
16
|
/**
|
|
20
|
-
*
|
|
17
|
+
* Value of the cell if the type is `header`.
|
|
21
18
|
*/
|
|
22
|
-
|
|
19
|
+
header: string;
|
|
23
20
|
/**
|
|
24
|
-
*
|
|
21
|
+
* Name of the column
|
|
25
22
|
*/
|
|
26
23
|
name: any;
|
|
27
24
|
/**
|
|
28
|
-
*
|
|
25
|
+
* Key for sorting the column
|
|
29
26
|
*/
|
|
30
|
-
|
|
27
|
+
sortkey: string;
|
|
31
28
|
/**
|
|
32
|
-
*
|
|
29
|
+
* Type of column. Can contain the values `header`,`footer` and `body`.
|
|
33
30
|
*/
|
|
34
|
-
|
|
31
|
+
type: string;
|
|
35
32
|
/**
|
|
36
|
-
*
|
|
33
|
+
* Value of the cell if the type is `body`
|
|
37
34
|
*/
|
|
38
|
-
|
|
35
|
+
value: any;
|
|
39
36
|
/**
|
|
40
|
-
*
|
|
37
|
+
* Column width
|
|
41
38
|
*/
|
|
42
|
-
|
|
39
|
+
width: string;
|
|
43
40
|
/**
|
|
44
|
-
*
|
|
41
|
+
* Constructor
|
|
42
|
+
* @param grid reference to grid component
|
|
43
|
+
* @param injector di injector to resolve icon service
|
|
44
|
+
* @param el reference to html element
|
|
45
45
|
*/
|
|
46
|
-
|
|
46
|
+
constructor(grid: SacGridCommon, injector: Injector, el: ElementRef);
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* sort down icon for grid header
|
|
49
49
|
*/
|
|
50
|
-
|
|
50
|
+
get IconSortDown(): string;
|
|
51
51
|
/**
|
|
52
|
-
*
|
|
52
|
+
* sort up icon for grid header
|
|
53
53
|
*/
|
|
54
|
-
|
|
54
|
+
get IconSortUp(): string;
|
|
55
55
|
/**
|
|
56
|
-
*
|
|
56
|
+
* Indicates the direction of sorting. The possible values are `none`,`asc`,`desc`
|
|
57
57
|
*/
|
|
58
|
-
|
|
58
|
+
GetSortDirection(): string;
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
* Defines whether the element is a cell in the table.
|
|
61
61
|
*/
|
|
62
62
|
IsBody(): boolean;
|
|
63
63
|
/**
|
|
64
|
-
*
|
|
64
|
+
* Defines whether the element is a cell in the footer of the table
|
|
65
65
|
*/
|
|
66
66
|
IsFooter(): boolean;
|
|
67
67
|
/**
|
|
68
|
-
*
|
|
68
|
+
* Defines whether the element is a cell in the table header
|
|
69
69
|
*/
|
|
70
|
-
|
|
70
|
+
IsHeader(): boolean;
|
|
71
71
|
/**
|
|
72
|
-
*
|
|
72
|
+
* Defines whether this column is sorted.
|
|
73
73
|
*/
|
|
74
|
-
|
|
74
|
+
IsSortedColumn(): boolean;
|
|
75
75
|
/**
|
|
76
|
-
*
|
|
76
|
+
* Triggers the events so that the table is sorted according to this column.
|
|
77
77
|
*/
|
|
78
78
|
SortByColumn(): void;
|
|
79
79
|
/**
|
|
80
|
-
*
|
|
80
|
+
* Called when the component is destroyed.
|
|
81
81
|
*/
|
|
82
|
-
|
|
82
|
+
ngOnDestroy(): void;
|
|
83
83
|
/**
|
|
84
|
-
*
|
|
84
|
+
* Is called when the component is initialized.
|
|
85
85
|
*/
|
|
86
|
-
|
|
86
|
+
ngOnInit(): void;
|
|
87
87
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacGridColumnBaseCommon, never>;
|
|
88
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SacGridColumnBaseCommon, never, never, { "
|
|
88
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SacGridColumnBaseCommon, never, never, { "header": { "alias": "header"; "required": false; }; "name": { "alias": "name"; "required": false; }; "sortkey": { "alias": "sortkey"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, never, never, false, never>;
|
|
89
89
|
}
|
|
90
90
|
//# sourceMappingURL=gridcolumnbase.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gridcolumnbase.d.ts","sourceRoot":"","sources":["../../../../projects/sac-common/src/controls/grid/gridcolumnbase.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EACV,QAAQ,EAER,SAAS,EACT,MAAM,EACP,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"gridcolumnbase.d.ts","sourceRoot":"","sources":["../../../../projects/sac-common/src/controls/grid/gridcolumnbase.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EACV,QAAQ,EAER,SAAS,EACT,MAAM,EACP,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AAEnE,OAAO,EAAE,aAAa,EAAE,MAAM,QAAQ,CAAC;;AAGvC;;GAEG;AACH,qBACa,uBAAwB,YAAW,MAAM,EAAE,SAAS;IAkD7D,OAAO,CAAC,IAAI;IACZ,SAAS,CAAC,QAAQ,EAAE,QAAQ;IAC5B,OAAO,CAAC,EAAE;IAjDZ;;OAEG;IACH,SAAS,CAAC,WAAW,EAAE,eAAe,CAAC;IAEvC;;OAEG;IAEI,MAAM,EAAE,MAAM,CAAC;IACtB;;OAEG;IAEI,IAAI,EAAE,GAAG,CAAC;IACjB;;OAEG;IAEI,OAAO,EAAE,MAAM,CAAC;IACvB;;OAEG;IAEI,IAAI,EAAE,MAAM,CAAC;IACpB;;OAEG;IAEI,KAAK,EAAE,GAAG,CAAC;IAClB;;OAEG;IAEI,KAAK,EAAE,MAAM,CAAC;IAMrB;;;;;OAKG;gBAEO,IAAI,EAAE,aAAa,EACjB,QAAQ,EAAE,QAAQ,EACpB,EAAE,EAAE,UAAU;IAYxB;;OAEG;IACH,IAAW,YAAY,IAAI,MAAM,CAEhC;IAED;;OAEG;IACH,IAAW,UAAU,IAAI,MAAM,CAE9B;IAMD;;OAEG;IACI,gBAAgB,IAAI,MAAM;IAajC;;OAEG;IACI,MAAM,IAAI,OAAO;IAIxB;;OAEG;IACI,QAAQ,IAAI,OAAO;IAI1B;;OAEG;IACI,QAAQ,IAAI,OAAO;IAI1B;;OAEG;IACI,cAAc,IAAI,OAAO;IAIhC;;OAEG;IACI,YAAY;IAUnB;;OAEG;IACI,WAAW,IAAI,IAAI;IAM1B;;OAEG;IACI,QAAQ;yCAvJJ,uBAAuB;2CAAvB,uBAAuB;CAuKnC"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Basic component for SacGridImage
|
|
4
4
|
*/
|
|
5
5
|
export declare class SacGridImageCommon {
|
|
6
6
|
/**
|
|
7
|
-
*
|
|
7
|
+
* Style of the icon
|
|
8
8
|
*/
|
|
9
9
|
iconstyle: string;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacGridImageCommon, never>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gridimage.d.ts","sourceRoot":"","sources":["../../../../projects/sac-common/src/controls/grid/gridimage.ts"],"names":[],"mappings":";AAEA;;GAEG;AACH,qBACa,kBAAkB;
|
|
1
|
+
{"version":3,"file":"gridimage.d.ts","sourceRoot":"","sources":["../../../../projects/sac-common/src/controls/grid/gridimage.ts"],"names":[],"mappings":";AAEA;;GAEG;AACH,qBACa,kBAAkB;IAG7B;;OAEG;IAEI,SAAS,EAAE,MAAM,CAAC;yCAPd,kBAAkB;2CAAlB,kBAAkB;CAU9B"}
|
package/controls/grid/model.d.ts
CHANGED
|
@@ -1,84 +1,93 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
2
|
+
* GridResponse class
|
|
3
3
|
*/
|
|
4
|
-
export declare class
|
|
5
|
-
/**
|
|
6
|
-
* Konstruktor
|
|
7
|
-
* @param PageSize Anzahl Elemente pro Seite
|
|
8
|
-
* @param CurrentPageIndex Aktuelle Seite
|
|
9
|
-
* @param TotalRowCount Total Rows in Datenbank
|
|
10
|
-
*/
|
|
11
|
-
constructor(PageSize: number, CurrentPageIndex: number, TotalRowCount: number);
|
|
12
|
-
/**
|
|
13
|
-
* Gesamte Anzahl der Zeilen
|
|
14
|
-
*/
|
|
15
|
-
TotalRowCount: number;
|
|
4
|
+
export declare class GridResponse<T> {
|
|
16
5
|
/**
|
|
17
|
-
*
|
|
6
|
+
* Data
|
|
18
7
|
*/
|
|
19
|
-
|
|
8
|
+
Data: T[];
|
|
20
9
|
/**
|
|
21
|
-
*
|
|
10
|
+
* Total number of data records
|
|
22
11
|
*/
|
|
23
|
-
|
|
12
|
+
TotalRowCount: number;
|
|
24
13
|
}
|
|
25
14
|
/**
|
|
26
|
-
* Model
|
|
15
|
+
* Model for pager settings
|
|
27
16
|
*/
|
|
28
|
-
export declare class
|
|
17
|
+
export declare class PagerData {
|
|
29
18
|
/**
|
|
30
|
-
*
|
|
31
|
-
* @param PageSize Seitegrösse / Anzahl Elemente pro Seite
|
|
32
|
-
* @param NewPageIndex Neuer Seitenindex
|
|
19
|
+
* Current index of the page
|
|
33
20
|
*/
|
|
34
|
-
|
|
21
|
+
CurrentPageIndex: number;
|
|
35
22
|
/**
|
|
36
|
-
*
|
|
23
|
+
* Number of elements on the page
|
|
37
24
|
*/
|
|
38
25
|
PageSize: number;
|
|
39
26
|
/**
|
|
40
|
-
*
|
|
27
|
+
* Total number of data records
|
|
41
28
|
*/
|
|
42
|
-
|
|
29
|
+
TotalRowCount: number;
|
|
30
|
+
/**
|
|
31
|
+
* Constructor
|
|
32
|
+
* @param PageSize Number of elements per page
|
|
33
|
+
* @param CurrentPageIndex Current page
|
|
34
|
+
* @param TotalRowCount Total Rows in database
|
|
35
|
+
*/
|
|
36
|
+
constructor(PageSize: number, CurrentPageIndex: number, TotalRowCount: number);
|
|
43
37
|
}
|
|
44
38
|
/**
|
|
45
|
-
*
|
|
39
|
+
* Model if page is to be changed
|
|
46
40
|
*/
|
|
47
|
-
export declare class
|
|
41
|
+
export declare class PagerRequest {
|
|
48
42
|
/**
|
|
49
|
-
*
|
|
43
|
+
* Index of the page to which you want to switch
|
|
50
44
|
*/
|
|
51
|
-
|
|
45
|
+
NewPageIndex: number;
|
|
52
46
|
/**
|
|
53
|
-
*
|
|
47
|
+
* Number of elements on the page
|
|
54
48
|
*/
|
|
55
|
-
|
|
49
|
+
PageSize: number;
|
|
50
|
+
/**
|
|
51
|
+
* Constructor
|
|
52
|
+
* @param PageSize Page size / number of elements per page
|
|
53
|
+
* @param NewPageIndex New page index
|
|
54
|
+
*/
|
|
55
|
+
constructor(PageSize: number, NewPageIndex: number);
|
|
56
56
|
}
|
|
57
57
|
/**
|
|
58
|
-
* Model
|
|
58
|
+
* Model for sorting
|
|
59
59
|
*/
|
|
60
60
|
export declare class SortDescriptor {
|
|
61
61
|
/**
|
|
62
|
-
*
|
|
63
|
-
* @param sortcolumn Column die Sortiert wird
|
|
64
|
-
* @param sortorder Art der Sortierung
|
|
65
|
-
*/
|
|
66
|
-
constructor(sortcolumn?: string, sortorder?: SortOrder);
|
|
67
|
-
/**
|
|
68
|
-
* Bezeichnung / Key für Sortierung
|
|
62
|
+
* Description / Key for sorting
|
|
69
63
|
*/
|
|
70
64
|
SortColumn: string;
|
|
71
65
|
/**
|
|
72
|
-
*
|
|
66
|
+
* Sort order
|
|
73
67
|
*/
|
|
74
68
|
SortOrder: SortOrder;
|
|
69
|
+
/**
|
|
70
|
+
* Constructor
|
|
71
|
+
* @param sortcolumn Column by which to sort
|
|
72
|
+
* @param sortorder Type of sorting
|
|
73
|
+
*/
|
|
74
|
+
constructor(sortcolumn?: string, sortorder?: SortOrder);
|
|
75
75
|
}
|
|
76
76
|
/**
|
|
77
|
-
* Enum
|
|
77
|
+
* Enum for sorting
|
|
78
78
|
*/
|
|
79
79
|
export declare enum SortOrder {
|
|
80
|
+
/**
|
|
81
|
+
* No sorting
|
|
82
|
+
*/
|
|
80
83
|
None = 0,
|
|
84
|
+
/**
|
|
85
|
+
* Ascending
|
|
86
|
+
*/
|
|
81
87
|
Ascending = 1,
|
|
88
|
+
/**
|
|
89
|
+
* Descending
|
|
90
|
+
*/
|
|
82
91
|
Descending = 2
|
|
83
92
|
}
|
|
84
93
|
//# sourceMappingURL=model.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"model.d.ts","sourceRoot":"","sources":["../../../../projects/sac-common/src/controls/grid/model.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"model.d.ts","sourceRoot":"","sources":["../../../../projects/sac-common/src/controls/grid/model.ts"],"names":[],"mappings":"AAEA;;GAEG;AACH,qBAAa,YAAY,CAAC,CAAC;IAGzB;;OAEG;IACI,IAAI,EAAE,CAAC,EAAE,CAAC;IACjB;;OAEG;IACI,aAAa,EAAE,MAAM,CAAC;CAG9B;AAED;;GAEG;AACH,qBAAa,SAAS;IAGpB;;OAEG;IACI,gBAAgB,SAAK;IAC5B;;OAEG;IACI,QAAQ,SAAM;IACrB;;OAEG;IACI,aAAa,SAAK;IAMzB;;;;;OAKG;gBAED,QAAQ,EAAE,MAAM,EAChB,gBAAgB,EAAE,MAAM,EACxB,aAAa,EAAE,MAAM;CAQxB;AAED;;GAEG;AACH,qBAAa,YAAY;IAGvB;;OAEG;IACI,YAAY,EAAE,MAAM,CAAK;IAChC;;OAEG;IACI,QAAQ,EAAE,MAAM,CAAK;IAM5B;;;;OAIG;gBACS,QAAQ,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM;CAMnD;AAED;;GAEG;AACH,qBAAa,cAAc;IAGzB;;OAEG;IACI,UAAU,EAAE,MAAM,CAAC;IAC1B;;OAEG;IACI,SAAS,EAAE,SAAS,CAAC;IAM5B;;;;OAIG;gBACS,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,SAAS;CAMvD;AAMD;;GAEG;AACH,oBAAY,SAAS;IACnB;;OAEG;IACH,IAAI,IAAI;IACR;;OAEG;IACH,SAAS,IAAI;IACb;;OAEG;IACH,UAAU,IAAI;CACf"}
|
|
@@ -4,7 +4,7 @@ import { ISacLocalisationService } from '../../interfaces/ISacLocalisationServic
|
|
|
4
4
|
import { PagerData, PagerRequest } from './model';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
/**
|
|
7
|
-
*
|
|
7
|
+
* Basic component for paging
|
|
8
8
|
*/
|
|
9
9
|
export declare abstract class SacPagingCommon {
|
|
10
10
|
/**
|
|
@@ -12,137 +12,135 @@ export declare abstract class SacPagingCommon {
|
|
|
12
12
|
*/
|
|
13
13
|
private validationKeyService;
|
|
14
14
|
/**
|
|
15
|
-
* Service
|
|
15
|
+
* Service for error localization
|
|
16
16
|
*/
|
|
17
17
|
protected lngResourceService: ISacLocalisationService;
|
|
18
18
|
/**
|
|
19
|
-
* Total
|
|
19
|
+
* Total number of rows
|
|
20
20
|
*/
|
|
21
21
|
protected totalRowCount: number;
|
|
22
22
|
/**
|
|
23
|
-
* Name
|
|
23
|
+
* Name of the grid. Used for ID and name designations
|
|
24
24
|
*/
|
|
25
25
|
name: string;
|
|
26
26
|
/**
|
|
27
|
-
*
|
|
27
|
+
* Deactivate page size selection
|
|
28
28
|
*/
|
|
29
29
|
pagesizedisabled: boolean;
|
|
30
30
|
/**
|
|
31
|
-
* Text in Page
|
|
32
|
-
*
|
|
33
|
-
* {{PAGESIZE}}:
|
|
31
|
+
* Text in Page for number of page elements per page. The following interpolation texts are available:
|
|
32
|
+
*
|
|
33
|
+
* {{PAGESIZE}}: Number of elements per page
|
|
34
34
|
*/
|
|
35
35
|
pagesizes: string;
|
|
36
36
|
/**
|
|
37
|
-
* Text in Page
|
|
38
|
-
*
|
|
39
|
-
* {{PAGESIZE}}:
|
|
37
|
+
* Text in Page for number of page elements per page. The following interpolation texts are available:
|
|
38
|
+
*
|
|
39
|
+
* {{PAGESIZE}}: Number of elements per page
|
|
40
40
|
*/
|
|
41
41
|
pagesizetext: string;
|
|
42
42
|
/**
|
|
43
|
-
* Text in
|
|
44
|
-
*
|
|
45
|
-
* {{
|
|
46
|
-
* {{TOTALPAGES}}: Anzahl Seiten
|
|
43
|
+
* Text in pager for 'Page x of y'. The following interpolation texts are available:
|
|
44
|
+
* {{CURRENTPAGE}}: Current page
|
|
45
|
+
* {{TOTALPAGES}}: Number of pages
|
|
47
46
|
*/
|
|
48
47
|
pagingtext: string;
|
|
49
48
|
/**
|
|
50
|
-
* Event
|
|
49
|
+
* Event when the page is changed in the grid. The new PageIndex is given as a parameter.
|
|
51
50
|
*/
|
|
52
51
|
paging: EventEmitter<PagerRequest>;
|
|
53
52
|
/**
|
|
54
|
-
*
|
|
53
|
+
* Active page index
|
|
55
54
|
*/
|
|
56
55
|
activePageIndex: number;
|
|
57
56
|
/**
|
|
58
|
-
*
|
|
57
|
+
* First page index
|
|
59
58
|
*/
|
|
60
59
|
firstPageIndex: number;
|
|
61
60
|
/**
|
|
62
|
-
*
|
|
61
|
+
* Last page index
|
|
63
62
|
*/
|
|
64
63
|
lastPageIndex: number;
|
|
65
64
|
/**
|
|
66
|
-
*
|
|
65
|
+
* Number of elements per page
|
|
67
66
|
*/
|
|
68
67
|
pageSize: number;
|
|
69
68
|
/**
|
|
70
|
-
* Item
|
|
69
|
+
* Item for each paging element (page number)
|
|
71
70
|
*/
|
|
72
71
|
paginators: Array<any>;
|
|
73
72
|
/**
|
|
74
|
-
*
|
|
75
|
-
* Inject des Formulars
|
|
73
|
+
* Constructor
|
|
76
74
|
* @parent SacFormCommon
|
|
77
75
|
* @injector Injector
|
|
78
76
|
*/
|
|
79
77
|
constructor(injector: Injector);
|
|
80
78
|
/**
|
|
81
|
-
* Property
|
|
79
|
+
* Property for Pager Data
|
|
82
80
|
*/
|
|
83
81
|
set pagerdata(p: PagerData);
|
|
84
82
|
/**
|
|
85
|
-
* Property
|
|
83
|
+
* Property with text for total entries in page
|
|
86
84
|
*/
|
|
87
85
|
get PageSizeText(): Observable<string>;
|
|
88
86
|
/**
|
|
89
|
-
* Text
|
|
87
|
+
* Text with current page and total pages
|
|
90
88
|
*/
|
|
91
89
|
get PagingText(): Observable<string>;
|
|
92
90
|
/**
|
|
93
|
-
*
|
|
91
|
+
* Returns the page sizes as a number array
|
|
94
92
|
*/
|
|
95
93
|
get getPageSizes(): number[];
|
|
96
94
|
/**
|
|
97
|
-
*
|
|
98
|
-
* @param newPageIndex
|
|
95
|
+
* Changes the page to the new index
|
|
96
|
+
* @param newPageIndex Page index. This corresponds to the page number - 1.
|
|
99
97
|
*/
|
|
100
98
|
changePage(newPageIndex: number): void;
|
|
101
99
|
/**
|
|
102
|
-
*
|
|
103
|
-
* @param newSize
|
|
100
|
+
* Changes the page size in the pager
|
|
101
|
+
* @param newSize New number of elements per page
|
|
104
102
|
*/
|
|
105
103
|
changePageSize(newSize: number): void;
|
|
106
104
|
/**
|
|
107
|
-
*
|
|
105
|
+
*Switch to 1st page
|
|
108
106
|
*/
|
|
109
107
|
firstPage(): void;
|
|
110
108
|
/**
|
|
111
|
-
*
|
|
109
|
+
* Returns the current page number
|
|
112
110
|
*/
|
|
113
111
|
getCurrentPageNumber(): number;
|
|
114
112
|
/**
|
|
115
|
-
*
|
|
113
|
+
* Returns the total number of pages
|
|
116
114
|
*/
|
|
117
115
|
getTotalPageNumber(): number;
|
|
118
116
|
/**
|
|
119
|
-
* Paging
|
|
117
|
+
* Paging on last page
|
|
120
118
|
*/
|
|
121
119
|
lastPage(): void;
|
|
122
120
|
/**
|
|
123
|
-
* Paging
|
|
121
|
+
* Paging to next page
|
|
124
122
|
*/
|
|
125
123
|
nextPage(): void;
|
|
126
124
|
/**
|
|
127
|
-
* Paging
|
|
125
|
+
* Paging one page back
|
|
128
126
|
*/
|
|
129
127
|
previousPage(): void;
|
|
130
128
|
/**
|
|
131
|
-
*
|
|
129
|
+
* Generates the pager data
|
|
132
130
|
*/
|
|
133
131
|
protected createPager(): void;
|
|
134
132
|
/**
|
|
135
|
-
*
|
|
136
|
-
* @param totalPageCount Total
|
|
133
|
+
* Returns the last page index.
|
|
134
|
+
* @param totalPageCount Total number of pages
|
|
137
135
|
*/
|
|
138
136
|
protected getEndPageIndex(totalPageCount: number): number;
|
|
139
137
|
/**
|
|
140
|
-
*
|
|
141
|
-
* @param totalPageCount Total
|
|
138
|
+
* Returns the start index
|
|
139
|
+
* @param totalPageCount Total number of pages
|
|
142
140
|
*/
|
|
143
141
|
protected getStartPageIndex(totalPageCount: number): number;
|
|
144
142
|
/**
|
|
145
|
-
*
|
|
143
|
+
* method triggers the event that paging has taken place
|
|
146
144
|
*/
|
|
147
145
|
protected paged(newPageIndex: number): void;
|
|
148
146
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacPagingCommon, never>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"paging.d.ts","sourceRoot":"","sources":["../../../../projects/sac-common/src/controls/grid/paging.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,YAAY,EACZ,QAAQ,EAGT,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAClC,OAAO,EAAE,uBAAuB,EAAE,MAAM,0CAA0C,CAAC;AAUnF,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;;AAElD;;GAEG;AACH,8BACsB,eAAe;IAGnC;;OAEG;IACH,OAAO,CAAC,oBAAoB,CAA2B;IAEvD;;OAEG;IACH,SAAS,CAAC,kBAAkB,EAAE,uBAAuB,CAAC;IACtD;;OAEG;IACH,SAAS,CAAC,aAAa,EAAE,MAAM,CAAK;IAEpC;;OAEG;IAEI,IAAI,EAAE,MAAM,CAAC;IACpB;;OAEG;IAEI,gBAAgB,EAAE,OAAO,CAAS;IACzC;;;;OAIG;IAEI,SAAS,EAAE,MAAM,CAAe;IACvC;;;;OAIG;IAEI,YAAY,EAAE,MAAM,CAAM;IACjC
|
|
1
|
+
{"version":3,"file":"paging.d.ts","sourceRoot":"","sources":["../../../../projects/sac-common/src/controls/grid/paging.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,YAAY,EACZ,QAAQ,EAGT,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAClC,OAAO,EAAE,uBAAuB,EAAE,MAAM,0CAA0C,CAAC;AAUnF,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;;AAElD;;GAEG;AACH,8BACsB,eAAe;IAGnC;;OAEG;IACH,OAAO,CAAC,oBAAoB,CAA2B;IAEvD;;OAEG;IACH,SAAS,CAAC,kBAAkB,EAAE,uBAAuB,CAAC;IACtD;;OAEG;IACH,SAAS,CAAC,aAAa,EAAE,MAAM,CAAK;IAEpC;;OAEG;IAEI,IAAI,EAAE,MAAM,CAAC;IACpB;;OAEG;IAEI,gBAAgB,EAAE,OAAO,CAAS;IACzC;;;;OAIG;IAEI,SAAS,EAAE,MAAM,CAAe;IACvC;;;;OAIG;IAEI,YAAY,EAAE,MAAM,CAAM;IACjC;;;;OAIG;IAEI,UAAU,EAAE,MAAM,CAAM;IAC/B;;OAEG;IAEI,MAAM,EAAE,YAAY,CAAC,YAAY,CAAC,CAAoC;IAE7E;;OAEG;IACI,eAAe,EAAE,MAAM,CAAK;IACnC;;OAEG;IACI,cAAc,EAAE,MAAM,CAAK;IAClC;;OAEG;IACI,aAAa,EAAE,MAAM,CAAK;IACjC;;OAEG;IACI,QAAQ,EAAE,MAAM,CAAM;IAC7B;;OAEG;IACI,UAAU,EAAE,KAAK,CAAC,GAAG,CAAC,CAAM;IAMnC;;;;OAIG;gBACS,QAAQ,EAAE,QAAQ;IAoB9B;;OAEG;IACH,IACW,SAAS,CAAC,CAAC,EAAE,SAAS,EAQhC;IAED;;OAEG;IACH,IAAW,YAAY,IAAI,UAAU,CAAC,MAAM,CAAC,CAE5C;IAED;;OAEG;IACH,IAAW,UAAU,IAAI,UAAU,CAAC,MAAM,CAAC,CAK1C;IAED;;OAEG;IACH,IAAW,YAAY,IAAI,MAAM,EAAE,CAElC;IAMD;;;OAGG;IACI,UAAU,CAAC,YAAY,EAAE,MAAM;IAMtC;;;OAGG;IACI,cAAc,CAAC,OAAO,EAAE,MAAM;IAQrC;;OAEG;IACI,SAAS;IAMhB;;OAEG;IACI,oBAAoB,IAAI,MAAM;IAIrC;;OAEG;IACI,kBAAkB,IAAI,MAAM;IAInC;;OAEG;IACI,QAAQ;IAMf;;OAEG;IACI,QAAQ;IAMf;;OAEG;IACI,YAAY;IAUnB;;OAEG;IACH,SAAS,CAAC,WAAW;IA6BrB;;;OAGG;IACH,SAAS,CAAC,eAAe,CAAC,cAAc,EAAE,MAAM,GAAG,MAAM;IAYzD;;;OAGG;IACH,SAAS,CAAC,iBAAiB,CAAC,cAAc,EAAE,MAAM,GAAG,MAAM;IAc3D;;OAEG;IACH,SAAS,CAAC,KAAK,CAAC,YAAY,EAAE,MAAM;yCAnShB,eAAe;2CAAf,eAAe;CA4SpC"}
|
|
@@ -1,27 +1,36 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { SacInputCommon } from './input';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
/**
|
|
5
5
|
* Basis Komponente für SacInputSearch
|
|
6
6
|
*/
|
|
7
|
-
export declare class SacInputSearchCommon extends SacInputCommon {
|
|
7
|
+
export declare class SacInputSearchCommon extends SacInputCommon implements OnInit {
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* Defines the layout of the search button in the control
|
|
10
10
|
*/
|
|
11
|
-
|
|
11
|
+
buttonmode: 'icon' | 'text' | 'mixed';
|
|
12
12
|
/**
|
|
13
13
|
* Text welcher auf dem Button angezeigt wird
|
|
14
14
|
*/
|
|
15
15
|
buttontext: string;
|
|
16
|
+
/**
|
|
17
|
+
* Name des Such-Icons
|
|
18
|
+
*/
|
|
19
|
+
iconname: string;
|
|
16
20
|
/**
|
|
17
21
|
* Event wenn auf das Such-Icon geclickt wird
|
|
18
22
|
*/
|
|
19
23
|
clicked: EventEmitter<any>;
|
|
24
|
+
/**
|
|
25
|
+
* Init Event
|
|
26
|
+
*/
|
|
27
|
+
ngOnInit(): void;
|
|
20
28
|
/**
|
|
21
29
|
* Methode sendet den Wert des Inputs durch das Event
|
|
22
30
|
*/
|
|
23
31
|
searchClick(): void;
|
|
32
|
+
private setButtonMode;
|
|
24
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacInputSearchCommon, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SacInputSearchCommon, never, never, { "
|
|
34
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SacInputSearchCommon, never, never, { "buttonmode": { "alias": "buttonmode"; "required": false; }; "buttontext": { "alias": "buttontext"; "required": false; }; "iconname": { "alias": "iconname"; "required": false; }; }, { "clicked": "clicked"; }, never, never, false, never>;
|
|
26
35
|
}
|
|
27
36
|
//# sourceMappingURL=inputsearch.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inputsearch.d.ts","sourceRoot":"","sources":["../../../../projects/sac-common/src/controls/input/inputsearch.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,
|
|
1
|
+
{"version":3,"file":"inputsearch.d.ts","sourceRoot":"","sources":["../../../../projects/sac-common/src/controls/input/inputsearch.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,MAAM,EAAU,MAAM,eAAe,CAAC;AAC/E,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;;AAEzC;;GAEG;AACH,qBACa,oBAAqB,SAAQ,cAAe,YAAW,MAAM;IAGxE;;OAEG;IAEI,UAAU,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC;IAC7C;;OAEG;IACa,UAAU,EAAE,MAAM,CAAM;IACxC;;OAEG;IACa,QAAQ,EAAE,MAAM,CAAM;IACtC;;OAEG;IAEI,OAAO,EAAE,YAAY,CAAC,GAAG,CAAC,CAA2B;IAM5D;;OAEG;IACI,QAAQ;IAUf;;OAEG;IACI,WAAW;IAQlB,OAAO,CAAC,aAAa;yCAlDV,oBAAoB;2CAApB,oBAAoB;CA8DhC"}
|
|
@@ -4,14 +4,26 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
* base component for form options
|
|
5
5
|
*/
|
|
6
6
|
export declare class SacFormLayoutCommon {
|
|
7
|
+
/**
|
|
8
|
+
* Defines the default display for a checkbox. You can choose between a checkbox and a switch. If no style is defined, the global style or the style on the control is used.
|
|
9
|
+
*/
|
|
10
|
+
checkboxstyle: 'checkbox' | 'switch' | null;
|
|
7
11
|
/**
|
|
8
12
|
* Defines the standard height of the components
|
|
9
13
|
*/
|
|
10
14
|
componentHeight: ControlHeight | null;
|
|
15
|
+
/**
|
|
16
|
+
* Mode for display helptext
|
|
17
|
+
*/
|
|
18
|
+
helptextmode: 'tooltip' | 'text' | null;
|
|
11
19
|
/**
|
|
12
20
|
* defines that error messages are displayed under the controls
|
|
13
21
|
*/
|
|
14
22
|
inlineError: boolean | null;
|
|
23
|
+
/**
|
|
24
|
+
* Defines if InputSearch uses an icon at the button or the text
|
|
25
|
+
*/
|
|
26
|
+
inputsearchiconmode: 'text' | 'icon' | 'mixed' | null;
|
|
15
27
|
/**
|
|
16
28
|
* defines that the labels are displayed as adaptive labels
|
|
17
29
|
*/
|
|
@@ -45,6 +57,6 @@ export declare class SacFormLayoutCommon {
|
|
|
45
57
|
*/
|
|
46
58
|
get IsInlineErrorEnabled(): boolean;
|
|
47
59
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacFormLayoutCommon, never>;
|
|
48
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SacFormLayoutCommon, never, never, { "componentHeight": { "alias": "componentHeight"; "required": false; }; "inlineError": { "alias": "inlineError"; "required": false; }; "isAdaptiveLabel": { "alias": "isAdaptiveLabel"; "required": false; }; "labelSizeLg": { "alias": "labelSizeLg"; "required": false; }; "labelSizeMd": { "alias": "labelSizeMd"; "required": false; }; "labelSizeSm": { "alias": "labelSizeSm"; "required": false; }; "labelSizeXl": { "alias": "labelSizeXl"; "required": false; }; "labelSizeXs": { "alias": "labelSizeXs"; "required": false; }; "labelSizeXxl": { "alias": "labelSizeXxl"; "required": false; }; }, {}, never, never, false, never>;
|
|
60
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SacFormLayoutCommon, never, never, { "checkboxstyle": { "alias": "checkboxstyle"; "required": false; }; "componentHeight": { "alias": "componentHeight"; "required": false; }; "helptextmode": { "alias": "helptextmode"; "required": false; }; "inlineError": { "alias": "inlineError"; "required": false; }; "inputsearchiconmode": { "alias": "inputsearchiconmode"; "required": false; }; "isAdaptiveLabel": { "alias": "isAdaptiveLabel"; "required": false; }; "labelSizeLg": { "alias": "labelSizeLg"; "required": false; }; "labelSizeMd": { "alias": "labelSizeMd"; "required": false; }; "labelSizeSm": { "alias": "labelSizeSm"; "required": false; }; "labelSizeXl": { "alias": "labelSizeXl"; "required": false; }; "labelSizeXs": { "alias": "labelSizeXs"; "required": false; }; "labelSizeXxl": { "alias": "labelSizeXxl"; "required": false; }; }, {}, never, never, false, never>;
|
|
49
61
|
}
|
|
50
62
|
//# sourceMappingURL=formlayout.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"formlayout.d.ts","sourceRoot":"","sources":["../../../../projects/sac-common/src/controls/layout/formlayout.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;;AAE1D;;GAEG;AACH,qBACa,mBAAmB;IAG9B;;OAEG;IACa,eAAe,EAAE,aAAa,GAAG,IAAI,CAAQ;IAC7D;;OAEG;IACa,WAAW,EAAE,OAAO,GAAG,IAAI,CAAQ;IACnD;;OAEG;IACa,eAAe,EAAE,OAAO,CAAS;IACjD;;OAEG;IAEI,WAAW,EAAE,MAAM,GAAG,IAAI,CAAQ;IACzC;;OAEG;IAEI,WAAW,EAAE,MAAM,GAAG,IAAI,CAAQ;IACzC;;OAEG;IAEI,WAAW,EAAE,MAAM,GAAG,IAAI,CAAQ;IACzC;;OAEG;IAEI,WAAW,EAAE,MAAM,GAAG,IAAI,CAAQ;IACzC;;OAEG;IAEI,WAAW,EAAE,MAAM,GAAG,IAAI,CAAQ;IACzC;;OAEG;IAEI,YAAY,EAAE,MAAM,GAAG,IAAI,CAAQ;IAM1C;;OAEG;IACH,IAAW,oBAAoB,IAAI,OAAO,CAEzC;
|
|
1
|
+
{"version":3,"file":"formlayout.d.ts","sourceRoot":"","sources":["../../../../projects/sac-common/src/controls/layout/formlayout.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;;AAE1D;;GAEG;AACH,qBACa,mBAAmB;IAG9B;;OAEG;IAEI,aAAa,EAAE,UAAU,GAAG,QAAQ,GAAG,IAAI,CAAQ;IAC1D;;OAEG;IACa,eAAe,EAAE,aAAa,GAAG,IAAI,CAAQ;IAC7D;;OAEG;IAEI,YAAY,EAAE,SAAS,GAAG,MAAM,GAAG,IAAI,CAAC;IAC/C;;OAEG;IACa,WAAW,EAAE,OAAO,GAAG,IAAI,CAAQ;IACnD;;OAEG;IAEI,mBAAmB,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,IAAI,CAAQ;IACpE;;OAEG;IACa,eAAe,EAAE,OAAO,CAAS;IACjD;;OAEG;IAEI,WAAW,EAAE,MAAM,GAAG,IAAI,CAAQ;IACzC;;OAEG;IAEI,WAAW,EAAE,MAAM,GAAG,IAAI,CAAQ;IACzC;;OAEG;IAEI,WAAW,EAAE,MAAM,GAAG,IAAI,CAAQ;IACzC;;OAEG;IAEI,WAAW,EAAE,MAAM,GAAG,IAAI,CAAQ;IACzC;;OAEG;IAEI,WAAW,EAAE,MAAM,GAAG,IAAI,CAAQ;IACzC;;OAEG;IAEI,YAAY,EAAE,MAAM,GAAG,IAAI,CAAQ;IAM1C;;OAEG;IACH,IAAW,oBAAoB,IAAI,OAAO,CAEzC;yCAtEU,mBAAmB;2CAAnB,mBAAmB;CAyE/B"}
|
|
@@ -9,18 +9,14 @@ export declare class SacStaticFormContainerCommon extends SacBaseModelControl<st
|
|
|
9
9
|
* Definiert den Container als Required Form Item
|
|
10
10
|
*/
|
|
11
11
|
private _isrequired;
|
|
12
|
-
/**
|
|
13
|
-
* Text welcher als Tooltip angezeigt wird.
|
|
14
|
-
*/
|
|
15
|
-
tooltiptext: string;
|
|
16
12
|
/**
|
|
17
13
|
* Definiert den Container als Required Form Item
|
|
18
14
|
*/
|
|
19
|
-
|
|
15
|
+
set isrequired(v: boolean);
|
|
20
16
|
/**
|
|
21
17
|
* Definiert den Container als Required Form Item
|
|
22
18
|
*/
|
|
23
|
-
|
|
19
|
+
get isrequired(): boolean;
|
|
24
20
|
/**
|
|
25
21
|
* Validierung des Controls
|
|
26
22
|
*
|
|
@@ -30,6 +26,6 @@ export declare class SacStaticFormContainerCommon extends SacBaseModelControl<st
|
|
|
30
26
|
*/
|
|
31
27
|
validateData(c: AbstractControl): ValidationErrors | null;
|
|
32
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacStaticFormContainerCommon, never>;
|
|
33
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SacStaticFormContainerCommon, never, never, { "
|
|
29
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SacStaticFormContainerCommon, never, never, { "isrequired": { "alias": "isrequired"; "required": false; }; }, {}, never, never, false, never>;
|
|
34
30
|
}
|
|
35
31
|
//# sourceMappingURL=formcontainer.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"formcontainer.d.ts","sourceRoot":"","sources":["../../../../projects/sac-common/src/controls/static/formcontainer.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AACnE,OAAO,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;;AAGpE;;IAEI;AACJ,qBACa,4BAA6B,SAAQ,mBAAmB,CAAC,MAAM,CAAC;IAG3E;;OAEG;IACH,OAAO,CAAC,WAAW,CAAkB;
|
|
1
|
+
{"version":3,"file":"formcontainer.d.ts","sourceRoot":"","sources":["../../../../projects/sac-common/src/controls/static/formcontainer.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AACnE,OAAO,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;;AAGpE;;IAEI;AACJ,qBACa,4BAA6B,SAAQ,mBAAmB,CAAC,MAAM,CAAC;IAG3E;;OAEG;IACH,OAAO,CAAC,WAAW,CAAkB;IAMrC;;OAEG;IACH,IACW,UAAU,CAAC,CAAC,EAAE,OAAO,EAE/B;IAED;;OAEG;IACH,IAAW,UAAU,IAAI,OAAO,CAE/B;IAMD;;;;;;OAMG;IACI,YAAY,CAAC,CAAC,EAAE,eAAe,GAAG,gBAAgB,GAAG,IAAI;yCAtCrD,4BAA4B;2CAA5B,4BAA4B;CA4CxC"}
|