@kris701/ez-ui 1.2.6 → 1.2.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kris701/ez-ui",
3
- "version": "1.2.6",
3
+ "version": "1.2.7",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^22.0.0",
6
6
  "@angular/core": "^22.0.0"
@@ -158,7 +158,7 @@ declare class EzUIMultiSelect implements OnChanges {
158
158
  selected: any[] | null | undefined;
159
159
  selectedChange: EventEmitter<any[] | null | undefined>;
160
160
  appearanceMap: {
161
- [value: string]: string;
161
+ [value: string | number]: string;
162
162
  };
163
163
  ngOnChanges(changes: SimpleChanges): void;
164
164
  stringify: (value: string) => string;
@@ -205,7 +205,7 @@ declare class EzUISelect implements OnChanges {
205
205
  selected: any | null | undefined;
206
206
  selectedChange: EventEmitter<any>;
207
207
  appearanceMap: {
208
- [value: string]: string;
208
+ [value: string | number]: string;
209
209
  };
210
210
  ngOnChanges(changes: SimpleChanges): void;
211
211
  stringify: (value: string) => string;