-
-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2114 from undb-io/release/v1.0.0-110
Release version v1.0.0-110
- Loading branch information
Showing
85 changed files
with
634 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# Changelog | ||
|
||
## v1.0.0-110 | ||
|
||
## v1.0.0-109 | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
FROM node:22 as builder | ||
|
||
ARG CDN_URL | ||
ENV PUBLIC_CDN_URL=$CDN_URL | ||
|
||
WORKDIR /usr/src/app | ||
|
||
RUN npm i -g bun | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,6 +60,7 @@ enum FieldType { | |
date | ||
duration | ||
formula | ||
id | ||
json | ||
longText | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
apps/frontend/src/lib/components/blocks/field-value/formula-field.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<script lang="ts"> | ||
import { cn } from "$lib/utils" | ||
export let value: string | undefined = undefined | ||
export let placeholder: string | undefined = undefined | ||
$: v = value || placeholder || "" | ||
</script> | ||
|
||
{#if v} | ||
<div class={cn("truncate text-left text-sm", $$restProps.class)}> | ||
{v} | ||
</div> | ||
{/if} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
apps/frontend/src/lib/components/blocks/gallery-view/gallery-option-button.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<script lang="ts"> | ||
import { Button } from "$lib/components/ui/button" | ||
import { KanbanSquareDashedIcon } from "lucide-svelte" | ||
import * as Dropdown from "$lib/components/ui/dropdown-menu" | ||
import GalleryViewFieldForm from "./gallery-view-field-form.svelte" | ||
import type { GalleryView } from "@undb/table" | ||
export let view: GalleryView | ||
export let readonly = false | ||
</script> | ||
|
||
<Dropdown.Root> | ||
<Dropdown.Trigger asChild let:builder> | ||
<Button variant="ghost" size="sm" builders={[builder]}> | ||
<KanbanSquareDashedIcon class="text-muted-foreground mr-2 h-4 w-4 font-semibold" /> | ||
Gallery | ||
</Button> | ||
</Dropdown.Trigger> | ||
<Dropdown.Content class="w-[400px] p-2"> | ||
<Dropdown.Label> | ||
{#if !readonly} | ||
Update kanban view | ||
{:else} | ||
Kanban view | ||
{/if} | ||
</Dropdown.Label> | ||
<GalleryViewFieldForm {view} {readonly} /> | ||
</Dropdown.Content> | ||
</Dropdown.Root> |
Oops, something went wrong.