@simpleangularcontrols/sac-common 10.0.0-rc.6 → 10.0.0-rc.8
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 +555 -391
- 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 +1 -1
- package/common/baseinputcontrol.d.ts +0 -4
- package/common/basemodelcontrol.d.ts +25 -1
- package/common/baseuploadcontrol.d.ts +0 -5
- package/controls/checkbox/checkbox.d.ts +0 -4
- package/controls/datetime/date.d.ts +0 -4
- package/controls/datetime/datetime.d.ts +0 -4
- package/controls/datetime/time.d.ts +0 -4
- 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 +37 -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/layout/formlayout.d.ts +4 -0
- package/controls/static/formcontainer.d.ts +2 -6
- package/controls/tooltip/tooltip.d.ts +88 -63
- package/esm2015/common/basedatetimecontrol.js +1 -1
- package/esm2015/common/baseinputcontrol.js +2 -7
- package/esm2015/common/basemodelcontrol.js +34 -2
- package/esm2015/common/baseuploadcontrol.js +2 -3
- package/esm2015/controls/checkbox/checkbox.js +5 -6
- package/esm2015/controls/datetime/date.js +2 -3
- package/esm2015/controls/datetime/datetime.js +2 -3
- package/esm2015/controls/datetime/time.js +2 -3
- 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 +56 -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/layout/formlayout.js +2 -1
- package/esm2015/controls/static/formcontainer.js +11 -10
- package/esm2015/controls/tooltip/tooltip.js +260 -189
- package/esm2015/interfaces/ISacConfigurationService.js +1 -1
- package/esm2015/interfaces/ISacIconService.js +1 -1
- package/esm2015/services/sac-configuration.service.js +7 -1
- package/esm2015/services/sac-icon.service.js +7 -1
- package/esm2015/validation/isDateValid.js +9 -1
- package/fesm2015/simpleangularcontrols-sac-common.js +531 -379
- package/fesm2015/simpleangularcontrols-sac-common.js.map +1 -1
- package/interfaces/ISacConfigurationService.d.ts +4 -0
- package/interfaces/ISacIconService.d.ts +4 -0
- package/package.json +1 -1
- package/services/sac-configuration.service.d.ts +8 -0
- package/services/sac-icon.service.d.ts +8 -0
- package/simpleangularcontrols-sac-common-10.0.0-rc.8.tgz +0 -0
- package/simpleangularcontrols-sac-common.metadata.json +1 -1
- package/simpleangularcontrols-sac-common-10.0.0-rc.6.tgz +0 -0
|
@@ -11,6 +11,10 @@ export interface ISacConfigurationService {
|
|
|
11
11
|
* Defines the standard text for currencies. e.g. $, €, CHF
|
|
12
12
|
*/
|
|
13
13
|
CurrencyText: string;
|
|
14
|
+
/**
|
|
15
|
+
* Mode for display helptext
|
|
16
|
+
*/
|
|
17
|
+
HelptextMode: 'tooltip' | 'text' | null;
|
|
14
18
|
/**
|
|
15
19
|
* Activates the error messages below the controls
|
|
16
20
|
*/
|
|
@@ -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
|
*/
|
package/package.json
CHANGED
|
@@ -13,6 +13,10 @@ export declare abstract class SacAbstractConfigurationService implements ISacCon
|
|
|
13
13
|
* @inheritdoc
|
|
14
14
|
*/
|
|
15
15
|
abstract get CurrencyText(): string;
|
|
16
|
+
/**
|
|
17
|
+
* @inheritdoc
|
|
18
|
+
*/
|
|
19
|
+
abstract get HelptextMode(): 'tooltip' | 'text';
|
|
16
20
|
/**
|
|
17
21
|
* @inheritdoc
|
|
18
22
|
*/
|
|
@@ -54,6 +58,10 @@ export declare class SacDefaultConfigurationService extends SacAbstractConfigura
|
|
|
54
58
|
* @inheritdoc
|
|
55
59
|
*/
|
|
56
60
|
get CurrencyText(): string;
|
|
61
|
+
/**
|
|
62
|
+
* @inheritdoc
|
|
63
|
+
*/
|
|
64
|
+
get HelptextMode(): 'tooltip' | 'text';
|
|
57
65
|
/**
|
|
58
66
|
* @inheritdoc
|
|
59
67
|
*/
|
|
@@ -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
|
*/
|
|
@@ -145,6 +149,10 @@ export declare class SacDefaultIconService extends SacAbstractIconService {
|
|
|
145
149
|
* @inheritdoc
|
|
146
150
|
*/
|
|
147
151
|
get DateTimeSelectorComponentMonthPrevIcon(): string;
|
|
152
|
+
/**
|
|
153
|
+
* @inheritdoc
|
|
154
|
+
*/
|
|
155
|
+
get GenericHelptextIcon(): string;
|
|
148
156
|
/**
|
|
149
157
|
* @inheritdoc
|
|
150
158
|
*/
|
|
Binary file
|