nuxeo-development-framework 5.5.6 → 5.5.7

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.
@@ -13373,6 +13373,39 @@ class ExtensionService {
13373
13373
  /**
13374
13374
  * Adds one or more new components to the existing set.
13375
13375
  * @param values The new components to add
13376
+ * @deprecated This method is deprecated for column components and will be removed in a future version.
13377
+ * Use `ColumnRendererRegistryService.register()` instead for registering column components.
13378
+ *
13379
+ * @example
13380
+ * // For columns (deprecated)
13381
+ * this.setComponents({ 'common.components.text': TextComponent, 'number': NumberComponent });
13382
+ *
13383
+ * // For columns (recommended - single)
13384
+ * this.columnRegistry.register({
13385
+ * name: 'Text Column',
13386
+ * type: 'common.text',
13387
+ * category: 'basic',
13388
+ * component: TextComponent
13389
+ * });
13390
+ *
13391
+ * // For columns (recommended - multiple)
13392
+ * this.columnRegistry.register([
13393
+ * {
13394
+ * name: 'Text Column',
13395
+ * type: 'common.text',
13396
+ * category: 'basic',
13397
+ * component: TextComponent
13398
+ * },
13399
+ * {
13400
+ * name: 'Number Column',
13401
+ * type: 'common.number',
13402
+ * category: 'basic',
13403
+ * component: NumberComponent
13404
+ * }
13405
+ * ]);
13406
+ *
13407
+ * // For viewer components (still supported)
13408
+ * this.setComponents({ 'viewer.components.pdf': PdfViewerComponent });
13376
13409
  */
13377
13410
  setComponents(values) {
13378
13411
  this.componentRegister.setComponents(values);
@@ -13383,9 +13416,7 @@ class ExtensionService {
13383
13416
  * @returns Array of auth guards or empty array if none were found
13384
13417
  */
13385
13418
  getAuthGuards(ids) {
13386
- return (ids || [])
13387
- .map((id) => this.authGuards[id])
13388
- .filter((guard) => guard);
13419
+ return (ids || []).map((id) => this.authGuards[id]).filter((guard) => guard);
13389
13420
  }
13390
13421
  /**
13391
13422
  * Retrieves a registered extension component using its ID value.
@@ -13437,14 +13468,196 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
13437
13468
  args: [EXTENSION_JSONS]
13438
13469
  }] }]; } });
13439
13470
 
13471
+ class NdfTransformService {
13472
+ constructor() {
13473
+ this._transformations = new Map();
13474
+ }
13475
+ register(arg1, arg2) {
13476
+ if (typeof arg1 === 'object') {
13477
+ Object.entries(arg1).forEach(([key, fn]) => this._transformations.set(key, fn));
13478
+ return;
13479
+ }
13480
+ if (typeof arg1 === 'string' && arg2) {
13481
+ this._transformations.set(arg1, arg2);
13482
+ }
13483
+ }
13484
+ /**
13485
+ * Retrieves a transformer function by its key.
13486
+ *
13487
+ * @param {string} key - The key of the transformer function.
13488
+ * @returns {NdfTransformerFunction | undefined} - The transformer function or undefined if not found.
13489
+ */
13490
+ get(key) {
13491
+ return this._transformations.get(key);
13492
+ }
13493
+ /**
13494
+ * Retrieves all registered transformer functions.
13495
+ *
13496
+ * @returns {Map<string, NdfTransformerFunction>} - A map of all transformer functions.
13497
+ */
13498
+ getAll() {
13499
+ return this._transformations;
13500
+ }
13501
+ /**
13502
+ * Clears all registered transformer functions.
13503
+ */
13504
+ clear() {
13505
+ this._transformations.clear();
13506
+ }
13507
+ /**
13508
+ * Checks if a transformer function is registered for a specific key.
13509
+ *
13510
+ * @param {string} key - The key to check.
13511
+ * @returns {boolean} - True if the key exists, false otherwise.
13512
+ */
13513
+ has(key) {
13514
+ return this._transformations.has(key);
13515
+ }
13516
+ /**
13517
+ * Removes a transformer function by its key.
13518
+ *
13519
+ * @param {string} key - The key of the transformer function to remove.
13520
+ */
13521
+ remove(key) {
13522
+ this._transformations.delete(key);
13523
+ }
13524
+ /**
13525
+ * Executes a transformer function for a specific key with the provided input keys.
13526
+ *
13527
+ * @param {string} key - The key of the transformer function to execute.
13528
+ * @param {string[]} keys - The input keys to pass to the transformer function.
13529
+ * @throws {Error} - If no transformer function is registered for the key.
13530
+ * @returns {Observable<NdfTransformerDataModel[]>} - The result of the transformer function.
13531
+ */
13532
+ transform(key, keys) {
13533
+ const fn = this.get(key);
13534
+ if (!fn) {
13535
+ throw new Error(`No transformer registered for key: ${key}`);
13536
+ }
13537
+ return fn(keys);
13538
+ }
13539
+ }
13540
+ NdfTransformService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: NdfTransformService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
13541
+ NdfTransformService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: NdfTransformService, providedIn: 'root' });
13542
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: NdfTransformService, decorators: [{
13543
+ type: Injectable,
13544
+ args: [{
13545
+ providedIn: 'root'
13546
+ }]
13547
+ }] });
13548
+
13549
+ class ColumnRendererRegistryService {
13550
+ constructor() {
13551
+ this.registry = new Map();
13552
+ }
13553
+ register(columns) {
13554
+ if (Array.isArray(columns)) {
13555
+ columns.forEach((def) => this._set(def));
13556
+ }
13557
+ else {
13558
+ this._set(columns);
13559
+ }
13560
+ }
13561
+ /**
13562
+ * Retrieves a column type definition by its unique type key.
13563
+ * @param type The column type identifier
13564
+ */
13565
+ get(type) {
13566
+ return this.registry.get(type);
13567
+ }
13568
+ /**
13569
+ * Returns all registered column type definitions.
13570
+ */
13571
+ getAll() {
13572
+ return Array.from(this.registry.values());
13573
+ }
13574
+ /**
13575
+ * Gets column types filtered by app
13576
+ */
13577
+ getByApp(app) {
13578
+ return this.getAll().filter((def) => (def === null || def === void 0 ? void 0 : def.app) === app);
13579
+ }
13580
+ /**
13581
+ * Returns only the component associated with a column type.
13582
+ * @param type The column type identifier
13583
+ */
13584
+ getComponent(type) {
13585
+ var _a;
13586
+ return (_a = this.registry.get(type)) === null || _a === void 0 ? void 0 : _a.component;
13587
+ }
13588
+ /**
13589
+ * Gets all column types filtered by category
13590
+ */
13591
+ getByCategory(category) {
13592
+ return Array.from(this.registry.values()).filter((def) => def.category === category);
13593
+ }
13594
+ /**
13595
+ * Returns all unique categories
13596
+ */
13597
+ getCategories() {
13598
+ const categories = Array.from(this.registry.values()).map((def) => def.category);
13599
+ return [...new Set(categories)].sort();
13600
+ }
13601
+ /**
13602
+ * Returns column types grouped by category
13603
+ */
13604
+ getGroupedByCategory() {
13605
+ const grouped = {};
13606
+ this.registry.forEach((definition) => {
13607
+ if (!grouped[definition.category]) {
13608
+ grouped[definition.category] = [];
13609
+ }
13610
+ grouped[definition.category].push(definition);
13611
+ });
13612
+ return grouped;
13613
+ }
13614
+ /**
13615
+ * Gets column types filtered by multiple categories
13616
+ */
13617
+ getByCategories(categories) {
13618
+ return Array.from(this.registry.values()).filter((def) => categories.includes(def.category));
13619
+ }
13620
+ /**
13621
+ * Checks if a column type exists
13622
+ */
13623
+ has(type) {
13624
+ return this.registry.has(type);
13625
+ }
13626
+ /**
13627
+ * Clears all registered column types (mainly for testing or hot reload scenarios).
13628
+ */
13629
+ clear() {
13630
+ this.registry.clear();
13631
+ }
13632
+ _set(definition) {
13633
+ if (!definition.type || !definition.name) {
13634
+ throw new Error('[ColumnRendererRegistry] Type and name are required fields');
13635
+ }
13636
+ if (this.registry.has(definition.type)) {
13637
+ console.warn(`[ColumnRendererRegistry] Type '${definition.type}' is already registered. Overwriting...`);
13638
+ }
13639
+ this.registry.set(definition.type, definition);
13640
+ }
13641
+ }
13642
+ ColumnRendererRegistryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ColumnRendererRegistryService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
13643
+ ColumnRendererRegistryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ColumnRendererRegistryService, providedIn: 'root' });
13644
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ColumnRendererRegistryService, decorators: [{
13645
+ type: Injectable,
13646
+ args: [{ providedIn: 'root' }]
13647
+ }] });
13648
+
13440
13649
  class DynamicColumnComponent {
13441
- constructor(extensions, componentFactoryResolver, cdr) {
13650
+ constructor(extensions, _columnRegister, componentFactoryResolver, cdr) {
13442
13651
  this.extensions = extensions;
13652
+ this._columnRegister = _columnRegister;
13443
13653
  this.componentFactoryResolver = componentFactoryResolver;
13444
13654
  this.cdr = cdr;
13445
13655
  }
13446
13656
  ngOnInit() {
13447
- const componentType = this.extensions.getComponentById(this.id);
13657
+ const isInRenderer = this._columnRegister.has(this.id);
13658
+ const componentType = isInRenderer
13659
+ ? this._columnRegister.getComponent(this.id)
13660
+ : this.extensions.getComponentById(this.id);
13448
13661
  if (componentType) {
13449
13662
  const factory = this.componentFactoryResolver.resolveComponentFactory(componentType);
13450
13663
  if (factory) {
@@ -13473,7 +13686,7 @@ class DynamicColumnComponent {
13473
13686
  }
13474
13687
  }
13475
13688
  }
13476
- DynamicColumnComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: DynamicColumnComponent, deps: [{ token: ExtensionService }, { token: i0.ComponentFactoryResolver }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
13689
+ DynamicColumnComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: DynamicColumnComponent, deps: [{ token: ExtensionService }, { token: ColumnRendererRegistryService }, { token: i0.ComponentFactoryResolver }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
13477
13690
  DynamicColumnComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: DynamicColumnComponent, selector: "cts-dynamic-column", inputs: { id: "id", context: "context", column: "column" }, host: { classAttribute: "cts-dynamic-column" }, viewQueries: [{ propertyName: "content", first: true, predicate: ["content"], descendants: true, read: ViewContainerRef, static: true }], usesOnChanges: true, ngImport: i0, template: ` <ng-container #content></ng-container> `, isInline: true, styles: ["\n\t\t\t.cts-dynamic-column {\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t}\n\t\t"], encapsulation: i0.ViewEncapsulation.None });
13478
13691
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: DynamicColumnComponent, decorators: [{
13479
13692
  type: Component,
@@ -13491,7 +13704,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
13491
13704
  `
13492
13705
  ]
13493
13706
  }]
13494
- }], ctorParameters: function () { return [{ type: ExtensionService }, { type: i0.ComponentFactoryResolver }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { content: [{
13707
+ }], ctorParameters: function () { return [{ type: ExtensionService }, { type: ColumnRendererRegistryService }, { type: i0.ComponentFactoryResolver }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { content: [{
13495
13708
  type: ViewChild,
13496
13709
  args: ['content', { read: ViewContainerRef, static: true }]
13497
13710
  }], id: [{
@@ -13503,12 +13716,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
13503
13716
  }] } });
13504
13717
 
13505
13718
  class DynamicCustomComponent {
13506
- constructor(_extensions, _factoryResolver) {
13719
+ constructor(_extensions, _columnRegister, _factoryResolver) {
13507
13720
  this._extensions = _extensions;
13721
+ this._columnRegister = _columnRegister;
13508
13722
  this._factoryResolver = _factoryResolver;
13509
13723
  }
13510
13724
  ngOnInit() {
13511
- const componentType = this._extensions.getComponentById(this.componentName);
13725
+ const isInRenderer = this._columnRegister.has(this.componentName);
13726
+ const componentType = isInRenderer
13727
+ ? this._columnRegister.getComponent(this.componentName)
13728
+ : this._extensions.getComponentById(this.componentName);
13512
13729
  if (componentType) {
13513
13730
  const factory = this._factoryResolver.resolveComponentFactory(componentType);
13514
13731
  if (factory) {
@@ -13535,7 +13752,7 @@ class DynamicCustomComponent {
13535
13752
  }
13536
13753
  }
13537
13754
  }
13538
- DynamicCustomComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: DynamicCustomComponent, deps: [{ token: ExtensionService }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Component });
13755
+ DynamicCustomComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: DynamicCustomComponent, deps: [{ token: ExtensionService }, { token: ColumnRendererRegistryService }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Component });
13539
13756
  DynamicCustomComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: DynamicCustomComponent, selector: "app-dynamic-component", inputs: { componentName: "componentName", row: "row", rowAction: "rowAction", onClick: "onClick" }, host: { classAttribute: "dynamic-component" }, viewQueries: [{ propertyName: "_vcr", first: true, predicate: ["container"], descendants: true, read: ViewContainerRef, static: true }], usesOnChanges: true, ngImport: i0, template: ` <ng-container #container></ng-container> `, isInline: true, encapsulation: i0.ViewEncapsulation.None });
13540
13757
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: DynamicCustomComponent, decorators: [{
13541
13758
  type: Component,
@@ -13545,7 +13762,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
13545
13762
  encapsulation: ViewEncapsulation.None,
13546
13763
  host: { class: 'dynamic-component' }
13547
13764
  }]
13548
- }], ctorParameters: function () { return [{ type: ExtensionService }, { type: i0.ComponentFactoryResolver }]; }, propDecorators: { _vcr: [{
13765
+ }], ctorParameters: function () { return [{ type: ExtensionService }, { type: ColumnRendererRegistryService }, { type: i0.ComponentFactoryResolver }]; }, propDecorators: { _vcr: [{
13549
13766
  type: ViewChild,
13550
13767
  args: ['container', { read: ViewContainerRef, static: true }]
13551
13768
  }], componentName: [{
@@ -13619,84 +13836,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
13619
13836
  type: Output
13620
13837
  }] } });
13621
13838
 
13622
- class NdfTransformService {
13623
- constructor() {
13624
- this._transformations = new Map();
13625
- }
13626
- register(arg1, arg2) {
13627
- if (typeof arg1 === 'object') {
13628
- Object.entries(arg1).forEach(([key, fn]) => this._transformations.set(key, fn));
13629
- return;
13630
- }
13631
- if (typeof arg1 === 'string' && arg2) {
13632
- this._transformations.set(arg1, arg2);
13633
- }
13634
- }
13635
- /**
13636
- * Retrieves a transformer function by its key.
13637
- *
13638
- * @param {string} key - The key of the transformer function.
13639
- * @returns {NdfTransformerFunction | undefined} - The transformer function or undefined if not found.
13640
- */
13641
- get(key) {
13642
- return this._transformations.get(key);
13643
- }
13644
- /**
13645
- * Retrieves all registered transformer functions.
13646
- *
13647
- * @returns {Map<string, NdfTransformerFunction>} - A map of all transformer functions.
13648
- */
13649
- getAll() {
13650
- return this._transformations;
13651
- }
13652
- /**
13653
- * Clears all registered transformer functions.
13654
- */
13655
- clear() {
13656
- this._transformations.clear();
13657
- }
13658
- /**
13659
- * Checks if a transformer function is registered for a specific key.
13660
- *
13661
- * @param {string} key - The key to check.
13662
- * @returns {boolean} - True if the key exists, false otherwise.
13663
- */
13664
- has(key) {
13665
- return this._transformations.has(key);
13666
- }
13667
- /**
13668
- * Removes a transformer function by its key.
13669
- *
13670
- * @param {string} key - The key of the transformer function to remove.
13671
- */
13672
- remove(key) {
13673
- this._transformations.delete(key);
13674
- }
13675
- /**
13676
- * Executes a transformer function for a specific key with the provided input keys.
13677
- *
13678
- * @param {string} key - The key of the transformer function to execute.
13679
- * @param {string[]} keys - The input keys to pass to the transformer function.
13680
- * @throws {Error} - If no transformer function is registered for the key.
13681
- * @returns {Observable<NdfTransformerDataModel[]>} - The result of the transformer function.
13682
- */
13683
- transform(key, keys) {
13684
- const fn = this.get(key);
13685
- if (!fn) {
13686
- throw new Error(`No transformer registered for key: ${key}`);
13687
- }
13688
- return fn(keys);
13689
- }
13690
- }
13691
- NdfTransformService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: NdfTransformService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
13692
- NdfTransformService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: NdfTransformService, providedIn: 'root' });
13693
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: NdfTransformService, decorators: [{
13694
- type: Injectable,
13695
- args: [{
13696
- providedIn: 'root'
13697
- }]
13698
- }] });
13699
-
13700
13839
  var _TableComponent_resizeObserver;
