pjc-fields 0.0.52 → 0.0.53

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": "pjc-fields",
3
- "version": "0.0.52",
3
+ "version": "0.0.53",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.2.0",
6
6
  "@angular/core": "^21.2.0",
@@ -362,8 +362,9 @@ declare class PjcEmailFieldComponent implements ControlValueAccessor, Validator,
362
362
  }
363
363
 
364
364
  interface PjcEnumItem {
365
- nome: string;
366
- descricao: string;
365
+ nome?: string;
366
+ descricao?: string;
367
+ [key: string]: any;
367
368
  }
368
369
 
369
370
  declare class PjcEnumFieldComponent implements ControlValueAccessor, OnInit {