@design.estate/dees-catalog 1.0.247 → 1.0.248
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist_bundle/bundle.js +172 -154
- package/dist_bundle/bundle.js.map +3 -3
- package/dist_ts_web/00_commitinfo_data.js +1 -1
- package/dist_ts_web/elements/dees-table.js +24 -6
- package/dist_watch/bundle.js +23 -5
- package/dist_watch/bundle.js.map +2 -2
- package/package.json +1 -1
- package/ts_web/00_commitinfo_data.ts +1 -1
- package/ts_web/elements/dees-table.ts +23 -5
package/package.json
CHANGED
|
@@ -313,16 +313,17 @@ export class DeesTable<T> extends DeesElement {
|
|
|
313
313
|
}
|
|
314
314
|
|
|
315
315
|
.action {
|
|
316
|
-
margin: -
|
|
316
|
+
margin: -4px 0px;
|
|
317
317
|
padding: 10px;
|
|
318
|
-
line-height:
|
|
319
|
-
height:
|
|
318
|
+
line-height: 34px;
|
|
319
|
+
height: 34px;
|
|
320
|
+
size: 16px;
|
|
320
321
|
display: inline-block;
|
|
321
322
|
border-radius: 8px;
|
|
322
323
|
}
|
|
323
324
|
|
|
324
325
|
.action:first-child {
|
|
325
|
-
margin-left: -
|
|
326
|
+
margin-left: -6px;
|
|
326
327
|
width: min-content;
|
|
327
328
|
}
|
|
328
329
|
|
|
@@ -415,10 +416,27 @@ export class DeesTable<T> extends DeesElement {
|
|
|
415
416
|
</div>
|
|
416
417
|
<div class="headingSeparation"></div>
|
|
417
418
|
<div class="searchGrid">
|
|
418
|
-
<dees-input-text
|
|
419
|
+
<dees-input-text
|
|
420
|
+
.label=${'lucene syntax search'}
|
|
421
|
+
.description=${`
|
|
422
|
+
You can use the lucene syntax to search for data, e.g.:
|
|
423
|
+
|
|
424
|
+
\`\`\`
|
|
425
|
+
name: "john" AND age: 18
|
|
426
|
+
\`\`\`
|
|
427
|
+
|
|
428
|
+
`}></dees-input-text>
|
|
419
429
|
<dees-input-multitoggle
|
|
420
430
|
.label=${'search mode'}
|
|
421
431
|
.options=${['table', 'data', 'server']}
|
|
432
|
+
.description=${`
|
|
433
|
+
There are three basic modes:
|
|
434
|
+
|
|
435
|
+
* table: only searches data already in the table
|
|
436
|
+
* data: searches original data, ignoring table transforms
|
|
437
|
+
* server: searches data on the server
|
|
438
|
+
|
|
439
|
+
`}
|
|
422
440
|
></dees-input-multitoggle>
|
|
423
441
|
</div>
|
|
424
442
|
|