mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[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:
@@ -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');
|
||||
}
|
||||
}
|
||||
|
@@ -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';
|
||||
|
@@ -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');
|
||||
|
Reference in New Issue
Block a user