@cal.macconnachie/web-components 2.4.5 → 2.4.6
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 +5 -1
- package/dist/index.js +363 -356
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -216,6 +216,8 @@ export declare class BaseDrawer extends BaseElement {
|
|
|
216
216
|
private dragCommitted;
|
|
217
217
|
private draggingFromContent;
|
|
218
218
|
private dragStartedAtTop;
|
|
219
|
+
private contentTouchTracking;
|
|
220
|
+
private contentTouchStartY;
|
|
219
221
|
private modalContainer?;
|
|
220
222
|
private drawerContent?;
|
|
221
223
|
private transitionDuration;
|
|
@@ -235,7 +237,9 @@ export declare class BaseDrawer extends BaseElement {
|
|
|
235
237
|
private handleClose;
|
|
236
238
|
private handleOverlayClick;
|
|
237
239
|
private handleDragStart;
|
|
238
|
-
private
|
|
240
|
+
private handleContentTouchStart;
|
|
241
|
+
private handleContentTouchMove;
|
|
242
|
+
private handleContentTouchEnd;
|
|
239
243
|
private handleDragMove;
|
|
240
244
|
private handleDragEnd;
|
|
241
245
|
private handleHandleClick;
|