@simpleangularcontrols/sac-common 10.0.0-rc.2 → 10.0.0-rc.21
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/bundles/simpleangularcontrols-sac-common.umd.js +2232 -1604
- package/bundles/simpleangularcontrols-sac-common.umd.js.map +1 -1
- package/bundles/simpleangularcontrols-sac-common.umd.min.js +1 -1
- package/bundles/simpleangularcontrols-sac-common.umd.min.js.map +1 -1
- package/common/basedatetimecontrol.d.ts +100 -14
- package/common/baseinputcontrol.d.ts +0 -4
- package/common/basemodelcontrol.d.ts +55 -27
- package/common/baseuploadcontrol.d.ts +71 -55
- package/controls/checkbox/checkbox.d.ts +12 -3
- package/controls/checkbox/radiobutton.d.ts +61 -26
- package/controls/contextmenu/contextmenu.d.ts +26 -19
- package/controls/contextmenu/contextmenu.interface.d.ts +3 -0
- package/controls/contextmenu/contextmenuitem.d.ts +5 -0
- package/controls/contextmenu/contextmenuitembutton.d.ts +21 -20
- package/controls/datetime/date.d.ts +28 -31
- package/controls/datetime/datetime.d.ts +27 -31
- package/controls/datetime/time.d.ts +26 -30
- package/controls/dialog/dialog.d.ts +31 -43
- package/controls/grid/grid.d.ts +38 -36
- package/controls/grid/gridbutton.d.ts +13 -13
- package/controls/grid/gridcolumn.d.ts +8 -8
- package/controls/grid/gridcolumnaction.d.ts +3 -3
- package/controls/grid/gridcolumnbase.d.ts +45 -37
- package/controls/grid/gridimage.d.ts +2 -2
- package/controls/grid/model.d.ts +51 -42
- package/controls/grid/paging.d.ts +41 -43
- package/controls/input/input.d.ts +3 -3
- package/controls/input/inputarea.d.ts +5 -5
- package/controls/input/inputpassword.d.ts +7 -7
- package/controls/input/inputsearch.d.ts +13 -4
- package/controls/layout/formlayout.d.ts +17 -1
- package/controls/list/buildvaluestring.d.ts +6 -0
- package/controls/list/dropdown.d.ts +9 -51
- package/controls/list/dropdownoptions.d.ts +38 -0
- package/controls/multilanguage/multilanguageinput.d.ts +2 -2
- package/controls/multilanguage/multilanguageinputarea.d.ts +4 -4
- package/controls/static/formcontainer.d.ts +7 -3
- package/controls/tooltip/tooltip.d.ts +76 -69
- package/controls/treeview/treeview.d.ts +107 -107
- package/esm2015/common/basedatetimecontrol.js +185 -30
- package/esm2015/common/baseinputcontrol.js +2 -7
- package/esm2015/common/basemodelcontrol.js +109 -57
- package/esm2015/common/baseuploadcontrol.js +92 -59
- package/esm2015/controls/checkbox/checkbox.js +29 -6
- package/esm2015/controls/checkbox/radiobutton.js +94 -45
- package/esm2015/controls/contextmenu/contextmenu.interface.js +1 -0
- package/esm2015/controls/contextmenu/contextmenu.interface.ngfactory.js +7 -0
- package/esm2015/controls/contextmenu/contextmenu.js +22 -23
- package/esm2015/controls/contextmenu/contextmenuitem.js +13 -2
- package/esm2015/controls/contextmenu/contextmenuitembutton.js +34 -25
- package/esm2015/controls/datetime/date.js +44 -43
- package/esm2015/controls/datetime/datetime.js +43 -43
- package/esm2015/controls/datetime/time.js +43 -43
- package/esm2015/controls/dialog/dialog.js +41 -83
- package/esm2015/controls/grid/grid.js +21 -21
- package/esm2015/controls/grid/gridbutton.js +19 -13
- package/esm2015/controls/grid/gridcolumn.js +14 -7
- package/esm2015/controls/grid/gridcolumnaction.js +6 -5
- package/esm2015/controls/grid/gridcolumnbase.js +67 -55
- package/esm2015/controls/grid/gridimage.js +3 -3
- package/esm2015/controls/grid/model.js +51 -30
- package/esm2015/controls/grid/paging.js +40 -42
- package/esm2015/controls/input/input.js +6 -8
- package/esm2015/controls/input/inputarea.js +19 -12
- package/esm2015/controls/input/inputpassword.js +12 -12
- package/esm2015/controls/input/inputsearch.js +35 -6
- package/esm2015/controls/layout/formlayout.js +20 -8
- package/esm2015/controls/list/buildvaluestring.js +18 -0
- package/esm2015/controls/{treeview/ngtreeitemaction.ngfactory.js → list/buildvaluestring.ngfactory.js} +1 -1
- package/esm2015/controls/list/dropdown.js +16 -114
- package/esm2015/controls/list/dropdownoptions.js +72 -0
- package/esm2015/controls/{treeview/treeviewchild.ngfactory.js → list/dropdownoptions.ngfactory.js} +1 -1
- package/esm2015/controls/multilanguage/multilanguageinput.js +8 -14
- package/esm2015/controls/multilanguage/multilanguageinputarea.js +9 -15
- package/esm2015/controls/static/formcontainer.js +16 -5
- package/esm2015/controls/tooltip/tooltip.js +126 -245
- package/esm2015/controls/treeview/treeview.js +276 -231
- package/esm2015/interfaces/ISacConfigurationService.js +1 -1
- package/esm2015/interfaces/ISacIconService.js +1 -1
- package/esm2015/interfaces/ISacUploadEventCompleteState.js +1 -0
- package/esm2015/interfaces/ISacUploadEventCompleteState.ngfactory.js +7 -0
- package/esm2015/interfaces/ISacValidationKeyService.js +1 -1
- package/esm2015/interfaces/treeviewaction.interface.js +1 -0
- package/esm2015/interfaces/treeviewaction.interface.ngfactory.js +7 -0
- package/esm2015/public_api.js +15 -8
- package/esm2015/services/sac-configuration.service.js +31 -5
- package/esm2015/services/sac-icon.service.js +37 -1
- package/esm2015/services/sac-localisation.service.js +69 -180
- package/esm2015/services/sac-validationkey.service.js +12 -9
- package/esm2015/simpleangularcontrols-sac-common.js +1 -7
- package/esm2015/utilities/enums.js +5 -1
- package/esm2015/utilities/guid.js +4 -2
- package/esm2015/utilities/popuphelper.js +343 -0
- package/esm2015/utilities/popuphelper.ngfactory.js +7 -0
- package/esm2015/validation/equals.validator.js +14 -0
- package/esm2015/validation/equals.validator.ngfactory.js +7 -0
- package/esm2015/validation/isDateValid.js +9 -1
- package/esm2015/validation/mintextlength.validator.js +23 -0
- package/esm2015/validation/mintextlength.validator.ngfactory.js +7 -0
- package/esm2015/validation/notequals.validator.js +14 -0
- package/esm2015/validation/{minlength.validator.ngfactory.js → notequals.validator.ngfactory.js} +1 -1
- package/esm2015/validation/validation.class.js +35 -6
- package/fesm2015/simpleangularcontrols-sac-common.js +2070 -1498
- package/fesm2015/simpleangularcontrols-sac-common.js.map +1 -1
- package/interfaces/ISacConfigurationService.d.ts +20 -0
- package/interfaces/ISacIconService.d.ts +24 -0
- package/interfaces/ISacUploadEventCompleteState.d.ts +5 -0
- package/interfaces/ISacUploadEventCompleteState.ngfactory.d.ts +1 -0
- package/interfaces/ISacValidationKeyService.d.ts +2 -2
- package/interfaces/treeviewaction.interface.d.ts +4 -0
- package/interfaces/treeviewaction.interface.ngfactory.d.ts +1 -0
- package/package.json +2 -2
- package/public_api.d.ts +13 -6
- package/services/sac-configuration.service.d.ts +40 -0
- package/services/sac-icon.service.d.ts +49 -1
- package/services/sac-localisation.service.d.ts +10 -10
- package/services/sac-validationkey.service.d.ts +7 -7
- package/simpleangularcontrols-sac-common-10.0.0-rc.21.tgz +0 -0
- package/simpleangularcontrols-sac-common.d.ts +0 -6
- package/simpleangularcontrols-sac-common.metadata.json +1 -1
- package/utilities/enums.d.ts +3 -1
- package/utilities/popuphelper.d.ts +83 -0
- package/utilities/popuphelper.ngfactory.d.ts +1 -0
- package/validation/equals.validator.d.ts +2 -0
- package/validation/equals.validator.ngfactory.d.ts +1 -0
- package/validation/mintextlength.validator.d.ts +2 -0
- package/validation/mintextlength.validator.ngfactory.d.ts +1 -0
- package/validation/notequals.validator.d.ts +2 -0
- package/validation/notequals.validator.ngfactory.d.ts +1 -0
- package/validation/validation.class.d.ts +22 -3
- package/controls/treeview/ngtreeitemaction.d.ts +0 -40
- package/controls/treeview/treeviewchild.d.ts +0 -12
- package/esm2015/controls/treeview/ngtreeitemaction.js +0 -60
- package/esm2015/controls/treeview/treeviewchild.js +0 -18
- package/esm2015/validation/minlength.validator.js +0 -21
- package/simpleangularcontrols-sac-common-10.0.0-rc.2.tgz +0 -0
- package/validation/minlength.validator.d.ts +0 -2
- /package/controls/{treeview/ngtreeitemaction.ngfactory.d.ts → contextmenu/contextmenu.interface.ngfactory.d.ts} +0 -0
- /package/controls/{treeview/treeviewchild.ngfactory.d.ts → list/buildvaluestring.ngfactory.d.ts} +0 -0
- /package/{validation/minlength.validator.ngfactory.d.ts → controls/list/dropdownoptions.ngfactory.d.ts} +0 -0
|
@@ -3,6 +3,10 @@ import { ControlHeight } from '../enums/ControlHeight';
|
|
|
3
3
|
* interface for service which provides global configuration settings to components
|
|
4
4
|
*/
|
|
5
5
|
export interface ISacConfigurationService {
|
|
6
|
+
/**
|
|
7
|
+
* Defines the default display for a checkbox. You can choose between a checkbox and a switch.
|
|
8
|
+
*/
|
|
9
|
+
CheckboxStyle: 'checkbox' | 'switch';
|
|
6
10
|
/**
|
|
7
11
|
* Defines the standard height of the components
|
|
8
12
|
*/
|
|
@@ -11,6 +15,18 @@ export interface ISacConfigurationService {
|
|
|
11
15
|
* Defines the standard text for currencies. e.g. $, €, CHF
|
|
12
16
|
*/
|
|
13
17
|
CurrencyText: string;
|
|
18
|
+
/**
|
|
19
|
+
* Mode for display helptext
|
|
20
|
+
*/
|
|
21
|
+
HelptextMode: 'tooltip' | 'text';
|
|
22
|
+
/**
|
|
23
|
+
* Activates the error messages below the controls
|
|
24
|
+
*/
|
|
25
|
+
InlineErrorEnabled: boolean;
|
|
26
|
+
/**
|
|
27
|
+
* Defines if InputSearch uses an icon at the button or the text
|
|
28
|
+
*/
|
|
29
|
+
InputSearchIconMode: 'text' | 'icon' | 'mixed';
|
|
14
30
|
/**
|
|
15
31
|
* default labe size for large devices
|
|
16
32
|
*/
|
|
@@ -35,4 +51,8 @@ export interface ISacConfigurationService {
|
|
|
35
51
|
* default label size for extra extra large devices
|
|
36
52
|
*/
|
|
37
53
|
LabelSizeXxl: number | null;
|
|
54
|
+
/**
|
|
55
|
+
* Detach label text and tooltip from each other in Label so that label and tooltip can be aligned differently. This is in Bootstrap 3 not supported!
|
|
56
|
+
*/
|
|
57
|
+
SplitLabelAndHelptext: boolean;
|
|
38
58
|
}
|
|
@@ -54,6 +54,10 @@ export interface ISacIconService {
|
|
|
54
54
|
* Icon for switching to the previous month in the DateTimSelector component
|
|
55
55
|
*/
|
|
56
56
|
DateTimeSelectorComponentMonthPrevIcon: string;
|
|
57
|
+
/**
|
|
58
|
+
* Icon for HelpText Tooltip in any controls
|
|
59
|
+
*/
|
|
60
|
+
GenericHelptextIcon: string;
|
|
57
61
|
/**
|
|
58
62
|
* sort down icon for grid
|
|
59
63
|
*/
|
|
@@ -62,10 +66,30 @@ export interface ISacIconService {
|
|
|
62
66
|
* sort up icon for grid
|
|
63
67
|
*/
|
|
64
68
|
GridComponentSortUp: string;
|
|
69
|
+
/**
|
|
70
|
+
* Icon which is used by the InputSearch component on the button.
|
|
71
|
+
*/
|
|
72
|
+
InputSearchButtonIcon: string;
|
|
65
73
|
/**
|
|
66
74
|
* icon for select button in time component
|
|
67
75
|
*/
|
|
68
76
|
TimeComponentSelectorIcon: string;
|
|
77
|
+
/**
|
|
78
|
+
* Icon for the standard actions per node
|
|
79
|
+
*/
|
|
80
|
+
TreeviewNodeActionIcon: string;
|
|
81
|
+
/**
|
|
82
|
+
* Icon if node is closed in Treeview and the child elements are not visible.
|
|
83
|
+
*/
|
|
84
|
+
TreeviewNodeClosedIcon: string;
|
|
85
|
+
/**
|
|
86
|
+
* Icon if node in treeview has no child elements
|
|
87
|
+
*/
|
|
88
|
+
TreeviewNodeEmptyIcon: string;
|
|
89
|
+
/**
|
|
90
|
+
* Icon when Node is open in Treeview and the child elements are visible.
|
|
91
|
+
*/
|
|
92
|
+
TreeviewNodeOpenIcon: string;
|
|
69
93
|
/**
|
|
70
94
|
* browse icon in upload component
|
|
71
95
|
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -28,7 +28,7 @@ export interface ISacValidationKeyService {
|
|
|
28
28
|
ValidationErrorMaxTime: string;
|
|
29
29
|
ValidationErrorMaxValue: string;
|
|
30
30
|
ValidationErrorMinDate: string;
|
|
31
|
-
|
|
31
|
+
ValidationErrorMinTextLength: string;
|
|
32
32
|
ValidationErrorMinTime: string;
|
|
33
33
|
ValidationErrorMinValue: string;
|
|
34
34
|
ValidationErrorMultilanguageRequired: string;
|
|
@@ -42,7 +42,7 @@ export interface ISacValidationKeyService {
|
|
|
42
42
|
ValidationErrorSummaryMaxTime: string;
|
|
43
43
|
ValidationErrorSummaryMaxValue: string;
|
|
44
44
|
ValidationErrorSummaryMinDate: string;
|
|
45
|
-
|
|
45
|
+
ValidationErrorSummaryMinTextLength: string;
|
|
46
46
|
ValidationErrorSummaryMinTime: string;
|
|
47
47
|
ValidationErrorSummaryMinValue: string;
|
|
48
48
|
ValidationErrorSummaryMultilanguageRequired: string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simpleangularcontrols/sac-common",
|
|
3
|
-
"version": "10.0.0-rc.
|
|
3
|
+
"version": "10.0.0-rc.21",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^10.1.5",
|
|
6
6
|
"@angular/core": "^10.1.5",
|
|
7
|
-
"moment": "~2.29.
|
|
7
|
+
"moment": "~2.29.1",
|
|
8
8
|
"angular-imask": "6.0.5",
|
|
9
9
|
"ngx-uploadx": "3.5.2"
|
|
10
10
|
},
|
package/public_api.d.ts
CHANGED
|
@@ -5,8 +5,9 @@ export { SacRadiobuttonsCommon } from './controls/checkbox/radiobuttons';
|
|
|
5
5
|
export { SacDialogCommon } from './controls/dialog/dialog';
|
|
6
6
|
export { SacFormCommon } from './controls/form/form';
|
|
7
7
|
export { SacFormLayoutCommon } from './controls/layout/formlayout';
|
|
8
|
-
export { SacDropdownCommon
|
|
9
|
-
export {
|
|
8
|
+
export { SacDropdownCommon } from './controls/list/dropdown';
|
|
9
|
+
export { SacDropdownOptionCommon } from './controls/list/dropdownoptions';
|
|
10
|
+
export { SacListboxCommon, SacListboxOptionCommon } from './controls/list/listbox';
|
|
10
11
|
export { SacTabCommon } from './controls/tabs/tab';
|
|
11
12
|
export { SacTabItemCommon } from './controls/tabs/tabitem';
|
|
12
13
|
export { SacValidationSummaryCommon } from './controls/validation/validationsummary';
|
|
@@ -35,15 +36,14 @@ export { SacStaticLabelCommon } from './controls/static/staticlabel';
|
|
|
35
36
|
export { SacWizardCommon } from './controls/wizard/wizard';
|
|
36
37
|
export { SacWizardItemCommon } from './controls/wizard/wizarditem';
|
|
37
38
|
export { SacTinyMceCommon } from './controls/tinymce/tinymce';
|
|
38
|
-
export {
|
|
39
|
-
export { SacTreeViewCommon } from './controls/treeview/treeview';
|
|
40
|
-
export { SacTreeViewChildCommon } from './controls/treeview/treeviewchild';
|
|
39
|
+
export { SacTreeviewCommon } from './controls/treeview/treeview';
|
|
41
40
|
export { SacTooltipCommon } from './controls/tooltip/tooltip';
|
|
42
41
|
export { SacUploadFile } from './common/baseuploadcontrol';
|
|
43
42
|
export { SacDropzoneMultipleCommon } from './controls/upload/dropzonemultiple';
|
|
44
43
|
export { SacDropzoneSingleCommon } from './controls/upload/dropzonesingle';
|
|
45
44
|
export { SacUploadMultipleCommon } from './controls/upload/uploadmultiple';
|
|
46
45
|
export { SacUploadSingleCommon } from './controls/upload/uploadsingle';
|
|
46
|
+
export { ISacUploadEventCompleteState } from './interfaces/ISacUploadEventCompleteState';
|
|
47
47
|
export { SacMultilanguageInputCommon } from './controls/multilanguage/multilanguageinput';
|
|
48
48
|
export { SacMultilanguageInputAreaCommon } from './controls/multilanguage/multilanguageinputarea';
|
|
49
49
|
export { SacConfirmCommon } from './controls/confirm/confirm';
|
|
@@ -64,8 +64,9 @@ export * from './interfaces/ISacLanguageService';
|
|
|
64
64
|
export * from './interfaces/ISacLocalisationService';
|
|
65
65
|
export * from './interfaces/ISacValidationKeyService';
|
|
66
66
|
export { SACCONFIGURATION_SERVICE, SACFILEBROWSER_SERVICE, SACICON_SERVICE, SACLANGUAGE_SERVICE, SACLOCALISATION_SERVICE, SACVALIDATIONKEY_SERVICE, SacAbstractConfigurationService, SacAbstractFileBrowserService, SacAbstractIconService, SacAbstractLanguageService, SacAbstractLocalisationService, } from './services';
|
|
67
|
-
export * from './interfaces/ISacLabelSizes';
|
|
68
67
|
export * from './interfaces/iabstractcontrollabel';
|
|
68
|
+
export * from './interfaces/ISacLabelSizes';
|
|
69
|
+
export * from './interfaces/treeviewaction.interface';
|
|
69
70
|
export * from './models/languagemodel';
|
|
70
71
|
export * from './enums/ButtonRoleType';
|
|
71
72
|
export * from './enums/ControlHeight';
|
|
@@ -77,3 +78,9 @@ export * from './utilities/datatypes';
|
|
|
77
78
|
export * from './utilities/enums';
|
|
78
79
|
export * from './utilities/interpolation';
|
|
79
80
|
export * from './utilities/positioning';
|
|
81
|
+
export * from './common/basedatetimecontrol';
|
|
82
|
+
export * from './common/baseinputcontrol';
|
|
83
|
+
export * from './common/baselistcontrol';
|
|
84
|
+
export * from './common/basemodelcontrol';
|
|
85
|
+
export * from './common/baseselectcontrol';
|
|
86
|
+
export * from './common/baseuploadcontrol';
|
|
@@ -5,6 +5,10 @@ import { ISacConfigurationService } from '../interfaces/ISacConfigurationService
|
|
|
5
5
|
* abstract class for configuration settings providing in components
|
|
6
6
|
*/
|
|
7
7
|
export declare abstract class SacAbstractConfigurationService implements ISacConfigurationService {
|
|
8
|
+
/**
|
|
9
|
+
* @inheritdoc
|
|
10
|
+
*/
|
|
11
|
+
abstract get CheckboxStyle(): 'checkbox' | 'switch';
|
|
8
12
|
/**
|
|
9
13
|
* @inheritdoc
|
|
10
14
|
*/
|
|
@@ -13,6 +17,18 @@ export declare abstract class SacAbstractConfigurationService implements ISacCon
|
|
|
13
17
|
* @inheritdoc
|
|
14
18
|
*/
|
|
15
19
|
abstract get CurrencyText(): string;
|
|
20
|
+
/**
|
|
21
|
+
* @inheritdoc
|
|
22
|
+
*/
|
|
23
|
+
abstract get HelptextMode(): 'tooltip' | 'text';
|
|
24
|
+
/**
|
|
25
|
+
* @inheritdoc
|
|
26
|
+
*/
|
|
27
|
+
abstract get InlineErrorEnabled(): boolean;
|
|
28
|
+
/**
|
|
29
|
+
* @inheritdoc
|
|
30
|
+
*/
|
|
31
|
+
abstract get InputSearchIconMode(): 'text' | 'icon' | 'mixed';
|
|
16
32
|
/**
|
|
17
33
|
* @inheritdoc
|
|
18
34
|
*/
|
|
@@ -37,11 +53,19 @@ export declare abstract class SacAbstractConfigurationService implements ISacCon
|
|
|
37
53
|
* @inheritdoc
|
|
38
54
|
*/
|
|
39
55
|
abstract get LabelSizeXxl(): number | null;
|
|
56
|
+
/**
|
|
57
|
+
* @inheritdoc
|
|
58
|
+
*/
|
|
59
|
+
abstract get SplitLabelAndHelptext(): boolean;
|
|
40
60
|
}
|
|
41
61
|
/**
|
|
42
62
|
* default configuration service for components
|
|
43
63
|
* */
|
|
44
64
|
export declare class SacDefaultConfigurationService extends SacAbstractConfigurationService {
|
|
65
|
+
/**
|
|
66
|
+
* @inheritdoc
|
|
67
|
+
*/
|
|
68
|
+
get CheckboxStyle(): 'checkbox' | 'switch';
|
|
45
69
|
/**
|
|
46
70
|
* @inheritdoc
|
|
47
71
|
*/
|
|
@@ -50,6 +74,18 @@ export declare class SacDefaultConfigurationService extends SacAbstractConfigura
|
|
|
50
74
|
* @inheritdoc
|
|
51
75
|
*/
|
|
52
76
|
get CurrencyText(): string;
|
|
77
|
+
/**
|
|
78
|
+
* @inheritdoc
|
|
79
|
+
*/
|
|
80
|
+
get HelptextMode(): 'tooltip' | 'text';
|
|
81
|
+
/**
|
|
82
|
+
* @inheritdoc
|
|
83
|
+
*/
|
|
84
|
+
get InlineErrorEnabled(): boolean;
|
|
85
|
+
/**
|
|
86
|
+
* @inheritdoc
|
|
87
|
+
*/
|
|
88
|
+
get InputSearchIconMode(): 'text' | 'icon' | 'mixed';
|
|
53
89
|
/**
|
|
54
90
|
* @inheritdoc
|
|
55
91
|
*/
|
|
@@ -74,6 +110,10 @@ export declare class SacDefaultConfigurationService extends SacAbstractConfigura
|
|
|
74
110
|
* @inheritdoc
|
|
75
111
|
*/
|
|
76
112
|
get LabelSizeXxl(): number | null;
|
|
113
|
+
/**
|
|
114
|
+
* @inheritdoc
|
|
115
|
+
*/
|
|
116
|
+
get SplitLabelAndHelptext(): boolean;
|
|
77
117
|
}
|
|
78
118
|
/**
|
|
79
119
|
* injection token for component configuration service
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { InjectionToken } from '@angular/core';
|
|
2
1
|
import { ISacIconService } from '../interfaces/ISacIconService';
|
|
2
|
+
import { InjectionToken } from '@angular/core';
|
|
3
3
|
/**
|
|
4
4
|
* abstract class for icon providing in components
|
|
5
5
|
*/
|
|
@@ -56,6 +56,10 @@ export declare abstract class SacAbstractIconService implements ISacIconService
|
|
|
56
56
|
* @inheritdoc
|
|
57
57
|
*/
|
|
58
58
|
abstract get DateTimeSelectorComponentMonthPrevIcon(): string;
|
|
59
|
+
/**
|
|
60
|
+
* @inheritdoc
|
|
61
|
+
*/
|
|
62
|
+
abstract get GenericHelptextIcon(): string;
|
|
59
63
|
/**
|
|
60
64
|
* @inheritdoc
|
|
61
65
|
*/
|
|
@@ -64,10 +68,30 @@ export declare abstract class SacAbstractIconService implements ISacIconService
|
|
|
64
68
|
* @inheritdoc
|
|
65
69
|
*/
|
|
66
70
|
abstract get GridComponentSortUp(): string;
|
|
71
|
+
/**
|
|
72
|
+
* @inheritdoc
|
|
73
|
+
*/
|
|
74
|
+
abstract get InputSearchButtonIcon(): string;
|
|
67
75
|
/**
|
|
68
76
|
* @inheritdoc
|
|
69
77
|
*/
|
|
70
78
|
abstract get TimeComponentSelectorIcon(): string;
|
|
79
|
+
/**
|
|
80
|
+
* @inheritdoc
|
|
81
|
+
*/
|
|
82
|
+
abstract get TreeviewNodeActionIcon(): string;
|
|
83
|
+
/**
|
|
84
|
+
* @inheritdoc
|
|
85
|
+
*/
|
|
86
|
+
abstract get TreeviewNodeClosedIcon(): string;
|
|
87
|
+
/**
|
|
88
|
+
* @inheritdoc
|
|
89
|
+
*/
|
|
90
|
+
abstract get TreeviewNodeEmptyIcon(): string;
|
|
91
|
+
/**
|
|
92
|
+
* @inheritdoc
|
|
93
|
+
*/
|
|
94
|
+
abstract get TreeviewNodeOpenIcon(): string;
|
|
71
95
|
/**
|
|
72
96
|
* @inheritdoc
|
|
73
97
|
*/
|
|
@@ -145,6 +169,10 @@ export declare class SacDefaultIconService extends SacAbstractIconService {
|
|
|
145
169
|
* @inheritdoc
|
|
146
170
|
*/
|
|
147
171
|
get DateTimeSelectorComponentMonthPrevIcon(): string;
|
|
172
|
+
/**
|
|
173
|
+
* @inheritdoc
|
|
174
|
+
*/
|
|
175
|
+
get GenericHelptextIcon(): string;
|
|
148
176
|
/**
|
|
149
177
|
* @inheritdoc
|
|
150
178
|
*/
|
|
@@ -153,10 +181,30 @@ export declare class SacDefaultIconService extends SacAbstractIconService {
|
|
|
153
181
|
* @inheritdoc
|
|
154
182
|
*/
|
|
155
183
|
get GridComponentSortUp(): string;
|
|
184
|
+
/**
|
|
185
|
+
* @inheritdoc
|
|
186
|
+
*/
|
|
187
|
+
get InputSearchButtonIcon(): string;
|
|
156
188
|
/**
|
|
157
189
|
* @inheritdoc
|
|
158
190
|
*/
|
|
159
191
|
get TimeComponentSelectorIcon(): string;
|
|
192
|
+
/**
|
|
193
|
+
* @inheritdoc
|
|
194
|
+
*/
|
|
195
|
+
get TreeviewNodeActionIcon(): string;
|
|
196
|
+
/**
|
|
197
|
+
* @inheritdoc
|
|
198
|
+
*/
|
|
199
|
+
get TreeviewNodeClosedIcon(): string;
|
|
200
|
+
/**
|
|
201
|
+
* @inheritdoc
|
|
202
|
+
*/
|
|
203
|
+
get TreeviewNodeEmptyIcon(): string;
|
|
204
|
+
/**
|
|
205
|
+
* @inheritdoc
|
|
206
|
+
*/
|
|
207
|
+
get TreeviewNodeOpenIcon(): string;
|
|
160
208
|
/**
|
|
161
209
|
* @inheritdoc
|
|
162
210
|
*/
|
|
@@ -1,7 +1,11 @@
|
|
|
1
|
-
import { InjectionToken } from '@angular/core';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
1
|
import { ISacLocalisationService } from '../interfaces/ISacLocalisationService';
|
|
4
2
|
import { ISacValidationKeyService } from '../interfaces/ISacValidationKeyService';
|
|
3
|
+
import { InjectionToken } from '@angular/core';
|
|
4
|
+
import { Observable } from 'rxjs';
|
|
5
|
+
/**
|
|
6
|
+
* injection token for localisation service
|
|
7
|
+
*/
|
|
8
|
+
export declare const SACLOCALISATION_SERVICE: InjectionToken<SacAbstractLocalisationService>;
|
|
5
9
|
/**
|
|
6
10
|
* abstract class for localisation in components
|
|
7
11
|
* */
|
|
@@ -32,7 +36,7 @@ export declare abstract class SacAbstractLocalisationService implements ISacLoca
|
|
|
32
36
|
protected abstract get VALIDATION_ERROR_MAXTIME(): Map<string, string>;
|
|
33
37
|
protected abstract get VALIDATION_ERROR_MAXVALUE(): Map<string, string>;
|
|
34
38
|
protected abstract get VALIDATION_ERROR_MINDATE(): Map<string, string>;
|
|
35
|
-
protected abstract get
|
|
39
|
+
protected abstract get VALIDATION_ERROR_MINTEXTLENGTH(): Map<string, string>;
|
|
36
40
|
protected abstract get VALIDATION_ERROR_MINTIME(): Map<string, string>;
|
|
37
41
|
protected abstract get VALIDATION_ERROR_MINVALUE(): Map<string, string>;
|
|
38
42
|
protected abstract get VALIDATION_ERROR_MULTILANGUAGEREQUIRED(): Map<string, string>;
|
|
@@ -46,7 +50,7 @@ export declare abstract class SacAbstractLocalisationService implements ISacLoca
|
|
|
46
50
|
protected abstract get VALIDATION_ERROR_SUMMARY_MAXTIME(): Map<string, string>;
|
|
47
51
|
protected abstract get VALIDATION_ERROR_SUMMARY_MAXVALUE(): Map<string, string>;
|
|
48
52
|
protected abstract get VALIDATION_ERROR_SUMMARY_MINDATE(): Map<string, string>;
|
|
49
|
-
protected abstract get
|
|
53
|
+
protected abstract get VALIDATION_ERROR_SUMMARY_MINTEXTLENGTH(): Map<string, string>;
|
|
50
54
|
protected abstract get VALIDATION_ERROR_SUMMARY_MINTIME(): Map<string, string>;
|
|
51
55
|
protected abstract get VALIDATION_ERROR_SUMMARY_MINVALUE(): Map<string, string>;
|
|
52
56
|
protected abstract get VALIDATION_ERROR_SUMMARY_MULTILANGUAGEREQUIRED(): Map<string, string>;
|
|
@@ -97,7 +101,7 @@ export declare class SacDefaultLocalisationService extends SacAbstractLocalisati
|
|
|
97
101
|
protected get VALIDATION_ERROR_MAXTIME(): Map<string, string>;
|
|
98
102
|
protected get VALIDATION_ERROR_MAXVALUE(): Map<string, string>;
|
|
99
103
|
protected get VALIDATION_ERROR_MINDATE(): Map<string, string>;
|
|
100
|
-
protected get
|
|
104
|
+
protected get VALIDATION_ERROR_MINTEXTLENGTH(): Map<string, string>;
|
|
101
105
|
protected get VALIDATION_ERROR_MINTIME(): Map<string, string>;
|
|
102
106
|
protected get VALIDATION_ERROR_MINVALUE(): Map<string, string>;
|
|
103
107
|
protected get VALIDATION_ERROR_MULTILANGUAGEREQUIRED(): Map<string, string>;
|
|
@@ -111,7 +115,7 @@ export declare class SacDefaultLocalisationService extends SacAbstractLocalisati
|
|
|
111
115
|
protected get VALIDATION_ERROR_SUMMARY_MAXTIME(): Map<string, string>;
|
|
112
116
|
protected get VALIDATION_ERROR_SUMMARY_MAXVALUE(): Map<string, string>;
|
|
113
117
|
protected get VALIDATION_ERROR_SUMMARY_MINDATE(): Map<string, string>;
|
|
114
|
-
protected get
|
|
118
|
+
protected get VALIDATION_ERROR_SUMMARY_MINTEXTLENGTH(): Map<string, string>;
|
|
115
119
|
protected get VALIDATION_ERROR_SUMMARY_MINTIME(): Map<string, string>;
|
|
116
120
|
protected get VALIDATION_ERROR_SUMMARY_MINVALUE(): Map<string, string>;
|
|
117
121
|
protected get VALIDATION_ERROR_SUMMARY_MULTILANGUAGEREQUIRED(): Map<string, string>;
|
|
@@ -131,7 +135,3 @@ export declare class SacDefaultLocalisationService extends SacAbstractLocalisati
|
|
|
131
135
|
*/
|
|
132
136
|
private GetLanguage;
|
|
133
137
|
}
|
|
134
|
-
/**
|
|
135
|
-
* injection token for localisation service
|
|
136
|
-
*/
|
|
137
|
-
export declare const SACLOCALISATION_SERVICE: InjectionToken<SacAbstractLocalisationService>;
|
|
@@ -1,5 +1,9 @@
|
|
|
1
|
-
import { InjectionToken } from '@angular/core';
|
|
2
1
|
import { ISacValidationKeyService } from '../interfaces/ISacValidationKeyService';
|
|
2
|
+
import { InjectionToken } from '@angular/core';
|
|
3
|
+
/**
|
|
4
|
+
* injection token for localisation service
|
|
5
|
+
*/
|
|
6
|
+
export declare const SACVALIDATIONKEY_SERVICE: InjectionToken<ISacValidationKeyService>;
|
|
3
7
|
export declare class SacDefaultValidationKeyService implements ISacValidationKeyService {
|
|
4
8
|
get ConfirmDefaultButtonNo(): string;
|
|
5
9
|
get ConfirmDefaultButtonYes(): string;
|
|
@@ -27,7 +31,7 @@ export declare class SacDefaultValidationKeyService implements ISacValidationKey
|
|
|
27
31
|
get ValidationErrorMaxTime(): string;
|
|
28
32
|
get ValidationErrorMaxValue(): string;
|
|
29
33
|
get ValidationErrorMinDate(): string;
|
|
30
|
-
get
|
|
34
|
+
get ValidationErrorMinTextLength(): string;
|
|
31
35
|
get ValidationErrorMinTime(): string;
|
|
32
36
|
get ValidationErrorMinValue(): string;
|
|
33
37
|
get ValidationErrorMultilanguageRequired(): string;
|
|
@@ -41,7 +45,7 @@ export declare class SacDefaultValidationKeyService implements ISacValidationKey
|
|
|
41
45
|
get ValidationErrorSummaryMaxTime(): string;
|
|
42
46
|
get ValidationErrorSummaryMaxValue(): string;
|
|
43
47
|
get ValidationErrorSummaryMinDate(): string;
|
|
44
|
-
get
|
|
48
|
+
get ValidationErrorSummaryMinTextLength(): string;
|
|
45
49
|
get ValidationErrorSummaryMinTime(): string;
|
|
46
50
|
get ValidationErrorSummaryMinValue(): string;
|
|
47
51
|
get ValidationErrorSummaryMultilanguageRequired(): string;
|
|
@@ -49,7 +53,3 @@ export declare class SacDefaultValidationKeyService implements ISacValidationKey
|
|
|
49
53
|
get ValidationErrorSummaryPattern(): string;
|
|
50
54
|
get ValidationErrorSummaryRequired(): string;
|
|
51
55
|
}
|
|
52
|
-
/**
|
|
53
|
-
* injection token for localisation service
|
|
54
|
-
*/
|
|
55
|
-
export declare const SACVALIDATIONKEY_SERVICE: InjectionToken<ISacValidationKeyService>;
|
|
Binary file
|
|
@@ -2,9 +2,3 @@
|
|
|
2
2
|
* Generated bundle index. Do not edit.
|
|
3
3
|
*/
|
|
4
4
|
export * from './public_api';
|
|
5
|
-
export { SacBaseDateTimeControl as ɵf } from './common/basedatetimecontrol';
|
|
6
|
-
export { SacInputBase as ɵe } from './common/baseinputcontrol';
|
|
7
|
-
export { SacBaseListControl as ɵd } from './common/baselistcontrol';
|
|
8
|
-
export { SacBaseModelControl as ɵb } from './common/basemodelcontrol';
|
|
9
|
-
export { SacBaseSelectControl as ɵc } from './common/baseselectcontrol';
|
|
10
|
-
export { SacUploadBase as ɵa } from './common/baseuploadcontrol';
|