ngx-ode-core 4.6.0-dev-integration.2 → 4.6.0-dev.3

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.
@@ -1,325 +0,0 @@
1
- import { Subscription } from 'rxjs';
2
- import { ActivatedRoute, Router } from '@angular/router';
3
- import { isDevMode, Injectable, ɵɵdefineInjectable, InjectionToken, ChangeDetectorRef, Component, Injector, NgModule } from '@angular/core';
4
-
5
- /**
6
- * @fileoverview added by tsickle
7
- * Generated from: lib/utils/Logger.ts
8
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
9
- */
10
- var Logger = /** @class */ (function () {
11
- function Logger() {
12
- if (isDevMode()) {
13
- /** @type {?} */
14
- var text = '%c ___ ____ _ _ _ _ \n' +
15
- ' / _ \\ _ __ ___ _ __ | _ \\(_) __ _(_) |_ __ _| |\n' +
16
- '| | | | ._ \\ / _ \\ ._ \\ | | | | |/ _` | | __/ _` | |\n' +
17
- '| |_| | |_) | __/ | | | | |_| | | (_| | | || (_| | |\n' +
18
- ' \\___/| .__/ \\___|_| |_| |____/|_|\\__, |_|\\__\\__,_|_|\n' +
19
- ' _____|_| _ _ _ |___/ \n' +
20
- '| ____|__| |_ _ ___ __ _| |_(_) ___ _ __ \n' +
21
- '| _| / _. | | | |/ __/ _. | __| |/ _ \\| ._ \\ \n' +
22
- '| |__| (_| | |_| | (_| (_| | |_| | (_) | | | | \n' +
23
- '|_____\\__,_|\\__,_|\\___\\__,_|\\__|_|\\___/|_| |_| \n';
24
- console.log(text, 'color:#a83299');
25
- }
26
- }
27
- /**
28
- * @param {?} message
29
- * @param {?} context
30
- * @param {?=} object
31
- * @return {?}
32
- */
33
- Logger.prototype.debug = /**
34
- * @param {?} message
35
- * @param {?} context
36
- * @param {?=} object
37
- * @return {?}
38
- */
39
- function (message, context, object) {
40
- if (isDevMode()) {
41
- /** @type {?} */
42
- var logEntry = this.createLogStatement(message, context);
43
- console.log("%c<" + new Date().toLocaleString() + "> %c[" + context.constructor.name + "] %c" + (' ' + message || '') + " %c", 'color:#398f3f', 'color:#58c75f', 'color:#6ee676', 'color:#87f58e', object || '');
44
- }
45
- };
46
- /**
47
- * @param {?} message
48
- * @param {?} context
49
- * @param {?=} object
50
- * @return {?}
51
- */
52
- Logger.prototype.error = /**
53
- * @param {?} message
54
- * @param {?} context
55
- * @param {?=} object
56
- * @return {?}
57
- */
58
- function (message, context, object) {
59
- if (isDevMode()) {
60
- /** @type {?} */
61
- var logEntry = this.createLogStatement(message, context);
62
- console.error(' ' + logEntry, object || '');
63
- }
64
- };
65
- /**
66
- * @param {?} message
67
- * @param {?} context
68
- * @param {?=} object
69
- * @return {?}
70
- */
71
- Logger.prototype.warn = /**
72
- * @param {?} message
73
- * @param {?} context
74
- * @param {?=} object
75
- * @return {?}
76
- */
77
- function (message, context, object) {
78
- if (isDevMode()) {
79
- /** @type {?} */
80
- var logEntry = this.createLogStatement(message, context);
81
- console.warn(' ' + logEntry, object || '');
82
- }
83
- };
84
- /**
85
- * @param {?} message
86
- * @param {?} context
87
- * @param {?=} object
88
- * @return {?}
89
- */
90
- Logger.prototype.info = /**
91
- * @param {?} message
92
- * @param {?} context
93
- * @param {?=} object
94
- * @return {?}
95
- */
96
- function (message, context, object) {
97
- if (isDevMode()) {
98
- /** @type {?} */
99
- var logEntry = this.createLogStatement(message, context);
100
- console.log("%c<" + new Date().toLocaleString() + "> %c[" + context.constructor.name + "] %c" + (' ' + message || '') + " %c", 'color:#3293a8', 'color:#09c3eb', 'color:#78dede', 'color:#78aede', object || '');
101
- }
102
- };
103
- /**
104
- * @param {?} message
105
- * @param {?} context
106
- * @return {?}
107
- */
108
- Logger.prototype.createLogStatement = /**
109
- * @param {?} message
110
- * @param {?} context
111
- * @return {?}
112
- */
113
- function (message, context) {
114
- return "<" + new Date().toLocaleString() + "> [" + context.constructor.name + "] " + (' ' + message || '') + " ";
115
- };
116
- Logger.decorators = [
117
- { type: Injectable, args: [{
118
- providedIn: 'root'
119
- },] }
120
- ];
121
- /** @nocollapse */
122
- Logger.ctorParameters = function () { return []; };
123
- /** @nocollapse */ Logger.ngInjectableDef = ɵɵdefineInjectable({ factory: function Logger_Factory() { return new Logger(); }, token: Logger, providedIn: "root" });
124
- return Logger;
125
- }());
126
-
127
- /**
128
- * @fileoverview added by tsickle
129
- * Generated from: lib/component/ode.component.ts
130
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
131
- */
132
- /** @type {?} */
133
- var COMPONENT_LIFECYCLE_DEBUG_MODE = new InjectionToken('debugComponentLifecycle');
134
- var OdeComponent = /** @class */ (function () {
135
- function OdeComponent(injector) {
136
- this.injector = injector;
137
- this.subscriptions = new Subscription();
138
- this.debugComponentLifeCycle = injector.get(COMPONENT_LIFECYCLE_DEBUG_MODE);
139
- this.logger = injector.get((/** @type {?} */ (Logger)));
140
- this.route = injector.get((/** @type {?} */ (ActivatedRoute)));
141
- this.router = injector.get((/** @type {?} */ (Router)));
142
- this.changeDetector = injector.get((/** @type {?} */ (ChangeDetectorRef)));
143
- }
144
- /**
145
- * @return {?}
146
- */
147
- OdeComponent.prototype.ngOnInit = /**
148
- * @return {?}
149
- */
150
- function () {
151
- if (this.debugComponentLifeCycle) {
152
- this.info('ngOnInit');
153
- }
154
- };
155
- /**
156
- * @return {?}
157
- */
158
- OdeComponent.prototype.ngOnDestroy = /**
159
- * @return {?}
160
- */
161
- function () {
162
- if (this.debugComponentLifeCycle) {
163
- this.info('ngOnDestroy');
164
- }
165
- this.subscriptions.unsubscribe();
166
- };
167
- /**
168
- * @return {?}
169
- */
170
- OdeComponent.prototype.ngAfterViewInit = /**
171
- * @return {?}
172
- */
173
- function () {
174
- if (this.debugComponentLifeCycle) {
175
- this.info('ngAfterViewInit');
176
- }
177
- };
178
- /**
179
- * @param {?} changes
180
- * @return {?}
181
- */
182
- OdeComponent.prototype.ngOnChanges = /**
183
- * @param {?} changes
184
- * @return {?}
185
- */
186
- function (changes) {
187
- };
188
- /**
189
- * @return {?}
190
- */
191
- OdeComponent.prototype.ngAfterContentInit = /**
192
- * @return {?}
193
- */
194
- function () {
195
- if (this.debugComponentLifeCycle) {
196
- this.info('ngAfterContentInit');
197
- }
198
- };
199
- /**
200
- * @param {?} message
201
- * @param {?=} object
202
- * @return {?}
203
- */
204
- OdeComponent.prototype.debug = /**
205
- * @param {?} message
206
- * @param {?=} object
207
- * @return {?}
208
- */
209
- function (message, object) {
210
- this.logger.debug(message, this, object);
211
- };
212
- /**
213
- * @param {?} message
214
- * @param {?=} object
215
- * @return {?}
216
- */
217
- OdeComponent.prototype.info = /**
218
- * @param {?} message
219
- * @param {?=} object
220
- * @return {?}
221
- */
222
- function (message, object) {
223
- this.logger.info(message, this, object);
224
- };
225
- /**
226
- * @param {?} message
227
- * @param {?=} object
228
- * @return {?}
229
- */
230
- OdeComponent.prototype.warn = /**
231
- * @param {?} message
232
- * @param {?=} object
233
- * @return {?}
234
- */
235
- function (message, object) {
236
- this.logger.warn(message, this, object);
237
- };
238
- /**
239
- * @param {?} message
240
- * @param {?=} object
241
- * @return {?}
242
- */
243
- OdeComponent.prototype.error = /**
244
- * @param {?} message
245
- * @param {?=} object
246
- * @return {?}
247
- */
248
- function (message, object) {
249
- this.logger.error(message, this, object);
250
- };
251
- OdeComponent.decorators = [
252
- { type: Component, args: [{
253
- template: ''
254
- }] }
255
- ];
256
- /** @nocollapse */
257
- OdeComponent.ctorParameters = function () { return [
258
- { type: Injector }
259
- ]; };
260
- return OdeComponent;
261
- }());
262
- if (false) {
263
- /**
264
- * @type {?}
265
- * @private
266
- */
267
- OdeComponent.prototype.logger;
268
- /** @type {?} */
269
- OdeComponent.prototype.route;
270
- /** @type {?} */
271
- OdeComponent.prototype.router;
272
- /**
273
- * @type {?}
274
- * @protected
275
- */
276
- OdeComponent.prototype.changeDetector;
277
- /**
278
- * @type {?}
279
- * @protected
280
- */
281
- OdeComponent.prototype.subscriptions;
282
- /**
283
- * @type {?}
284
- * @private
285
- */
286
- OdeComponent.prototype.debugComponentLifeCycle;
287
- /** @type {?} */
288
- OdeComponent.prototype.injector;
289
- }
290
-
291
- /**
292
- * @fileoverview added by tsickle
293
- * Generated from: lib/ngx-ode-core.module.ts
294
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
295
- */
296
- var NgxOdeCoreModule = /** @class */ (function () {
297
- function NgxOdeCoreModule() {
298
- }
299
- NgxOdeCoreModule.decorators = [
300
- { type: NgModule, args: [{
301
- declarations: [OdeComponent],
302
- imports: [],
303
- exports: [OdeComponent],
304
- providers: [
305
- { provide: COMPONENT_LIFECYCLE_DEBUG_MODE, useValue: 1 }
306
- ]
307
- },] }
308
- ];
309
- return NgxOdeCoreModule;
310
- }());
311
-
312
- /**
313
- * @fileoverview added by tsickle
314
- * Generated from: public-api.ts
315
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
316
- */
317
-
318
- /**
319
- * @fileoverview added by tsickle
320
- * Generated from: ngx-ode-core.ts
321
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
322
- */
323
-
324
- export { COMPONENT_LIFECYCLE_DEBUG_MODE, Logger, NgxOdeCoreModule, OdeComponent };
325
- //# sourceMappingURL=ngx-ode-core.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ngx-ode-core.js","sources":["ng://ngx-ode-core/lib/utils/Logger.ts","ng://ngx-ode-core/lib/component/ode.component.ts","ng://ngx-ode-core/lib/ngx-ode-core.module.ts"],"sourcesContent":["import { Injectable, isDevMode } from '@angular/core';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class Logger {\n\n debug(message: string, context: any, object?: any): void {\n if (isDevMode()) {\n const logEntry = this.createLogStatement( message, context);\n console.log(`%c<${new Date().toLocaleString()}> %c[${context.constructor.name}] %c${' ' + message || ''} %c`,\n 'color:#398f3f',\n 'color:#58c75f',\n 'color:#6ee676',\n 'color:#87f58e',\n object || '');\n }\n }\n\n error(message: string, context: any, object?: any): void {\n if (isDevMode()) {\n const logEntry = this.createLogStatement(message, context);\n console.error(' ' + logEntry, object || '');\n }\n }\n\n warn(message: string, context: any, object?: any): void {\n if (isDevMode()) {\n const logEntry = this.createLogStatement( message, context);\n console.warn(' ' + logEntry, object || '');\n }\n }\n\n info(message: string, context: any, object?: any): void {\n if (isDevMode()) {\n const logEntry = this.createLogStatement(message, context);\n console.log(`%c<${new Date().toLocaleString()}> %c[${context.constructor.name}] %c${' ' + message || ''} %c`,\n 'color:#3293a8',\n 'color:#09c3eb',\n 'color:#78dede',\n 'color:#78aede',\n object || '');\n }\n }\n\n createLogStatement(message, context: any) {\n return `<${new Date().toLocaleString()}> [${context.constructor.name}] ${' ' + message || ''} `;\n }\n\n constructor() {\n if (isDevMode()) {\n let text = '%c ___ ____ _ _ _ _ \\n' +\n ' / _ \\\\ _ __ ___ _ __ | _ \\\\(_) __ _(_) |_ __ _| |\\n' +\n '| | | | ._ \\\\ / _ \\\\ ._ \\\\ | | | | |/ _` | | __/ _` | |\\n' +\n '| |_| | |_) | __/ | | | | |_| | | (_| | | || (_| | |\\n' +\n ' \\\\___/| .__/ \\\\___|_| |_| |____/|_|\\\\__, |_|\\\\__\\\\__,_|_|\\n' +\n ' _____|_| _ _ _ |___/ \\n' +\n '| ____|__| |_ _ ___ __ _| |_(_) ___ _ __ \\n' +\n '| _| / _. | | | |/ __/ _. | __| |/ _ \\\\| ._ \\\\ \\n' +\n '| |__| (_| | |_| | (_| (_| | |_| | (_) | | | | \\n' +\n '|_____\\\\__,_|\\\\__,_|\\\\___\\\\__,_|\\\\__|_|\\\\___/|_| |_| \\n';\n console.log(text, 'color:#a83299');\n }\n }\n}\n","import { Subscription } from 'rxjs';\nimport { ActivatedRoute, Router } from '@angular/router';\nimport { OnInit, OnDestroy, AfterViewInit, OnChanges, AfterContentInit, Injector,\n Component, Type, ChangeDetectorRef, InjectionToken } from '@angular/core';\nimport { Logger } from '../utils/Logger';\n\nexport const COMPONENT_LIFECYCLE_DEBUG_MODE = new InjectionToken<number>('debugComponentLifecycle');\n\n@Component({\n template: ''\n})\nexport class OdeComponent implements OnInit, OnDestroy, AfterViewInit, OnChanges, AfterContentInit {\n private logger: Logger;\n route: ActivatedRoute;\n router: Router;\n protected changeDetector: ChangeDetectorRef;\n protected subscriptions: Subscription = new Subscription();\n private debugComponentLifeCycle: number;\n\n constructor(public injector: Injector ) {\n this.debugComponentLifeCycle = injector.get(COMPONENT_LIFECYCLE_DEBUG_MODE);\n this.logger = injector.get<Logger>(Logger as Type<Logger>);\n this.route = injector.get<ActivatedRoute>(ActivatedRoute as Type<ActivatedRoute>);\n this.router = injector.get<Router>(Router as Type<Router>);\n this.changeDetector = injector.get<ChangeDetectorRef>(ChangeDetectorRef as Type<ChangeDetectorRef>);\n }\n\n ngOnInit(): void {\n if (this.debugComponentLifeCycle) {\n this.info('ngOnInit');\n }\n }\n\n ngOnDestroy(): void {\n if (this.debugComponentLifeCycle) {\n this.info('ngOnDestroy');\n }\n this.subscriptions.unsubscribe();\n }\n\n ngAfterViewInit(): void {\n if (this.debugComponentLifeCycle) {\n this.info('ngAfterViewInit');\n }\n }\n\n ngOnChanges(changes: import('@angular/core').SimpleChanges): void {\n }\n\n ngAfterContentInit(): void {\n if (this.debugComponentLifeCycle) {\n this.info('ngAfterContentInit');\n }\n }\n\n debug(message: string, object?: any): void {\n this.logger.debug(message, this, object);\n }\n\n info(message: string, object?: any): void {\n this.logger.info(message, this, object);\n }\n\n warn(message: string, object?: any): void {\n this.logger.warn(message, this, object);\n }\n\n error(message: string, object?: any): void {\n this.logger.error(message, this, object);\n }\n}\n","import { NgModule } from '@angular/core';\nimport { OdeComponent, COMPONENT_LIFECYCLE_DEBUG_MODE } from './component/ode.component';\n\n@NgModule({\n declarations: [OdeComponent],\n imports: [\n ],\n exports: [OdeComponent],\n providers: [\n { provide: COMPONENT_LIFECYCLE_DEBUG_MODE, useValue: 1 }\n ]\n})\nexport class NgxOdeCoreModule { }\n"],"names":[],"mappings":";;;;;;;;;AAAA;IAiDI;QACI,IAAI,SAAS,EAAE,EAAE;;gBACT,IAAI,GAAG,2DAA2D;gBACtE,2DAA2D;gBAC3D,4DAA4D;gBAC5D,yDAAyD;gBACzD,8DAA8D;gBAC9D,yDAAyD;gBACzD,yDAAyD;gBACzD,2DAA2D;gBAC3D,yDAAyD;gBACzD,+DAA+D;YAC/D,OAAO,CAAC,GAAG,CAAC,IAAI,EAAE,eAAe,CAAC,CAAC;SACtC;KACJ;;;;;;;IAxDD,sBAAK;;;;;;IAAL,UAAM,OAAe,EAAE,OAAY,EAAE,MAAY;QAC7C,IAAI,SAAS,EAAE,EAAE;;gBACP,QAAQ,GAAG,IAAI,CAAC,kBAAkB,CAAE,OAAO,EAAE,OAAO,CAAC;YAC3D,OAAO,CAAC,GAAG,CAAC,QAAM,IAAI,IAAI,EAAE,CAAC,cAAc,EAAE,aAAQ,OAAO,CAAC,WAAW,CAAC,IAAI,aAAO,WAAW,GAAG,OAAO,IAAI,EAAE,SAAK,EACnH,eAAe,EACf,eAAe,EACf,eAAe,EACf,eAAe,EACf,MAAM,IAAI,EAAE,CAAC,CAAC;SAClB;KACJ;;;;;;;IAED,sBAAK;;;;;;IAAL,UAAM,OAAe,EAAE,OAAY,EAAE,MAAY;QAC7C,IAAI,SAAS,EAAE,EAAE;;gBACP,QAAQ,GAAG,IAAI,CAAC,kBAAkB,CAAC,OAAO,EAAE,OAAO,CAAC;YAC1D,OAAO,CAAC,KAAK,CAAC,WAAW,GAAG,QAAQ,EAAE,MAAM,IAAI,EAAE,CAAC,CAAC;SACvD;KACJ;;;;;;;IAED,qBAAI;;;;;;IAAJ,UAAK,OAAe,EAAE,OAAY,EAAE,MAAY;QAC5C,IAAI,SAAS,EAAE,EAAE;;gBACP,QAAQ,GAAG,IAAI,CAAC,kBAAkB,CAAE,OAAO,EAAE,OAAO,CAAC;YAC3D,OAAO,CAAC,IAAI,CAAC,WAAW,GAAG,QAAQ,EAAE,MAAM,IAAI,EAAE,CAAC,CAAC;SACtD;KACJ;;;;;;;IAED,qBAAI;;;;;;IAAJ,UAAK,OAAe,EAAE,OAAY,EAAE,MAAY;QAC5C,IAAI,SAAS,EAAE,EAAE;;gBACP,QAAQ,GAAG,IAAI,CAAC,kBAAkB,CAAC,OAAO,EAAE,OAAO,CAAC;YAC1D,OAAO,CAAC,GAAG,CAAC,QAAM,IAAI,IAAI,EAAE,CAAC,cAAc,EAAE,aAAQ,OAAO,CAAC,WAAW,CAAC,IAAI,aAAO,WAAW,GAAG,OAAO,IAAI,EAAE,SAAK,EACnH,eAAe,EACf,eAAe,EACf,eAAe,EACf,eAAe,EACf,MAAM,IAAI,EAAE,CAAC,CAAC;SAClB;KACJ;;;;;;IAED,mCAAkB;;;;;IAAlB,UAAmB,OAAO,EAAG,OAAY;QACrC,OAAO,MAAI,IAAI,IAAI,EAAE,CAAC,cAAc,EAAE,WAAM,OAAO,CAAC,WAAW,CAAC,IAAI,WAAK,WAAW,GAAG,OAAO,IAAI,EAAE,OAAG,CAAC;KAC3G;;gBA7CJ,UAAU,SAAC;oBACR,UAAU,EAAE,MAAM;iBACrB;;;;;iBAJD;CAEA;;;;;;;ACFA;AAMA,IAAa,8BAA8B,GAAG,IAAI,cAAc,CAAS,yBAAyB,CAAC;AAEnG;IAWI,sBAAmB,QAAkB;QAAlB,aAAQ,GAAR,QAAQ,CAAU;QAH3B,kBAAa,GAAiB,IAAI,YAAY,EAAE,CAAC;QAIvD,IAAI,CAAC,uBAAuB,GAAG,QAAQ,CAAC,GAAG,CAAC,8BAA8B,CAAC,CAAC;QAC5E,IAAI,CAAC,MAAM,GAAG,QAAQ,CAAC,GAAG,oBAAS,MAAM,GAAiB,CAAC;QAC3D,IAAI,CAAC,KAAK,GAAG,QAAQ,CAAC,GAAG,oBAAiB,cAAc,GAAyB,CAAC;QAClF,IAAI,CAAC,MAAM,GAAG,QAAQ,CAAC,GAAG,oBAAS,MAAM,GAAiB,CAAC;QAC3D,IAAI,CAAC,cAAc,GAAG,QAAQ,CAAC,GAAG,oBAAoB,iBAAiB,GAA4B,CAAC;KACvG;;;;IAED,+BAAQ;;;IAAR;QACI,IAAI,IAAI,CAAC,uBAAuB,EAAE;YAC9B,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;SACzB;KACJ;;;;IAED,kCAAW;;;IAAX;QACI,IAAI,IAAI,CAAC,uBAAuB,EAAE;YAC9B,IAAI,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;SAC5B;QACD,IAAI,CAAC,aAAa,CAAC,WAAW,EAAE,CAAC;KACpC;;;;IAED,sCAAe;;;IAAf;QACI,IAAI,IAAI,CAAC,uBAAuB,EAAE;YAC9B,IAAI,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC;SAChC;KACJ;;;;;IAED,kCAAW;;;;IAAX,UAAY,OAA8C;KACzD;;;;IAED,yCAAkB;;;IAAlB;QACI,IAAI,IAAI,CAAC,uBAAuB,EAAE;YAC9B,IAAI,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC;SACnC;KACJ;;;;;;IAED,4BAAK;;;;;IAAL,UAAM,OAAe,EAAE,MAAY;QAC/B,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,OAAO,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC;KAC5C;;;;;;IAED,2BAAI;;;;;IAAJ,UAAK,OAAe,EAAE,MAAY;QAC9B,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC;KAC3C;;;;;;IAED,2BAAI;;;;;IAAJ,UAAK,OAAe,EAAE,MAAY;QAC9B,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC;KAC3C;;;;;;IAED,4BAAK;;;;;IAAL,UAAM,OAAe,EAAE,MAAY;QAC/B,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,OAAO,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC;KAC5C;;gBA7DJ,SAAS,SAAC;oBACP,QAAQ,EAAE,EAAE;iBACf;;;;gBARuE,QAAQ;;IAoEhF,mBAAC;CA9DD,IA8DC;;;;;;IA1DG,8BAAuB;;IACvB,6BAAsB;;IACtB,8BAAe;;;;;IACf,sCAA4C;;;;;IAC5C,qCAA2D;;;;;IAC3D,+CAAwC;;IAE5B,gCAAyB;;;;;;;;ACnBzC;IAGA;KASiC;;gBAThC,QAAQ,SAAC;oBACR,YAAY,EAAE,CAAC,YAAY,CAAC;oBAC5B,OAAO,EAAE,EACR;oBACD,OAAO,EAAE,CAAC,YAAY,CAAC;oBACvB,SAAS,EAAE;wBACT,EAAE,OAAO,EAAE,8BAA8B,EAAE,QAAQ,EAAE,CAAC,EAAE;qBACzD;iBACF;;IAC+B,uBAAC;CATjC;;;;;;;;;;;;;;;;"}
@@ -1 +0,0 @@
1
- {"__symbolic":"module","version":4,"metadata":{"COMPONENT_LIFECYCLE_DEBUG_MODE":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":6,"character":50},"arguments":["debugComponentLifecycle"]},"OdeComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":8,"character":1},"arguments":[{"template":""}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"Injector","line":19,"character":33}]}],"ngOnInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnChanges":[{"__symbolic":"method"}],"ngAfterContentInit":[{"__symbolic":"method"}],"debug":[{"__symbolic":"method"}],"info":[{"__symbolic":"method"}],"warn":[{"__symbolic":"method"}],"error":[{"__symbolic":"method"}]}},"Logger":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":2,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"debug":[{"__symbolic":"method"}],"error":[{"__symbolic":"method"}],"warn":[{"__symbolic":"method"}],"info":[{"__symbolic":"method"}],"createLogStatement":[{"__symbolic":"method"}],"__ctor__":[{"__symbolic":"constructor"}]},"statics":{"ngInjectableDef":{}}},"NgxOdeCoreModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":3,"character":1},"arguments":[{"declarations":[{"__symbolic":"reference","name":"OdeComponent"}],"imports":[],"exports":[{"__symbolic":"reference","name":"OdeComponent"}],"providers":[{"provide":{"__symbolic":"reference","name":"COMPONENT_LIFECYCLE_DEBUG_MODE"},"useValue":1}]}]}],"members":{}}},"origins":{"COMPONENT_LIFECYCLE_DEBUG_MODE":"./lib/component/ode.component","OdeComponent":"./lib/component/ode.component","Logger":"./lib/utils/Logger","NgxOdeCoreModule":"./lib/ngx-ode-core.module"},"importAs":"ngx-ode-core"}