@fiddle-digital/string-tune 1.2.1-alpha.6 → 1.2.1-alpha.8
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.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2576,6 +2576,8 @@ declare class StringScrollContainer extends StringModule {
|
|
|
2576
2576
|
* WeakMap storing the state for each managed HTMLElement.
|
|
2577
2577
|
*/
|
|
2578
2578
|
private states;
|
|
2579
|
+
private wheelHandlers;
|
|
2580
|
+
private scrollHandlers;
|
|
2579
2581
|
/**
|
|
2580
2582
|
* Initializes the StringScrollContainer module.
|
|
2581
2583
|
* Registers the `lerp` attribute configuration.
|
|
@@ -2609,6 +2611,7 @@ declare class StringScrollContainer extends StringModule {
|
|
|
2609
2611
|
* Recalculates scroll boundaries for all managed containers.
|
|
2610
2612
|
*/
|
|
2611
2613
|
onResize(): void;
|
|
2614
|
+
onScrollConfigChange(): void;
|
|
2612
2615
|
/**
|
|
2613
2616
|
* Recalculates the maximum scrollable distance for a container.
|
|
2614
2617
|
*
|
package/dist/index.d.ts
CHANGED
|
@@ -2576,6 +2576,8 @@ declare class StringScrollContainer extends StringModule {
|
|
|
2576
2576
|
* WeakMap storing the state for each managed HTMLElement.
|
|
2577
2577
|
*/
|
|
2578
2578
|
private states;
|
|
2579
|
+
private wheelHandlers;
|
|
2580
|
+
private scrollHandlers;
|
|
2579
2581
|
/**
|
|
2580
2582
|
* Initializes the StringScrollContainer module.
|
|
2581
2583
|
* Registers the `lerp` attribute configuration.
|
|
@@ -2609,6 +2611,7 @@ declare class StringScrollContainer extends StringModule {
|
|
|
2609
2611
|
* Recalculates scroll boundaries for all managed containers.
|
|
2610
2612
|
*/
|
|
2611
2613
|
onResize(): void;
|
|
2614
|
+
onScrollConfigChange(): void;
|
|
2612
2615
|
/**
|
|
2613
2616
|
* Recalculates the maximum scrollable distance for a container.
|
|
2614
2617
|
*
|