@alfresco/adf-core 7.0.0-alpha.8-13005755934 → 7.0.0-alpha.8-13009426269

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.
@@ -35,6 +35,7 @@ import * as i3$1 from '@angular/material/progress-spinner';
35
35
  import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
36
36
  import Cropper from 'cropperjs';
37
37
  import * as i1$3 from '@angular/platform-browser';
38
+ import { By } from '@angular/platform-browser';
38
39
  import * as i1$4 from '@angular/material/toolbar';
39
40
  import { MatToolbarModule } from '@angular/material/toolbar';
40
41
  import * as i1$5 from '@angular/material/dialog';
@@ -100,6 +101,18 @@ import { MatGridListModule } from '@angular/material/grid-list';
100
101
  import { MatRadioModule } from '@angular/material/radio';
101
102
  import { HttpClientTestingModule } from '@angular/common/http/testing';
102
103
  import { RouterTestingModule } from '@angular/router/testing';
104
+ import { MatSelectHarness } from '@angular/material/select/testing';
105
+ import { MatChipHarness, MatChipListboxHarness, MatChipGridHarness } from '@angular/material/chips/testing';
106
+ import { MatButtonHarness } from '@angular/material/button/testing';
107
+ import { MatIconHarness } from '@angular/material/icon/testing';
108
+ import { MatCheckboxHarness } from '@angular/material/checkbox/testing';
109
+ import { MatFormFieldHarness, MatErrorHarness } from '@angular/material/form-field/testing';
110
+ import { MatInputHarness } from '@angular/material/input/testing';
111
+ import { MatAutocompleteHarness } from '@angular/material/autocomplete/testing';
112
+ import { MatTabGroupHarness } from '@angular/material/tabs/testing';
113
+ import { MatToolbarHarness } from '@angular/material/toolbar/testing';
114
+ import { MatSnackBarHarness } from '@angular/material/snack-bar/testing';
115
+ import { MatProgressBarHarness } from '@angular/material/progress-bar/testing';
103
116
 
