@geexcode/geex-angular 0.0.13 → 0.0.14
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 +7 -1
- package/dist/index.mjs +7 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -216,7 +216,13 @@ function configGeex(injector, overrides) {
|
|
|
216
216
|
// src/provide-geex.ts
|
|
217
217
|
function provideGeex(overrides) {
|
|
218
218
|
return [
|
|
219
|
-
{
|
|
219
|
+
{
|
|
220
|
+
provide: Geex,
|
|
221
|
+
useFactory: (injector) => {
|
|
222
|
+
configGeex(injector, overrides);
|
|
223
|
+
return geex;
|
|
224
|
+
}
|
|
225
|
+
}
|
|
220
226
|
];
|
|
221
227
|
}
|
|
222
228
|
// Annotate the CommonJS export names for ESM import in node:
|
package/dist/index.mjs
CHANGED
|
@@ -171,7 +171,13 @@ function configGeex(injector, overrides) {
|
|
|
171
171
|
// src/provide-geex.ts
|
|
172
172
|
function provideGeex(overrides) {
|
|
173
173
|
return [
|
|
174
|
-
{
|
|
174
|
+
{
|
|
175
|
+
provide: Geex,
|
|
176
|
+
useFactory: (injector) => {
|
|
177
|
+
configGeex(injector, overrides);
|
|
178
|
+
return geex;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
175
181
|
];
|
|
176
182
|
}
|
|
177
183
|
export {
|