@simpleangularcontrols/sac-common 10.0.0-rc.25 → 10.0.0-rc.27
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 +68 -8
- 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/controls/input/inputpassword.d.ts +20 -0
- package/esm2015/controls/input/inputpassword.js +33 -1
- package/esm2015/interfaces/ISacIconService.js +1 -1
- package/esm2015/services/sac-icon.service.js +20 -8
- package/fesm2015/simpleangularcontrols-sac-common.js +51 -7
- package/fesm2015/simpleangularcontrols-sac-common.js.map +1 -1
- package/interfaces/ISacIconService.d.ts +8 -0
- package/package.json +1 -1
- package/services/sac-icon.service.d.ts +20 -4
- package/simpleangularcontrols-sac-common-10.0.0-rc.27.tgz +0 -0
- package/simpleangularcontrols-sac-common.metadata.json +1 -1
- package/simpleangularcontrols-sac-common-10.0.0-rc.25.tgz +0 -0
|
@@ -66,6 +66,14 @@ export interface ISacIconService {
|
|
|
66
66
|
* sort up icon for grid
|
|
67
67
|
*/
|
|
68
68
|
GridComponentSortUp: string;
|
|
69
|
+
/**
|
|
70
|
+
* Icon used by InputPassword to hide the password in the input field
|
|
71
|
+
*/
|
|
72
|
+
InputPasswordEyeHiddenIcon: string;
|
|
73
|
+
/**
|
|
74
|
+
* Icon used by InputPassword to display the password in plain text during input
|
|
75
|
+
*/
|
|
76
|
+
InputPasswordEyeVisibleIcon: string;
|
|
69
77
|
/**
|
|
70
78
|
* Icon which is used by the InputSearch component on the button.
|
|
71
79
|
*/
|
package/package.json
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { ISacIconService } from '../interfaces/ISacIconService';
|
|
2
2
|
import { InjectionToken } from '@angular/core';
|
|
3
|
+
/**
|
|
4
|
+
* injection token for component icon service
|
|
5
|
+
*/
|
|
6
|
+
export declare const SACICON_SERVICE: InjectionToken<ISacIconService>;
|
|
3
7
|
/**
|
|
4
8
|
* abstract class for icon providing in components
|
|
5
9
|
*/
|
|
@@ -68,6 +72,14 @@ export declare abstract class SacAbstractIconService implements ISacIconService
|
|
|
68
72
|
* @inheritdoc
|
|
69
73
|
*/
|
|
70
74
|
abstract get GridComponentSortUp(): string;
|
|
75
|
+
/**
|
|
76
|
+
* @inheritdoc
|
|
77
|
+
*/
|
|
78
|
+
abstract get InputPasswordEyeHiddenIcon(): string;
|
|
79
|
+
/**
|
|
80
|
+
* @inheritdoc
|
|
81
|
+
*/
|
|
82
|
+
abstract get InputPasswordEyeVisibleIcon(): string;
|
|
71
83
|
/**
|
|
72
84
|
* @inheritdoc
|
|
73
85
|
*/
|
|
@@ -181,6 +193,14 @@ export declare class SacDefaultIconService extends SacAbstractIconService {
|
|
|
181
193
|
* @inheritdoc
|
|
182
194
|
*/
|
|
183
195
|
get GridComponentSortUp(): string;
|
|
196
|
+
/**
|
|
197
|
+
* @inheritdoc
|
|
198
|
+
*/
|
|
199
|
+
get InputPasswordEyeHiddenIcon(): string;
|
|
200
|
+
/**
|
|
201
|
+
* @inheritdoc
|
|
202
|
+
*/
|
|
203
|
+
get InputPasswordEyeVisibleIcon(): string;
|
|
184
204
|
/**
|
|
185
205
|
* @inheritdoc
|
|
186
206
|
*/
|
|
@@ -226,7 +246,3 @@ export declare class SacDefaultIconService extends SacAbstractIconService {
|
|
|
226
246
|
*/
|
|
227
247
|
get UploadComponentUploadIcon(): string;
|
|
228
248
|
}
|
|
229
|
-
/**
|
|
230
|
-
* injection token for component icon service
|
|
231
|
-
*/
|
|
232
|
-
export declare const SACICON_SERVICE: InjectionToken<ISacIconService>;
|
|
Binary file
|