104
117
  /*!
105
118
  * @license
@@ -22668,7 +22681,7 @@ class DateWidgetComponent extends WidgetComponent {
22668
22681
  this.dateInputControl.setValue(this.field.value, { emitEvent: false });
22669
22682
  }
22670
22683
  updateFormControlState() {
22671
- this.dateInputControl.setValidators(this.isRequired() ? [Validators.required] : []);
22684
+ this.dateInputControl.setValidators(this.isRequired() && this.field?.isVisible ? [Validators.required] : []);
22672
22685
  this.field?.readOnly || this.readOnly
22673
22686
  ? this.dateInputControl.disable({ emitEvent: false })
22674
22687
  : this.dateInputControl.enable({ emitEvent: false });
@@ -23264,7 +23277,7 @@ class DateTimeWidgetComponent extends WidgetComponent {
23264
23277
  this.datetimeInputControl.setValue(this.field.value, { emitEvent: false });
23265
23278
  }
23266
23279
  updateFormControlState() {
23267
- this.datetimeInputControl.setValidators(this.isRequired() ? [Validators.required] : []);
23280
+ this.datetimeInputControl.setValidators(this.isRequired() && this.field?.isVisible ? [Validators.required] : []);
23268
23281
  this.field?.readOnly || this.readOnly
23269
23282
  ? this.datetimeInputControl.disable({ emitEvent: false })
23270
23283
  : this.datetimeInputControl.enable({ emitEvent: false });
@@ -32409,6 +32422,357 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
32409
32422
  }]
32410
32423
  }] });
32411
32424
 
32425
+ /*!
32426
+ * @license
32427
+ * Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
32428
+ *
32429
+ * Licensed under the Apache License, Version 2.0 (the "License");
32430
+ * you may not use this file except in compliance with the License.
32431
+ * You may obtain a copy of the License at
32432
+ *
32433
+ * http://www.apache.org/licenses/LICENSE-2.0
32434
+ *
32435
+ * Unless required by applicable law or agreed to in writing, software
32436
+ * distributed under the License is distributed on an "AS IS" BASIS,
32437
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
32438
+ * See the License for the specific language governing permissions and
32439
+ * limitations under the License.
32440
+ */
32441
+ class UnitTestingUtils {
32442
+ constructor(debugElement, loader) {
32443
+ this.debugElement = debugElement;
32444
+ this.loader = loader;
32445
+ this.debugElement = debugElement;
32446
+ this.loader = loader;
32447
+ }
32448
+ setDebugElement(debugElement) {
32449
+ this.debugElement = debugElement;
32450
+ }
32451
+ setLoader(loader) {
32452
+ this.loader = loader;
32453
+ }
32454
+ getByCSS(selector) {
32455
+ return this.debugElement.query(By.css(selector));
32456
+ }
32457
+ getAllByCSS(selector) {
32458
+ return this.debugElement.queryAll(By.css(selector));
32459
+ }
32460
+ getInnerTextByCSS(selector) {
32461
+ return this.getByCSS(selector).nativeElement.innerText;
32462
+ }
32463
+ getByDataAutomationId(dataAutomationId) {
32464
+ return this.getByCSS(`[data-automation-id="${dataAutomationId}"]`);
32465
+ }
32466
+ getByDataAutomationClass(dataAutomationClass) {
32467
+ return this.getByCSS(`[data-automation-class="${dataAutomationClass}"]`);
32468
+ }
32469
+ getInnerTextByDataAutomationId(dataAutomationId) {
32470
+ return this.getByDataAutomationId(dataAutomationId).nativeElement.innerText;
32471
+ }
32472
+ getByDirective(directive) {
32473
+ return this.debugElement.query(By.directive(directive));
32474
+ }
32475
+ /** Perform actions */
32476
+ clickByCSS(selector) {
32477
+ const element = this.getByCSS(selector);
32478
+ element.triggerEventHandler('click', new MouseEvent('click'));
32479
+ }
32480
+ clickByDataAutomationId(dataAutomationId) {
32481
+ this.getByDataAutomationId(dataAutomationId).nativeElement.click();
32482
+ }
32483
+ doubleClickByDataAutomationId(dataAutomationId) {
32484
+ const element = this.getByDataAutomationId(dataAutomationId);
32485
+ element.triggerEventHandler('dblclick', new MouseEvent('dblclick'));
32486
+ }
32487
+ blurByCSS(selector) {
32488
+ const element = this.getByCSS(selector);
32489
+ element.triggerEventHandler('blur', new FocusEvent('blur'));
32490
+ }
32491
+ hoverOverByCSS(selector) {
32492
+ const element = this.getByCSS(selector);
32493
+ element.triggerEventHandler('mouseenter', new MouseEvent('mouseenter'));
32494
+ }
32495
+ hoverOverByDataAutomationId(dataAutomationId) {
32496
+ const element = this.getByDataAutomationId(dataAutomationId);
32497
+ element.triggerEventHandler('mouseenter', new MouseEvent('mouseenter'));
32498
+ }
32499
+ mouseLeaveByCSS(selector) {
32500
+ const element = this.getByCSS(selector);
32501
+ element.triggerEventHandler('mouseleave', new MouseEvent('mouseleave'));
32502
+ }
32503
+ mouseLeaveByDataAutomationId(dataAutomationId) {
32504
+ const element = this.getByDataAutomationId(dataAutomationId);
32505
+ element.triggerEventHandler('mouseleave', new MouseEvent('mouseleave'));
32506
+ }
32507
+ keyBoardEventByCSS(selector, event, code, key) {
32508
+ const element = this.getByCSS(selector);
32509
+ element.nativeElement.dispatchEvent(new KeyboardEvent(event, { code, key }));
32510
+ }
32511
+ dispatchCustomEventByCSS(selector, eventName) {
32512
+ const element = this.getByCSS(selector);
32513
+ element.nativeElement.dispatchEvent(new CustomEvent(eventName));
32514
+ }
32515
+ /** Input related methods */
32516
+ getInputByCSS(selector) {
32517
+ return this.getByCSS(selector)?.nativeElement;
32518
+ }
32519
+ getInputByDataAutomationId(dataAutomationId) {
32520
+ return this.getByDataAutomationId(dataAutomationId)?.nativeElement;
32521
+ }
32522
+ fillInputByCSS(selector, value) {
32523
+ const input = this.getInputByCSS(selector);
32524
+ input.value = value;
32525
+ input.dispatchEvent(new Event('input'));
32526
+ }
32527
+ fillInputByDataAutomationId(dataAutomationId, value) {
32528
+ const input = this.getInputByDataAutomationId(dataAutomationId);
32529
+ input.value = value;
32530
+ input.dispatchEvent(new Event('input'));
32531
+ }
32532
+ /** MatButton related methods */
32533
+ async getMatButton() {
32534
+ return this.loader.getHarness(MatButtonHarness);
32535
+ }
32536
+ async getMatButtonByCSS(selector) {
32537
+ return this.loader.getHarness(MatButtonHarness.with({ selector }));
32538
+ }
32539
+ async getMatButtonByDataAutomationId(dataAutomationId) {
32540
+ return this.loader.getHarness(MatButtonHarness.with({ selector: `[data-automation-id="${dataAutomationId}"]` }));
32541
+ }
32542
+ async checkIfMatButtonExists() {
32543
+ return this.loader.hasHarness(MatButtonHarness);
32544
+ }
32545
+ async checkIfMatButtonExistsWithDataAutomationId(dataAutomationId) {
32546
+ return this.loader.hasHarness(MatButtonHarness.with({ selector: `[data-automation-id="${dataAutomationId}"]` }));
32547
+ }
32548
+ async clickMatButton() {
32549
+ const button = await this.getMatButton();
32550
+ await button.click();
32551
+ }
32552
+ async clickMatButtonByCSS(selector) {
32553
+ const button = await this.getMatButtonByCSS(selector);
32554
+ await button.click();
32555
+ }
32556
+ async clickMatButtonByDataAutomationId(dataAutomationId) {
32557
+ const button = await this.getMatButtonByDataAutomationId(dataAutomationId);
32558
+ await button.click();
32559
+ }
32560
+ async sendKeysToMatButton(keys) {
32561
+ const button = await this.getMatButton();
32562
+ const host = await button.host();
32563
+ await host.sendKeys(...keys);
32564
+ }
32565
+ /** MatCheckbox related methods */
32566
+ async getMatCheckbox() {
32567
+ return this.loader.getHarness(MatCheckboxHarness);
32568
+ }
32569
+ async getMatCheckboxByDataAutomationId(dataAutomationId) {
32570
+ return this.loader.getHarness(MatCheckboxHarness.with({ selector: `[data-automation-id="${dataAutomationId}"]` }));
32571
+ }
32572
+ async getMatCheckboxHost() {
32573
+ const checkbox = await this.getMatCheckbox();
32574
+ return checkbox.host();
32575
+ }
32576
+ async getAllMatCheckboxes() {
32577
+ return this.loader.getAllHarnesses(MatCheckboxHarness);
32578
+ }
32579
+ async checkIfMatCheckboxIsChecked() {
32580
+ const checkbox = await this.getMatCheckbox();
32581
+ return checkbox.isChecked();
32582
+ }
32583
+ async checkIfMatCheckboxesHaveClass(className) {
32584
+ const checkboxes = await this.getAllMatCheckboxes();
32585
+ return checkboxes.every(async (checkbox) => (await checkbox.host()).hasClass(className));
32586
+ }
32587
+ async hoverOverMatCheckbox() {
32588
+ const host = await this.getMatCheckboxHost();
32589
+ await host.hover();
32590
+ }
32591
+ /** MatIcon related methods */
32592
+ async getMatIconOrNull() {
32593
+ return this.loader.getHarnessOrNull(MatIconHarness);
32594
+ }
32595
+ async getMatIconWithAncestorByDataAutomationId(dataAutomationId) {
32596
+ return this.loader.getHarness(MatIconHarness.with({ ancestor: `[data-automation-id="${dataAutomationId}"]` }));
32597
+ }
32598
+ async getMatIconWithAncestorByCSS(selector) {
32599
+ return this.loader.getHarness(MatIconHarness.with({ ancestor: selector }));
32600
+ }
32601
+ async getMatIconWithAncestorByCSSAndName(selector, name) {
32602
+ return this.loader.getHarness(MatIconHarness.with({ ancestor: selector, name }));
32603
+ }
32604
+ async checkIfMatIconExistsWithAncestorByDataAutomationId(dataAutomationId) {
32605
+ return this.loader.hasHarness(MatIconHarness.with({ ancestor: `[data-automation-id="${dataAutomationId}"]` }));
32606
+ }
32607
+ async checkIfMatIconExistsWithAncestorByCSSAndName(selector, name) {
32608
+ return this.loader.hasHarness(MatIconHarness.with({ ancestor: selector, name }));
32609
+ }
32610
+ async clickMatIconWithAncestorByDataAutomationId(dataAutomationId) {
32611
+ const icon = await this.getMatIconWithAncestorByDataAutomationId(dataAutomationId);
32612
+ const host = await icon.host();
32613
+ await host.click();
32614
+ }
32615
+ /** MatSelect related methods */
32616
+ async getMatSelectOptions(isOpened = false) {
32617
+ const select = await this.loader.getHarness(MatSelectHarness);
32618
+ if (!isOpened) {
32619
+ await select.open();
32620
+ }
32621
+ return select.getOptions();
32622
+ }
32623
+ async getMatSelectHost() {
32624
+ const select = await this.loader.getHarness(MatSelectHarness);
32625
+ return select.host();
32626
+ }
32627
+ async checkIfMatSelectExists() {
32628
+ return this.loader.hasHarness(MatSelectHarness);
32629
+ }
32630
+ async openMatSelect() {
32631
+ const select = await this.loader.getHarness(MatSelectHarness);
32632
+ await select.open();
32633
+ }
32634
+ /** MatChips related methods */
32635
+ async getMatChipByDataAutomationId(dataAutomationId) {
32636
+ return this.loader.getHarness(MatChipHarness.with({ selector: `[data-automation-id="${dataAutomationId}"]` }));
32637
+ }
32638
+ async checkIfMatChipExistsWithDataAutomationId(dataAutomationId) {
32639
+ return this.loader.hasHarness(MatChipHarness.with({ selector: `[data-automation-id="${dataAutomationId}"]` }));
32640
+ }
32641
+ async clickMatChip(dataAutomationId) {
32642
+ const chip = await this.getMatChipByDataAutomationId(dataAutomationId);
32643
+ const host = await chip.host();
32644
+ await host.click();
32645
+ }
32646
+ async getMatChips() {
32647
+ return this.loader.getAllHarnesses(MatChipHarness);
32648
+ }
32649
+ /** MatChipListbox related methods */
32650
+ async getMatChipListboxByDataAutomationId(dataAutomationId) {
32651
+ return this.loader.getHarness(MatChipListboxHarness.with({ selector: `[data-automation-id="${dataAutomationId}"]` }));
32652
+ }
32653
+ async clickMatChipListbox(dataAutomationId) {
32654
+ const chipList = await this.getMatChipListboxByDataAutomationId(dataAutomationId);
32655
+ const host = await chipList.host();
32656
+ await host.click();
32657
+ }
32658
+ /** MatChipGrid related methods */
32659
+ async checkIfMatChipGridExists() {
32660
+ return this.loader.hasHarness(MatChipGridHarness);
32661
+ }
32662
+ /** MatFromField related methods */
32663
+ async getMatFormField() {
32664
+ return this.loader.getHarness(MatFormFieldHarness);
32665
+ }
32666
+ async getMatFormFieldByCSS(selector) {
32667
+ return this.loader.getHarness(MatFormFieldHarness.with({ selector }));
32668
+ }
32669
+ /** MatInput related methods */
32670
+ async getMatInput() {
32671
+ return this.loader.getHarness(MatInputHarness);
32672
+ }
32673
+ async getMatInputByCSS(selector) {
32674
+ return this.loader.getHarness(MatInputHarness.with({ selector }));
32675
+ }
32676
+ async getMatInputByDataAutomationId(dataAutomationId) {
32677
+ return this.loader.getHarness(MatInputHarness.with({ selector: `[data-automation-id="${dataAutomationId}"]` }));
32678
+ }
32679
+ async getMatInputByPlaceholder(placeholder) {
32680
+ return this.loader.getHarness(MatInputHarness.with({ placeholder }));
32681
+ }
32682
+ async getMatInputHost() {
32683
+ const input = await this.getMatInput();
32684
+ return input.host();
32685
+ }
32686
+ async checkIfMatInputExists() {
32687
+ return this.loader.hasHarness(MatInputHarness);
32688
+ }
32689
+ async checkIfMatInputExistsWithCSS(selector) {
32690
+ return this.loader.hasHarness(MatInputHarness.with({ selector }));
32691
+ }
32692
+ async checkIfMatInputExistsWithDataAutomationId(dataAutomationId) {
32693
+ return this.loader.hasHarness(MatInputHarness.with({ selector: `[data-automation-id="${dataAutomationId}"]` }));
32694
+ }
32695
+ async checkIfMatInputExistsWithPlaceholder(placeholder) {
32696
+ return this.loader.hasHarness(MatInputHarness.with({ placeholder }));
32697
+ }
32698
+ async clickMatInput() {
32699
+ const input = await this.getMatInput();
32700
+ const host = await input.host();
32701
+ await host.click();
32702
+ }
32703
+ async fillMatInput(value) {
32704
+ const input = await this.getMatInput();
32705
+ await input.setValue(value);
32706
+ }
32707
+ async fillMatInputByCSS(selector, value) {
32708
+ const input = await this.getMatInputByCSS(selector);
32709
+ await input.setValue(value);
32710
+ }
32711
+ async fillMatInputByDataAutomationId(dataAutomationId, value) {
32712
+ const input = await this.getMatInputByDataAutomationId(dataAutomationId);
32713
+ await input.setValue(value);
32714
+ await (await input.host()).dispatchEvent('input');
32715
+ }
32716
+ async focusMatInput() {
32717
+ const input = await this.getMatInput();
32718
+ await input.focus();
32719
+ }
32720
+ async blurMatInput() {
32721
+ const input = await this.getMatInput();
32722
+ await input.blur();
32723
+ }
32724
+ async getMatInputValue() {
32725
+ const input = await this.getMatInput();
32726
+ return input.getValue();
32727
+ }
32728
+ async getMatInputValueByDataAutomationId(dataAutomationId) {
32729
+ const input = await this.getMatInputByDataAutomationId(dataAutomationId);
32730
+ return input.getValue();
32731
+ }
32732
+ async sendKeysToMatInput(keys) {
32733
+ const input = await this.getMatInput();
32734
+ const host = await input.host();
32735
+ await host.sendKeys(...keys);
32736
+ }
32737
+ /** MatAutoComplete related methods */
32738
+ async typeAndGetOptionsForMatAutoComplete(fixture, value) {
32739
+ const autocomplete = await this.loader.getHarness(MatAutocompleteHarness);
32740
+ await autocomplete.enterText(value);
32741
+ fixture.detectChanges();
32742
+ return autocomplete.getOptions();
32743
+ }
32744
+ /** MatError related methods */
32745
+ async getMatErrorByCSS(selector) {
32746
+ return this.loader.getHarness(MatErrorHarness.with({ selector }));
32747
+ }
32748
+ async getMatErrorByDataAutomationId(dataAutomationId) {
32749
+ return this.loader.getHarness(MatErrorHarness.with({ selector: `[data-automation-id="${dataAutomationId}"]` }));
32750
+ }
32751
+ /** MatTabGroup related methods */
32752
+ async getSelectedTabFromMatTabGroup() {
32753
+ const tabs = await this.loader.getHarness(MatTabGroupHarness);
32754
+ return tabs.getSelectedTab();
32755
+ }
32756
+ async getSelectedTabLabelFromMatTabGroup() {
32757
+ const tab = await this.getSelectedTabFromMatTabGroup();
32758
+ return tab.getLabel();
32759
+ }
32760
+ /** MatToolbar related methods */
32761
+ async getMatToolbarHost() {
32762
+ const toolbar = await this.loader.getHarness(MatToolbarHarness);
32763
+ return toolbar.host();
32764
+ }
32765
+ /** MatSnackbar related methods */
32766
+ async checkIfMatSnackbarExists() {
32767
+ return this.loader.hasHarness(MatSnackBarHarness);
32768
+ }
32769
+ /** MatProgressBar related methods */
32770
+ async getMatProgressBarHost() {
32771
+ const progress = await this.loader.getHarness(MatProgressBarHarness);
32772
+ return progress.host();
32773
+ }
32774
+ }
32775
+
32412
32776
  /*!
32413
32777
  * @license
32414
32778
  * Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
@@ -32447,5 +32811,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
32447
32811
  * Generated bundle index. Do not edit.
32448
32812
  */
