@design.estate/dees-catalog 1.0.197 → 1.0.200
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/dist_bundle/bundle.js +52 -52
- package/dist_bundle/bundle.js.map +3 -3
- package/dist_ts_web/00_commitinfo_data.js +1 -1
- package/dist_ts_web/elements/dees-icon.d.ts +2 -0
- package/dist_ts_web/elements/dees-icon.js +4 -2
- package/dist_ts_web/elements/dees-table.d.ts +1 -1
- package/dist_ts_web/elements/dees-table.demo.js +1 -1
- package/dist_ts_web/elements/dees-table.js +1 -1
- package/dist_watch/bundle.js.map +2 -2
- package/package.json +1 -1
- package/ts_web/00_commitinfo_data.ts +1 -1
- package/ts_web/elements/dees-icon.ts +3 -0
- package/ts_web/elements/dees-table.demo.ts +8 -2
- package/ts_web/elements/dees-table.ts +1 -1
package/package.json
CHANGED
|
@@ -42,6 +42,7 @@ import {
|
|
|
42
42
|
faCircleInfo as faCircleInfoSolid,
|
|
43
43
|
faCircleCheck as faCircleCheckSolid,
|
|
44
44
|
faCircleXmark as faCircleXmarkSolid,
|
|
45
|
+
faClockRotateLeft as faClockRotateLeftSolid,
|
|
45
46
|
faCopy as faCopySolid,
|
|
46
47
|
faDesktop as faDesktopSolid,
|
|
47
48
|
faEye as faEyeSolid,
|
|
@@ -82,6 +83,8 @@ export const faIcons = {
|
|
|
82
83
|
circleCheckSolid: faCircleCheckSolid,
|
|
83
84
|
circleXmark: faCircleXmarkRegular,
|
|
84
85
|
circleXmarkSolid: faCircleXmarkSolid,
|
|
86
|
+
clockRotateLeft: faClockRotateLeftSolid,
|
|
87
|
+
clockRotateLeftSolid: faClockRotateLeftSolid,
|
|
85
88
|
copy: faCopyRegular,
|
|
86
89
|
copySolid: faCopySolid,
|
|
87
90
|
desktop: faDesktopSolid,
|
|
@@ -2,6 +2,12 @@ import { type ITableAction } from './dees-table.js';
|
|
|
2
2
|
import * as plugins from './plugins.js';
|
|
3
3
|
import { html } from '@design.estate/dees-element';
|
|
4
4
|
|
|
5
|
+
interface ITableDemoData {
|
|
6
|
+
date: string;
|
|
7
|
+
amount: string;
|
|
8
|
+
description: string;
|
|
9
|
+
}
|
|
10
|
+
|
|
5
11
|
export const demoFunc = () => html`
|
|
6
12
|
<style>
|
|
7
13
|
.demoWrapper {
|
|
@@ -51,7 +57,7 @@ export const demoFunc = () => html`
|
|
|
51
57
|
iconName: 'bell',
|
|
52
58
|
useTableBehaviour: 'upload',
|
|
53
59
|
type: ['inRow'],
|
|
54
|
-
actionFunc: async (itemArg
|
|
60
|
+
actionFunc: async (itemArg) => {
|
|
55
61
|
alert(itemArg.amount);
|
|
56
62
|
},
|
|
57
63
|
},
|
|
@@ -100,7 +106,7 @@ export const demoFunc = () => html`
|
|
|
100
106
|
return null;
|
|
101
107
|
},
|
|
102
108
|
},
|
|
103
|
-
] as ITableAction[]}"
|
|
109
|
+
] as (ITableAction<ITableDemoData>)[] as any}"
|
|
104
110
|
.displayFunction=${(itemArg) => {
|
|
105
111
|
return {
|
|
106
112
|
...itemArg,
|