fix(core): update
This commit is contained in:
		| @@ -3,6 +3,6 @@ | ||||
|  */ | ||||
| export const commitinfo = { | ||||
|   name: '@design.estate/dees-catalog', | ||||
|   version: '1.0.253', | ||||
|   version: '1.0.254', | ||||
|   description: 'website for lossless.com' | ||||
| } | ||||
|   | ||||
| @@ -311,20 +311,21 @@ export class DeesTable<T> extends DeesElement { | ||||
|         font-weight: inherit; | ||||
|         padding: 0px 6px; | ||||
|       } | ||||
|  | ||||
|       .actionContainer { | ||||
|         height: 24px; | ||||
|         display: inline-block; | ||||
|         transform: translateY(-4px); | ||||
|       } | ||||
|       .action { | ||||
|         position: relative; | ||||
|         margin: -4px 0px; | ||||
|         padding: 8px 10px; | ||||
|         line-height: 24px; | ||||
|         height: 32px; | ||||
|         size: 16px; | ||||
|         display: inline-block; | ||||
|         border-radius: 8px; | ||||
|         overflow: hidden; | ||||
|       } | ||||
|  | ||||
|       .action:first-child { | ||||
|       .actionContainer:first-child { | ||||
|         margin-left: -6px; | ||||
|         width: min-content; | ||||
|       } | ||||
| @@ -427,7 +428,8 @@ export class DeesTable<T> extends DeesElement { | ||||
|               name: "john" AND age: 18 | ||||
|               \`\`\` | ||||
|                | ||||
|             `}></dees-input-text> | ||||
|             `} | ||||
|           ></dees-input-text> | ||||
|           <dees-input-multitoggle | ||||
|             .label=${'search mode'} | ||||
|             .options=${['table', 'data', 'server']} | ||||
| @@ -569,19 +571,21 @@ export class DeesTable<T> extends DeesElement { | ||||
|                               <td> | ||||
|                                 <div class="innerCellContainer"> | ||||
|                                   ${this.getActionsForType('inRow').map( | ||||
|                                     (actionArg) => html`<div | ||||
|                                       class="action" | ||||
|                                       @click=${() => | ||||
|                                         actionArg.actionFunc({ | ||||
|                                           item: itemArg, | ||||
|                                           table: this, | ||||
|                                         })} | ||||
|                                     > | ||||
|                                       ${actionArg.iconName | ||||
|                                         ? html` | ||||
|                                             <dees-icon .iconFA=${actionArg.iconName}></dees-icon> | ||||
|                                           ` | ||||
|                                         : actionArg.name} | ||||
|                                     (actionArg) => html`<div class="actionContainer"> | ||||
|                                       <div | ||||
|                                         class="action" | ||||
|                                         @click=${() => | ||||
|                                           actionArg.actionFunc({ | ||||
|                                             item: itemArg, | ||||
|                                             table: this, | ||||
|                                           })} | ||||
|                                       > | ||||
|                                         ${actionArg.iconName | ||||
|                                           ? html` | ||||
|                                               <dees-icon .iconFA=${actionArg.iconName}></dees-icon> | ||||
|                                             ` | ||||
|                                           : actionArg.name} | ||||
|                                       </div> | ||||
|                                     </div>` | ||||
|                                   )} | ||||
|                                 </div> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user