[ACS-6107] Updated default configuration for date-range component to be compatible with the new advanced search date range component (#3532)

* [ACS-6107] Updated default configuraiton for date-range component in extensions to match the required config for the new date range component

* [ACS-6107] Updated E2Es to remove references to old date-range component

* [ACS-6107] Restored missing column key
This commit is contained in:
swapnil-verma-gl
2023-12-26 11:14:33 +05:30
committed by GitHub
parent 373a41bd16
commit 339dc60d6d
6 changed files with 17 additions and 44 deletions

View File

@@ -1,31 +0,0 @@
/*!
* Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Alfresco Example Content Application
*
* This file is part of the Alfresco Example Content Application.
* If the software was purchased under a paid Alfresco license, the terms of
* the paid license agreement will prevail. Otherwise, the software is
* provided under the following open source license terms:
*
* The Alfresco Example Content Application is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* The Alfresco Example Content Application is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
*/
import { GenericFilter } from './generic-filter';
export class CreatedDateFilter extends GenericFilter {
constructor() {
super('Created date');
}
}

View File

@@ -23,7 +23,6 @@
*/
export * from './filters/autocomplete-chips-filter';
export * from './filters/created-date-filter';
export * from './filters/facet-filter';
export * from './filters/generic-filter';
export * from './filters/properties-filter';

View File

@@ -24,7 +24,6 @@
import { by, browser } from 'protractor';
import { Component } from '../component';
import { CreatedDateFilter } from './filters/created-date-filter';
import { FacetFilter } from './filters/facet-filter';
import { AutocompleteChipsFilter } from './filters/autocomplete-chips-filter';
import { PropertiesFilter } from './filters/properties-filter';
@@ -33,7 +32,6 @@ import { FacetTabbedFilter } from './filters/facet-tabbed-filter';
export class SearchFilters extends Component {
resetAllButton = browser.element(by.css('button[adf-reset-search]'));
createdDate = new CreatedDateFilter();
fileType = new PropertiesFilter();
people = new FacetTabbedFilter('People');
location = new AutocompleteChipsFilter('Location');