@alfresco/adf-core 8.4.0-19672845026 → 8.4.0-19707678428

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.
@@ -20312,110 +20312,6 @@ class ContainerModel extends FormWidgetModel {
20312
20312
  }
20313
20313
  }
20314
20314
 
20315
- /*!
20316
- * @license
20317
- * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
20318
- *
20319
- * Licensed under the Apache License, Version 2.0 (the "License");
20320
- * you may not use this file except in compliance with the License.
20321
- * You may obtain a copy of the License at
20322
- *
20323
- * http://www.apache.org/licenses/LICENSE-2.0
20324
- *
20325
- * Unless required by applicable law or agreed to in writing, software
20326
- * distributed under the License is distributed on an "AS IS" BASIS,
20327
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20328
- * See the License for the specific language governing permissions and
20329
- * limitations under the License.
20330
- */
20331
- class WidgetVisibilityModel {
20332
- constructor(json) {
20333
- this.json = json;
20334
- if (json) {
20335
- this.operator = json.operator;
20336
- this.nextCondition = new WidgetVisibilityModel(json.nextCondition);
20337
- this.nextConditionOperator = json.nextConditionOperator;
20338
- this.rightRestResponseId = json.rightRestResponseId;
20339
- this.rightFormFieldId = json.rightFormFieldId;
20340
- this.leftFormFieldId = json.leftFormFieldId;
20341
- this.leftRestResponseId = json.leftRestResponseId;
20342
- }
20343
- else {
20344
- this.json = {};
20345
- }
20346
- }
20347
- get leftType() {
20348
- if (this.leftFormFieldId) {
20349
- return WidgetTypeEnum.field;
20350
- }
20351
- else if (this.leftRestResponseId) {
20352
- return WidgetTypeEnum.variable;
20353
- }
20354
- else if (this.json.leftType) {
20355
- return this.json.leftType;
20356
- }
20357
- return null;
20358
- }
20359
- set leftType(leftType) {
20360
- this.json.leftType = leftType;
20361
- }
20362
- get leftValue() {
20363
- if (this.json.leftValue?.toString()) {
20364
- return this.json.leftValue;
20365
- }
20366
- else if (this.leftFormFieldId) {
20367
- return this.leftFormFieldId;
20368
- }
20369
- else if (this.leftRestResponseId) {
20370
- return this.leftRestResponseId;
20371
- }
20372
- return null;
20373
- }
20374
- set leftValue(leftValue) {
20375
- this.json.leftValue = leftValue;
20376
- }
20377
- get rightType() {
20378
- if (this.json.rightType) {
20379
- return this.json.rightType;
20380
- }
20381
- else if (this.json.rightValue) {
20382
- return WidgetTypeEnum.value;
20383
- }
20384
- else if (this.rightRestResponseId) {
20385
- return WidgetTypeEnum.variable;
20386
- }
20387
- else if (this.rightFormFieldId) {
20388
- return WidgetTypeEnum.field;
20389
- }
20390
- return null;
20391
- }
20392
- set rightType(rightType) {
20393
- this.json.rightType = rightType;
20394
- }
20395
- get rightValue() {
20396
- if (this.json.rightValue?.toString()) {
20397
- return this.json.rightValue;
20398
- }
20399
- else if (this.rightFormFieldId) {
20400
- return this.rightFormFieldId;
20401
- }
20402
- else if (this.rightRestResponseId) {
20403
- return this.rightRestResponseId;
20404
- }
20405
- return null;
20406
- }
20407
- set rightValue(rightValue) {
20408
- this.json.rightValue = rightValue;
20409
- }
20410
- }
20411
- // eslint-disable-next-line no-shadow
20412
- var WidgetTypeEnum;
20413
- (function (WidgetTypeEnum) {
20414
- WidgetTypeEnum["field"] = "field";
20415
- WidgetTypeEnum["variable"] = "variable";
20416
- WidgetTypeEnum["value"] = "value";
20417
- })(WidgetTypeEnum || (WidgetTypeEnum = {}));
20418
-
20419
20315
  /*!
20420
20316
  * @license
20421
20317
  * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
@@ -20577,13 +20473,7 @@ const getRuleOn = (id, ruleOn, fields) => {
20577
20473
  for (const column of Object.values(fields)) {
20578
20474
  for (const field of column) {
20579
20475
  if (field.type === FormFieldTypes.SECTION) {
20580
- for (const sectionColumn of Object.values(field.fields)) {
20581
- for (const sectionField of sectionColumn) {
20582
- if (sectionField.id === ruleOn) {
20583
- return getRepeatableSectionChildRuleOn(id, ruleOn);
20584
- }
20585
- }
20586
- }
20476
+ return getRuleOn(id, ruleOn, field.fields);
20587
20477
  }
20588
20478
  if (field.id === ruleOn) {
20589
20479
  return getRepeatableSectionChildRuleOn(id, ruleOn);
@@ -20592,8 +20482,8 @@ const getRuleOn = (id, ruleOn, fields) => {
20592
20482
  }
20593
20483
  return ruleOn;
20594
20484
  };
20595
- const getRepeatableSectionChildRuleOn = (id, ruleOn) => ruleOn + ROW_ID_PREFIX + getRowId(id);
20596
- const getRowId = (id) => {
20485
+ const getRepeatableSectionChildRuleOn = (id, ruleOn) => ruleOn + ROW_ID_PREFIX + getRowId$1(id);
20486
+ const getRowId$1 = (id) => {
20597
20487
  const split = id.split(ROW_ID_PREFIX);
20598
20488
  return split.length > 1 ? split[1] : '';
20599
20489
  };
@@ -20617,7 +20507,165 @@ const formFieldRuleHandler = {
20617
20507
  * See the License for the specific language governing permissions and
20618
20508
  * limitations under the License.
20619
20509
  */
