UBERF-4248: Task type (#4042)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev
2023-12-14 23:26:02 +07:00
committed by GitHub
parent 58b841518a
commit 19d6764250
196 changed files with 4690 additions and 2524 deletions
@@ -12,13 +12,23 @@
import { getEmbeddedLabel } from '@hcengineering/platform'
import { createQuery, getClient } from '@hcengineering/presentation'
import { ClassSetting } from '@hcengineering/setting-resources'
import { Button, Expandable, Icon, IconAdd, IconDelete, IconEdit, Label, showPopup } from '@hcengineering/ui'
import {
Button,
Expandable,
Icon,
IconAdd,
IconDelete,
IconEdit,
Label,
showPopup,
CheckBox,
DropdownLabelsPopup
} from '@hcengineering/ui'
import bitrix from '../plugin'
import AttributeMapper from './AttributeMapper.svelte'
import FieldMappingPresenter from './FieldMappingPresenter.svelte'
import { CheckBox, DropdownLabelsPopup } from '@hcengineering/ui'
import { deepEqual } from 'fast-equals'
import BitrixFieldLookup from './BitrixFieldLookup.svelte'
import CreateMappingAttribute from './CreateMappingAttribute.svelte'
@@ -13,9 +13,17 @@
import core, { Class, Doc, generateId, Ref, Space, WithLookup } from '@hcengineering/core'
import { getEmbeddedLabel, getMetadata } from '@hcengineering/platform'
import presentation, { getClient, SpaceSelect } from '@hcengineering/presentation'
import { Button, CheckBox, Expandable, Icon, IconAdd, IconClose, Label } from '@hcengineering/ui'
import { DropdownLabels } from '@hcengineering/ui'
import { EditBox } from '@hcengineering/ui'
import {
Button,
CheckBox,
Expandable,
Icon,
IconAdd,
IconClose,
Label,
DropdownLabels,
EditBox
} from '@hcengineering/ui'
import { NumberEditor } from '@hcengineering/view-resources'
import bitrix from '../plugin'
import FieldMappingPresenter from './FieldMappingPresenter.svelte'
@@ -136,9 +144,6 @@
_class={core.class.Space}
label={core.string.Space}
bind:value={space}
on:change={(evt) => {
space = evt.detail
}}
autoSelect
spaceQuery={{ _id: { $in: [contact.space.Contacts] } }}
/>
@@ -8,8 +8,7 @@
} from '@hcengineering/bitrix'
import { AnyAttribute } from '@hcengineering/core'
import { getClient } from '@hcengineering/presentation'
import { Button, DropdownTextItem, IconAdd, IconDelete } from '@hcengineering/ui'
import { DropdownLabels } from '@hcengineering/ui'
import { Button, DropdownTextItem, IconAdd, IconDelete, DropdownLabels } from '@hcengineering/ui'
import bitrix from '../../plugin'
export let mapping: BitrixEntityMapping