be-hive 0.0.209 → 0.0.211

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/be-hive.js CHANGED
@@ -126,7 +126,8 @@ export class BeHive extends Synthesizer {
126
126
  enhancementInstance.attach(mountedElement, {
127
127
  initialAttrInfo,
128
128
  initialPropValues,
129
- mountCnfg: mergeWithDefaults
129
+ mountCnfg: mergeWithDefaults,
130
+ synConfig
130
131
  });
131
132
  });
132
133
  }
package/be-hive.ts CHANGED
@@ -2,7 +2,7 @@ import {Synthesizer} from 'mount-observer/Synthesizer.js';
2
2
  import { AddMountEventListener, MountInit, MOSE, MOSEAddedProps} from './ts-refs/mount-observer/types';
3
3
  export {EMC} from './ts-refs/trans-render/be/types';
4
4
  export {MountObserver, MOSE} from 'mount-observer/MountObserver.js';
5
- import {AttrMapPoint, EMC, EventListenerOrFn, HandlerKey} from './ts-refs/trans-render/be/types';
5
+ import {AttrMapPoint, CustomHandlerCluster, EMC, EventListenerOrFn, HandlerKey} from './ts-refs/trans-render/be/types';
6
6
  import { MountEvent } from 'mount-observer/MountObserver';
7
7
  import 'be-enhanced/beEnhanced.js';
8
8
  import { BeEnhanced, Enhancers } from 'be-enhanced/beEnhanced.js';
@@ -33,8 +33,7 @@ export const defaultObsAttrs: Partial<EMC> = {
33
33
  enhancedElementInstanceOf: [Element]
34
34
  };
35
35
 
36
- type CustomHandlers = Map<string, EventListenerOrFn>;
37
- type CustomHandlerCluster = Map<HandlerKey, CustomHandlers>;
36
+
38
37
 
39
38
  export const registeredHandlers = new Map<EMC, CustomHandlerCluster>();
40
39
 
@@ -141,7 +140,8 @@ export class BeHive extends Synthesizer {
141
140
  enhancementInstance.attach(mountedElement, {
142
141
  initialAttrInfo,
143
142
  initialPropValues,
144
- mountCnfg: mergeWithDefaults
143
+ mountCnfg: mergeWithDefaults,
144
+ synConfig
145
145
  });
146
146
  });
147
147
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "be-hive",
3
- "version": "0.0.209",
3
+ "version": "0.0.211",
4
4
  "keywords": [
5
5
  "web-components",
6
6
  "web-component",
@@ -37,9 +37,9 @@
37
37
  "update": "ncu -u && npm install"
38
38
  },
39
39
  "dependencies": {
40
- "be-enhanced": "0.0.139",
41
- "mount-observer": "0.0.35",
42
- "trans-render": "0.0.834"
40
+ "be-enhanced": "0.0.140",
41
+ "mount-observer": "0.0.36",
42
+ "trans-render": "0.0.835"
43
43
  },
44
44
  "devDependencies": {
45
45
  "may-it-serve": "0.0.8"