20620
- /* eslint-disable @angular-eslint/component-selector */
20510
+ class WidgetVisibilityModel {
20511
+ constructor(json) {
20512
+ this.json = json;
20513
+ if (json) {
20514
+ this.operator = json.operator;
20515
+ this.nextCondition = new WidgetVisibilityModel(json.nextCondition);
20516
+ this.nextConditionOperator = json.nextConditionOperator;
20517
+ this.rightRestResponseId = json.rightRestResponseId;
20518
+ this.rightFormFieldId = json.rightFormFieldId;
20519
+ this.leftFormFieldId = json.leftFormFieldId;
20520
+ this.leftRestResponseId = json.leftRestResponseId;
20521
+ }
20522
+ else {
20523
+ this.json = {};
20524
+ }
20525
+ }
20526
+ get leftType() {
20527
+ if (this.leftFormFieldId) {
20528
+ return WidgetTypeEnum.field;
20529
+ }
20530
+ else if (this.leftRestResponseId) {
20531
+ return WidgetTypeEnum.variable;
20532
+ }
20533
+ else if (this.json.leftType) {
20534
+ return this.json.leftType;
20535
+ }
20536
+ return null;
20537
+ }
20538
+ set leftType(leftType) {
20539
+ this.json.leftType = leftType;
20540
+ }
20541
+ get leftValue() {
20542
+ if (this.json.leftValue?.toString()) {
20543
+ return this.json.leftValue;
20544
+ }
20545
+ else if (this.leftFormFieldId) {
20546
+ return this.leftFormFieldId;
20547
+ }
20548
+ else if (this.leftRestResponseId) {
20549
+ return this.leftRestResponseId;
20550
+ }
20551
+ return null;
20552
+ }
20553
+ set leftValue(leftValue) {
20554
+ this.json.leftValue = leftValue;
20555
+ }
20556
+ get rightType() {
20557
+ if (this.json.rightType) {
20558
+ return this.json.rightType;
20559
+ }
20560
+ else if (this.json.rightValue) {
20561
+ return WidgetTypeEnum.value;
20562
+ }
20563
+ else if (this.rightRestResponseId) {
20564
+ return WidgetTypeEnum.variable;
20565
+ }
20566
+ else if (this.rightFormFieldId) {
20567
+ return WidgetTypeEnum.field;
20568
+ }
20569
+ return null;
20570
+ }
20571
+ set rightType(rightType) {
20572
+ this.json.rightType = rightType;
20573
+ }
20574
+ get rightValue() {
20575
+ if (this.json.rightValue?.toString()) {
20576
+ return this.json.rightValue;
20577
+ }
20578
+ else if (this.rightFormFieldId) {
20579
+ return this.rightFormFieldId;
20580
+ }
20581
+ else if (this.rightRestResponseId) {
20582
+ return this.rightRestResponseId;
20583
+ }
20584
+ return null;
20585
+ }
20586
+ set rightValue(rightValue) {
20587
+ this.json.rightValue = rightValue;
20588
+ }
20589
+ }
20590
+ // eslint-disable-next-line no-shadow
20591
+ var WidgetTypeEnum;
20592
+ (function (WidgetTypeEnum) {
20593
+ WidgetTypeEnum["field"] = "field";
20594
+ WidgetTypeEnum["variable"] = "variable";
20595
+ WidgetTypeEnum["value"] = "value";
20596
+ })(WidgetTypeEnum || (WidgetTypeEnum = {}));
20597
+
20598
+ /*!
20599
+ * @license
20600
+ * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
20601
+ *
20602
+ * Licensed under the Apache License, Version 2.0 (the "License");
20603
+ * you may not use this file except in compliance with the License.
20604
+ * You may obtain a copy of the License at
20605
+ *
20606
+ * http://www.apache.org/licenses/LICENSE-2.0
20607
+ *
20608
+ * Unless required by applicable law or agreed to in writing, software
20609
+ * distributed under the License is distributed on an "AS IS" BASIS,
20610
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20611
+ * See the License for the specific language governing permissions and
20612
+ * limitations under the License.
20613
+ */
20614
+ const getVisibilityCondition = (id, json, parent) => {
20615
+ if (!json) {
20616
+ return undefined;
20617
+ }
20618
+ return new WidgetVisibilityModel(parent?.fields
20619
+ ? {
20620
+ ...json,
20621
+ ...(shouldUpdateValue(json.leftType, json.leftValue) && {
20622
+ leftValue: getValue(id, json.leftValue, parent.fields)
20623
+ }),
20624
+ ...(shouldUpdateValue(json.rightType, json.rightValue) && {
20625
+ rightValue: getValue(id, json.rightValue, parent.fields)
20626
+ })
20627
+ }
20628
+ : json);
20629
+ };
20630
+ const shouldUpdateValue = (type, value) => type === WidgetTypeEnum.field && !!value;
20631
+ const getValue = (id, value, fields) => {
20632
+ for (const column of Object.values(fields)) {
20633
+ for (const field of column) {
20634
+ if (field.type === FormFieldTypes.SECTION) {
20635
+ return getValue(id, value, field.fields);
20636
+ }
20637
+ if (field.id === value) {
20638
+ return getRepeatableSectionChildValue(id, value);
20639
+ }
20640
+ }
20641
+ }
20642
+ return value;
20643
+ };
20644
+ const getRepeatableSectionChildValue = (id, value) => value + ROW_ID_PREFIX + getRowId(id);
20645
+ const getRowId = (id) => {
20646
+ const split = id.split(ROW_ID_PREFIX);
20647
+ return split.length > 1 ? split[1] : '';
20648
+ };
20649
+ const formFieldVisibilityConditionHandler = {
20650
+ getVisibilityCondition
20651
+ };
20652
+
20653
+ /*!
20654
+ * @license
20655
+ * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
20656
+ *
20657
+ * Licensed under the Apache License, Version 2.0 (the "License");
20658
+ * you may not use this file except in compliance with the License.
20659
+ * You may obtain a copy of the License at
20660
+ *
20661
+ * http://www.apache.org/licenses/LICENSE-2.0
20662
+ *
20663
+ * Unless required by applicable law or agreed to in writing, software
20664
+ * distributed under the License is distributed on an "AS IS" BASIS,
20665
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20666
+ * See the License for the specific language governing permissions and
20667
+ * limitations under the License.
20668
+ */
20621
20669
  // Maps to FormFieldRepresentation
