@hortonstudio/main 1.2.23 → 1.2.24

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.
@@ -207,6 +207,7 @@ export async function init() {
207
207
  api._persistentConfigs = api._persistentConfigs || {};
208
208
  api._persistentConfigs.heroAnimations = { ...config };
209
209
  console.log('💾 Hero animations - stored persistent config:', api._persistentConfigs.heroAnimations);
210
+ console.log('💾 Hero animations - full _persistentConfigs after store:', api._persistentConfigs);
210
211
  },
211
212
  start: startHeroAnimations,
212
213
  kill: killHeroAnimations,
@@ -618,6 +619,7 @@ export async function init() {
618
619
  api._persistentConfigs = api._persistentConfigs || {};
619
620
  api._persistentConfigs.heroAnimations = { ...config };
620
621
  console.log('💾 Hero animations - stored persistent config:', api._persistentConfigs.heroAnimations);
622
+ console.log('💾 Hero animations - full _persistentConfigs after store:', api._persistentConfigs);
621
623
  },
622
624
  start: startHeroAnimations,
623
625
  kill: killHeroAnimations,
@@ -381,6 +381,7 @@ export async function init() {
381
381
  api._persistentConfigs = api._persistentConfigs || {};
382
382
  api._persistentConfigs.textAnimations = { ...config };
383
383
  console.log('💾 Text animations - stored persistent config:', api._persistentConfigs.textAnimations);
384
+ console.log('💾 Text animations - full _persistentConfigs after store:', api._persistentConfigs);
384
385
  },
385
386
  start: startTextAnimations,
386
387
  kill: killTextAnimations,
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- // Version: 1.2.23
1
+ // Version: 1.2.24
2
2
 
3
3
  const API_NAME = 'hsmain';
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hortonstudio/main",
3
- "version": "1.2.23",
3
+ "version": "1.2.24",
4
4
  "description": "Animation and utility library for client websites",
5
5
  "main": "index.js",
6
6
  "type": "module",