mount-observer 0.0.42 → 0.0.43

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/MountObserver.js CHANGED
@@ -284,7 +284,7 @@ export class MountObserver extends EventTarget {
284
284
  initializing
285
285
  });
286
286
  }
287
- if (options?.LeaveBreadcrumb) {
287
+ if (options?.leaveBreadcrumb) {
288
288
  if (match[guid] === undefined) {
289
289
  match[guid] = new Set();
290
290
  }
package/MountObserver.ts CHANGED
@@ -296,7 +296,7 @@ export class MountObserver extends EventTarget implements IMountObserver{
296
296
  initializing
297
297
  })
298
298
  }
299
- if(options?.LeaveBreadcrumb){
299
+ if(options?.leaveBreadcrumb){
300
300
  if((<any>match)[guid] === undefined){
301
301
  (<any>match)[guid] = new Set();
302
302
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mount-observer",
3
- "version": "0.0.42",
3
+ "version": "0.0.43",
4
4
  "description": "Observe and act on css matches.",
5
5
  "main": "MountObserver.js",
6
6
  "module": "MountObserver.js",
@@ -33,7 +33,7 @@ export interface MountInit extends JSONSerializableMountInit{
33
33
  }
34
34
 
35
35
  export interface MountObserverOptions{
36
- LeaveBreadcrumb?: boolean,
36
+ leaveBreadcrumb?: boolean,
37
37
  }
38
38
 
39
39
  export interface MountObserverCallbacks{