@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.
@@ -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,6 +1,6 @@
1
1
  {
2
2
  "name": "@simpleangularcontrols/sac-common",
3
- "version": "10.0.0-rc.25",
3
+ "version": "10.0.0-rc.27",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^10.1.5",
6
6
  "@angular/core": "^10.1.5",
@@ -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>;