diff --git a/packages/cubejs-client-ngx/dist/cubejs-client-ngx.umd.js b/packages/cubejs-client-ngx/dist/cubejs-client-ngx.umd.js index 4403b71d29bff..a82bbf05b80a1 100644 --- a/packages/cubejs-client-ngx/dist/cubejs-client-ngx.umd.js +++ b/packages/cubejs-client-ngx/dist/cubejs-client-ngx.umd.js @@ -43,7 +43,7 @@ return store[key] || (store[key] = value !== undefined ? value : {}); })('versions', []).push({ version: _core.version, - mode: _library ? 'pure' : 'global', + mode: 'global', copyright: '© 2019 Denis Pushkarev (zloirock.ru)' }); }); @@ -614,7 +614,7 @@ var defineProperty = _objectDp.f; var _wksDefine = function (name) { - var $Symbol = _core.Symbol || (_core.Symbol = _library ? {} : _global.Symbol || {}); + var $Symbol = _core.Symbol || (_core.Symbol = _global.Symbol || {}); if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty($Symbol, name, { value: _wksExt.f(name) }); }; @@ -3950,7 +3950,7 @@ function getPromiseCtor(promiseCtor) { if (!promiseCtor) { - promiseCtor = Promise; + promiseCtor = config.Promise || Promise; } if (!promiseCtor) { @@ -10794,7 +10794,7 @@ * * Use an `InjectionToken` whenever the type you are injecting is not reified (does not have a * runtime representation) such as when injecting an interface, callable type, array or - * parametrized type. + * parameterized type. * * `InjectionToken` is parameterized on `T` which is the type of object which will be returned by * the `Injector`. This provides additional level of type safety. @@ -10851,15 +10851,16 @@ * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ /** - * This token can be used to create a virtual provider that will populate the - * `entryComponents` fields of components and ng modules based on its `useValue`. + * A DI token that you can use to create a virtual [provider](guide/glossary#provider) + * that will populate the `entryComponents` field of components and NgModules + * based on its `useValue` property value. * All components that are referenced in the `useValue` value (either directly - * or in a nested array or map) will be added to the `entryComponents` property. + * or in a nested array or map) are added to the `entryComponents` property. * * @usageNotes - * ### Example + * * The following example shows how the router can populate the `entryComponents` - * field of an NgModule based on the router configuration which refers + * field of an NgModule based on a router configuration that refers * to components. * * ```typescript @@ -10936,6 +10937,7 @@ * Use the `CheckOnce` strategy, meaning that automatic change detection is deactivated * until reactivated by setting the strategy to `Default` (`CheckAlways`). * Change detection can still be explicitly invoked. + * This strategy applies to all child directives and cannot be overridden. */ChangeDetectionStrategy[ChangeDetectionStrategy["OnPush"]=0]="OnPush";/** * Use the default `CheckAlways` strategy, in which change detection is automatic until * explicitly deactivated. @@ -12679,7 +12681,7 @@ * @publicApi */var Version=/** @class */function(){function Version(full){this.full=full;this.major=full.split('.')[0];this.minor=full.split('.')[1];this.patch=full.split('.').slice(2).join('.');}return Version;}();/** * @publicApi - */var VERSION=new Version('7.2.0');/** + */var VERSION=new Version('7.2.14');/** * @license * Copyright Google Inc. All Rights Reserved. * @@ -12762,7 +12764,12 @@ // NB: Sanitization does not allow
elements or other active elements (