@cal.macconnachie/web-components 2.5.7 → 2.6.1

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,19 @@ 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;
294
299
  static styles: CSSResult;
300
+ connectedCallback(): void;
301
+ disconnectedCallback(): void;
302
+ private setupPullListeners;
303
+ private removePullListeners;
304
+ private handleTouchStart;
305
+ private handleTouchMove;
306
+ private handleTouchEnd;
295
307
  render(): TemplateResult<1>;
296
308
  }
297
309