32449
32813
 
32450
- export { ABOUT_DIRECTIVES, ADF_AMOUNT_SETTINGS, ADF_COMMENTS_SERVICE, ADF_DATETIME_FORMATS, ADF_DATE_FORMATS, AboutComponent, AboutExtensionListComponent, AboutLicenseListComponent, AboutModule, AboutPanelDirective, AboutRepositoryInfoComponent, AboutServerSettingsComponent, AboutStatusListComponent, AddNotificationStorybookComponent, AdfDateFnsAdapter, AdfDateTimeFnsAdapter, AmountCellComponent, AmountWidgetComponent, AppConfigModule, AppConfigPipe, AppConfigService, AppConfigServiceMock, AppConfigValues, AuthBearerInterceptor, AuthGuard, AuthGuardBpm, AuthGuardEcm, AuthGuardService, AuthGuardSsoRoleService, AuthModule, AuthRoutingModule, AuthService, AuthenticationConfirmationComponent, AuthenticationService, AvatarComponent, BaseEvent, BaseUIEvent, BaseViewerWidgetComponent, BasicAlfrescoAuthService, BlankPageComponent, BlankPageModule, BooleanCellComponent, BpmProductVersionModel, ButtonComponent, 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, ClipboardComponent, ClipboardDirective, ClipboardModule, ClipboardService, CloseButtonPosition, ColumnsSelectorComponent, CommentListComponent, CommentListModule, CommentModel, CommentsComponent, CommentsModule, ConfirmDialogComponent, ConfirmDialogModule, ContainerColumnModel, ContainerModel, ContentAuth, ContentLinkModel, ContextMenuDirective, ContextMenuListComponent, ContextMenuModule, ContextMenuOverlayService, CookieService, CookieServiceMock, CoreModule, CoreStoryModule, CoreTestingModule, CustomEmptyContentTemplateDirective, CustomLoadingContentTemplateDirective, CustomNoPermissionTemplateDirective, DATATABLE_DIRECTIVES, DEFAULT_DATE_FORMAT, 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, DebugAppConfigService, 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, 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, LANGUAGE_MENU_DIRECTIVES, LAYOUT_DIRECTIVES, LOGIN_DIRECTIVES, LanguageMenuComponent, LanguageMenuModule, LanguagePickerComponent, LanguageService, LayoutContainerComponent, LoadingContentTemplateDirective, LocalizedDatePipe, LocationCellComponent, LogLevelsEnum, LogService, LoginComponent, LoginDialogComponent, LoginDialogPanelComponent, LoginErrorEvent, LoginFooterDirective, LoginHeaderDirective, LoginModule, LoginSubmitEvent, LoginSuccessEvent, LogoutDirective, MASK_DIRECTIVE, MOMENT_DATE_FORMATS, MainMenuDataTableTemplateDirective, MaterialModule, MaxLengthFieldValidator, MaxValueFieldValidator, MediaPlayerComponent, MinLengthFieldValidator, MinValueFieldValidator, ModuleListComponent, MomentDateAdapter, MomentDatePipe, MomentDateTimePipe, 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, PackageListComponent, PageTitleService, PaginationComponent, PaginationModel, PaginationModule, PathInfo, PdfPasswordDialogComponent, PdfThumbComponent, PdfThumbListComponent, PdfViewerComponent, PipeModule, ProcessAuth, ProgressComponent, RedirectAuthService, RedirectionModel, RegExFieldValidator, 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, 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, amountColumnRows, booleanColumnRows, complexVisibilityJsonNotVisible, complexVisibilityJsonVisible, dateColumnRows, dateColumnTimeAgoRows, displayTextSchema, error, fakeForm, fakeFormChainedVisibilityJson, fakeFormCheckBoxVisibilityJson, fakeFormJson, fakeTaskProcessVariableModels, fileSizeColumnRows, formDefVisibilitiFieldDependsOnPreviousOne, formDefVisibilityFieldDependsOnNextOne, formDefinitionDropdownField, formDefinitionRequiredField, formDefinitionTwoTextFields, formModelTabs, formReadonlyTwoTextFields, formRulesManagerFactory, formTest, formValues, getDataColumnMock, headerSchema, iconColumnRows, imageColumnRows, info, isNumberValue, jsonColumnRows, locationColumnRows, logLevels, loginFactory, oauthStorageFactory, predefinedTheme, provideTranslations, rootInitiator, searchAnimation, tabInvalidFormVisibility, tabVisibilityJsonMock, textColumnRows, transformKeyToObject, warning };
32814
+ export { ABOUT_DIRECTIVES, ADF_AMOUNT_SETTINGS, ADF_COMMENTS_SERVICE, ADF_DATETIME_FORMATS, ADF_DATE_FORMATS, AboutComponent, AboutExtensionListComponent, AboutLicenseListComponent, AboutModule, AboutPanelDirective, AboutRepositoryInfoComponent, AboutServerSettingsComponent, AboutStatusListComponent, AddNotificationStorybookComponent, AdfDateFnsAdapter, AdfDateTimeFnsAdapter, AmountCellComponent, AmountWidgetComponent, AppConfigModule, AppConfigPipe, AppConfigService, AppConfigServiceMock, AppConfigValues, AuthBearerInterceptor, AuthGuard, AuthGuardBpm, AuthGuardEcm, AuthGuardService, AuthGuardSsoRoleService, AuthModule, AuthRoutingModule, AuthService, AuthenticationConfirmationComponent, AuthenticationService, AvatarComponent, BaseEvent, BaseUIEvent, BaseViewerWidgetComponent, BasicAlfrescoAuthService, BlankPageComponent, BlankPageModule, BooleanCellComponent, BpmProductVersionModel, ButtonComponent, 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, ClipboardComponent, ClipboardDirective, ClipboardModule, ClipboardService, CloseButtonPosition, ColumnsSelectorComponent, CommentListComponent, CommentListModule, CommentModel, CommentsComponent, CommentsModule, ConfirmDialogComponent, ConfirmDialogModule, ContainerColumnModel, ContainerModel, ContentAuth, ContentLinkModel, ContextMenuDirective, ContextMenuListComponent, ContextMenuModule, ContextMenuOverlayService, CookieService, CookieServiceMock, CoreModule, CoreStoryModule, CoreTestingModule, CustomEmptyContentTemplateDirective, CustomLoadingContentTemplateDirective, CustomNoPermissionTemplateDirective, DATATABLE_DIRECTIVES, DEFAULT_DATE_FORMAT, 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, DebugAppConfigService, 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, 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, LANGUAGE_MENU_DIRECTIVES, LAYOUT_DIRECTIVES, LOGIN_DIRECTIVES, LanguageMenuComponent, LanguageMenuModule, LanguagePickerComponent, LanguageService, LayoutContainerComponent, LoadingContentTemplateDirective, LocalizedDatePipe, LocationCellComponent, LogLevelsEnum, LogService, LoginComponent, LoginDialogComponent, LoginDialogPanelComponent, LoginErrorEvent, LoginFooterDirective, LoginHeaderDirective, LoginModule, LoginSubmitEvent, LoginSuccessEvent, LogoutDirective, MASK_DIRECTIVE, MOMENT_DATE_FORMATS, MainMenuDataTableTemplateDirective, MaterialModule, MaxLengthFieldValidator, MaxValueFieldValidator, MediaPlayerComponent, MinLengthFieldValidator, MinValueFieldValidator, ModuleListComponent, MomentDateAdapter, MomentDatePipe, MomentDateTimePipe, 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, PackageListComponent, PageTitleService, PaginationComponent, PaginationModel, PaginationModule, PathInfo, PdfPasswordDialogComponent, PdfThumbComponent, PdfThumbListComponent, PdfViewerComponent, PipeModule, ProcessAuth, ProgressComponent, RedirectAuthService, RedirectionModel, RegExFieldValidator, 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, amountColumnRows, booleanColumnRows, complexVisibilityJsonNotVisible, complexVisibilityJsonVisible, dateColumnRows, dateColumnTimeAgoRows, displayTextSchema, error, fakeForm, fakeFormChainedVisibilityJson, fakeFormCheckBoxVisibilityJson, fakeFormJson, fakeTaskProcessVariableModels, fileSizeColumnRows, formDefVisibilitiFieldDependsOnPreviousOne, formDefVisibilityFieldDependsOnNextOne, formDefinitionDropdownField, formDefinitionRequiredField, formDefinitionTwoTextFields, formModelTabs, formReadonlyTwoTextFields, formRulesManagerFactory, formTest, formValues, getDataColumnMock, headerSchema, iconColumnRows, imageColumnRows, info, isNumberValue, jsonColumnRows, locationColumnRows, logLevels, loginFactory, oauthStorageFactory, predefinedTheme, provideTranslations, rootInitiator, searchAnimation, tabInvalidFormVisibility, tabVisibilityJsonMock, textColumnRows, transformKeyToObject, warning };
32451
32815
  //# sourceMappingURL=adf-core.mjs.map