Skip to content

Commit 91af971

Browse files
committed
3.0.0-beta7
Fixed icon interactions - single/double/hold also on mobile Fixed icon config tabs not displaying on mobile - set to icons
1 parent 94e673b commit 91af971

File tree

7 files changed

+152
-66
lines changed

7 files changed

+152
-66
lines changed

.DS_Store

0 Bytes
Binary file not shown.

dist/.DS_Store

0 Bytes
Binary file not shown.

dist/cards/ultra-vehicle-card.d.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,12 @@ export declare class UltraVehicleCard extends LitElement {
3030
private _templateSubscriptions;
3131
private _templateResults;
3232
private _confirmationCancelListeners;
33-
private _recentDoubleClick;
3433
private _holdTimer;
3534
private _currentHoldIcon;
35+
private _singleClickTimers;
36+
private _pendingSingleClicks;
37+
private _touchStartTimes;
38+
private _lastTouchEndTime;
3639
private _timedImageTimer;
3740
static getConfigElement(): HTMLElement;
3841
static getStubConfig(): {
@@ -73,6 +76,14 @@ export declare class UltraVehicleCard extends LitElement {
7376
private _renderIconRows;
7477
private _renderIconRow;
7578
private _renderCardIcon;
79+
private _handlePointerDown;
80+
private _handlePointerUp;
81+
private _handlePointerLeave;
82+
private _handleTouchStart;
83+
private _handleTouchEnd;
84+
private _handleTouchCancel;
85+
private _handleIconTap;
86+
private _handleIconClickWithDelay;
7687
private _handleIconClick;
7788
private _startHoldTimer;
7889
private _clearHoldTimer;

dist/debug-info.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// Ultra Vehicle Card Debug Info
2-
// Version: 3.0.0-beta6
3-
// Build Date: 2025-06-13T20:22:36.518Z
2+
// Version: 3.0.0-beta7
3+
// Build Date: 2025-06-16T14:53:30.790Z
44
// Build Mode: production

dist/ultra-vehicle-card.js

Lines changed: 135 additions & 60 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/version.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
* Ultra Vehicle Card Version
33
* This is the single source of truth for version information
44
*/
5-
export declare const VERSION = "3.0.0-beta6";
5+
export declare const VERSION = "3.0.0-beta7";

dist/version.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Ultra Vehicle Card Version
3-
* v3.0.0-beta6
3+
* v3.0.0-beta7
44
*
55
* This file is auto-generated from src/version.ts
66
* DO NOT MODIFY DIRECTLY
@@ -13,6 +13,6 @@ function setVersion(value) {
1313
}
1414

1515
// Set default version (will be overridden by card)
16-
setVersion('3.0.0-beta6');
16+
setVersion('3.0.0-beta7');
1717

1818
export { version, setVersion };

0 commit comments

Comments
 (0)