@alfresco/adf-process-services 9.1.0-16879056836 → 9.1.0-16936569382
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.
|
@@ -289,7 +289,7 @@ class ProcessService {
|
|
|
289
289
|
try {
|
|
290
290
|
return datePipe.transform(value, dateFormat);
|
|
291
291
|
}
|
|
292
|
-
catch
|
|
292
|
+
catch {
|
|
293
293
|
return '';
|
|
294
294
|
}
|
|
295
295
|
}
|
|
@@ -10941,6 +10941,17 @@ const ATTACHMENT_DIRECTIVES = [
|
|
|
10941
10941
|
* See the License for the specific language governing permissions and
|
|
10942
10942
|
* limitations under the License.
|
|
10943
10943
|
*/
|
|
10944
|
+
/**
|
|
10945
|
+
* @deprecated use provider api instead, for example:
|
|
10946
|
+
* ```
|
|
10947
|
+
* providers: [
|
|
10948
|
+
* provideTranslations('adf-process-services', 'assets/adf-process-services'),
|
|
10949
|
+
* { provide: MAT_FORM_FIELD_DEFAULT_OPTIONS, useValue: { floatLabel: 'never' } }
|
|
10950
|
+
* FormRenderingService,
|
|
10951
|
+
* { provide: FormRenderingService, useClass: ProcessFormRenderingService }
|
|
10952
|
+
* ]
|
|
10953
|
+
* ```
|
|
10954
|
+
*/
|
|
10944
10955
|
class ProcessModule {
|
|
10945
10956
|
static forRoot() {
|
|
10946
10957
|
return {
|