fix(core): update

This commit is contained in:
Philipp Kunz 2024-01-21 01:42:06 +01:00
parent 4584765046
commit 0c1159d4c7
2 changed files with 24 additions and 6 deletions

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@design.estate/dees-catalog', name: '@design.estate/dees-catalog',
version: '1.0.247', version: '1.0.248',
description: 'website for lossless.com' description: 'website for lossless.com'
} }

View File

@ -313,16 +313,17 @@ export class DeesTable<T> extends DeesElement {
} }
.action { .action {
margin: -6px 0px; margin: -4px 0px;
padding: 10px; padding: 10px;
line-height: 36px; line-height: 34px;
height: 36px; height: 34px;
size: 16px;
display: inline-block; display: inline-block;
border-radius: 8px; border-radius: 8px;
} }
.action:first-child { .action:first-child {
margin-left: -8px; margin-left: -6px;
width: min-content; width: min-content;
} }
@ -415,10 +416,27 @@ export class DeesTable<T> extends DeesElement {
</div> </div>
<div class="headingSeparation"></div> <div class="headingSeparation"></div>
<div class="searchGrid"> <div class="searchGrid">
<dees-input-text .label=${'lucene syntax search'}></dees-input-text> <dees-input-text
.label=${'lucene syntax search'}
.description=${`
You can use the lucene syntax to search for data, e.g.:
\`\`\`
name: "john" AND age: 18
\`\`\`
`}></dees-input-text>
<dees-input-multitoggle <dees-input-multitoggle
.label=${'search mode'} .label=${'search mode'}
.options=${['table', 'data', 'server']} .options=${['table', 'data', 'server']}
.description=${`
There are three basic modes:
* table: only searches data already in the table
* data: searches original data, ignoring table transforms
* server: searches data on the server
`}
></dees-input-multitoggle> ></dees-input-multitoggle>
</div> </div>