@design.estate/dees-catalog 1.0.251 → 1.0.253

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.251",
3
+ "version": "1.0.253",
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.251',
6
+ version: '1.0.253',
7
7
  description: 'website for lossless.com'
8
8
  }
@@ -313,13 +313,15 @@ export class DeesTable<T> extends DeesElement {
313
313
  }
314
314
 
315
315
  .action {
316
+ position: relative;
316
317
  margin: -4px 0px;
317
318
  padding: 8px 10px;
318
- line-height: 32px;
319
+ line-height: 24px;
319
320
  height: 32px;
320
321
  size: 16px;
321
322
  display: inline-block;
322
323
  border-radius: 8px;
324
+ overflow: hidden;
323
325
  }
324
326
 
325
327
  .action:first-child {
@@ -655,7 +657,7 @@ export class DeesTable<T> extends DeesElement {
655
657
  const width = window.getComputedStyle(cell).width;
656
658
  if (cell.textContent.includes('Actions')) {
657
659
  const neededWidth =
658
- this.dataActions.filter((actionArg) => actionArg.type.includes('inRow')).length * 35;
660
+ this.dataActions.filter((actionArg) => actionArg.type.includes('inRow')).length * 36;
659
661
  cell.style.width = `${Math.max(neededWidth, 68)}px`;
660
662
  } else {
661
663
  cell.style.width = width;