@gravitee/ui-particles-angular 7.28.4 → 7.28.5

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.
@@ -3205,6 +3205,7 @@ class GioFormlyJsonSchemaService {
3205
3205
  mappedField = this.toggleMap(mappedField, mapSource);
3206
3206
  mappedField = this.disabledMap(mappedField, mapSource);
3207
3207
  mappedField = this.enumLabelMap(mappedField, mapSource);
3208
+ mappedField = this.deprecatedMap(mappedField, mapSource);
3208
3209
  return mappedField;
3209
3210
  },
3210
3211
  });
@@ -3280,6 +3281,12 @@ class GioFormlyJsonSchemaService {
3280
3281
  }
3281
3282
  return mappedField;
3282
3283
  }
3284
+ deprecatedMap(mappedField, mapSource) {
3285
+ if (mapSource.deprecated) {
3286
+ return {};
3287
+ }
3288
+ return mappedField;
3289
+ }
3283
3290
  }
3284
3291
  GioFormlyJsonSchemaService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: GioFormlyJsonSchemaService, deps: [{ token: i1$3.FormlyJsonschema }, { token: i1$4.FormlyFormBuilder }], target: i0.ɵɵFactoryTarget.Injectable });
3285
3292
  GioFormlyJsonSchemaService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: GioFormlyJsonSchemaService });