@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@design.estate/dees-catalog",
3
- "version": "1.0.247",
3
+ "version": "1.0.248",
4
4
  "private": false,
5
5
  "description": "website for lossless.com",
6
6
  "main": "dist_ts_web/index.js",
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@design.estate/dees-catalog',
6
- version: '1.0.247',
6
+ version: '1.0.248',
7
7
  description: 'website for lossless.com'
8
8
  }
@@ -313,16 +313,17 @@ export class DeesTable<T> extends DeesElement {
313
313
  }
314
314
 
315
315
  .action {
316
- margin: -6px 0px;
316
+ margin: -4px 0px;
317
317
  padding: 10px;
318
- line-height: 36px;
319
- height: 36px;
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: -8px;
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 .label=${'lucene syntax search'}></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