@htmlbricks/hb-table 0.62.3 → 0.62.5

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/manifest.json CHANGED
@@ -535,6 +535,9 @@
535
535
  "name": {
536
536
  "type": "string"
537
537
  },
538
+ "tooltip": {
539
+ "$ref": "#/definitions/TTooltip"
540
+ },
538
541
  "type": {
539
542
  "enum": [
540
543
  "icon",
@@ -1091,12 +1094,20 @@
1091
1094
  {
1092
1095
  "name": "testaction2",
1093
1096
  "type": "icon",
1094
- "iconOrText": "github"
1097
+ "iconOrText": "github",
1098
+ "tooltip": {
1099
+ "title": "Github tooltip",
1100
+ "placement": "top"
1101
+ }
1095
1102
  },
1096
1103
  {
1097
1104
  "name": "testaction3",
1098
1105
  "type": "icon",
1099
- "iconOrText": "github"
1106
+ "iconOrText": "github",
1107
+ "tooltip": {
1108
+ "title": "Github tooltip 2",
1109
+ "placement": "bottom"
1110
+ }
1100
1111
  },
1101
1112
  {
1102
1113
  "name": "testaction4",
@@ -1866,12 +1877,20 @@
1866
1877
  {
1867
1878
  "name": "testaction2",
1868
1879
  "type": "icon",
1869
- "iconOrText": "github"
1880
+ "iconOrText": "github",
1881
+ "tooltip": {
1882
+ "title": "Github tooltip",
1883
+ "placement": "top"
1884
+ }
1870
1885
  },
1871
1886
  {
1872
1887
  "name": "testaction3",
1873
1888
  "type": "icon",
1874
- "iconOrText": "github"
1889
+ "iconOrText": "github",
1890
+ "tooltip": {
1891
+ "title": "Github tooltip 2",
1892
+ "placement": "bottom"
1893
+ }
1875
1894
  },
1876
1895
  {
1877
1896
  "name": "testaction4",
@@ -2011,12 +2030,20 @@
2011
2030
  {
2012
2031
  "name": "testaction2",
2013
2032
  "type": "icon",
2014
- "iconOrText": "github"
2033
+ "iconOrText": "github",
2034
+ "tooltip": {
2035
+ "title": "Github tooltip",
2036
+ "placement": "top"
2037
+ }
2015
2038
  },
2016
2039
  {
2017
2040
  "name": "testaction3",
2018
2041
  "type": "icon",
2019
- "iconOrText": "github"
2042
+ "iconOrText": "github",
2043
+ "tooltip": {
2044
+ "title": "Github tooltip 2",
2045
+ "placement": "bottom"
2046
+ }
2020
2047
  },
2021
2048
  {
2022
2049
  "name": "testaction4",
@@ -2201,12 +2228,20 @@
2201
2228
  {
2202
2229
  "name": "testaction2",
2203
2230
  "type": "icon",
2204
- "iconOrText": "github"
2231
+ "iconOrText": "github",
2232
+ "tooltip": {
2233
+ "title": "Github tooltip",
2234
+ "placement": "top"
2235
+ }
2205
2236
  },
2206
2237
  {
2207
2238
  "name": "testaction3",
2208
2239
  "type": "icon",
2209
- "iconOrText": "github"
2240
+ "iconOrText": "github",
2241
+ "tooltip": {
2242
+ "title": "Github tooltip 2",
2243
+ "placement": "bottom"
2244
+ }
2210
2245
  },
2211
2246
  {
2212
2247
  "name": "testaction4",
@@ -2493,5 +2528,5 @@
2493
2528
  "size": {},
2494
2529
  "iifePath": "main.iife.js",
2495
2530
  "repoName": "@htmlbricks/hb-table",
2496
- "version": "0.62.3"
2531
+ "version": "0.62.5"
2497
2532
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@htmlbricks/hb-table",
3
- "version": "0.62.3",
3
+ "version": "0.62.5",
4
4
  "contributors": [],
5
5
  "description": "",
6
6
  "licenses": [
@@ -215,6 +215,9 @@
215
215
  "name": {
216
216
  "type": "string"
217
217
  },
218
+ "tooltip": {
219
+ "$ref": "#/definitions/TTooltip"
220
+ },
218
221
  "type": {
219
222
  "enum": [
220
223
  "icon",
@@ -50,6 +50,7 @@ export interface IActionButton {
50
50
  description?: string;
51
51
  schema: FormComponent["schema"];
52
52
  };
53
+ tooltip?: TTooltip;
53
54
  }
54
55
 
55
56
  export type Component = {