@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.
- package/animations/hero.js +2 -0
- package/animations/text.js +1 -0
- package/index.js +1 -1
- package/package.json +1 -1
package/animations/hero.js
CHANGED
|
@@ -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,
|
package/animations/text.js
CHANGED
|
@@ -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