@almadar/ui 3.9.0 → 3.9.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/avl/index.cjs +1 -1
- package/dist/avl/index.js +1 -1
- package/dist/runtime/index.cjs +1 -1
- package/dist/runtime/index.js +1 -1
- package/package.json +1 -1
package/dist/avl/index.cjs
CHANGED
|
@@ -51065,7 +51065,7 @@ function createClientEffectHandlers(options) {
|
|
|
51065
51065
|
return {
|
|
51066
51066
|
emit: (event, payload) => {
|
|
51067
51067
|
const prefixedEvent = event.startsWith("UI:") ? event : `UI:${event}`;
|
|
51068
|
-
eventBus.emit(prefixedEvent,
|
|
51068
|
+
eventBus.emit(prefixedEvent, payload);
|
|
51069
51069
|
},
|
|
51070
51070
|
persist: async () => {
|
|
51071
51071
|
console.warn("[ClientEffectHandlers] persist is server-side only, ignored on client");
|
package/dist/avl/index.js
CHANGED
|
@@ -51019,7 +51019,7 @@ function createClientEffectHandlers(options) {
|
|
|
51019
51019
|
return {
|
|
51020
51020
|
emit: (event, payload) => {
|
|
51021
51021
|
const prefixedEvent = event.startsWith("UI:") ? event : `UI:${event}`;
|
|
51022
|
-
eventBus.emit(prefixedEvent,
|
|
51022
|
+
eventBus.emit(prefixedEvent, payload);
|
|
51023
51023
|
},
|
|
51024
51024
|
persist: async () => {
|
|
51025
51025
|
console.warn("[ClientEffectHandlers] persist is server-side only, ignored on client");
|
package/dist/runtime/index.cjs
CHANGED
|
@@ -37861,7 +37861,7 @@ function createClientEffectHandlers(options) {
|
|
|
37861
37861
|
return {
|
|
37862
37862
|
emit: (event, payload) => {
|
|
37863
37863
|
const prefixedEvent = event.startsWith("UI:") ? event : `UI:${event}`;
|
|
37864
|
-
eventBus.emit(prefixedEvent,
|
|
37864
|
+
eventBus.emit(prefixedEvent, payload);
|
|
37865
37865
|
},
|
|
37866
37866
|
persist: async () => {
|
|
37867
37867
|
console.warn("[ClientEffectHandlers] persist is server-side only, ignored on client");
|
package/dist/runtime/index.js
CHANGED
|
@@ -37816,7 +37816,7 @@ function createClientEffectHandlers(options) {
|
|
|
37816
37816
|
return {
|
|
37817
37817
|
emit: (event, payload) => {
|
|
37818
37818
|
const prefixedEvent = event.startsWith("UI:") ? event : `UI:${event}`;
|
|
37819
|
-
eventBus.emit(prefixedEvent,
|
|
37819
|
+
eventBus.emit(prefixedEvent, payload);
|
|
37820
37820
|
},
|
|
37821
37821
|
persist: async () => {
|
|
37822
37822
|
console.warn("[ClientEffectHandlers] persist is server-side only, ignored on client");
|