mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-27 20:14:57 +02:00
Signed-off-by: Denis Bykhov <80476319+BykhovDenis@users.noreply.github.com>
28 lines
1.1 KiB
Svelte
28 lines
1.1 KiB
Svelte
<!--
|
|
// Copyright © 2022 Hardcore Engineering Inc.
|
|
//
|
|
// 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.
|
|
-->
|
|
<script lang="ts">
|
|
import { Doc, Mixin } from '@anticrm/core'
|
|
import ClassAttributeBar from './ClassAttributeBar.svelte'
|
|
|
|
export let object: Doc
|
|
export let mixins: Mixin<Doc>[]
|
|
export let ignoreKeys: string[]
|
|
</script>
|
|
|
|
<ClassAttributeBar _class={object._class} {object} {ignoreKeys} to={undefined} vertical on:update />
|
|
{#each mixins as mixin}
|
|
<ClassAttributeBar _class={mixin._id} {object} {ignoreKeys} to={object._class} vertical on:update />
|
|
{/each}
|