@cal.macconnachie/web-components 2.5.0 → 2.5.2
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/dist/index.d.ts +7 -0
- package/dist/index.js +516 -501
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -305,11 +305,14 @@ export declare class BaseListItem extends BaseElement {
|
|
|
305
305
|
rightSwipeAction?: SwipeAction;
|
|
306
306
|
private swipeOffset;
|
|
307
307
|
private isSwiping;
|
|
308
|
+
private desktopActionsOpen;
|
|
309
|
+
private desktopActionSide;
|
|
308
310
|
private touchStartX;
|
|
309
311
|
private touchStartY;
|
|
310
312
|
private currentX;
|
|
311
313
|
private isDragging;
|
|
312
314
|
private swipeThreshold;
|
|
315
|
+
private documentClickHandler;
|
|
313
316
|
static styles: CSSResult;
|
|
314
317
|
private handleClick;
|
|
315
318
|
private handleKeyDown;
|
|
@@ -317,6 +320,10 @@ export declare class BaseListItem extends BaseElement {
|
|
|
317
320
|
private handleTouchMove;
|
|
318
321
|
private handleTouchEnd;
|
|
319
322
|
private triggerSwipeAction;
|
|
323
|
+
private handleDesktopActionToggle;
|
|
324
|
+
private handleDocumentClick;
|
|
325
|
+
connectedCallback(): void;
|
|
326
|
+
disconnectedCallback(): void;
|
|
320
327
|
render(): TemplateResult<1>;
|
|
321
328
|
}
|
|
322
329
|
|