20622
20670
  class FormFieldModel extends FormWidgetModel {
20623
20671
  get value() {
@@ -20741,7 +20789,7 @@ class FormFieldModel extends FormWidgetModel {
20741
20789
  this.params = json.params || {};
20742
20790
  this.hyperlinkUrl = json.hyperlinkUrl;
20743
20791
  this.displayText = json.displayText;
20744
- this.visibilityCondition = json.visibilityCondition ? new WidgetVisibilityModel(json.visibilityCondition) : undefined;
20792
+ this.visibilityCondition = formFieldVisibilityConditionHandler.getVisibilityCondition(this.id, json.visibilityCondition, parent);
20745
20793
  this.enableFractions = json.enableFractions;
20746
20794
  this.currency = json.currency;
20747
20795
  this.dateDisplayFormat = json.dateDisplayFormat || this.getDefaultDateFormat(json);
@@ -20853,7 +20901,7 @@ class FormFieldModel extends FormWidgetModel {
20853
20901
  }
20854
20902
  this.columns = this.rows[0].columns;
20855
20903
  }
20856
- getNumberOfRows(initialNrRows = 1, maxNrRows, value) {
20904
+ getNumberOfRows(initialNrRows = 1, maxNrRows = null, value) {
20857
20905
  return value?.length ? (maxNrRows ? Math.min(value.length, maxNrRows) : value.length) : initialNrRows;
20858
20906
  }
20859
20907
  createRow(fields, form, index, value, isInitial = false) {
@@ -20943,6 +20991,7 @@ class FormFieldModel extends FormWidgetModel {
20943
20991
  return;
20944
20992
  }
20945
20993
  this.rows.push(this.createRow(fields, form, this.rows.length));
20994
+ this.form.onRepeatableSectionChanged();
20946
20995
  }
20947
20996
  shouldAddRow() {
20948
20997
  return !this.params.maxNumberOfRows || this.rows.length < this.params.maxNumberOfRows;
@@ -20953,6 +21002,7 @@ class FormFieldModel extends FormWidgetModel {
20953
21002
  }
20954
21003
  this.rows.splice(index, 1);
20955
21004
  this.updateChildrenFieldsRowIndex();
21005
+ this.form.onRepeatableSectionChanged();
20956
21006
  if (!this.form.values[this.id]) {
20957
21007
  return;
20958
21008
  }
@@ -21637,6 +21687,9 @@ class FormModel {
21637
21687
  this.formService.formFieldValueChanged.next(new FormFieldEvent(this, field));
21638
21688
  }
21639
21689
  }
21690
+ onRepeatableSectionChanged() {
21691
+ this.fieldsCache = this.getFormFields([], true);
21692
+ }
21640
21693
  /**
21641
21694
  * Validates entire form and all form fields.
21642
21695
  */
@@ -21800,8 +21853,8 @@ class FormModel {
21800
21853
  getFieldById(fieldId) {
21801
21854
  return this.fieldsCache.find((field) => field.id === fieldId);
21802
21855
  }
21803
- getFormFields(filterTypes) {
21804
- if (this.fieldsCache?.length) {
21856
+ getFormFields(filterTypes, isDynamic = false) {
21857
+ if (this.fieldsCache?.length && !isDynamic) {
21805
21858
  return this.filterFieldsByType(this.fieldsCache, filterTypes);
21806
21859
  }
21807
21860
  const formFieldModel = [];
@@ -21810,7 +21863,10 @@ class FormModel {
21810
21863
  }
21811
21864
  processFields(fields, formFieldModel) {
21812
21865
  fields.forEach((field) => {
21813
- if (this.isContainerField(field)) {
21866
+ if (this.isRepeatableSectionField(field)) {
21867
+ this.handleRepeatableSectionField(field, formFieldModel);
21868
+ }
21869
+ else if (this.isContainerField(field)) {
21814
21870
  this.handleContainerField(field, formFieldModel);
21815
21871
  }
21816
21872
  else if (this.isSectionField(field)) {
@@ -21830,12 +21886,23 @@ class FormModel {
21830
21886
  isSectionField(field) {
21831
21887
  return field.type === FormFieldTypes.SECTION;
21832
21888
  }
21889
+ isRepeatableSectionField(field) {
21890
+ return field.type === FormFieldTypes.REPEATABLE_SECTION;
21891
+ }
21833
21892
  handleSectionField(section, formFieldModel) {
21834
21893
  formFieldModel.push(section);
21835
21894
  section.columns.forEach((column) => {
21836
21895
  this.processFields(column.fields, formFieldModel);
21837
21896
  });
21838
21897
  }
21898
+ handleRepeatableSectionField(repeatableSection, formFieldModel) {
21899
+ formFieldModel.push(repeatableSection.field);
21900
+ for (const row of repeatableSection.field.rows) {
21901
+ for (const column of row.columns) {
21902
+ this.processFields(column.fields, formFieldModel);
21903
+ }
21904
+ }
21905
+ }
21839
21906
  handleContainerField(container, formFieldModel) {
21840
21907
  formFieldModel.push(container.field);
21841
21908
  container.field.columns.forEach((column) => {
@@ -30868,6 +30935,131 @@ const tabInvalidFormVisibility = {
30868
30935
  variables: []
30869
30936
  }
30870
30937
  };
30938
+ const repeatableSectionFormVisibility = {
30939
+ id: 'orm-875b6fe8-a84d-475b-a7e1-a3647955a0a6',
30940
+ name: 'repeatable-section',
30941
+ description: '',
30942
+ version: 0,
30943
+ tabs: [],
30944
+ formDefinition: {
30945
+ fields: [
30946
+ {
30947
+ id: 'RepeatableSection0009v6',
30948
+ name: 'Repeatable Section',
30949
+ type: 'repeatable-section',
30950
+ tab: null,
30951
+ params: {
30952
+ initialNumberOfRows: 1,
30953
+ allowInitialRowsDelete: true,
30954
+ maxNumberOfRows: null
30955
+ },
30956
+ numberOfColumns: 2,
30957
+ fields: {
30958
+ '1': [
30959
+ {
30960
+ id: 'text1',
30961
+ name: 'Text',
30962
+ type: 'text',
30963
+ readOnly: false,
30964
+ required: false,
30965
+ colspan: 1,
30966
+ rowspan: 1,
30967
+ placeholder: null,
30968
+ minLength: 0,
30969
+ maxLength: 0,
30970
+ regexPattern: null,
30971
+ visibilityCondition: null,
30972
+ params: {
30973
+ existingColspan: 1,
30974
+ maxColspan: 2
30975
+ }
30976
+ }
30977
+ ],
30978
+ '2': [
30979
+ {
30980
+ id: 'text2',
30981
+ name: 'Text',
30982
+ type: 'text',
30983
+ readOnly: false,
30984
+ required: false,
30985
+ colspan: 1,
30986
+ rowspan: 1,
30987
+ placeholder: null,
30988
+ minLength: 0,
30989
+ maxLength: 0,
30990
+ regexPattern: null,
30991
+ visibilityCondition: {
30992
+ leftType: 'field',
30993
+ leftValue: 'text4',
30994
+ operator: '!empty',
30995
+ rightValue: null,
30996
+ rightType: null,
30997
+ nextConditionOperator: '',
30998
+ nextCondition: null
30999
+ },
31000
+ params: {
31001
+ existingColspan: 1,
31002
+ maxColspan: 2
31003
+ }
31004
+ }
31005
+ ]
31006
+ }
31007
+ },
31008
+ {
31009
+ id: '5a3474a8-22e1-4408-8a43-2eb1fc8300ac',
31010
+ name: 'Section',
31011
+ tab: null,
31012
+ type: 'section',
31013
+ numberOfColumns: 2,
31014
+ fields: {
31015
+ '1': [
31016
+ {
31017
+ id: 'text3',
31018
+ name: 'Text',
31019
+ type: 'text',
31020
+ readOnly: false,
31021
+ required: false,
31022
+ colspan: 1,
31023
+ rowspan: 1,
31024
+ placeholder: null,
31025
+ minLength: 0,
31026
+ maxLength: 0,
31027
+ regexPattern: null,
31028
+ visibilityCondition: null,
31029
+ params: {
31030
+ existingColspan: 1,
31031
+ maxColspan: 2
31032
+ }
31033
+ }
31034
+ ],
31035
+ '2': [
31036
+ {
31037
+ id: 'text4',
31038
+ name: 'Text',
31039
+ type: 'text',
31040
+ readOnly: false,
31041
+ required: false,
31042
+ colspan: 1,
31043
+ rowspan: 1,
31044
+ placeholder: null,
31045
+ minLength: 0,
31046
+ maxLength: 0,
31047
+ regexPattern: null,
31048
+ visibilityCondition: null,
31049
+ params: {
31050
+ existingColspan: 1,
31051
+ maxColspan: 2
31052
+ }
31053
+ }
31054
+ ]
31055
+ }
31056
+ }
31057
+ ],
31058
+ outcomes: [],
31059
+ metadata: {},
31060
+ variables: []
31061
+ }
31062
+ };
30871
31063
 
30872
31064
  /*!
30873
31065
  * @license
@@ -31817,5 +32009,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
31817
32009
  * Generated bundle index. Do not edit.
31818
32010
  */
31819
32011
 
31820
- export { ABOUT_DIRECTIVES, ADF_AMOUNT_SETTINGS, ADF_COMMENTS_SERVICE, ADF_DATETIME_FORMATS, ADF_DATE_FORMATS, AboutComponent, AboutExtensionListComponent, AboutLicenseListComponent, AboutModule, AboutPanelDirective, AboutRepositoryInfoComponent, AboutServerSettingsComponent, AboutStatusListComponent, AdfDateFnsAdapter, AdfDateTimeFnsAdapter, AmountCellComponent, AmountWidgetComponent, AppConfigPipe, AppConfigService, AppConfigServiceMock, AppConfigValues, AuthBearerInterceptor, AuthGuard, AuthGuardBpm, AuthGuardEcm, AuthGuardService, AuthGuardSsoRoleService, AuthModule, AuthService, AuthenticationConfirmationComponent, AuthenticationService, AvatarComponent, BaseEvent, BaseUIEvent, BaseViewerWidgetComponent, BasicAlfrescoAuthService, BlankPageComponent, BlankPageModule, BooleanCellComponent, BpmProductVersionModel, ButtonComponent, ButtonWidgetComponent, ByPassFormRuleManager, CARD_VIEW_DIRECTIVES, CLIPBOARD_DIRECTIVES, CONTEXT_MENU_DIRECTIVES, CORE_DIRECTIVES, CORE_PIPES, CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR, CardItemTypeService, CardViewArrayItemComponent, CardViewArrayItemModel, CardViewBaseItemModel, CardViewBoolItemComponent, CardViewBoolItemModel, CardViewComponent, CardViewDateItemComponent, CardViewDateItemModel, CardViewDatetimeItemModel, CardViewFloatItemModel, CardViewIntItemModel, CardViewItemDispatcherComponent, CardViewItemFloatValidator, CardViewItemIntValidator, CardViewItemLengthValidator, CardViewItemLongValidator, CardViewItemMatchValidator, CardViewItemMinMaxValidator, CardViewItemPositiveIntValidator, CardViewItemPositiveLongValidator, CardViewKeyValuePairsItemComponent, CardViewKeyValuePairsItemModel, CardViewLongItemModel, CardViewMapItemComponent, CardViewMapItemModel, CardViewModule, CardViewSelectItemComponent, CardViewSelectItemModel, CardViewTextItemComponent, CardViewTextItemModel, CardViewUpdateService, CheckboxWidgetComponent, ClipboardDirective, ClipboardModule, ClipboardService, CloseButtonPosition, ColumnsSelectorComponent, CommentListComponent, CommentListModule, CommentModel, CommentsComponent, CommentsModule, ConfirmDialogComponent, ConfirmDialogModule, ContainerColumnModel, ContainerModel, ContentAuth, ContentLinkModel, ContextMenuDirective, ContextMenuListComponent, ContextMenuModule, ContextMenuOverlayService, CookieService, CookieServiceMock, CoreModule, CustomEmptyContentTemplateDirective, CustomLoadingContentTemplateDirective, CustomNoPermissionTemplateDirective, DATATABLE_DIRECTIVES, DEFAULT_DATE_FORMAT, DEFAULT_LANGUAGE_LIST, DEFAULT_PAGINATION, DIALOG_COMPONENT_DATA, DataCellEvent, DataCellEventModel, DataColumnComponent, DataColumnListComponent, DataRowActionEvent, DataRowActionModel, DataRowEvent, DataSorting, DataTableCellComponent, DataTableComponent, DataTableModule, DataTableRowComponent, DataTableSchema, DataTableService, DateCellComponent, DateColumnHeaderComponent, DateFnsUtils, DateTimePipe, DateTimeWidgetComponent, DateWidgetComponent, DecimalFieldValidator, DecimalNumberModel, DecimalNumberPipe, DecimalRenderMiddlewareService, DecimalWidgetComponent, DialogComponent, DialogSize, DirectiveModule, DisplayTextWidgetComponent, DownloadPromptActions, DownloadPromptDialogComponent, DownloadService, DropZoneDirective, DynamicChipListComponent, DynamicChipListModule, DynamicComponentMapper, DynamicComponentResolver, EXTENDIBLE_COMPONENT, EditJsonDialogComponent, EditJsonDialogModule, EmptyContentComponent, EmptyListBodyDirective, EmptyListComponent, EmptyListFooterDirective, EmptyListHeaderDirective, ErrorContentComponent, ErrorMessageModel, ErrorWidgetComponent, EventMock, FORM_FIELD_MODEL_RENDER_MIDDLEWARE, FORM_FIELD_VALIDATORS, FORM_RULES_MANAGER, FORM_SERVICE_FIELD_VALIDATORS_TOKEN, FieldStylePipe, FileSizeCellComponent, FileSizePipe, FileTypePipe, FileUtils, FixedValueFieldValidator, FormBaseComponent, FormBaseModule, FormErrorEvent, FormEvent, FormFieldComponent, FormFieldEvent, FormFieldModel, FormFieldTypes, FormModel, FormOutcomeEvent, FormOutcomeModel, FormRendererComponent, FormRenderingService, FormRulesEvent, FormRulesManager, FormService, FormSpinnerEvent, FormWidgetModel, FormatSpacePipe, FullNamePipe, HeaderComponent, HeaderFilterTemplateDirective, HeaderLayoutComponent, HeaderWidgetComponent, HighlightDirective, HighlightPipe, HighlightTransformService, HyperlinkWidgetComponent, INFO_DRAWER_DIRECTIVES, IconCellComponent, IconComponent, IconModule, IdentityGroupService, IdentityRoleModel, IdentityRoleService, IdentityUserInfoComponent, IdentityUserInfoModule, IdentityUserService, ImgViewerComponent, InfinitePaginationComponent, InfiniteSelectScrollDirective, InfoDrawerButtonsDirective, InfoDrawerComponent, InfoDrawerContentDirective, InfoDrawerLayoutComponent, InfoDrawerModule, InfoDrawerTabComponent, InfoDrawerTitleDirective, InitialUsernamePipe, InplaceFormInputComponent, InputMaskDirective, JSON_TYPE, JWT_STORAGE_SERVICE, JsonCellComponent, JsonWidgetComponent, JwtHelperService, LANDING_PAGE_TOKEN, LANGUAGE_MENU_DIRECTIVES, LAYOUT_DIRECTIVES, LOGIN_DIRECTIVES, LanguageMenuComponent, LanguageMenuModule, LanguagePickerComponent, LanguageService, LayoutContainerComponent, LoadingContentTemplateDirective, LocalizedDatePipe, LocationCellComponent, LogLevelsEnum, LogService, LoginComponent, LoginDialogPanelComponent, LoginErrorEvent, LoginFooterDirective, LoginHeaderDirective, LoginModule, LoginSubmitEvent, LoginSuccessEvent, LogoutDirective, MASK_DIRECTIVE, MOMENT_DATE_FORMATS, MainMenuDataTableTemplateDirective, MaterialModule, MaxLengthFieldValidator, MaxValueFieldValidator, MediaPlayerComponent, MinLengthFieldValidator, MinValueFieldValidator, ModuleListComponent, MomentDateAdapter, MultiValuePipe, MultilineTextWidgetComponentComponent, NOTIFICATION_HISTORY_DIRECTIVES, NOTIFICATION_TYPE, NavbarComponent, NavbarItemComponent, NoContentTemplateDirective, NoPermissionTemplateDirective, NoopAuthModule, NoopRedirectAuthService, NoopTranslateModule, NoopTranslationService, NotificationHistoryComponent, NotificationHistoryModule, NotificationService, NumberCellComponent, NumberFieldValidator, NumberWidgetComponent, OAuth2Service, ObjectDataColumn, ObjectDataRow, ObjectDataTableAdapter, ObjectUtils, OidcAuthGuard, OidcAuthenticationService, PAGINATION_DIRECTIVES, PDFJS_MODULE, PDFJS_VIEWER_MODULE, PackageListComponent, PageTitleService, PaginationComponent, PaginationModel, PaginationModule, PathInfo, PdfPasswordDialogComponent, PdfThumbComponent, PdfThumbListComponent, PdfViewerComponent, PipeModule, ProcessAuth, ProgressComponent, RedirectAuthService, RedirectionModel, RegExFieldValidator, RepeatWidgetComponent, RequestPaginationModel, RequiredFieldValidator, ResizableDirective, ResizeHandleDirective, SEARCH_AUTOCOMPLETE_VALUE_ACCESSOR, SEARCH_TEXT_INPUT_DIRECTIVES, STORAGE_PREFIX_FACTORY_SERVICE, SearchTextInputComponent, SearchTextModule, SearchTextStateEnum, SearchTriggerDirective, SelectFilterInputComponent, ShowHeaderMode, SidebarActionMenuComponent, SidebarMenuDirective, SidebarMenuExpandIconDirective, SidebarMenuTitleIconDirective, SidenavLayoutComponent, SidenavLayoutContentDirective, SidenavLayoutHeaderDirective, SidenavLayoutModule, SidenavLayoutNavigationDirective, SnackbarContentComponent, SnackbarContentModule, SortByCategoryMapperService, SortingPickerComponent, StartFormCustomButtonDirective, Status, StoragePrefixFactory, StorageService, StringUtils, TEMPLATE_DIRECTIVES, TOOLBAR_DIRECTIVES, TRANSLATION_PROVIDER, TabModel, TaskProcessVariableModel, TemplateModule, TextWidgetComponent, ThumbnailService, TimeAgoPipe, ToolbarComponent, ToolbarDividerComponent, ToolbarModule, ToolbarTitleComponent, TooltipCardComponent, TooltipCardDirective, TranslateLoaderService, TranslationMock, TranslationService, TruncatePipe, TxtViewerComponent, UnitTestingUtils, UnknownFormatComponent, UnknownWidgetComponent, UnsavedChangesDialogComponent, UnsavedChangesDialogModule, UnsavedChangesGuard, UploadDirective, UploadWidgetContentLinkModel, UploadWidgetContentLinkModelOptions, UrlService, User, UserAccessService, UserInfoMode, UserPreferenceValues, UserPreferencesService, VIEWER_DIRECTIVES, ValidateFormEvent, ValidateFormFieldEvent, ViewUtilService, ViewerComponent, ViewerExtensionDirective, ViewerModule, ViewerMoreActionsComponent, ViewerOpenWithComponent, ViewerRenderComponent, ViewerSidebarComponent, ViewerToolbarActionsComponent, ViewerToolbarComponent, ViewerToolbarCustomActionsComponent, WIDGET_DIRECTIVES, WidgetComponent, WidgetVisibilityService, complexVisibilityJsonNotVisible, complexVisibilityJsonVisible, displayTextSchema, error, fakeFormChainedVisibilityJson, fakeFormCheckBoxVisibilityJson, fakeFormJson, formModelTabs, formRulesManagerFactory, formTest, formValues, headerSchema, info, isNumberValue, isOutcomeButtonVisible, logLevels, oauthStorageFactory, predefinedTheme, provideAppConfig, provideAppConfigTesting, provideCoreAuth, provideCoreAuthTesting, provideI18N, provideLandingPage, provideTranslations, rootInitiator, searchAnimation, tabInvalidFormVisibility, tabVisibilityJsonMock, transformKeyToObject, warning };
32012
+ export { ABOUT_DIRECTIVES, ADF_AMOUNT_SETTINGS, ADF_COMMENTS_SERVICE, ADF_DATETIME_FORMATS, ADF_DATE_FORMATS, AboutComponent, AboutExtensionListComponent, AboutLicenseListComponent, AboutModule, AboutPanelDirective, AboutRepositoryInfoComponent, AboutServerSettingsComponent, AboutStatusListComponent, AdfDateFnsAdapter, AdfDateTimeFnsAdapter, AmountCellComponent, AmountWidgetComponent, AppConfigPipe, AppConfigService, AppConfigServiceMock, AppConfigValues, AuthBearerInterceptor, AuthGuard, AuthGuardBpm, AuthGuardEcm, AuthGuardService, AuthGuardSsoRoleService, AuthModule, AuthService, AuthenticationConfirmationComponent, AuthenticationService, AvatarComponent, BaseEvent, BaseUIEvent, BaseViewerWidgetComponent, BasicAlfrescoAuthService, BlankPageComponent, BlankPageModule, BooleanCellComponent, BpmProductVersionModel, ButtonComponent, ButtonWidgetComponent, ByPassFormRuleManager, CARD_VIEW_DIRECTIVES, CLIPBOARD_DIRECTIVES, CONTEXT_MENU_DIRECTIVES, CORE_DIRECTIVES, CORE_PIPES, CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR, CardItemTypeService, CardViewArrayItemComponent, CardViewArrayItemModel, CardViewBaseItemModel, CardViewBoolItemComponent, CardViewBoolItemModel, CardViewComponent, CardViewDateItemComponent, CardViewDateItemModel, CardViewDatetimeItemModel, CardViewFloatItemModel, CardViewIntItemModel, CardViewItemDispatcherComponent, CardViewItemFloatValidator, CardViewItemIntValidator, CardViewItemLengthValidator, CardViewItemLongValidator, CardViewItemMatchValidator, CardViewItemMinMaxValidator, CardViewItemPositiveIntValidator, CardViewItemPositiveLongValidator, CardViewKeyValuePairsItemComponent, CardViewKeyValuePairsItemModel, CardViewLongItemModel, CardViewMapItemComponent, CardViewMapItemModel, CardViewModule, CardViewSelectItemComponent, CardViewSelectItemModel, CardViewTextItemComponent, CardViewTextItemModel, CardViewUpdateService, CheckboxWidgetComponent, ClipboardDirective, ClipboardModule, ClipboardService, CloseButtonPosition, ColumnsSelectorComponent, CommentListComponent, CommentListModule, CommentModel, CommentsComponent, CommentsModule, ConfirmDialogComponent, ConfirmDialogModule, ContainerColumnModel, ContainerModel, ContentAuth, ContentLinkModel, ContextMenuDirective, ContextMenuListComponent, ContextMenuModule, ContextMenuOverlayService, CookieService, CookieServiceMock, CoreModule, CustomEmptyContentTemplateDirective, CustomLoadingContentTemplateDirective, CustomNoPermissionTemplateDirective, DATATABLE_DIRECTIVES, DEFAULT_DATE_FORMAT, DEFAULT_LANGUAGE_LIST, DEFAULT_PAGINATION, DIALOG_COMPONENT_DATA, DataCellEvent, DataCellEventModel, DataColumnComponent, DataColumnListComponent, DataRowActionEvent, DataRowActionModel, DataRowEvent, DataSorting, DataTableCellComponent, DataTableComponent, DataTableModule, DataTableRowComponent, DataTableSchema, DataTableService, DateCellComponent, DateColumnHeaderComponent, DateFnsUtils, DateTimePipe, DateTimeWidgetComponent, DateWidgetComponent, DecimalFieldValidator, DecimalNumberModel, DecimalNumberPipe, DecimalRenderMiddlewareService, DecimalWidgetComponent, DialogComponent, DialogSize, DirectiveModule, DisplayTextWidgetComponent, DownloadPromptActions, DownloadPromptDialogComponent, DownloadService, DropZoneDirective, DynamicChipListComponent, DynamicChipListModule, DynamicComponentMapper, DynamicComponentResolver, EXTENDIBLE_COMPONENT, EditJsonDialogComponent, EditJsonDialogModule, EmptyContentComponent, EmptyListBodyDirective, EmptyListComponent, EmptyListFooterDirective, EmptyListHeaderDirective, ErrorContentComponent, ErrorMessageModel, ErrorWidgetComponent, EventMock, FORM_FIELD_MODEL_RENDER_MIDDLEWARE, FORM_FIELD_VALIDATORS, FORM_RULES_MANAGER, FORM_SERVICE_FIELD_VALIDATORS_TOKEN, FieldStylePipe, FileSizeCellComponent, FileSizePipe, FileTypePipe, FileUtils, FixedValueFieldValidator, FormBaseComponent, FormBaseModule, FormErrorEvent, FormEvent, FormFieldComponent, FormFieldEvent, FormFieldModel, FormFieldTypes, FormModel, FormOutcomeEvent, FormOutcomeModel, FormRendererComponent, FormRenderingService, FormRulesEvent, FormRulesManager, FormService, FormSpinnerEvent, FormWidgetModel, FormatSpacePipe, FullNamePipe, HeaderComponent, HeaderFilterTemplateDirective, HeaderLayoutComponent, HeaderWidgetComponent, HighlightDirective, HighlightPipe, HighlightTransformService, HyperlinkWidgetComponent, INFO_DRAWER_DIRECTIVES, IconCellComponent, IconComponent, IconModule, IdentityGroupService, IdentityRoleModel, IdentityRoleService, IdentityUserInfoComponent, IdentityUserInfoModule, IdentityUserService, ImgViewerComponent, InfinitePaginationComponent, InfiniteSelectScrollDirective, InfoDrawerButtonsDirective, InfoDrawerComponent, InfoDrawerContentDirective, InfoDrawerLayoutComponent, InfoDrawerModule, InfoDrawerTabComponent, InfoDrawerTitleDirective, InitialUsernamePipe, InplaceFormInputComponent, InputMaskDirective, JSON_TYPE, JWT_STORAGE_SERVICE, JsonCellComponent, JsonWidgetComponent, JwtHelperService, LANDING_PAGE_TOKEN, LANGUAGE_MENU_DIRECTIVES, LAYOUT_DIRECTIVES, LOGIN_DIRECTIVES, LanguageMenuComponent, LanguageMenuModule, LanguagePickerComponent, LanguageService, LayoutContainerComponent, LoadingContentTemplateDirective, LocalizedDatePipe, LocationCellComponent, LogLevelsEnum, LogService, LoginComponent, LoginDialogPanelComponent, LoginErrorEvent, LoginFooterDirective, LoginHeaderDirective, LoginModule, LoginSubmitEvent, LoginSuccessEvent, LogoutDirective, MASK_DIRECTIVE, MOMENT_DATE_FORMATS, MainMenuDataTableTemplateDirective, MaterialModule, MaxLengthFieldValidator, MaxValueFieldValidator, MediaPlayerComponent, MinLengthFieldValidator, MinValueFieldValidator, ModuleListComponent, MomentDateAdapter, MultiValuePipe, MultilineTextWidgetComponentComponent, NOTIFICATION_HISTORY_DIRECTIVES, NOTIFICATION_TYPE, NavbarComponent, NavbarItemComponent, NoContentTemplateDirective, NoPermissionTemplateDirective, NoopAuthModule, NoopRedirectAuthService, NoopTranslateModule, NoopTranslationService, NotificationHistoryComponent, NotificationHistoryModule, NotificationService, NumberCellComponent, NumberFieldValidator, NumberWidgetComponent, OAuth2Service, ObjectDataColumn, ObjectDataRow, ObjectDataTableAdapter, ObjectUtils, OidcAuthGuard, OidcAuthenticationService, PAGINATION_DIRECTIVES, PDFJS_MODULE, PDFJS_VIEWER_MODULE, PackageListComponent, PageTitleService, PaginationComponent, PaginationModel, PaginationModule, PathInfo, PdfPasswordDialogComponent, PdfThumbComponent, PdfThumbListComponent, PdfViewerComponent, PipeModule, ProcessAuth, ProgressComponent, ROW_ID_PREFIX, RedirectAuthService, RedirectionModel, RegExFieldValidator, RepeatWidgetComponent, RequestPaginationModel, RequiredFieldValidator, ResizableDirective, ResizeHandleDirective, SEARCH_AUTOCOMPLETE_VALUE_ACCESSOR, SEARCH_TEXT_INPUT_DIRECTIVES, STORAGE_PREFIX_FACTORY_SERVICE, SearchTextInputComponent, SearchTextModule, SearchTextStateEnum, SearchTriggerDirective, SelectFilterInputComponent, ShowHeaderMode, SidebarActionMenuComponent, SidebarMenuDirective, SidebarMenuExpandIconDirective, SidebarMenuTitleIconDirective, SidenavLayoutComponent, SidenavLayoutContentDirective, SidenavLayoutHeaderDirective, SidenavLayoutModule, SidenavLayoutNavigationDirective, SnackbarContentComponent, SnackbarContentModule, SortByCategoryMapperService, SortingPickerComponent, StartFormCustomButtonDirective, Status, StoragePrefixFactory, StorageService, StringUtils, TEMPLATE_DIRECTIVES, TOOLBAR_DIRECTIVES, TRANSLATION_PROVIDER, TabModel, TaskProcessVariableModel, TemplateModule, TextWidgetComponent, ThumbnailService, TimeAgoPipe, ToolbarComponent, ToolbarDividerComponent, ToolbarModule, ToolbarTitleComponent, TooltipCardComponent, TooltipCardDirective, TranslateLoaderService, TranslationMock, TranslationService, TruncatePipe, TxtViewerComponent, UnitTestingUtils, UnknownFormatComponent, UnknownWidgetComponent, UnsavedChangesDialogComponent, UnsavedChangesDialogModule, UnsavedChangesGuard, UploadDirective, UploadWidgetContentLinkModel, UploadWidgetContentLinkModelOptions, UrlService, User, UserAccessService, UserInfoMode, UserPreferenceValues, UserPreferencesService, VIEWER_DIRECTIVES, ValidateFormEvent, ValidateFormFieldEvent, ViewUtilService, ViewerComponent, ViewerExtensionDirective, ViewerModule, ViewerMoreActionsComponent, ViewerOpenWithComponent, ViewerRenderComponent, ViewerSidebarComponent, ViewerToolbarActionsComponent, ViewerToolbarComponent, ViewerToolbarCustomActionsComponent, WIDGET_DIRECTIVES, WidgetComponent, WidgetVisibilityService, complexVisibilityJsonNotVisible, complexVisibilityJsonVisible, displayTextSchema, error, fakeFormChainedVisibilityJson, fakeFormCheckBoxVisibilityJson, fakeFormJson, formModelTabs, formRulesManagerFactory, formTest, formValues, headerSchema, info, isNumberValue, isOutcomeButtonVisible, logLevels, oauthStorageFactory, predefinedTheme, provideAppConfig, provideAppConfigTesting, provideCoreAuth, provideCoreAuthTesting, provideI18N, provideLandingPage, provideTranslations, repeatableSectionFormVisibility, rootInitiator, searchAnimation, tabInvalidFormVisibility, tabVisibilityJsonMock, transformKeyToObject, warning };
31821
32013
  //# sourceMappingURL=adf-core.mjs.map