// // Copyright © 2020 Anticrm Platform Contributors. // // Licensed under the Eclipse Public License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. You may // obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // // See the License for the specific language governing permissions and // limitations under the License. // import { ObjQueryType } from '@hcengineering/core' import { IntlString, mergeIds, Resource } from '@hcengineering/platform' import type { AnyComponent } from '@hcengineering/ui' import { Filter, ViewAction, viewId } from '@hcengineering/view' import view from '@hcengineering/view-resources/src/plugin' export default mergeIds(viewId, view, { actionImpl: { Delete: '' as ViewAction, Move: '' as ViewAction, MoveLeft: '' as ViewAction, MoveRight: '' as ViewAction, MoveUp: '' as ViewAction, MoveDown: '' as ViewAction, SelectItem: '' as ViewAction, SelectItemAll: '' as ViewAction, SelectItemNone: '' as ViewAction, SelectUp: '' as ViewAction, SelectDown: '' as ViewAction, ShowPreview: '' as ViewAction, ShowActions: '' as ViewAction, Open: '' as ViewAction }, component: { StringEditor: '' as AnyComponent, StringEditorPopup: '' as AnyComponent, StringPresenter: '' as AnyComponent, HyperlinkPresenter: '' as AnyComponent, IntlStringPresenter: '' as AnyComponent, NumberEditor: '' as AnyComponent, NumberPresenter: '' as AnyComponent, MarkupPresenter: '' as AnyComponent, BooleanPresenter: '' as AnyComponent, BooleanEditor: '' as AnyComponent, TimestampPresenter: '' as AnyComponent, DateEditor: '' as AnyComponent, DatePresenter: '' as AnyComponent, TableBrowser: '' as AnyComponent, RolePresenter: '' as AnyComponent, YoutubePresenter: '' as AnyComponent, GithubPresenter: '' as AnyComponent, ClassPresenter: '' as AnyComponent, ClassRefPresenter: '' as AnyComponent, EnumEditor: '' as AnyComponent, HTMLEditor: '' as AnyComponent, MarkupEditor: '' as AnyComponent, MarkupEditorPopup: '' as AnyComponent, ListView: '' as AnyComponent, GrowPresenter: '' as AnyComponent }, string: { Table: '' as IntlString, Delete: '' as IntlString, Role: '' as IntlString, // Keybaord actions MoveUp: '' as IntlString, MoveDown: '' as IntlString, MoveLeft: '' as IntlString, MoveRight: '' as IntlString, SelectItem: '' as IntlString, SelectItemAll: '' as IntlString, SelectItemNone: '' as IntlString, SelectUp: '' as IntlString, SelectDown: '' as IntlString, ShowPreview: '' as IntlString, ShowActions: '' as IntlString, Open: '' as IntlString, // Action categories General: '' as IntlString, Navigation: '' as IntlString, Editor: '' as IntlString, MarkdownFormatting: '' as IntlString, List: '' as IntlString }, function: { FilterObjectInResult: '' as Resource<(filter: Filter, onUpdate: () => void) => Promise>>, FilterObjectNinResult: '' as Resource<(filter: Filter, onUpdate: () => void) => Promise>>, FilterValueInResult: '' as Resource<(filter: Filter, onUpdate: () => void) => Promise>>, FilterValueNinResult: '' as Resource<(filter: Filter, onUpdate: () => void) => Promise>>, FilterBeforeResult: '' as Resource<(filter: Filter, onUpdate: () => void) => Promise>>, FilterAfterResult: '' as Resource<(filter: Filter, onUpdate: () => void) => Promise>>, FilterNestedMatchResult: '' as Resource<(filter: Filter, onUpdate: () => void) => Promise>>, FilterNestedDontMatchResult: '' as Resource<(filter: Filter, onUpdate: () => void) => Promise>> } })