@webqit/oohtml 4.4.0 → 4.5.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/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "wicg-proposal"
15
15
  ],
16
16
  "homepage": "https://webqit.io/tooling/oohtml",
17
- "version": "4.4.0",
17
+ "version": "4.5.0",
18
18
  "license": "MIT",
19
19
  "repository": {
20
20
  "type": "git",
@@ -99,7 +99,7 @@ function applyBindings( config, target, bindings, { merge, diff, publish, namesp
99
99
  const window = this, { webqit: { Observer } } = window;
100
100
  const bindingsObj = getBindings.call( this, config, target );
101
101
  const $params = { diff, namespace, detail: { publish } };
102
- const exitingKeys = merge ? [] : Observer.ownKeys( bindingsObj, $params ).filter( key => !( key in bindings ) );
102
+ const exitingKeys = merge ? [] : Object.keys( bindingsObj, $params ).filter( key => !( key in bindings ) );
103
103
  return Observer.batch( bindingsObj, () => {
104
104
  if ( exitingKeys.length ) { Observer.deleteProperties( bindingsObj, exitingKeys, $params ); }
105
105
  return Observer.set( bindingsObj, bindings, $params );
@@ -6,7 +6,7 @@ import _DOMContextRequestEvent from './_DOMContextRequestEvent.js';
6
6
  import DOMContextResponse from './DOMContextResponse.js';
7
7
  import DOMContext from './DOMContext.js';
8
8
  import DuplicateContextError from './DuplicateContextError.js';
9
- import { _ } from '../util.js';
9
+ import { _wq } from '../util.js';
10
10
 
11
11
  const waitListMappings = new Map;
12
12
  export default class DOMContexts {
@@ -4,7 +4,7 @@
4
4
  */
5
5
  import DOMContext from '../context-api/DOMContext.js';
6
6
  import { getDefs } from './index.js';
7
- import { _wq, env } from '../util.js';
7
+ import { env } from '../util.js';
8
8
 
9
9
  export default class HTMLImportsContext extends DOMContext {
10
10