@design.estate/dees-catalog 1.0.253 → 1.0.255

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.255",
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.255',
7
7
  description: 'website for lossless.com'
8
8
  }
@@ -169,9 +169,9 @@ export class DeesTable<T> extends DeesElement {
169
169
  display: block;
170
170
  width: 100%;
171
171
  min-height: 50px;
172
- background: ${cssManager.bdTheme('#ffffff', '#333333')};
172
+ background: ${cssManager.bdTheme('#ffffff', '#222222')};
173
173
  border-radius: 3px;
174
- border-top: 1px solid ${cssManager.bdTheme('#fff', '#444')};
174
+ border-top: 1px solid ${cssManager.bdTheme('#fff', '#ffffff10')};
175
175
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.3);
176
176
  overflow-x: auto;
177
177
  cursor: default;
@@ -199,7 +199,7 @@ export class DeesTable<T> extends DeesElement {
199
199
 
200
200
  .headingSeparation {
201
201
  margin-top: 7px;
202
- border-bottom: 1px solid ${cssManager.bdTheme('#bcbcbc', '#bcbcbc')};
202
+ border-bottom: 1px solid ${cssManager.bdTheme('#bcbcbc', '#444444')};
203
203
  }
204
204
 
205
205
  .headerActions {
@@ -219,9 +219,13 @@ export class DeesTable<T> extends DeesElement {
219
219
  }
220
220
 
221
221
  .searchGrid {
222
+ background: ${cssManager.bdTheme('#fff', '#111111')};
222
223
  display: grid;
223
224
  grid-gap: 16px;
224
225
  grid-template-columns: 1fr 200px;
226
+ margin: 0px -16px;
227
+ padding: 0px 16px;
228
+ border-bottom: 1px solid ${cssManager.bdTheme('#fff', '#ffffff20')};
225
229
  }
226
230
 
227
231
  table,
@@ -311,20 +315,21 @@ export class DeesTable<T> extends DeesElement {
311
315
  font-weight: inherit;
312
316
  padding: 0px 6px;
313
317
  }
314
-
318
+ .actionContainer {
319
+ height: 24px;
320
+ display: inline-block;
321
+ transform: translateY(-4px);
322
+ }
315
323
  .action {
316
324
  position: relative;
317
- margin: -4px 0px;
318
325
  padding: 8px 10px;
319
326
  line-height: 24px;
320
327
  height: 32px;
321
328
  size: 16px;
322
- display: inline-block;
323
329
  border-radius: 8px;
324
- overflow: hidden;
325
330
  }
326
331
 
327
- .action:first-child {
332
+ .actionContainer:first-child {
328
333
  margin-left: -6px;
329
334
  width: min-content;
330
335
  }
@@ -427,7 +432,8 @@ export class DeesTable<T> extends DeesElement {
427
432
  name: "john" AND age: 18
428
433
  \`\`\`
429
434
 
430
- `}></dees-input-text>
435
+ `}
436
+ ></dees-input-text>
431
437
  <dees-input-multitoggle
432
438
  .label=${'search mode'}
433
439
  .options=${['table', 'data', 'server']}
@@ -569,19 +575,21 @@ export class DeesTable<T> extends DeesElement {
569
575
  <td>
570
576
  <div class="innerCellContainer">
571
577
  ${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}
578
+ (actionArg) => html`<div class="actionContainer">
579
+ <div
580
+ class="action"
581
+ @click=${() =>
582
+ actionArg.actionFunc({
583
+ item: itemArg,
584
+ table: this,
585
+ })}
586
+ >
587
+ ${actionArg.iconName
588
+ ? html`
589
+ <dees-icon .iconFA=${actionArg.iconName}></dees-icon>
590
+ `
591
+ : actionArg.name}
592
+ </div>
585
593
  </div>`
586
594
  )}
587
595
  </div>