@htmlbricks/hb-site-slideshow 0.68.7 → 0.68.9

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
@@ -7,38 +7,38 @@
7
7
  "Events": {
8
8
  "additionalProperties": false,
9
9
  "properties": {
10
- "changeSlide": {
10
+ "changeHover": {
11
11
  "additionalProperties": false,
12
12
  "properties": {
13
+ "hover": {
14
+ "type": "boolean"
15
+ },
13
16
  "index": {
14
17
  "type": "number"
15
18
  }
16
19
  },
17
20
  "required": [
18
- "index"
21
+ "index",
22
+ "hover"
19
23
  ],
20
24
  "type": "object"
21
25
  },
22
- "onHover": {
26
+ "changeSlide": {
23
27
  "additionalProperties": false,
24
28
  "properties": {
25
- "hover": {
26
- "type": "boolean"
27
- },
28
29
  "index": {
29
30
  "type": "number"
30
31
  }
31
32
  },
32
33
  "required": [
33
- "index",
34
- "hover"
34
+ "index"
35
35
  ],
36
36
  "type": "object"
37
37
  }
38
38
  },
39
39
  "required": [
40
40
  "changeSlide",
41
- "onHover"
41
+ "changeHover"
42
42
  ],
43
43
  "type": "object"
44
44
  }
@@ -116,8 +116,8 @@
116
116
  "changeSlide": {
117
117
  "action": "changeSlide"
118
118
  },
119
- "onHover": {
120
- "action": "onHover"
119
+ "changeHover": {
120
+ "action": "changeHover"
121
121
  }
122
122
  },
123
123
  "styleSetup": {
@@ -242,7 +242,7 @@
242
242
  }
243
243
  }
244
244
  ],
245
- "iifeIntegrity": "sha384-95mzZ9DkuXSyiR6Lemka83mRbc8BihXcjj/OgbNpA1ZxoKKj1BU+LngfoAAbymXW",
245
+ "iifeIntegrity": "sha384-FjyI/RXQWSFKQJ7lxIXmSBiFXouSH2jcn4cyxHyrKazqltAA4kLJMzfbEII+yTn3",
246
246
  "dependencies": [],
247
247
  "screenshots": [],
248
248
  "licenses": [
@@ -265,5 +265,5 @@
265
265
  },
266
266
  "iifePath": "main.iife.js",
267
267
  "repoName": "@htmlbricks/hb-site-slideshow",
268
- "version": "0.68.7"
268
+ "version": "0.68.9"
269
269
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@htmlbricks/hb-site-slideshow",
3
- "version": "0.68.7",
3
+ "version": "0.68.9",
4
4
  "contributors": [],
5
5
  "description": "Full-viewport image slideshow: pass `data` as an array of slides (`href`, optional `caption`). Supports optional `index` and `timer`, dots and captions via CSS parts, overlay/prev/next/cover slots, and dispatches slide change and hover events.",
6
6
  "licenses": [
@@ -13,5 +13,5 @@ export type Component = {
13
13
 
14
14
  export type Events = {
15
15
  changeSlide: { index: number };
16
- onHover: { index: number; hover: boolean };
16
+ changeHover: { index: number; hover: boolean };
17
17
  };
@@ -5,38 +5,38 @@
5
5
  "Events": {
6
6
  "additionalProperties": false,
7
7
  "properties": {
8
- "changeSlide": {
8
+ "changeHover": {
9
9
  "additionalProperties": false,
10
10
  "properties": {
11
+ "hover": {
12
+ "type": "boolean"
13
+ },
11
14
  "index": {
12
15
  "type": "number"
13
16
  }
14
17
  },
15
18
  "required": [
16
- "index"
19
+ "index",
20
+ "hover"
17
21
  ],
18
22
  "type": "object"
19
23
  },
20
- "onHover": {
24
+ "changeSlide": {
21
25
  "additionalProperties": false,
22
26
  "properties": {
23
- "hover": {
24
- "type": "boolean"
25
- },
26
27
  "index": {
27
28
  "type": "number"
28
29
  }
29
30
  },
30
31
  "required": [
31
- "index",
32
- "hover"
32
+ "index"
33
33
  ],
34
34
  "type": "object"
35
35
  }
36
36
  },
37
37
  "required": [
38
38
  "changeSlide",
39
- "onHover"
39
+ "changeHover"
40
40
  ],
41
41
  "type": "object"
42
42
  }