@cal.macconnachie/web-components 2.5.7 → 2.6.0

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 CHANGED
@@ -291,7 +291,20 @@ export declare class BaseList extends BaseElement {
291
291
  variant: ListVariant;
292
292
  interactive: boolean;
293
293
  role: string;
294
+ pullActionIcon?: string;
295
+ private isPulling;
296
+ private pullDistance;
297
+ private startY;
298
+ private pullThreshold;
299
+ private listElement?;
294
300
  static styles: CSSResult;
301
+ connectedCallback(): void;
302
+ disconnectedCallback(): void;
303
+ private setupPullListeners;
304
+ private removePullListeners;
305
+ private handleTouchStart;
306
+ private handleTouchMove;
307
+ private handleTouchEnd;
295
308
  render(): TemplateResult<1>;
296
309
  }
297
310