Skip to content

Commit

Permalink
Merge pull request #1208 from undb-xyz/release/v0.5.11
Browse files Browse the repository at this point in the history
  • Loading branch information
nichenqin authored Jun 17, 2023
2 parents b852373 + d732b09 commit 4ec4577
Show file tree
Hide file tree
Showing 11 changed files with 117 additions and 113 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## v0.5.11


### 🩹 Fixes

- Fix ui ([bcc8bdf](https://github.com/undb-xyz/undb/commit/bcc8bdf))

### ❤️ Contributors

- Nichenqin ([@nichenqin](http://github.com/nichenqin))

## v0.5.10

## v0.5.9
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
- :balloon: Light weight, requires just one file storage by default
- :computer: Self hosted in seconds
- :pencil: Customizable
- 🔧 Deploy with variant adapters
- 🎮 Developer friendly. Provide openapi / webhooks / realtime subscriptions / sdk(soon) and more
- :sparkles: Multiple built-in field types and variants
- :city_sunset: Different types of views, including grid, kanban, tree, calendar and more

Expand Down
12 changes: 6 additions & 6 deletions apps/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@
"@mikro-orm/core": "^5.7.12",
"@mikro-orm/migrations": "^5.7.12",
"@mikro-orm/nestjs": "^5.1.8",
"@nestjs/common": "^10.0.0",
"@nestjs/common": "^10.0.1",
"@nestjs/config": "^3.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/core": "^10.0.1",
"@nestjs/cqrs": "^10.0.0",
"@nestjs/jwt": "^10.1.0",
"@nestjs/mongoose": "^10.0.0",
"@nestjs/passport": "^10.0.0",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/schedule": "^3.0.0",
"@nestjs/platform-express": "^10.0.1",
"@nestjs/schedule": "^3.0.1",
"@nestjs/serve-static": "^4.0.0",
"@nestjs/terminus": "^10.0.0",
"@nestjs/terminus": "^10.0.1",
"@temporalio/activity": "^1.7.4",
"@temporalio/client": "^1.7.4",
"@temporalio/common": "^1.7.4",
Expand Down Expand Up @@ -70,7 +70,7 @@
"devDependencies": {
"@nestjs/cli": "^10.0.2",
"@nestjs/schematics": "^10.0.1",
"@nestjs/testing": "^10.0.0",
"@nestjs/testing": "^10.0.1",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.64",
"@types/bcrypt": "^5.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
</span>
</Button>
<Portal target="body">
<Dropdown triggeredBy=".attachment_type_picker" frameClass="z-[100]" bind:open>
<Dropdown triggeredBy=".attachment_type_picker" class="z-[99999]" bind:open>
{#each types as type (type.value)}
<Radio value={type.value} bind:group={value} custom on:change={() => (open = false)}>
<div
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,7 @@
{/if}
</Button>
<Portal target="body">
<Dropdown
triggeredBy="#displayFieldIds"
inline
class="max-h-64 w-64 overflow-y-auto py-1 shadow-md"
frameClass="z-[100]"
>
<Dropdown triggeredBy="#displayFieldIds" inline class="max-h-64 w-64 overflow-y-auto py-1 shadow-md z-[999999]">
{#if !filteredFields.length}
<div class="px-3 py-2">
<slot name="empty" />
Expand Down
2 changes: 1 addition & 1 deletion apps/frontend/src/lib/field/FieldInputs/FieldPicker.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<span class="text-gray-500 font-normal">{$t('Select Field')}</span>
{/if}
</Button>
<Dropdown frameClass="z-[99999] fixed" bind:open>
<Dropdown class="z-[99999] fixed" bind:open>
{#if filteredFields.length}
{#each filteredFields as field (field.id)}
<Radio value={field.id} bind:group={value} custom on:change={() => (open = false)}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
triggeredBy="#field_type_picker"
bind:open
inline
class="w-[400px] overflow-y-auto py-1 shadow-md max-h-[400px]"
frameClass="z-[100]"
class="w-[400px] overflow-y-auto overflow-x-hidden py-1 shadow-md max-h-[400px] z-[999999]"
>
{#each types.filter((type) => filter(type.value)) as type}
{@const selected = type.value === value}
Expand Down
33 changes: 15 additions & 18 deletions apps/frontend/src/lib/option/OptionColorPicker.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,19 @@
>
<i class="ti ti-circle-chevron-down text-sm" />
</div>
<Dropdown
bind:open
inline
class="min-w-[200px] px-3 grid grid-cols-2 gap-2 overflow-y-auto py-3 shadow-md"
frameClass="z-[100] fixed"
>
{#each optionColorOrder as color}
<Radio class="h-[24px]" value={color} bind:group={value} custom on:change={() => (open = false)}>
<Option
option={CoreOption.create({
name: name || 'a',
color: OptionColor.create({ name: color, shade: OptionColor.defaultShade }),
})}
class="w-full h-full !text-sm"
role="button"
/>
</Radio>
{/each}
<Dropdown bind:open inline class="w-[200px] z-[999999]">
<div class="grid grid-cols-2 gap-2 overflow-y-auto shadow-md w-full h-full p-3">
{#each optionColorOrder as color}
<Radio class="h-[24px]" value={color} bind:group={value} custom on:change={() => (open = false)}>
<Option
option={CoreOption.create({
name: name || 'a',
color: OptionColor.create({ name: color, shade: OptionColor.defaultShade }),
})}
class="w-full h-full !text-sm"
role="button"
/>
</Radio>
{/each}
</div>
</Dropdown>
2 changes: 1 addition & 1 deletion apps/frontend/src/lib/table/SetRowHeight.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
>
<i class="ti ti-line-height text-sm" />
</Button>
<Dropdown bind:open frameClass="z-50">
<Dropdown bind:open class="z-[999999]">
{#each viewRowHeights as rowHeight}
<DropdownItem
class="flex items-center justify-between"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "undb",
"version": "0.5.10",
"version": "0.5.11",
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
Expand Down
Loading

0 comments on commit 4ec4577

Please sign in to comment.