mirror of
https://github.com/gradio-app/gradio.git
synced 2025-04-06 12:30:29 +08:00
Fixing webcam flip (#774)
* frontend fixes * format fix Co-authored-by: Ali Abid <aliabid94@gmail.com>
This commit is contained in:
parent
a457f6a446
commit
a49ea9ab5c
@ -358,12 +358,12 @@
|
||||
/>
|
||||
{/if}
|
||||
<span
|
||||
class=" cursor-default w-full"
|
||||
class="cursor-default w-full"
|
||||
class:opacity-0={editing === id}
|
||||
tabindex="-1"
|
||||
role="button"
|
||||
>
|
||||
{value}
|
||||
{value ?? ""}
|
||||
</span>
|
||||
</div>
|
||||
</td>
|
||||
|
@ -0,0 +1,23 @@
|
||||
<script lang="ts">
|
||||
export let value: Array<Array<string | number>>;
|
||||
</script>
|
||||
|
||||
<table class="input-dataframe-example">
|
||||
{#each value.slice(0, 3) as row}
|
||||
<tr>
|
||||
{#each row.slice(0, 3) as cell}
|
||||
<td class="p-2">{cell}</td>
|
||||
{/each}
|
||||
{#if row.length > 3}
|
||||
<td class="p-2">...</td>
|
||||
{/if}
|
||||
</tr>
|
||||
{/each}
|
||||
{#if value.length > 3}
|
||||
<tr>
|
||||
{#each Array(Math.min(4, value[0].length)) as _}
|
||||
<td class="p-2">...</td>
|
||||
{/each}
|
||||
</tr>
|
||||
{/if}
|
||||
</table>
|
@ -1,5 +1,7 @@
|
||||
import Component from "./DataFrame.svelte";
|
||||
import ExampleComponent from "./Example.svelte";
|
||||
|
||||
export default {
|
||||
component: Component
|
||||
component: Component,
|
||||
example: ExampleComponent
|
||||
};
|
||||
|
@ -85,6 +85,8 @@
|
||||
{static_src}
|
||||
/>
|
||||
|
||||
<img class="w-full h-full object-contain" src={value} alt="" />
|
||||
{:else}
|
||||
<img class="w-full h-full object-contain" src={value} alt="" />
|
||||
{/if}
|
||||
</div>
|
||||
|
@ -66,10 +66,3 @@
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<style lang="postcss">
|
||||
video {
|
||||
-webkit-transform: scaleX(-1);
|
||||
transform: scaleX(-1);
|
||||
}
|
||||
</style>
|
||||
|
Loading…
x
Reference in New Issue
Block a user