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