mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-11 05:09:21 +00:00
69 lines
1.9 KiB
Svelte
69 lines
1.9 KiB
Svelte
<!--
|
|
// 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.
|
|
-->
|
|
<script lang="ts">
|
|
import type { Asset } from '@anticrm/platform'
|
|
import type { AnySvelteComponent } from '../types'
|
|
import Icon from './Icon.svelte'
|
|
|
|
export let icon: Asset | AnySvelteComponent
|
|
export let width: string | undefined = undefined
|
|
export let value: string | undefined = undefined
|
|
export let placeholder: string = 'placeholder'
|
|
</script>
|
|
|
|
<div class="editbox" style={width ? 'width: ' + width : ''}>
|
|
<input type="text" bind:value {placeholder} on:change/>
|
|
<div class="icon">
|
|
{#if typeof (icon) === 'string'}
|
|
<Icon {icon} size={'small'} />
|
|
{:else}
|
|
<svelte:component this={icon} size={'small'} />
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.editbox {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
min-width: 16.75rem;
|
|
height: 2.5rem;
|
|
background-color: var(--theme-bg-focused-color);
|
|
border: 1px solid var(--theme-bg-accent-color);
|
|
border-radius: .5rem;
|
|
|
|
&:focus-within {
|
|
border-color: var(--theme-bg-focused-border);
|
|
}
|
|
input {
|
|
width: 100%;
|
|
height: 2.5rem;
|
|
padding-left: .75rem;
|
|
border: none;
|
|
border-radius: .5rem;
|
|
|
|
&::placeholder {
|
|
color: var(--theme-content-trans-color);
|
|
}
|
|
}
|
|
|
|
.icon {
|
|
margin: .75rem;
|
|
opacity: .3;
|
|
}
|
|
}
|
|
</style>
|