@dereekb/dbx-web 13.11.3 → 13.11.5
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/eslint/index.cjs.js +5 -5
- package/eslint/index.esm.js +5 -5
- package/eslint/src/lib/util.d.ts +2 -2
- package/package.json +7 -7
package/eslint/index.cjs.js
CHANGED
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
]);
|
|
16
16
|
/**
|
|
17
17
|
* Module that holds the dbx-components RxJS extras (SubscriptionObject).
|
|
18
|
-
*/ var
|
|
18
|
+
*/ var DBX_COMPONENTS_RXJS_MODULE = '@dereekb/rxjs';
|
|
19
19
|
/**
|
|
20
20
|
* Module that holds Subject/BehaviorSubject/etc.
|
|
21
21
|
*/ var RXJS_MODULE = 'rxjs';
|
|
22
22
|
/**
|
|
23
23
|
* Module that holds the cleanup helpers (cleanSubscription, completeOnDestroy, clean).
|
|
24
|
-
*/ var
|
|
24
|
+
*/ var DBX_COMPONENTS_DBX_CORE_MODULE = '@dereekb/dbx-core';
|
|
25
25
|
/**
|
|
26
26
|
* Identifier name for the `SubscriptionObject` class.
|
|
27
27
|
*/ var SUBSCRIPTION_OBJECT_NAME = 'SubscriptionObject';
|
|
@@ -519,7 +519,7 @@
|
|
|
519
519
|
var result = false;
|
|
520
520
|
if (!isCalledIdentifier(expression, ACCEPTED_WRAPPERS$1) && expression.type === 'NewExpression') {
|
|
521
521
|
var callee = expression.callee;
|
|
522
|
-
if ((callee === null || callee === void 0 ? void 0 : callee.type) === 'Identifier' && callee.name === SUBSCRIPTION_OBJECT_NAME && isImportedFrom(registry, SUBSCRIPTION_OBJECT_NAME,
|
|
522
|
+
if ((callee === null || callee === void 0 ? void 0 : callee.type) === 'Identifier' && callee.name === SUBSCRIPTION_OBJECT_NAME && isImportedFrom(registry, SUBSCRIPTION_OBJECT_NAME, DBX_COMPONENTS_RXJS_MODULE)) {
|
|
523
523
|
result = true;
|
|
524
524
|
}
|
|
525
525
|
}
|
|
@@ -545,7 +545,7 @@
|
|
|
545
545
|
fixer: fixer,
|
|
546
546
|
registry: registry,
|
|
547
547
|
importName: CLEAN_SUBSCRIPTION_HELPER,
|
|
548
|
-
fromSource:
|
|
548
|
+
fromSource: DBX_COMPONENTS_DBX_CORE_MODULE
|
|
549
549
|
});
|
|
550
550
|
if (importFix) {
|
|
551
551
|
collected.push(importFix);
|
|
@@ -780,7 +780,7 @@
|
|
|
780
780
|
fixer: fixer,
|
|
781
781
|
registry: registry,
|
|
782
782
|
importName: COMPLETE_ON_DESTROY_HELPER,
|
|
783
|
-
fromSource:
|
|
783
|
+
fromSource: DBX_COMPONENTS_DBX_CORE_MODULE
|
|
784
784
|
});
|
|
785
785
|
if (importFix) {
|
|
786
786
|
fixes.push(importFix);
|
package/eslint/index.esm.js
CHANGED
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
]);
|
|
14
14
|
/**
|
|
15
15
|
* Module that holds the dbx-components RxJS extras (SubscriptionObject).
|
|
16
|
-
*/ var
|
|
16
|
+
*/ var DBX_COMPONENTS_RXJS_MODULE = '@dereekb/rxjs';
|
|
17
17
|
/**
|
|
18
18
|
* Module that holds Subject/BehaviorSubject/etc.
|
|
19
19
|
*/ var RXJS_MODULE = 'rxjs';
|
|
20
20
|
/**
|
|
21
21
|
* Module that holds the cleanup helpers (cleanSubscription, completeOnDestroy, clean).
|
|
22
|
-
*/ var
|
|
22
|
+
*/ var DBX_COMPONENTS_DBX_CORE_MODULE = '@dereekb/dbx-core';
|
|
23
23
|
/**
|
|
24
24
|
* Identifier name for the `SubscriptionObject` class.
|
|
25
25
|
*/ var SUBSCRIPTION_OBJECT_NAME = 'SubscriptionObject';
|
|
@@ -517,7 +517,7 @@
|
|
|
517
517
|
var result = false;
|
|
518
518
|
if (!isCalledIdentifier(expression, ACCEPTED_WRAPPERS$1) && expression.type === 'NewExpression') {
|
|
519
519
|
var callee = expression.callee;
|
|
520
|
-
if ((callee === null || callee === void 0 ? void 0 : callee.type) === 'Identifier' && callee.name === SUBSCRIPTION_OBJECT_NAME && isImportedFrom(registry, SUBSCRIPTION_OBJECT_NAME,
|
|
520
|
+
if ((callee === null || callee === void 0 ? void 0 : callee.type) === 'Identifier' && callee.name === SUBSCRIPTION_OBJECT_NAME && isImportedFrom(registry, SUBSCRIPTION_OBJECT_NAME, DBX_COMPONENTS_RXJS_MODULE)) {
|
|
521
521
|
result = true;
|
|
522
522
|
}
|
|
523
523
|
}
|
|
@@ -543,7 +543,7 @@
|
|
|
543
543
|
fixer: fixer,
|
|
544
544
|
registry: registry,
|
|
545
545
|
importName: CLEAN_SUBSCRIPTION_HELPER,
|
|
546
|
-
fromSource:
|
|
546
|
+
fromSource: DBX_COMPONENTS_DBX_CORE_MODULE
|
|
547
547
|
});
|
|
548
548
|
if (importFix) {
|
|
549
549
|
collected.push(importFix);
|
|
@@ -778,7 +778,7 @@
|
|
|
778
778
|
fixer: fixer,
|
|
779
779
|
registry: registry,
|
|
780
780
|
importName: COMPLETE_ON_DESTROY_HELPER,
|
|
781
|
-
fromSource:
|
|
781
|
+
fromSource: DBX_COMPONENTS_DBX_CORE_MODULE
|
|
782
782
|
});
|
|
783
783
|
if (importFix) {
|
|
784
784
|
fixes.push(importFix);
|
package/eslint/src/lib/util.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ export declare const ANGULAR_COMPONENT_DECORATORS: ReadonlySet<string>;
|
|
|
12
12
|
/**
|
|
13
13
|
* Module that holds the dbx-components RxJS extras (SubscriptionObject).
|
|
14
14
|
*/
|
|
15
|
-
export declare const
|
|
15
|
+
export declare const DBX_COMPONENTS_RXJS_MODULE = "@dereekb/rxjs";
|
|
16
16
|
/**
|
|
17
17
|
* Module that holds Subject/BehaviorSubject/etc.
|
|
18
18
|
*/
|
|
@@ -20,7 +20,7 @@ export declare const RXJS_MODULE = "rxjs";
|
|
|
20
20
|
/**
|
|
21
21
|
* Module that holds the cleanup helpers (cleanSubscription, completeOnDestroy, clean).
|
|
22
22
|
*/
|
|
23
|
-
export declare const
|
|
23
|
+
export declare const DBX_COMPONENTS_DBX_CORE_MODULE = "@dereekb/dbx-core";
|
|
24
24
|
/**
|
|
25
25
|
* Identifier name for the `SubscriptionObject` class.
|
|
26
26
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-web",
|
|
3
|
-
"version": "13.11.
|
|
3
|
+
"version": "13.11.5",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.scss",
|
|
6
6
|
"*.css"
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
"@angular/material": "^21.2.9",
|
|
14
14
|
"@angular/platform-browser": "21.2.11",
|
|
15
15
|
"@cantoo/pdf-lib": "^2.6.5",
|
|
16
|
-
"@dereekb/browser": "13.11.
|
|
17
|
-
"@dereekb/date": "13.11.
|
|
18
|
-
"@dereekb/dbx-core": "13.11.
|
|
19
|
-
"@dereekb/rxjs": "13.11.
|
|
20
|
-
"@dereekb/util": "13.11.
|
|
21
|
-
"@dereekb/vitest": "13.11.
|
|
16
|
+
"@dereekb/browser": "13.11.5",
|
|
17
|
+
"@dereekb/date": "13.11.5",
|
|
18
|
+
"@dereekb/dbx-core": "13.11.5",
|
|
19
|
+
"@dereekb/rxjs": "13.11.5",
|
|
20
|
+
"@dereekb/util": "13.11.5",
|
|
21
|
+
"@dereekb/vitest": "13.11.5",
|
|
22
22
|
"@ngbracket/ngx-layout": "^21.0.0",
|
|
23
23
|
"@ngrx/component-store": "^21.1.0",
|
|
24
24
|
"@ngrx/effects": "^21.1.0",
|