@kris701/ez-ui 1.2.6 → 1.2.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/package.json
CHANGED
package/types/kris701-ez-ui.d.ts
CHANGED
|
@@ -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;
|