@slickgrid-universal/custom-tooltip-plugin 10.1.1 → 10.2.0
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/README.md +1 -1
- package/dist/slickCustomTooltip.js +1 -1
- package/package.json +4 -4
- package/src/slickCustomTooltip.ts +1 -1
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ In order to use the Service, you will need to register it in your grid options v
|
|
|
18
18
|
|
|
19
19
|
##### Example 1 - via Column Definition
|
|
20
20
|
```ts
|
|
21
|
-
this.
|
|
21
|
+
this.columns = [
|
|
22
22
|
{
|
|
23
23
|
id: "action", name: "Action", field: "action", formatter: fakeButtonFormatter,
|
|
24
24
|
customTooltip: {
|
|
@@ -10,7 +10,7 @@ const SELECTOR_CLOSEST_TOOLTIP_ATTR = '[title], [data-slick-tooltip]';
|
|
|
10
10
|
*
|
|
11
11
|
* Available plugin options (same options are available in both column definition and/or grid options)
|
|
12
12
|
* Example 1 - via Column Definition
|
|
13
|
-
* this.
|
|
13
|
+
* this.columns = [
|
|
14
14
|
* {
|
|
15
15
|
* id: "action", name: "Action", field: "action", formatter: fakeButtonFormatter,
|
|
16
16
|
* customTooltip: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@slickgrid-universal/custom-tooltip-plugin",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.2.0",
|
|
4
4
|
"description": "A plugin to add Custom Tooltip when hovering a cell, it subscribes to the cell",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@slickgrid-universal/binding": "10.1.0",
|
|
35
|
-
"@slickgrid-universal/common": "10.
|
|
36
|
-
"@slickgrid-universal/utils": "10.
|
|
35
|
+
"@slickgrid-universal/common": "10.2.0",
|
|
36
|
+
"@slickgrid-universal/utils": "10.2.0"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "0e9face7371880a23a589f27f1c1f7dfb3ef7b6a"
|
|
39
39
|
}
|
|
@@ -40,7 +40,7 @@ const SELECTOR_CLOSEST_TOOLTIP_ATTR = '[title], [data-slick-tooltip]';
|
|
|
40
40
|
*
|
|
41
41
|
* Available plugin options (same options are available in both column definition and/or grid options)
|
|
42
42
|
* Example 1 - via Column Definition
|
|
43
|
-
* this.
|
|
43
|
+
* this.columns = [
|
|
44
44
|
* {
|
|
45
45
|
* id: "action", name: "Action", field: "action", formatter: fakeButtonFormatter,
|
|
46
46
|
* customTooltip: {
|