@geexcode/geex-angular 0.0.14 → 0.0.15
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/index.js +5 -1
- package/dist/index.mjs +5 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -45,6 +45,9 @@ __export(index_exports, {
|
|
|
45
45
|
});
|
|
46
46
|
module.exports = __toCommonJS(index_exports);
|
|
47
47
|
|
|
48
|
+
// src/provide-geex.ts
|
|
49
|
+
var import_core3 = require("@angular/core");
|
|
50
|
+
|
|
48
51
|
// src/geex.ts
|
|
49
52
|
var import_core2 = require("@angular/core");
|
|
50
53
|
|
|
@@ -221,7 +224,8 @@ function provideGeex(overrides) {
|
|
|
221
224
|
useFactory: (injector) => {
|
|
222
225
|
configGeex(injector, overrides);
|
|
223
226
|
return geex;
|
|
224
|
-
}
|
|
227
|
+
},
|
|
228
|
+
deps: [import_core3.Injector]
|
|
225
229
|
}
|
|
226
230
|
];
|
|
227
231
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import "./chunk-EBO3CZXG.mjs";
|
|
2
2
|
|
|
3
|
+
// src/provide-geex.ts
|
|
4
|
+
import { Injector as Injector3 } from "@angular/core";
|
|
5
|
+
|
|
3
6
|
// src/geex.ts
|
|
4
7
|
import { InjectionToken, runInInjectionContext as runInInjectionContext2 } from "@angular/core";
|
|
5
8
|
|
|
@@ -176,7 +179,8 @@ function provideGeex(overrides) {
|
|
|
176
179
|
useFactory: (injector) => {
|
|
177
180
|
configGeex(injector, overrides);
|
|
178
181
|
return geex;
|
|
179
|
-
}
|
|
182
|
+
},
|
|
183
|
+
deps: [Injector3]
|
|
180
184
|
}
|
|
181
185
|
];
|
|
182
186
|
}
|