13701
13840
  const TABLE_MODE = {
13702
13841
  list: 'list',
@@ -45118,5 +45257,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
45118
45257
  * Generated bundle index. Do not edit.
45119
45258
  */
45120
45259
 
45121
- export { ACTIONS_TABLE_TEMPLATE, AGGREGATION_FIELD_TYPES, AUTOCOMPLETE_TEMPLATE, ActionsTableTemplateDirective, ActiveUserSwitchComponent, ActivitiesLogComponent, ActivitiesLogModule, ActivityLineComponent, AdapterService, AddPermissionsDialogComponent, AddToCollectionComponent, AggregationAutocompleteComponent, AggregationCheckboxComponent, AggregationCustomComponent, AggregationDateListComponent, AggregationFieldComponent, AggregationGroupComponent, AggregationRadioComponent, AggregationSelectComponent, AggregationSwitchComponent, ApisErrorsMessagesService, AppConfigService, AppHasRoleDirective, AttachmentItemComponent, AttachmentItemModule, AttachmentModalModule, AttachmentsComponent, AttachmentsListComponent, AttachmentsPageProviderComponent, AutocompleteFilterPipe, AutocompleteTemplateDirective, AvatarComponent, AvatarModule, BaseChartBuilderService, BaseChartComponent, BaseColumnComponent, BaseComponent, BaseCustomReport, BaseDatePicker, BaseDateValueAccessor, BaseDialogComponent, BaseEditorConfigService, BaseNodeClass, BaseSelector, BaseService, BooleanViewerComponent, ButtonComponent, CHART_DEFAULTS_OPTIONS, CHART_MAIN_COLOR, CHECKBOX_TEMPLATE, COLORS_COUNT, COMPARISON_OPERATOR, CONFIG_EDITOR_MODE, CUSTOM_FIELD_TYPES, CUSTOM_TEMPLATE, CachingExpiryUnit, CalendarService, CallApiService, CardComponent, CardModule, ChartComponent, ChartDataService, ChartDataTransformers, index$1 as ChartDefaults, ChartManagerService, ChartPanel, ChartPanelFooterComponent, ChartPanelHeaderComponent, ChartPanelModule, index as ChartPlugins, ChartPluginsRegistry, ChartThemeService, index$2 as ChartUtils, ChartsModule, CheckConditionPipe, CheckboxTemplateDirective, CircleNode, CircleNodeComponent, ClickOutsideDirective, ClipboardComponent, CommentApiService, CommentsDashletComponent, CommentsModule, ComponentRegisterService, ComponentTranslationModel, ConfigEditorActionsComponent, ConfigPreviewComponent, ConfirmCallerDialogComponent, ConfirmCallerModule, ConfirmDialogComponent, ConfirmationDialogComponent, ConfirmationDialogModule, Connection, ConnectionLabelComponent, ContentActionType, ContentNode, ContentNodeComponent, CopyComponent, CopyToClipboardDirective, CopyToClipboardModule, CorrespondenceRelationComponent, CorrespondenceRelationCreateFormComponent, CorrespondenceRelationModule, CorrespondenceRelationService, CorrespondenceTagsComponent, CreateDirectoryComponent, CreateEntityComponent, CreateEntityModule, CreateModalComponent, CreationTypeComponent, CtsTagsModule, CustomConnectionComponent, CustomDocumentViewerComponent, CustomFieldComponent, CustomMomentDateAdapter, CustomPpViewerComponent, CustomReportsRegistry, CustomSocketComponent, CustomTemplateDirective, CustomToastrModule, CustomToastrService, CutomeVocViewerComponent, DATE_LIST_TEMPLATE, DATE_LIST_VIEW, DATE_LOCALE_KEYS, DATE_TYPE, DEFAULT_DEBOUNCE_TIME, DEFAULT_VIEW, DIAGRAM_DEFAULT_OPTIONS, DIAGRAM_HEIGHT, DROPDOWN_LABEL_TEMPLATE, DROPDOWN_MULTI_LABEL_TEMPLATE, DROPDOWN_TEMPLATE, DataChartComponent, DataViewerComponent, DateFormatterService, DateHelperService, DateListTemplateDirective, DateViewerComponent, DeleteComponent, DepartmentApiService, DepartmentFormComponent, DepartmentManagementService, DepartmentViewerComponent, DestroySubject, DiagramDirective, DiagramPluginsService, DiagramService, DiagramUtils, DiagramsModule, DialogMangmentService, DigitChartService, DirectiveModule, DisplaySuitableIconComponent, DisplaySuitableIconModule, DocumentScanService, DocumentTemplatesConstants, DocumentTemplatesService, DocumentUploadComponent, DocumentsComponent, DocumentsConstants, DocumentsListComponent, DocumentsModule, DocumentsService, DragAndDropDirective, DropdownLabelTemplateDirective, DropdownMultiLabelTemplateDirective, DropdownTemplateDirective, DropdownViewerComponent, DynamicChartComponent, DynamicChartModule, DynamicColumnComponent, DynamicCustomComponent, DynamicFieldsRendererComponent, DynamicFieldsRendererModule, DynamicFilterComponent, DynamicFilterModule, DynamicFormBoolItemComponent, DynamicFormBuilderComponent, DynamicFormCheckboxItemComponent, DynamicFormComponent, DynamicFormDateItemComponent, DynamicFormDepartmentComponent, DynamicFormFieldComponent, DynamicFormHijriDateitemComponent, DynamicFormMapItemComponent, DynamicFormModule, DynamicFormOptionsComponent, DynamicFormSelectItemComponent, DynamicFormSelectTagComponent, DynamicFormSelectUserFilterComponent, DynamicFormSelectUsersComponent, DynamicFormService, DynamicFormSlideToggleitemComponent, DynamicFormTextItemComponent, DynamicFormTextareaComponent, DynamicFormViewerComponent, DynamicFormVocabularyItemComponent, DynamicSearchComponent, DynamicSearchModule, DynamicTableComponent, DynamicTableModule, DynamicTableService, DynamicTabsComponent, DynamicTabsModule, DynamicTimelineReportService, DynamicViewModule, EMPTY_TEMPLATE, ENTITY_TYPE, EXTENSION_JSONS, EditDeleteModalComponent, EditorModeSwitchComponent, EditorSettingsComponent, ElementHeightDirective, ElementHeightModule, EmptyTemplateDirective, EnvManager, Evaluator, EvaluatorsService, ExtensionLoaderService, ExtensionService, FIELD_SEND_MODE, FIELD_TYPE, FILTER_CUSTOM_TEMPLATE, FILTER_DATES_TYPE, FieldHeaderComponent, FieldValueObject, FileGridInfiniteScrollDirective, FileManagerAbstract, FileManagerAdapter, FileManagerPaginationConfig, FileManagerService, FileMangerModule, FileSizePipe, FilterAutocompleteInputComponent, FilterCollapseControlComponent, FilterComponent, FilterCustomTemplateDirective, FilterDateRangeComponent, FilterEmptyMessageComponent, FilterModule, FilterOptionTextComponent, FilterOptionsSortComponent, FilterPipe, FilterQueryService, FilterSearchInputComponent, FiltersByRolesPipe, FiltersMapperService, FiltersPanelComponent, FluidHeightDirective, FluidHeightModule, FolderModalComponent, FolderishType, FormBuilderService, GREGORIAN_DATE_FORMATS, GREGORIAN_FORMAT, GatewayNodeComponent, GatewayPortsComponent, GlobalAdminService, GlobalPdfTron, GregorianDatepickerComponent, HIJRI_DATE_ARABIC_NAMES, HIJRI_DATE_ENGLISH_NAMES, HIJRI_DATE_FORMATS, HIJRI_FORMAT, HashTranslateAsyncPipe, HashTranslatePipe, HijriAdapterService, HijriDatePipe, HijriDatepickerComponent, HijriGregorianDatepickerComponent, HtmlDialogComponent, IN_OUT_DIRECTION, IconService, InfoDialogComponent, InitializationService, InputDateComponent, InputPort, InputRangeDateComponent, ItemListComponent, Lang, LatestActivityComponent, LatestActivityModule, LibrarySharedModule, ListViewerComponent, LoanRequestComponent, LocalStoragService, LocalizeState, LocalizedDatePipe, LocalizedLabelPipe, MAT_MOMENT_DATE_ADAPTER_OPTIONS, MAT_MOMENT_DATE_ADAPTER_OPTIONS_FACTORY, MESSAGE_TYPE, METADATA_EDITOR_OPTIONS, MIN_VISIBLE_COUNT, MONACO_EDITOR_CONFIG, MY_MOMENT_FORMATS, MainfolderService, MapToAggregationConfigPipe, MessageService, ModeTogglerComponent, MomentDateAdapter, MonacoEditorComponent, MoveComponent, MultiValuePipe, MultipleDynamicFormViewerComponent, MutipleDynamicFormViewerModule, NDF_EDITOR_TYPE, NODE_CIRCLE_SIZE, NODE_GATEWAY_SIZE, NODE_HEIGHT, NODE_MARGIN, NODE_STATUS, NODE_TYPE, NODE_WIDTH, NOTIFICATIONS_LIST_OPTIONS, NOTIFICATION_ICON, NOTIFICATION_ITEM, NOTIFICATION_STATUS, NOTIFY_EVENT, NdfConfigEditorComponent, NdfConfigEditorModule, NdfConfirmationDialogComponent, NdfDatepickerComponent, NdfDatepickerModule, NdfFiltersPanelModule, NdfGregorianDatepickerComponent, NdfHijriDatepickerComponent, NdfNuxeoDialog, NdfPanelComponent, NdfPanelModule, NdfReportComponent, NdfReportsComponent, NdfReportsModule, NdfReportsService, NdfTableComponent, NdfTableConfigurationService, NdfTableModule, NdfTableService, NdfTabsComponent, NdfTabsModule, NdfTransformService, NgxHijriGregorianDatepickerModule, NoDataComponent, NoDataFoundComponent, NoDataModule, NodeIconComponent, NodeInputsComponent, NodeOutputsComponent, NodePortsComponent, NotificationIconDirective, NotificationItemComponent, NotificationItemDirective, NotificationSourceSelectComponent, NotificationStatusToggleComponent, NotificationToastComponent, NotificationsButtonComponent, NotificationsDateSelectComponent, NotificationsListComponent, NotificationsListContainerComponent, NotificationsModule, NotificationsService, NotificationsSettingsContainerComponent, NuxeoCoreModule, NuxeoDevelopmentFrameworkComponent, NuxeoDevelopmentFrameworkModule, NuxeoDevelopmentFrameworkService, NuxeoDialogModule, NuxeoDialogService, NuxeoMapper, NuxeoService, NxQL, NxQlQuery, OutputPort, PAGINATION_MODE, PANEL_MODE, PARAMS_KEYS, PREDICATE_FIELD_TYPES, PROJECT_BASE_HREF, PageSizesListComponent, PaginationComponent, PaginationModule, PdfTronModule, PdftronComponent, PdftronService, PermissionService, PermissionsComponent, PermissionsDirective, PermissionsModule, PermissionsTemplateComponent, PipesModule, PredicateDateInputComponent, PredicateFieldComponent, PredicateTextInputComponent, PublishDialogComponent, PublishingDocumentService, RADIO_TEMPLATE, RadioTemplateDirective, ReadMoreComponent, RecentlyViewedService, RemoveButtonComponent, RenameComponent, ReportConfigMapperService, ReportConfigurationService, ReportTransformService, ReportsDataTransformers, ReportsStateService, RolesService, SEARCH_TABLE_TEMPLATE, SOCKET_WIDTH, SUBSCRIPTION_STATE, SWITCH_TEMPLATE, SafeHtmlPipe, SanitizerPipe, ScanComponent, ScanModalComponent, SearchAutocompleteComponent, SearchTableTemplateDirective, SecurePipe, SelectComponent, SelectModule, SelectUsersByDepartmentModule, SelectUsersByDepartmentsComponent, SetDirRtlDirective, SetRtlDirective, ShareDialogComponent, SharedDocsService, SharedServicesModule, SidepanelComponent, SilentPdfTronService, SingleActivityComponent, SkeletonComponent, SkeletonModule, Socket, SortListPipe, SortingListComponent, SpellCheckerFieldModule, SpellCheckerTextFieldComponent, SpinnerComponent, StatisticService, StatusIconComponent, SwitchTemplateDirective, TRANSLATION_PROVIDER, TableColumnsTogglerComponent, TableComponent, TableExportComponent, TableModule, TableSkeletonComponent, TagsApiService, TemplateModalComponent, TemplateNode, TemplateNodeComponent, TextSearchComponent, TimeAgoPipe, ToastsModule, TooltipPipe, TransferDocComponent, TranslateLoaderService, TranslatedVocabularySelectComponent, TranslationService, TreeviewSelectComponent, UpdateModalComponent, UploadFileService, UploadManagmentService, UserCardComponent, UserComponent, UserModule, UserPreferenceValues, UserPreferencesService, UserService, UsersCardComponent, UsersCardModule, UtilityService, VALUE_OBJECT, VersionsComponent, ViewerFilesService, ViewerLogComponent, ViewerLogModule, VocabularyApiService, VocabularyComponent, VocabularyModule, WorkflowService, ZoomControlComponent, appInitializer, departmentCacheBuster$, extensionJsonsFactory, filterEnabled, getChartsOptions, getConnections, getDoughnutOptions, getHorizontalBarOptions, getLineOptions, getPieOptions, getRandomNumber, getValue, getVerticalBarOptions, isDateObject, isFieldValueObject, mergeArrays, mergeObjects, minute$1 as minute, provideExtensionConfig, reduceEmptyMenus, reduceSeparators, removeConnections, removeEmptyKeys, removeNode, removeNodeAndConnections, serializeControl, serializePort, slideAnimation, sortByOrder };
45260
+ export { ACTIONS_TABLE_TEMPLATE, AGGREGATION_FIELD_TYPES, AUTOCOMPLETE_TEMPLATE, ActionsTableTemplateDirective, ActiveUserSwitchComponent, ActivitiesLogComponent, ActivitiesLogModule, ActivityLineComponent, AdapterService, AddPermissionsDialogComponent, AddToCollectionComponent, AggregationAutocompleteComponent, AggregationCheckboxComponent, AggregationCustomComponent, AggregationDateListComponent, AggregationFieldComponent, AggregationGroupComponent, AggregationRadioComponent, AggregationSelectComponent, AggregationSwitchComponent, ApisErrorsMessagesService, AppConfigService, AppHasRoleDirective, AttachmentItemComponent, AttachmentItemModule, AttachmentModalModule, AttachmentsComponent, AttachmentsListComponent, AttachmentsPageProviderComponent, AutocompleteFilterPipe, AutocompleteTemplateDirective, AvatarComponent, AvatarModule, BaseChartBuilderService, BaseChartComponent, BaseColumnComponent, BaseComponent, BaseCustomReport, BaseDatePicker, BaseDateValueAccessor, BaseDialogComponent, BaseEditorConfigService, BaseNodeClass, BaseSelector, BaseService, BooleanViewerComponent, ButtonComponent, CHART_DEFAULTS_OPTIONS, CHART_MAIN_COLOR, CHECKBOX_TEMPLATE, COLORS_COUNT, COMPARISON_OPERATOR, CONFIG_EDITOR_MODE, CUSTOM_FIELD_TYPES, CUSTOM_TEMPLATE, CachingExpiryUnit, CalendarService, CallApiService, CardComponent, CardModule, ChartComponent, ChartDataService, ChartDataTransformers, index$1 as ChartDefaults, ChartManagerService, ChartPanel, ChartPanelFooterComponent, ChartPanelHeaderComponent, ChartPanelModule, index as ChartPlugins, ChartPluginsRegistry, ChartThemeService, index$2 as ChartUtils, ChartsModule, CheckConditionPipe, CheckboxTemplateDirective, CircleNode, CircleNodeComponent, ClickOutsideDirective, ClipboardComponent, ColumnRendererRegistryService, CommentApiService, CommentsDashletComponent, CommentsModule, ComponentRegisterService, ComponentTranslationModel, ConfigEditorActionsComponent, ConfigPreviewComponent, ConfirmCallerDialogComponent, ConfirmCallerModule, ConfirmDialogComponent, ConfirmationDialogComponent, ConfirmationDialogModule, Connection, ConnectionLabelComponent, ContentActionType, ContentNode, ContentNodeComponent, CopyComponent, CopyToClipboardDirective, CopyToClipboardModule, CorrespondenceRelationComponent, CorrespondenceRelationCreateFormComponent, CorrespondenceRelationModule, CorrespondenceRelationService, CorrespondenceTagsComponent, CreateDirectoryComponent, CreateEntityComponent, CreateEntityModule, CreateModalComponent, CreationTypeComponent, CtsTagsModule, CustomConnectionComponent, CustomDocumentViewerComponent, CustomFieldComponent, CustomMomentDateAdapter, CustomPpViewerComponent, CustomReportsRegistry, CustomSocketComponent, CustomTemplateDirective, CustomToastrModule, CustomToastrService, CutomeVocViewerComponent, DATE_LIST_TEMPLATE, DATE_LIST_VIEW, DATE_LOCALE_KEYS, DATE_TYPE, DEFAULT_DEBOUNCE_TIME, DEFAULT_VIEW, DIAGRAM_DEFAULT_OPTIONS, DIAGRAM_HEIGHT, DROPDOWN_LABEL_TEMPLATE, DROPDOWN_MULTI_LABEL_TEMPLATE, DROPDOWN_TEMPLATE, DataChartComponent, DataViewerComponent, DateFormatterService, DateHelperService, DateListTemplateDirective, DateViewerComponent, DeleteComponent, DepartmentApiService, DepartmentFormComponent, DepartmentManagementService, DepartmentViewerComponent, DestroySubject, DiagramDirective, DiagramPluginsService, DiagramService, DiagramUtils, DiagramsModule, DialogMangmentService, DigitChartService, DirectiveModule, DisplaySuitableIconComponent, DisplaySuitableIconModule, DocumentScanService, DocumentTemplatesConstants, DocumentTemplatesService, DocumentUploadComponent, DocumentsComponent, DocumentsConstants, DocumentsListComponent, DocumentsModule, DocumentsService, DragAndDropDirective, DropdownLabelTemplateDirective, DropdownMultiLabelTemplateDirective, DropdownTemplateDirective, DropdownViewerComponent, DynamicChartComponent, DynamicChartModule, DynamicColumnComponent, DynamicCustomComponent, DynamicFieldsRendererComponent, DynamicFieldsRendererModule, DynamicFilterComponent, DynamicFilterModule, DynamicFormBoolItemComponent, DynamicFormBuilderComponent, DynamicFormCheckboxItemComponent, DynamicFormComponent, DynamicFormDateItemComponent, DynamicFormDepartmentComponent, DynamicFormFieldComponent, DynamicFormHijriDateitemComponent, DynamicFormMapItemComponent, DynamicFormModule, DynamicFormOptionsComponent, DynamicFormSelectItemComponent, DynamicFormSelectTagComponent, DynamicFormSelectUserFilterComponent, DynamicFormSelectUsersComponent, DynamicFormService, DynamicFormSlideToggleitemComponent, DynamicFormTextItemComponent, DynamicFormTextareaComponent, DynamicFormViewerComponent, DynamicFormVocabularyItemComponent, DynamicSearchComponent, DynamicSearchModule, DynamicTableComponent, DynamicTableModule, DynamicTableService, DynamicTabsComponent, DynamicTabsModule, DynamicTimelineReportService, DynamicViewModule, EMPTY_TEMPLATE, ENTITY_TYPE, EXTENSION_JSONS, EditDeleteModalComponent, EditorModeSwitchComponent, EditorSettingsComponent, ElementHeightDirective, ElementHeightModule, EmptyTemplateDirective, EnvManager, Evaluator, EvaluatorsService, ExtensionLoaderService, ExtensionService, FIELD_SEND_MODE, FIELD_TYPE, FILTER_CUSTOM_TEMPLATE, FILTER_DATES_TYPE, FieldHeaderComponent, FieldValueObject, FileGridInfiniteScrollDirective, FileManagerAbstract, FileManagerAdapter, FileManagerPaginationConfig, FileManagerService, FileMangerModule, FileSizePipe, FilterAutocompleteInputComponent, FilterCollapseControlComponent, FilterComponent, FilterCustomTemplateDirective, FilterDateRangeComponent, FilterEmptyMessageComponent, FilterModule, FilterOptionTextComponent, FilterOptionsSortComponent, FilterPipe, FilterQueryService, FilterSearchInputComponent, FiltersByRolesPipe, FiltersMapperService, FiltersPanelComponent, FluidHeightDirective, FluidHeightModule, FolderModalComponent, FolderishType, FormBuilderService, GREGORIAN_DATE_FORMATS, GREGORIAN_FORMAT, GatewayNodeComponent, GatewayPortsComponent, GlobalAdminService, GlobalPdfTron, GregorianDatepickerComponent, HIJRI_DATE_ARABIC_NAMES, HIJRI_DATE_ENGLISH_NAMES, HIJRI_DATE_FORMATS, HIJRI_FORMAT, HashTranslateAsyncPipe, HashTranslatePipe, HijriAdapterService, HijriDatePipe, HijriDatepickerComponent, HijriGregorianDatepickerComponent, HtmlDialogComponent, IN_OUT_DIRECTION, IconService, InfoDialogComponent, InitializationService, InputDateComponent, InputPort, InputRangeDateComponent, ItemListComponent, Lang, LatestActivityComponent, LatestActivityModule, LibrarySharedModule, ListViewerComponent, LoanRequestComponent, LocalStoragService, LocalizeState, LocalizedDatePipe, LocalizedLabelPipe, MAT_MOMENT_DATE_ADAPTER_OPTIONS, MAT_MOMENT_DATE_ADAPTER_OPTIONS_FACTORY, MESSAGE_TYPE, METADATA_EDITOR_OPTIONS, MIN_VISIBLE_COUNT, MONACO_EDITOR_CONFIG, MY_MOMENT_FORMATS, MainfolderService, MapToAggregationConfigPipe, MessageService, ModeTogglerComponent, MomentDateAdapter, MonacoEditorComponent, MoveComponent, MultiValuePipe, MultipleDynamicFormViewerComponent, MutipleDynamicFormViewerModule, NDF_EDITOR_TYPE, NODE_CIRCLE_SIZE, NODE_GATEWAY_SIZE, NODE_HEIGHT, NODE_MARGIN, NODE_STATUS, NODE_TYPE, NODE_WIDTH, NOTIFICATIONS_LIST_OPTIONS, NOTIFICATION_ICON, NOTIFICATION_ITEM, NOTIFICATION_STATUS, NOTIFY_EVENT, NdfConfigEditorComponent, NdfConfigEditorModule, NdfConfirmationDialogComponent, NdfDatepickerComponent, NdfDatepickerModule, NdfFiltersPanelModule, NdfGregorianDatepickerComponent, NdfHijriDatepickerComponent, NdfNuxeoDialog, NdfPanelComponent, NdfPanelModule, NdfReportComponent, NdfReportsComponent, NdfReportsModule, NdfReportsService, NdfTableComponent, NdfTableConfigurationService, NdfTableModule, NdfTableService, NdfTabsComponent, NdfTabsModule, NdfTransformService, NgxHijriGregorianDatepickerModule, NoDataComponent, NoDataFoundComponent, NoDataModule, NodeIconComponent, NodeInputsComponent, NodeOutputsComponent, NodePortsComponent, NotificationIconDirective, NotificationItemComponent, NotificationItemDirective, NotificationSourceSelectComponent, NotificationStatusToggleComponent, NotificationToastComponent, NotificationsButtonComponent, NotificationsDateSelectComponent, NotificationsListComponent, NotificationsListContainerComponent, NotificationsModule, NotificationsService, NotificationsSettingsContainerComponent, NuxeoCoreModule, NuxeoDevelopmentFrameworkComponent, NuxeoDevelopmentFrameworkModule, NuxeoDevelopmentFrameworkService, NuxeoDialogModule, NuxeoDialogService, NuxeoMapper, NuxeoService, NxQL, NxQlQuery, OutputPort, PAGINATION_MODE, PANEL_MODE, PARAMS_KEYS, PREDICATE_FIELD_TYPES, PROJECT_BASE_HREF, PageSizesListComponent, PaginationComponent, PaginationModule, PdfTronModule, PdftronComponent, PdftronService, PermissionService, PermissionsComponent, PermissionsDirective, PermissionsModule, PermissionsTemplateComponent, PipesModule, PredicateDateInputComponent, PredicateFieldComponent, PredicateTextInputComponent, PublishDialogComponent, PublishingDocumentService, RADIO_TEMPLATE, RadioTemplateDirective, ReadMoreComponent, RecentlyViewedService, RemoveButtonComponent, RenameComponent, ReportConfigMapperService, ReportConfigurationService, ReportTransformService, ReportsDataTransformers, ReportsStateService, RolesService, SEARCH_TABLE_TEMPLATE, SOCKET_WIDTH, SUBSCRIPTION_STATE, SWITCH_TEMPLATE, SafeHtmlPipe, SanitizerPipe, ScanComponent, ScanModalComponent, SearchAutocompleteComponent, SearchTableTemplateDirective, SecurePipe, SelectComponent, SelectModule, SelectUsersByDepartmentModule, SelectUsersByDepartmentsComponent, SetDirRtlDirective, SetRtlDirective, ShareDialogComponent, SharedDocsService, SharedServicesModule, SidepanelComponent, SilentPdfTronService, SingleActivityComponent, SkeletonComponent, SkeletonModule, Socket, SortListPipe, SortingListComponent, SpellCheckerFieldModule, SpellCheckerTextFieldComponent, SpinnerComponent, StatisticService, StatusIconComponent, SwitchTemplateDirective, TRANSLATION_PROVIDER, TableColumnsTogglerComponent, TableComponent, TableExportComponent, TableModule, TableSkeletonComponent, TagsApiService, TemplateModalComponent, TemplateNode, TemplateNodeComponent, TextSearchComponent, TimeAgoPipe, ToastsModule, TooltipPipe, TransferDocComponent, TranslateLoaderService, TranslatedVocabularySelectComponent, TranslationService, TreeviewSelectComponent, UpdateModalComponent, UploadFileService, UploadManagmentService, UserCardComponent, UserComponent, UserModule, UserPreferenceValues, UserPreferencesService, UserService, UsersCardComponent, UsersCardModule, UtilityService, VALUE_OBJECT, VersionsComponent, ViewerFilesService, ViewerLogComponent, ViewerLogModule, VocabularyApiService, VocabularyComponent, VocabularyModule, WorkflowService, ZoomControlComponent, appInitializer, departmentCacheBuster$, extensionJsonsFactory, filterEnabled, getChartsOptions, getConnections, getDoughnutOptions, getHorizontalBarOptions, getLineOptions, getPieOptions, getRandomNumber, getValue, getVerticalBarOptions, isDateObject, isFieldValueObject, mergeArrays, mergeObjects, minute$1 as minute, provideExtensionConfig, reduceEmptyMenus, reduceSeparators, removeConnections, removeEmptyKeys, removeNode, removeNodeAndConnections, serializeControl, serializePort, slideAnimation, sortByOrder };
45122
45261
  //# sourceMappingURL=nuxeo-development-framework.js.map