Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 462df2b648 | |||
| f64da93cf9 | |||
| a55db621ef | |||
| c033bdfc3b | |||
| 2610e56ec1 | |||
| 08aa9e3fe4 | |||
| 411ae7ee07 | |||
| 41700c1eb1 |
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@design.estate/dees-catalog",
|
"name": "@design.estate/dees-catalog",
|
||||||
"version": "1.0.198",
|
"version": "1.0.202",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "website for lossless.com",
|
"description": "website for lossless.com",
|
||||||
"main": "dist_ts_web/index.js",
|
"main": "dist_ts_web/index.js",
|
||||||
|
|||||||
@@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@design.estate/dees-catalog',
|
name: '@design.estate/dees-catalog',
|
||||||
version: '1.0.198',
|
version: '1.0.202',
|
||||||
description: 'website for lossless.com'
|
description: 'website for lossless.com'
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -42,6 +42,7 @@ import {
|
|||||||
faCircleInfo as faCircleInfoSolid,
|
faCircleInfo as faCircleInfoSolid,
|
||||||
faCircleCheck as faCircleCheckSolid,
|
faCircleCheck as faCircleCheckSolid,
|
||||||
faCircleXmark as faCircleXmarkSolid,
|
faCircleXmark as faCircleXmarkSolid,
|
||||||
|
faClockRotateLeft as faClockRotateLeftSolid,
|
||||||
faCopy as faCopySolid,
|
faCopy as faCopySolid,
|
||||||
faDesktop as faDesktopSolid,
|
faDesktop as faDesktopSolid,
|
||||||
faEye as faEyeSolid,
|
faEye as faEyeSolid,
|
||||||
@@ -82,6 +83,8 @@ export const faIcons = {
|
|||||||
circleCheckSolid: faCircleCheckSolid,
|
circleCheckSolid: faCircleCheckSolid,
|
||||||
circleXmark: faCircleXmarkRegular,
|
circleXmark: faCircleXmarkRegular,
|
||||||
circleXmarkSolid: faCircleXmarkSolid,
|
circleXmarkSolid: faCircleXmarkSolid,
|
||||||
|
clockRotateLeft: faClockRotateLeftSolid,
|
||||||
|
clockRotateLeftSolid: faClockRotateLeftSolid,
|
||||||
copy: faCopyRegular,
|
copy: faCopyRegular,
|
||||||
copySolid: faCopySolid,
|
copySolid: faCopySolid,
|
||||||
desktop: faDesktopSolid,
|
desktop: faDesktopSolid,
|
||||||
@@ -95,7 +98,7 @@ export const faIcons = {
|
|||||||
message: faMessageRegular,
|
message: faMessageRegular,
|
||||||
messageSolid: faMessageSolid,
|
messageSolid: faMessageSolid,
|
||||||
mugHot: faMugHotSolid,
|
mugHot: faMugHotSolid,
|
||||||
faMugHotSolid: faMugHotSolid,
|
mugHotSolid: faMugHotSolid,
|
||||||
minus: faMinusSolid,
|
minus: faMinusSolid,
|
||||||
minusSolid: faMinusSolid,
|
minusSolid: faMinusSolid,
|
||||||
paste: faPasteRegular,
|
paste: faPasteRegular,
|
||||||
|
|||||||
@@ -106,6 +106,15 @@ export const demoFunc = () => html`
|
|||||||
return null;
|
return null;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'preview',
|
||||||
|
type: ['doubleClick', 'contextmenu'],
|
||||||
|
iconName: 'eye',
|
||||||
|
actionFunc: async (itemArg) => {
|
||||||
|
alert(itemArg.amount);
|
||||||
|
return null;
|
||||||
|
},
|
||||||
|
}
|
||||||
] as (ITableAction<ITableDemoData>)[] as any}"
|
] as (ITableAction<ITableDemoData>)[] as any}"
|
||||||
.displayFunction=${(itemArg) => {
|
.displayFunction=${(itemArg) => {
|
||||||
return {
|
return {
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ export interface ITableAction<T = any> {
|
|||||||
/**
|
/**
|
||||||
* the type of the action
|
* the type of the action
|
||||||
*/
|
*/
|
||||||
type: ('inRow' | 'contextmenu' | 'footer' | 'header' | 'preview' | 'keyCombination')[];
|
type: ('inRow' | 'contextmenu' | 'doubleClick' | 'footer' | 'header' | 'preview' | 'keyCombination')[];
|
||||||
/**
|
/**
|
||||||
* allows to check if the action is relevant for the given item
|
* allows to check if the action is relevant for the given item
|
||||||
* @param itemArg
|
* @param itemArg
|
||||||
@@ -399,7 +399,11 @@ export class DeesTable<T> extends DeesElement {
|
|||||||
>
|
>
|
||||||
${headings.map(
|
${headings.map(
|
||||||
(headingArg) => html`
|
(headingArg) => html`
|
||||||
<td>
|
<td @dblclick=${() => {
|
||||||
|
const wantedAction = this.dataActions.find((actionArg) => actionArg.type.includes('doubleClick'));
|
||||||
|
if (!wantedAction) return;
|
||||||
|
wantedAction.actionFunc(itemArg);
|
||||||
|
}}>
|
||||||
<div class="innerCellContainer">${transformedItem[headingArg]}</div>
|
<div class="innerCellContainer">${transformedItem[headingArg]}</div>
|
||||||
</td>
|
</td>
|
||||||
`
|
`
|
||||||
|
|||||||
Reference in New Issue
Block a user