@design.estate/dees-catalog 1.0.253 → 1.0.254

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.253",
3
+ "version": "1.0.254",
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.253',
6
+ version: '1.0.254',
7
7
  description: 'website for lossless.com'
8
8
  }
@@ -311,20 +311,21 @@ export class DeesTable<T> extends DeesElement {
311
311
  font-weight: inherit;
312
312
  padding: 0px 6px;
313
313
  }
314
-
314
+ .actionContainer {
315
+ height: 24px;
316
+ display: inline-block;
317
+ transform: translateY(-4px);
318
+ }
315
319
  .action {
316
320
  position: relative;
317
- margin: -4px 0px;
318
321
  padding: 8px 10px;
319
322
  line-height: 24px;
320
323
  height: 32px;
321
324
  size: 16px;
322
- display: inline-block;
323
325
  border-radius: 8px;
324
- overflow: hidden;
325
326
  }
326
327
 
327
- .action:first-child {
328
+ .actionContainer:first-child {
328
329
  margin-left: -6px;
329
330
  width: min-content;
330
331
  }
@@ -427,7 +428,8 @@ export class DeesTable<T> extends DeesElement {
427
428
  name: "john" AND age: 18
428
429
  \`\`\`
429
430
 
430
- `}></dees-input-text>
431
+ `}
432
+ ></dees-input-text>
431
433
  <dees-input-multitoggle
432
434
  .label=${'search mode'}
433
435
  .options=${['table', 'data', 'server']}
@@ -569,19 +571,21 @@ export class DeesTable<T> extends DeesElement {
569
571
  <td>
570
572
  <div class="innerCellContainer">
571
573
  ${this.getActionsForType('inRow').map(
572
- (actionArg) => html`<div
573
- class="action"
574
- @click=${() =>
575
- actionArg.actionFunc({
576
- item: itemArg,
577
- table: this,
578
- })}
579
- >
580
- ${actionArg.iconName
581
- ? html`
582
- <dees-icon .iconFA=${actionArg.iconName}></dees-icon>
583
- `
584
- : actionArg.name}
574
+ (actionArg) => html`<div class="actionContainer">
575
+ <div
576
+ class="action"
577
+ @click=${() =>
578
+ actionArg.actionFunc({
579
+ item: itemArg,
580
+ table: this,
581
+ })}
582
+ >
583
+ ${actionArg.iconName
584
+ ? html`
585
+ <dees-icon .iconFA=${actionArg.iconName}></dees-icon>
586
+ `
587
+ : actionArg.name}
588
+ </div>
585
589
  </div>`
586
590
  )}
587
591
  </div>