@awes-io/ui 2.102.0 → 2.102.1

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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.102.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.102.0...@awes-io/ui@2.102.1) (2024-04-25)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * double tap ios fixed ([7c0ba39](https://github.com/awes-io/client/commit/7c0ba39140cf6751be691893261152fc986d8abb))
12
+
13
+
14
+
15
+
16
+
6
17
  # [2.102.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.101.0...@awes-io/ui@2.102.0) (2024-04-24)
7
18
 
8
19
 
@@ -185,6 +185,11 @@
185
185
  }
186
186
  }
187
187
 
188
+ a,
189
+ button {
190
+ touch-action: manipulation;
191
+ }
192
+
188
193
  a:not([class]):hover,
189
194
  .link:hover {
190
195
  color: color-mix(
@@ -66,12 +66,17 @@ function hideTooltip() {
66
66
  }
67
67
 
68
68
  const EVENTS = [
69
- ['pointerenter', showTooltip],
70
- ['focus', showTooltip],
71
- ['pointerleave', hideTooltip],
72
- ['blur', hideTooltip]
69
+ ['mouseenter', showTooltip],
70
+ ['mouseleave', hideTooltip]
73
71
  ]
74
72
 
73
+ // const FOCUS_EVENTS = [
74
+ // ['mouseerenter', showTooltip],
75
+ // ['focus', showTooltip],
76
+ // ['pointerleave', hideTooltip],
77
+ // ['blur', hideTooltip]
78
+ // ]
79
+
75
80
  function _updateTooltipContent(tooltip, content) {
76
81
  tooltip.__content__ = content
77
82
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awes-io/ui",
3
- "version": "2.102.0",
3
+ "version": "2.102.1",
4
4
  "description": "User Interface (UI) components",
5
5
  "keywords": [
6
6
  "ui",
@@ -114,5 +114,5 @@
114
114
  "rollup-plugin-visualizer": "^2.6.0",
115
115
  "rollup-plugin-vue": "^5.0.1"
116
116
  },
117
- "gitHead": "c8f5b80c78849f95b0bd80be7b0293047a9fd828"
117
+ "gitHead": "73bc234370b3b5c9a5c010255abf2e0ee66c7360"
118
118
  }