@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.
- package/esm2020/lib/gio-form-json-schema/gio-formly-json-schema.service.mjs +8 -1
- package/esm2020/lib/gio-form-json-schema/model/GioJsonSchema.mjs +1 -1
- package/fesm2015/gravitee-ui-particles-angular.mjs +7 -0
- package/fesm2015/gravitee-ui-particles-angular.mjs.map +1 -1
- package/fesm2020/gravitee-ui-particles-angular.mjs +7 -0
- package/fesm2020/gravitee-ui-particles-angular.mjs.map +1 -1
- package/lib/gio-form-json-schema/gio-formly-json-schema.service.d.ts +1 -0
- package/lib/gio-form-json-schema/model/GioJsonSchema.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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 });
|