@biggive/components 202401021340.0.0 → 202401021355.0.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/hydrate/index.js CHANGED
@@ -10736,12 +10736,9 @@ class BiggiveTotalizer {
10736
10736
  // Deep clone [all children of] the ticker items internal wrapper and append them, so the ticker can show items without
10737
10737
  // a blank break. Sleeve 2 and up will animate on delays per https://stackoverflow.com/a/45847760.
10738
10738
  setTimeout(() => {
10739
- tickerItemsInternalWrapper.childNodes.forEach((child) => {
10740
- console.log('Child element for cloning: ', child);
10741
- sleeve2 && sleeve2.appendChild(child.cloneNode(true)); // Deep clone all items.
10742
- sleeve3 && sleeve3.appendChild(child.cloneNode(true));
10743
- sleeve4 && sleeve4.appendChild(child.cloneNode(true));
10744
- });
10739
+ sleeve2 && sleeve2.appendChild(tickerItemsInternalWrapper.cloneNode(true));
10740
+ sleeve3 && sleeve3.appendChild(tickerItemsInternalWrapper.cloneNode(true));
10741
+ sleeve4 && sleeve4.appendChild(tickerItemsInternalWrapper.cloneNode(true));
10745
10742
  }, 800);
10746
10743
  setTimeout(() => {
10747
10744
  // In Angular contexts, it seems like we need to leave a little time before the calculations work.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@biggive/components",
3
3
  "_comment": "Version number below is automatically replaced during CircleCI build.",
4
- "version": "202401021340.0.0",
4
+ "version": "202401021355.0.0",
5
5
  "description": "Big Give Components",
6
6
  "main": "dist/index.cjs.js",
7
7
  "module": "dist/index.js",