@mescius/wijmo.angular2legacy.core 5.20261.45-nightly.d20251218.t163151 → 5.20261.45-nightly.d20260105.t163143
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/es2015-commonjs.js +2 -2
- package/es2015-esm.js +2 -2
- package/es5-esm.js +2 -2
- package/index.d.ts +47 -47
- package/index.js +2 -2
- package/index.metadata.json +1 -1
- package/package.json +3 -3
package/es2015-commonjs.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* Wijmo Library 5.20261.45-nightly.
|
|
3
|
+
* Wijmo Library 5.20261.45-nightly.d20260105.t163143
|
|
4
4
|
* https://developer.mescius.com/wijmo
|
|
5
5
|
*
|
|
6
6
|
* Copyright(c) MESCIUS inc. All rights reserved.
|
|
@@ -11,4 +11,4 @@
|
|
|
11
11
|
*
|
|
12
12
|
*/
|
|
13
13
|
|
|
14
|
-
"use strict";var WjTooltip_1,__decorate=this&&this.__decorate||function(
|
|
14
|
+
"use strict";var WjTooltip_1,__decorate=this&&this.__decorate||function(o,t,e,i){var r,n=arguments.length,p=n<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,e):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)p=Reflect.decorate(o,t,e,i);else for(var s=o.length-1;s>=0;s--)(r=o[s])&&(p=(n<3?r(p):n>3?r(t,e,p):r(t,e))||p);return n>3&&p&&Object.defineProperty(t,e,p),p},__param=this&&this.__param||function(o,t){return function(e,i){t(e,i,o)}},__importStar=this&&this.__importStar||function(o){if(o&&o.__esModule)return o;var t={};if(null!=o)for(var e in o)Object.hasOwnProperty.call(o,e)&&(t[e]=o[e]);t.default=o;return t};Object.defineProperty(exports,"__esModule",{value:!0});const core_1=require("@angular/core"),common_1=require("@angular/common"),wijmo.angular2legacy_directivebase_1=require("@mescius/wijmo.angular2legacy.directivebase"),ngCore=__importStar(require("@angular/core")),wjcCore=__importStar(require("@mescius/wijmo"));var wjTooltipMeta={selector:"[wjTooltip]",inputs:[],outputs:["initialized"],exportAs:"wjTooltip",providers:[]};exports.wjTooltipMeta=wjTooltipMeta;let WjTooltip=WjTooltip_1=class WjTooltip{constructor(o,t,e){this.isInitialized=!1;this._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(this,o,t,e);this._elRef=o;WjTooltip_1._toolTip||(WjTooltip_1._toolTip=new wjcCore.Tooltip);this.created()}created(){}ngOnInit(){this._wjBehaviour.ngOnInit()}ngAfterViewInit(){this._wjBehaviour.ngAfterViewInit()}ngOnDestroy(){this._wjBehaviour.ngOnDestroy();this.wjTooltip=null}get wjTooltip(){return this._toolTipText}set wjTooltip(o){if(this._toolTipText!=o){this._toolTipText=o;WjTooltip_1._toolTip.setTooltip(this._elRef.nativeElement,o,this._toolTipPosition)}}get wjTooltipPosition(){return this._toolTipPosition}set wjTooltipPosition(o){if(this._toolTipText){const t=wjcCore.asEnum(o,wjcCore.PopupPosition);if(this._toolTipPosition!=t){this._toolTipPosition=t;WjTooltip_1._toolTip.setTooltip(this._elRef.nativeElement,this._toolTipText,t)}}}};WjTooltip.meta={outputs:wjTooltipMeta.outputs};__decorate([core_1.Input()],WjTooltip.prototype,"wjTooltip",null);__decorate([core_1.Input()],WjTooltip.prototype,"wjTooltipPosition",null);WjTooltip=WjTooltip_1=__decorate([core_1.Directive({selector:wjTooltipMeta.selector,inputs:wjTooltipMeta.inputs,outputs:wjTooltipMeta.outputs,exportAs:wjTooltipMeta.exportAs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef(()=>WjTooltip_1)},...wjTooltipMeta.providers]}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjTooltip);exports.WjTooltip=WjTooltip;let WjComponentLoader=class WjComponentLoader{constructor(o,t){this._cmpResolver=o;this._elementRef=t;this._isInit=!1;this.propertiesChange=new ngCore.EventEmitter}get component(){return this._component}set component(o){if(this._component!==o){this._component=o;this._createComponent()}}get properties(){return this._properties}set properties(o){this._properties=o;this._updateProperties()}ngOnInit(){this._isInit=!0;this._createComponent()}_createComponent(){if(this._isInit){if(this._cmpRef){this._cmpRef.destroy();this._cmpRef=null}const o=this._component;if(o&&this._anchor){this._cmpRef=this._anchor.createComponent(this._cmpResolver.resolveComponentFactory(o));this._updateProperties()}}}_updateProperties(){const o=this._cmpRef&&this._cmpRef.instance,t=this.properties;if(o&&t){const e=Object.getOwnPropertyNames(t);for(const i of e){o[i]=t[i];const e=o[i+"Change"];e instanceof core_1.EventEmitter&&this._addPropListener(o,i,e)}}}_addPropListener(o,t,e){e.subscribe(()=>{this.properties[t]=this.properties[t]=o[t];this.propertiesChange.next(this.properties)})}};__decorate([core_1.ViewChild("anchor",{read:core_1.ViewContainerRef,static:!0})],WjComponentLoader.prototype,"_anchor",void 0);WjComponentLoader=__decorate([core_1.Component({selector:"wj-component-loader",template:"<div #anchor></div>",inputs:["component","properties"],outputs:["propertiesChange"]}),__param(0,core_1.Inject(core_1.ComponentFactoryResolver)),__param(1,core_1.Inject(core_1.ElementRef))],WjComponentLoader);exports.WjComponentLoader=WjComponentLoader;const moduleExports=[WjTooltip,WjComponentLoader];let WjCoreModule=class WjCoreModule{};WjCoreModule=__decorate([core_1.NgModule({imports:[common_1.CommonModule],declarations:[...moduleExports],exports:[...moduleExports]})],WjCoreModule);exports.WjCoreModule=WjCoreModule;
|
package/es2015-esm.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* Wijmo Library 5.20261.45-nightly.
|
|
3
|
+
* Wijmo Library 5.20261.45-nightly.d20260105.t163143
|
|
4
4
|
* https://developer.mescius.com/wijmo
|
|
5
5
|
*
|
|
6
6
|
* Copyright(c) MESCIUS inc. All rights reserved.
|
|
@@ -11,4 +11,4 @@
|
|
|
11
11
|
*
|
|
12
12
|
*/
|
|
13
13
|
|
|
14
|
-
var WjTooltip_1,__decorate=this&&this.__decorate||function(t,o,e,i){var r,p=arguments.length,n=p<3?o:null===i?i=Object.getOwnPropertyDescriptor(o,e):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(t,o,e,i);else for(var s=t.length-1;s>=0;s--)(r=t[s])&&(n=(p<3?r(n):p>3?r(o,e,n):r(o,e))||n);return p>3&&n&&Object.defineProperty(o,e,n),n},__param=this&&this.__param||function(t,o){return function(e,i){o(e,i,t)}};import{Component,EventEmitter,NgModule,ViewChild,ComponentFactoryResolver,ElementRef,Injector,Directive,ViewContainerRef,Optional,forwardRef,Input,Inject,SkipSelf}from"@angular/core";import{CommonModule}from"@angular/common";import{WjDirectiveBehavior}from"@mescius/wijmo.angular2legacy.directivebase";import*as ngCore from"@angular/core";import*as wjcCore from"@mescius/wijmo";var wjTooltipMeta={selector:"[wjTooltip]",inputs:[],outputs:["initialized"],exportAs:"wjTooltip",providers:[]};export{wjTooltipMeta};let WjTooltip=WjTooltip_1=class WjTooltip{constructor(t,o,e){this.isInitialized=!1;this._wjBehaviour=WjDirectiveBehavior.attach(this,t,o,e);this._elRef=t;WjTooltip_1._toolTip||(WjTooltip_1._toolTip=new wjcCore.Tooltip);this.created()}created(){}ngOnInit(){this._wjBehaviour.ngOnInit()}ngAfterViewInit(){this._wjBehaviour.ngAfterViewInit()}ngOnDestroy(){this._wjBehaviour.ngOnDestroy();this.wjTooltip=null}get wjTooltip(){return this._toolTipText}set wjTooltip(t){if(this._toolTipText!=t){this._toolTipText=t;WjTooltip_1._toolTip.setTooltip(this._elRef.nativeElement,t,this._toolTipPosition)}}get wjTooltipPosition(){return this._toolTipPosition}set wjTooltipPosition(t){if(this._toolTipText){const o=wjcCore.asEnum(t,wjcCore.PopupPosition);if(this._toolTipPosition!=o){this._toolTipPosition=o;WjTooltip_1._toolTip.setTooltip(this._elRef.nativeElement,this._toolTipText,o)}}}};WjTooltip.meta={outputs:wjTooltipMeta.outputs};__decorate([Input()],WjTooltip.prototype,"wjTooltip",null);__decorate([Input()],WjTooltip.prototype,"wjTooltipPosition",null);WjTooltip=WjTooltip_1=__decorate([Directive({selector:wjTooltipMeta.selector,inputs:wjTooltipMeta.inputs,outputs:wjTooltipMeta.outputs,exportAs:wjTooltipMeta.exportAs,providers:[{provide:"WjComponent",useExisting:forwardRef(()=>WjTooltip_1)},...wjTooltipMeta.providers]}),__param(0,Inject(ElementRef)),__param(1,Inject(Injector)),__param(2,Inject("WjComponent")),__param(2,SkipSelf()),__param(2,Optional())],WjTooltip);export{WjTooltip};let WjComponentLoader=class WjComponentLoader{constructor(t,o){this._cmpResolver=t;this._elementRef=o;this._isInit=!1;this.propertiesChange=new ngCore.EventEmitter}get component(){return this._component}set component(t){if(this._component!==t){this._component=t;this._createComponent()}}get properties(){return this._properties}set properties(t){this._properties=t;this._updateProperties()}ngOnInit(){this._isInit=!0;this._createComponent()}_createComponent(){if(this._isInit){if(this._cmpRef){this._cmpRef.destroy();this._cmpRef=null}
|
|
14
|
+
var WjTooltip_1,__decorate=this&&this.__decorate||function(t,o,e,i){var r,p=arguments.length,n=p<3?o:null===i?i=Object.getOwnPropertyDescriptor(o,e):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(t,o,e,i);else for(var s=t.length-1;s>=0;s--)(r=t[s])&&(n=(p<3?r(n):p>3?r(o,e,n):r(o,e))||n);return p>3&&n&&Object.defineProperty(o,e,n),n},__param=this&&this.__param||function(t,o){return function(e,i){o(e,i,t)}};import{Component,EventEmitter,NgModule,ViewChild,ComponentFactoryResolver,ElementRef,Injector,Directive,ViewContainerRef,Optional,forwardRef,Input,Inject,SkipSelf}from"@angular/core";import{CommonModule}from"@angular/common";import{WjDirectiveBehavior}from"@mescius/wijmo.angular2legacy.directivebase";import*as ngCore from"@angular/core";import*as wjcCore from"@mescius/wijmo";var wjTooltipMeta={selector:"[wjTooltip]",inputs:[],outputs:["initialized"],exportAs:"wjTooltip",providers:[]};export{wjTooltipMeta};let WjTooltip=WjTooltip_1=class WjTooltip{constructor(t,o,e){this.isInitialized=!1;this._wjBehaviour=WjDirectiveBehavior.attach(this,t,o,e);this._elRef=t;WjTooltip_1._toolTip||(WjTooltip_1._toolTip=new wjcCore.Tooltip);this.created()}created(){}ngOnInit(){this._wjBehaviour.ngOnInit()}ngAfterViewInit(){this._wjBehaviour.ngAfterViewInit()}ngOnDestroy(){this._wjBehaviour.ngOnDestroy();this.wjTooltip=null}get wjTooltip(){return this._toolTipText}set wjTooltip(t){if(this._toolTipText!=t){this._toolTipText=t;WjTooltip_1._toolTip.setTooltip(this._elRef.nativeElement,t,this._toolTipPosition)}}get wjTooltipPosition(){return this._toolTipPosition}set wjTooltipPosition(t){if(this._toolTipText){const o=wjcCore.asEnum(t,wjcCore.PopupPosition);if(this._toolTipPosition!=o){this._toolTipPosition=o;WjTooltip_1._toolTip.setTooltip(this._elRef.nativeElement,this._toolTipText,o)}}}};WjTooltip.meta={outputs:wjTooltipMeta.outputs};__decorate([Input()],WjTooltip.prototype,"wjTooltip",null);__decorate([Input()],WjTooltip.prototype,"wjTooltipPosition",null);WjTooltip=WjTooltip_1=__decorate([Directive({selector:wjTooltipMeta.selector,inputs:wjTooltipMeta.inputs,outputs:wjTooltipMeta.outputs,exportAs:wjTooltipMeta.exportAs,providers:[{provide:"WjComponent",useExisting:forwardRef(()=>WjTooltip_1)},...wjTooltipMeta.providers]}),__param(0,Inject(ElementRef)),__param(1,Inject(Injector)),__param(2,Inject("WjComponent")),__param(2,SkipSelf()),__param(2,Optional())],WjTooltip);export{WjTooltip};let WjComponentLoader=class WjComponentLoader{constructor(t,o){this._cmpResolver=t;this._elementRef=o;this._isInit=!1;this.propertiesChange=new ngCore.EventEmitter}get component(){return this._component}set component(t){if(this._component!==t){this._component=t;this._createComponent()}}get properties(){return this._properties}set properties(t){this._properties=t;this._updateProperties()}ngOnInit(){this._isInit=!0;this._createComponent()}_createComponent(){if(this._isInit){if(this._cmpRef){this._cmpRef.destroy();this._cmpRef=null}const t=this._component;if(t&&this._anchor){this._cmpRef=this._anchor.createComponent(this._cmpResolver.resolveComponentFactory(t));this._updateProperties()}}}_updateProperties(){const t=this._cmpRef&&this._cmpRef.instance,o=this.properties;if(t&&o){const e=Object.getOwnPropertyNames(o);for(const i of e){t[i]=o[i];const e=t[i+"Change"];e instanceof EventEmitter&&this._addPropListener(t,i,e)}}}_addPropListener(t,o,e){e.subscribe(()=>{this.properties[o]=this.properties[o]=t[o];this.propertiesChange.next(this.properties)})}};__decorate([ViewChild("anchor",{read:ViewContainerRef,static:!0})],WjComponentLoader.prototype,"_anchor",void 0);WjComponentLoader=__decorate([Component({selector:"wj-component-loader",template:"<div #anchor></div>",inputs:["component","properties"],outputs:["propertiesChange"]}),__param(0,Inject(ComponentFactoryResolver)),__param(1,Inject(ElementRef))],WjComponentLoader);export{WjComponentLoader};const moduleExports=[WjTooltip,WjComponentLoader];let WjCoreModule=class WjCoreModule{};WjCoreModule=__decorate([NgModule({imports:[CommonModule],declarations:[...moduleExports],exports:[...moduleExports]})],WjCoreModule);export{WjCoreModule};
|
package/es5-esm.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* Wijmo Library 5.20261.45-nightly.
|
|
3
|
+
* Wijmo Library 5.20261.45-nightly.d20260105.t163143
|
|
4
4
|
* https://developer.mescius.com/wijmo
|
|
5
5
|
*
|
|
6
6
|
* Copyright(c) MESCIUS inc. All rights reserved.
|
|
@@ -11,4 +11,4 @@
|
|
|
11
11
|
*
|
|
12
12
|
*/
|
|
13
13
|
|
|
14
|
-
var __decorate=this&&this.__decorate||function(t,o,e,i){var n,r=arguments.length,p=r<3?o:null===i?i=Object.getOwnPropertyDescriptor(o,e):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)p=Reflect.decorate(t,o,e,i);else for(var s=t.length-1;s>=0;s--)(n=t[s])&&(p=(r<3?n(p):r>3?n(o,e,p):n(o,e))||p);return r>3&&p&&Object.defineProperty(o,e,p),p},__param=this&&this.__param||function(t,o){return function(e,i){o(e,i,t)}};import{Component,EventEmitter,NgModule,ViewChild,ComponentFactoryResolver,ElementRef,Injector,Directive,ViewContainerRef,Optional,forwardRef,Input,Inject,SkipSelf}from"@angular/core";import{CommonModule}from"@angular/common";import{WjDirectiveBehavior}from"@mescius/wijmo.angular2legacy.directivebase";import*as ngCore from"@angular/core";import*as wjcCore from"@mescius/wijmo";var wjTooltipMeta={selector:"[wjTooltip]",inputs:[],outputs:["initialized"],exportAs:"wjTooltip",providers:[]};export{wjTooltipMeta};var WjTooltip=function(){function WjTooltip(o,e,i){this.isInitialized=!1;this._wjBehaviour=WjDirectiveBehavior.attach(this,o,e,i);this._elRef=o;t._toolTip||(t._toolTip=new wjcCore.Tooltip);this.created()}t=WjTooltip;WjTooltip.prototype.created=function(){};WjTooltip.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjTooltip.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjTooltip.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy();this.wjTooltip=null};Object.defineProperty(WjTooltip.prototype,"wjTooltip",{get:function(){return this._toolTipText},set:function(o){if(this._toolTipText!=o){this._toolTipText=o;t._toolTip.setTooltip(this._elRef.nativeElement,o,this._toolTipPosition)}},enumerable:!0,configurable:!0});Object.defineProperty(WjTooltip.prototype,"wjTooltipPosition",{get:function(){return this._toolTipPosition},set:function(o){if(this._toolTipText){var e=wjcCore.asEnum(o,wjcCore.PopupPosition);if(this._toolTipPosition!=e){this._toolTipPosition=e;t._toolTip.setTooltip(this._elRef.nativeElement,this._toolTipText,e)}}},enumerable:!0,configurable:!0});var t;WjTooltip.meta={outputs:wjTooltipMeta.outputs};__decorate([Input()],WjTooltip.prototype,"wjTooltip",null);__decorate([Input()],WjTooltip.prototype,"wjTooltipPosition",null);return WjTooltip=t=__decorate([Directive({selector:wjTooltipMeta.selector,inputs:wjTooltipMeta.inputs,outputs:wjTooltipMeta.outputs,exportAs:wjTooltipMeta.exportAs,providers:[{provide:"WjComponent",useExisting:forwardRef((function(){return t}))}].concat(wjTooltipMeta.providers)}),__param(0,Inject(ElementRef)),__param(1,Inject(Injector)),__param(2,Inject("WjComponent")),__param(2,SkipSelf()),__param(2,Optional())],WjTooltip)}();export{WjTooltip};var WjComponentLoader=function(){function WjComponentLoader(t,o){this._cmpResolver=t;this._elementRef=o;this._isInit=!1;this.propertiesChange=new ngCore.EventEmitter}Object.defineProperty(WjComponentLoader.prototype,"component",{get:function(){return this._component},set:function(t){if(this._component!==t){this._component=t;this._createComponent()}},enumerable:!0,configurable:!0});Object.defineProperty(WjComponentLoader.prototype,"properties",{get:function(){return this._properties},set:function(t){this._properties=t;this._updateProperties()},enumerable:!0,configurable:!0});WjComponentLoader.prototype.ngOnInit=function(){this._isInit=!0;this._createComponent()};WjComponentLoader.prototype._createComponent=function(){if(this._isInit){if(this._cmpRef){this._cmpRef.destroy();this._cmpRef=null}var t=this._component;if(t&&this._anchor){this._cmpRef=this._anchor.createComponent(this._cmpResolver.resolveComponentFactory(t));this._updateProperties()}}};WjComponentLoader.prototype._updateProperties=function(){var t=this._cmpRef&&this._cmpRef.instance,o=this.properties;if(t&&o)for(var e=0,i=Object.getOwnPropertyNames(o);e<i.length;e++){var n=i[e];t[n]=o[n];var r=t[n+"Change"];r instanceof EventEmitter&&this._addPropListener(t,n,r)}};WjComponentLoader.prototype._addPropListener=function(t,o,e){var i=this;e.subscribe((function(
|
|
14
|
+
var __decorate=this&&this.__decorate||function(t,o,e,i){var n,r=arguments.length,p=r<3?o:null===i?i=Object.getOwnPropertyDescriptor(o,e):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)p=Reflect.decorate(t,o,e,i);else for(var s=t.length-1;s>=0;s--)(n=t[s])&&(p=(r<3?n(p):r>3?n(o,e,p):n(o,e))||p);return r>3&&p&&Object.defineProperty(o,e,p),p},__param=this&&this.__param||function(t,o){return function(e,i){o(e,i,t)}};import{Component,EventEmitter,NgModule,ViewChild,ComponentFactoryResolver,ElementRef,Injector,Directive,ViewContainerRef,Optional,forwardRef,Input,Inject,SkipSelf}from"@angular/core";import{CommonModule}from"@angular/common";import{WjDirectiveBehavior}from"@mescius/wijmo.angular2legacy.directivebase";import*as ngCore from"@angular/core";import*as wjcCore from"@mescius/wijmo";var wjTooltipMeta={selector:"[wjTooltip]",inputs:[],outputs:["initialized"],exportAs:"wjTooltip",providers:[]};export{wjTooltipMeta};var WjTooltip=function(){function WjTooltip(o,e,i){this.isInitialized=!1;this._wjBehaviour=WjDirectiveBehavior.attach(this,o,e,i);this._elRef=o;t._toolTip||(t._toolTip=new wjcCore.Tooltip);this.created()}t=WjTooltip;WjTooltip.prototype.created=function(){};WjTooltip.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjTooltip.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjTooltip.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy();this.wjTooltip=null};Object.defineProperty(WjTooltip.prototype,"wjTooltip",{get:function(){return this._toolTipText},set:function(o){if(this._toolTipText!=o){this._toolTipText=o;t._toolTip.setTooltip(this._elRef.nativeElement,o,this._toolTipPosition)}},enumerable:!0,configurable:!0});Object.defineProperty(WjTooltip.prototype,"wjTooltipPosition",{get:function(){return this._toolTipPosition},set:function(o){if(this._toolTipText){var e=wjcCore.asEnum(o,wjcCore.PopupPosition);if(this._toolTipPosition!=e){this._toolTipPosition=e;t._toolTip.setTooltip(this._elRef.nativeElement,this._toolTipText,e)}}},enumerable:!0,configurable:!0});var t;WjTooltip.meta={outputs:wjTooltipMeta.outputs};__decorate([Input()],WjTooltip.prototype,"wjTooltip",null);__decorate([Input()],WjTooltip.prototype,"wjTooltipPosition",null);return WjTooltip=t=__decorate([Directive({selector:wjTooltipMeta.selector,inputs:wjTooltipMeta.inputs,outputs:wjTooltipMeta.outputs,exportAs:wjTooltipMeta.exportAs,providers:[{provide:"WjComponent",useExisting:forwardRef((function(){return t}))}].concat(wjTooltipMeta.providers)}),__param(0,Inject(ElementRef)),__param(1,Inject(Injector)),__param(2,Inject("WjComponent")),__param(2,SkipSelf()),__param(2,Optional())],WjTooltip)}();export{WjTooltip};var WjComponentLoader=function(){function WjComponentLoader(t,o){this._cmpResolver=t;this._elementRef=o;this._isInit=!1;this.propertiesChange=new ngCore.EventEmitter}Object.defineProperty(WjComponentLoader.prototype,"component",{get:function(){return this._component},set:function(t){if(this._component!==t){this._component=t;this._createComponent()}},enumerable:!0,configurable:!0});Object.defineProperty(WjComponentLoader.prototype,"properties",{get:function(){return this._properties},set:function(t){this._properties=t;this._updateProperties()},enumerable:!0,configurable:!0});WjComponentLoader.prototype.ngOnInit=function(){this._isInit=!0;this._createComponent()};WjComponentLoader.prototype._createComponent=function(){if(this._isInit){if(this._cmpRef){this._cmpRef.destroy();this._cmpRef=null}var t=this._component;if(t&&this._anchor){this._cmpRef=this._anchor.createComponent(this._cmpResolver.resolveComponentFactory(t));this._updateProperties()}}};WjComponentLoader.prototype._updateProperties=function(){var t=this._cmpRef&&this._cmpRef.instance,o=this.properties;if(t&&o)for(var e=0,i=Object.getOwnPropertyNames(o);e<i.length;e++){var n=i[e];t[n]=o[n];var r=t[n+"Change"];r instanceof EventEmitter&&this._addPropListener(t,n,r)}};WjComponentLoader.prototype._addPropListener=function(t,o,e){var i=this;e.subscribe((function(){i.properties[o]=i.properties[o]=t[o];i.propertiesChange.next(i.properties)}))};__decorate([ViewChild("anchor",{read:ViewContainerRef,static:!0})],WjComponentLoader.prototype,"_anchor",void 0);return WjComponentLoader=__decorate([Component({selector:"wj-component-loader",template:"<div #anchor></div>",inputs:["component","properties"],outputs:["propertiesChange"]}),__param(0,Inject(ComponentFactoryResolver)),__param(1,Inject(ElementRef))],WjComponentLoader)}();export{WjComponentLoader};var moduleExports=[WjTooltip,WjComponentLoader],WjCoreModule=function(){function WjCoreModule(){}return WjCoreModule=__decorate([NgModule({imports:[CommonModule],declarations:moduleExports.slice(),exports:moduleExports.slice()})],WjCoreModule)}();export{WjCoreModule};
|
package/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* Wijmo Library 5.20261.45-nightly.
|
|
3
|
+
* Wijmo Library 5.20261.45-nightly.d20260105.t163143
|
|
4
4
|
* https://developer.mescius.com/wijmo
|
|
5
5
|
*
|
|
6
6
|
* Copyright(c) MESCIUS inc. All rights reserved.
|
|
@@ -11,23 +11,23 @@
|
|
|
11
11
|
*
|
|
12
12
|
*/
|
|
13
13
|
/**
|
|
14
|
-
* {@module wijmo.angular2legacy.core}
|
|
15
|
-
* Contains Angular 2 components for the <b>wijmo</b> module.
|
|
16
|
-
*
|
|
17
|
-
* <b>wijmo.angular2legacy.core</b> is an external TypeScript module that can be imported to your code
|
|
18
|
-
* using its ambient module name. For example:
|
|
19
|
-
*
|
|
20
|
-
* <pre>import * as wjCore from 'wijmo/wijmo.angular2legacy.core';
|
|
21
|
-
*
|
|
22
|
-
* @Component({
|
|
23
|
-
* directives: [wjCore.WjTooltip],
|
|
24
|
-
* template: '<span [wjTooltip]="'Greeting'">Hello</span>',
|
|
25
|
-
* selector: 'my-cmp',
|
|
26
|
-
* })
|
|
27
|
-
* export class MyCmp {
|
|
28
|
-
* }</pre>
|
|
29
|
-
*
|
|
30
|
-
*/
|
|
14
|
+
* {@module wijmo.angular2legacy.core}
|
|
15
|
+
* Contains Angular 2 components for the <b>wijmo</b> module.
|
|
16
|
+
*
|
|
17
|
+
* <b>wijmo.angular2legacy.core</b> is an external TypeScript module that can be imported to your code
|
|
18
|
+
* using its ambient module name. For example:
|
|
19
|
+
*
|
|
20
|
+
* <pre>import * as wjCore from 'wijmo/wijmo.angular2legacy.core';
|
|
21
|
+
*
|
|
22
|
+
* @Component({
|
|
23
|
+
* directives: [wjCore.WjTooltip],
|
|
24
|
+
* template: '<span [wjTooltip]="'Greeting'">Hello</span>',
|
|
25
|
+
* selector: 'my-cmp',
|
|
26
|
+
* })
|
|
27
|
+
* export class MyCmp {
|
|
28
|
+
* }</pre>
|
|
29
|
+
*
|
|
30
|
+
*/
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
33
|
*/
|
|
@@ -38,34 +38,34 @@ import * as wjcCore from '@mescius/wijmo';
|
|
|
38
38
|
declare var wjTooltipMeta: IWjDirectiveMeta;
|
|
39
39
|
export { wjTooltipMeta };
|
|
40
40
|
/**
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
41
|
+
* Angular 2 directive for the {@link Tooltip} class.
|
|
42
|
+
*
|
|
43
|
+
* Use the **wjTooltip** directive to add tooltips to elements on the page.
|
|
44
|
+
* The wjTooltip directive supports HTML content, smart positioning, and touch.
|
|
45
|
+
*
|
|
46
|
+
* The wjTooltip directive is specified as an attribute added to the
|
|
47
|
+
* element that the tooltip applies to. The parameter value is the tooltip
|
|
48
|
+
* text or the id of an element that contains the text.
|
|
49
|
+
*
|
|
50
|
+
* You can also specify the following additional properties for the tooltip:
|
|
51
|
+
* - wjTooltipPosition - represents the {@link Tooltip.position} property.
|
|
52
|
+
* For example:
|
|
53
|
+
* ```html
|
|
54
|
+
* <p [wjTooltip]="'Just a string'">
|
|
55
|
+
* Paragraph with a string tooltip.
|
|
56
|
+
* </p>
|
|
57
|
+
* <p [wjTooltip]="'#fineprint'" [wjTooltipPosition]="'Left'">
|
|
58
|
+
* Paragraph with a tooltip defined as an element.
|
|
59
|
+
* </p>
|
|
60
|
+
* ...
|
|
61
|
+
* <div id="fineprint" style="display:none">
|
|
62
|
+
* <h3>Important Note</h3>
|
|
63
|
+
* <p>
|
|
64
|
+
* Data for the current quarter is estimated
|
|
65
|
+
* by pro-rating etc.</p>
|
|
66
|
+
* </div>
|
|
67
|
+
* ```
|
|
68
|
+
*/
|
|
69
69
|
export declare class WjTooltip implements OnInit, OnDestroy, AfterViewInit {
|
|
70
70
|
private static _toolTip;
|
|
71
71
|
private _toolTipText;
|
|
@@ -173,7 +173,7 @@ export declare class WjComponentLoader implements OnInit {
|
|
|
173
173
|
private _isInit;
|
|
174
174
|
private _anchor;
|
|
175
175
|
propertiesChange: EventEmitter<{}>;
|
|
176
|
-
constructor(
|
|
176
|
+
constructor(_cmpResolver: ComponentFactoryResolver, _elementRef: ElementRef);
|
|
177
177
|
/**
|
|
178
178
|
* Gets or sets a component class reference that should be instantiated by the
|
|
179
179
|
* <b>wj-component-loader</b> component.
|
package/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* Wijmo Library 5.20261.45-nightly.
|
|
3
|
+
* Wijmo Library 5.20261.45-nightly.d20260105.t163143
|
|
4
4
|
* https://developer.mescius.com/wijmo
|
|
5
5
|
*
|
|
6
6
|
* Copyright(c) MESCIUS inc. All rights reserved.
|
|
@@ -11,4 +11,4 @@
|
|
|
11
11
|
*
|
|
12
12
|
*/
|
|
13
13
|
|
|
14
|
-
"use strict";var __decorate=this&&this.__decorate||function(o,e,t,r){var i,n=arguments.length,p=n<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,t):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)p=Reflect.decorate(o,e,t,r);else for(var s=o.length-1;s>=0;s--)(i=o[s])&&(p=(n<3?i(p):n>3?i(e,t,p):i(e,t))||p);return n>3&&p&&Object.defineProperty(e,t,p),p},__param=this&&this.__param||function(o,e){return function(t,r){e(t,r,o)}},__importStar=this&&this.__importStar||function(o){if(o&&o.__esModule)return o;var e={};if(null!=o)for(var t in o)Object.hasOwnProperty.call(o,t)&&(e[t]=o[t]);e.default=o;return e};Object.defineProperty(exports,"__esModule",{value:!0});var core_1=require("@angular/core"),common_1=require("@angular/common"),wijmo.angular2legacy_directivebase_1=require("@mescius/wijmo.angular2legacy.directivebase"),ngCore=__importStar(require("@angular/core")),wjcCore=__importStar(require("@mescius/wijmo")),wjTooltipMeta={selector:"[wjTooltip]",inputs:[],outputs:["initialized"],exportAs:"wjTooltip",providers:[]};exports.wjTooltipMeta=wjTooltipMeta;var WjTooltip=function(){function WjTooltip(e,t,r){this.isInitialized=!1;this._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(this,e,t,r);this._elRef=e;o._toolTip||(o._toolTip=new wjcCore.Tooltip);this.created()}o=WjTooltip;WjTooltip.prototype.created=function(){};WjTooltip.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjTooltip.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjTooltip.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy();this.wjTooltip=null};Object.defineProperty(WjTooltip.prototype,"wjTooltip",{get:function(){return this._toolTipText},set:function(e){if(this._toolTipText!=e){this._toolTipText=e;o._toolTip.setTooltip(this._elRef.nativeElement,e,this._toolTipPosition)}},enumerable:!0,configurable:!0});Object.defineProperty(WjTooltip.prototype,"wjTooltipPosition",{get:function(){return this._toolTipPosition},set:function(e){if(this._toolTipText){var t=wjcCore.asEnum(e,wjcCore.PopupPosition);if(this._toolTipPosition!=t){this._toolTipPosition=t;o._toolTip.setTooltip(this._elRef.nativeElement,this._toolTipText,t)}}},enumerable:!0,configurable:!0});var o;WjTooltip.meta={outputs:wjTooltipMeta.outputs};__decorate([core_1.Input()],WjTooltip.prototype,"wjTooltip",null);__decorate([core_1.Input()],WjTooltip.prototype,"wjTooltipPosition",null);return WjTooltip=o=__decorate([core_1.Directive({selector:wjTooltipMeta.selector,inputs:wjTooltipMeta.inputs,outputs:wjTooltipMeta.outputs,exportAs:wjTooltipMeta.exportAs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return o}))}].concat(wjTooltipMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjTooltip)}();exports.WjTooltip=WjTooltip;var WjComponentLoader=function(){function WjComponentLoader(o,e){this._cmpResolver=o;this._elementRef=e;this._isInit=!1;this.propertiesChange=new ngCore.EventEmitter}Object.defineProperty(WjComponentLoader.prototype,"component",{get:function(){return this._component},set:function(o){if(this._component!==o){this._component=o;this._createComponent()}},enumerable:!0,configurable:!0});Object.defineProperty(WjComponentLoader.prototype,"properties",{get:function(){return this._properties},set:function(o){this._properties=o;this._updateProperties()},enumerable:!0,configurable:!0});WjComponentLoader.prototype.ngOnInit=function(){this._isInit=!0;this._createComponent()};WjComponentLoader.prototype._createComponent=function(){if(this._isInit){if(this._cmpRef){this._cmpRef.destroy();this._cmpRef=null}var o=this._component;if(o&&this._anchor){this._cmpRef=this._anchor.createComponent(this._cmpResolver.resolveComponentFactory(o));this._updateProperties()}}};WjComponentLoader.prototype._updateProperties=function(){var o=this._cmpRef&&this._cmpRef.instance,e=this.properties;if(o&&e)for(var t=0,r=Object.getOwnPropertyNames(e);t<r.length;t++){var i=r[t];o[i]=e[i];var n=o[i+"Change"];n instanceof core_1.EventEmitter&&this._addPropListener(o,i,n)}};WjComponentLoader.prototype._addPropListener=function(o,e,t){var r=this;t.subscribe((function(
|
|
14
|
+
"use strict";var __decorate=this&&this.__decorate||function(o,e,t,r){var i,n=arguments.length,p=n<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,t):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)p=Reflect.decorate(o,e,t,r);else for(var s=o.length-1;s>=0;s--)(i=o[s])&&(p=(n<3?i(p):n>3?i(e,t,p):i(e,t))||p);return n>3&&p&&Object.defineProperty(e,t,p),p},__param=this&&this.__param||function(o,e){return function(t,r){e(t,r,o)}},__importStar=this&&this.__importStar||function(o){if(o&&o.__esModule)return o;var e={};if(null!=o)for(var t in o)Object.hasOwnProperty.call(o,t)&&(e[t]=o[t]);e.default=o;return e};Object.defineProperty(exports,"__esModule",{value:!0});var core_1=require("@angular/core"),common_1=require("@angular/common"),wijmo.angular2legacy_directivebase_1=require("@mescius/wijmo.angular2legacy.directivebase"),ngCore=__importStar(require("@angular/core")),wjcCore=__importStar(require("@mescius/wijmo")),wjTooltipMeta={selector:"[wjTooltip]",inputs:[],outputs:["initialized"],exportAs:"wjTooltip",providers:[]};exports.wjTooltipMeta=wjTooltipMeta;var WjTooltip=function(){function WjTooltip(e,t,r){this.isInitialized=!1;this._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(this,e,t,r);this._elRef=e;o._toolTip||(o._toolTip=new wjcCore.Tooltip);this.created()}o=WjTooltip;WjTooltip.prototype.created=function(){};WjTooltip.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjTooltip.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjTooltip.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy();this.wjTooltip=null};Object.defineProperty(WjTooltip.prototype,"wjTooltip",{get:function(){return this._toolTipText},set:function(e){if(this._toolTipText!=e){this._toolTipText=e;o._toolTip.setTooltip(this._elRef.nativeElement,e,this._toolTipPosition)}},enumerable:!0,configurable:!0});Object.defineProperty(WjTooltip.prototype,"wjTooltipPosition",{get:function(){return this._toolTipPosition},set:function(e){if(this._toolTipText){var t=wjcCore.asEnum(e,wjcCore.PopupPosition);if(this._toolTipPosition!=t){this._toolTipPosition=t;o._toolTip.setTooltip(this._elRef.nativeElement,this._toolTipText,t)}}},enumerable:!0,configurable:!0});var o;WjTooltip.meta={outputs:wjTooltipMeta.outputs};__decorate([core_1.Input()],WjTooltip.prototype,"wjTooltip",null);__decorate([core_1.Input()],WjTooltip.prototype,"wjTooltipPosition",null);return WjTooltip=o=__decorate([core_1.Directive({selector:wjTooltipMeta.selector,inputs:wjTooltipMeta.inputs,outputs:wjTooltipMeta.outputs,exportAs:wjTooltipMeta.exportAs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return o}))}].concat(wjTooltipMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjTooltip)}();exports.WjTooltip=WjTooltip;var WjComponentLoader=function(){function WjComponentLoader(o,e){this._cmpResolver=o;this._elementRef=e;this._isInit=!1;this.propertiesChange=new ngCore.EventEmitter}Object.defineProperty(WjComponentLoader.prototype,"component",{get:function(){return this._component},set:function(o){if(this._component!==o){this._component=o;this._createComponent()}},enumerable:!0,configurable:!0});Object.defineProperty(WjComponentLoader.prototype,"properties",{get:function(){return this._properties},set:function(o){this._properties=o;this._updateProperties()},enumerable:!0,configurable:!0});WjComponentLoader.prototype.ngOnInit=function(){this._isInit=!0;this._createComponent()};WjComponentLoader.prototype._createComponent=function(){if(this._isInit){if(this._cmpRef){this._cmpRef.destroy();this._cmpRef=null}var o=this._component;if(o&&this._anchor){this._cmpRef=this._anchor.createComponent(this._cmpResolver.resolveComponentFactory(o));this._updateProperties()}}};WjComponentLoader.prototype._updateProperties=function(){var o=this._cmpRef&&this._cmpRef.instance,e=this.properties;if(o&&e)for(var t=0,r=Object.getOwnPropertyNames(e);t<r.length;t++){var i=r[t];o[i]=e[i];var n=o[i+"Change"];n instanceof core_1.EventEmitter&&this._addPropListener(o,i,n)}};WjComponentLoader.prototype._addPropListener=function(o,e,t){var r=this;t.subscribe((function(){r.properties[e]=r.properties[e]=o[e];r.propertiesChange.next(r.properties)}))};__decorate([core_1.ViewChild("anchor",{read:core_1.ViewContainerRef,static:!0})],WjComponentLoader.prototype,"_anchor",void 0);return WjComponentLoader=__decorate([core_1.Component({selector:"wj-component-loader",template:"<div #anchor></div>",inputs:["component","properties"],outputs:["propertiesChange"]}),__param(0,core_1.Inject(core_1.ComponentFactoryResolver)),__param(1,core_1.Inject(core_1.ElementRef))],WjComponentLoader)}();exports.WjComponentLoader=WjComponentLoader;var moduleExports=[WjTooltip,WjComponentLoader],WjCoreModule=function(){function WjCoreModule(){}return WjCoreModule=__decorate([core_1.NgModule({imports:[common_1.CommonModule],declarations:moduleExports.slice(),exports:moduleExports.slice()})],WjCoreModule)}();exports.WjCoreModule=WjCoreModule;
|
package/index.metadata.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
[{"__symbolic":"module","version":3,"metadata":{"___keepComment":{"__symbolic":"error","message":"Variable not initialized","line":34,"character":19},"wjTooltipMeta":{"selector":"[wjTooltip]","inputs":[],"outputs":["initialized"],"exportAs":"wjTooltip","providers":[]},"WjTooltip":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTooltipMeta"},"member":"selector"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTooltipMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTooltipMeta"},"member":"outputs"},"exportAs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTooltipMeta"},"member":"exportAs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjTooltip"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTooltipMeta"},"member":"providers"}}]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":["WjComponent"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","name":"any"}]}],"created":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"wjTooltip":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"wjTooltipPosition":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}]},"statics":{"_toolTip":{"__symbolic":"error","message":"Variable not initialized","line":
|
|
1
|
+
[{"__symbolic":"module","version":3,"metadata":{"___keepComment":{"__symbolic":"error","message":"Variable not initialized","line":34,"character":19},"wjTooltipMeta":{"selector":"[wjTooltip]","inputs":[],"outputs":["initialized"],"exportAs":"wjTooltip","providers":[]},"WjTooltip":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTooltipMeta"},"member":"selector"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTooltipMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTooltipMeta"},"member":"outputs"},"exportAs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTooltipMeta"},"member":"exportAs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjTooltip"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTooltipMeta"},"member":"providers"}}]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":["WjComponent"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","name":"any"}]}],"created":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"wjTooltip":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"wjTooltipPosition":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}]},"statics":{"_toolTip":{"__symbolic":"error","message":"Variable not initialized","line":95,"character":19},"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTooltipMeta"},"member":"outputs"}}}},"WjComponentLoader":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":"wj-component-loader","template":"<div #anchor></div>","inputs":["component","properties"],"outputs":["propertiesChange"]}]}],"members":{"_anchor":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ViewChild"},"arguments":["anchor",{"read":{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"},"static":true}]}]}],"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ComponentFactoryResolver"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ComponentFactoryResolver"},{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],"ngOnInit":[{"__symbolic":"method"}],"_createComponent":[{"__symbolic":"method"}],"_updateProperties":[{"__symbolic":"method"}],"_addPropListener":[{"__symbolic":"method"}]}},"WjCoreModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"declarations":[{"__symbolic":"reference","name":"WjTooltip"},{"__symbolic":"reference","name":"WjComponentLoader"}],"exports":[{"__symbolic":"reference","name":"WjTooltip"},{"__symbolic":"reference","name":"WjComponentLoader"}]}]}]}}},{"__symbolic":"module","version":1,"metadata":{"___keepComment":{"__symbolic":"error","message":"Variable not initialized","line":34,"character":19},"wjTooltipMeta":{"selector":"[wjTooltip]","inputs":[],"outputs":["initialized"],"exportAs":"wjTooltip","providers":[]},"WjTooltip":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTooltipMeta"},"member":"selector"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTooltipMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTooltipMeta"},"member":"outputs"},"exportAs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTooltipMeta"},"member":"exportAs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjTooltip"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTooltipMeta"},"member":"providers"}}]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":["WjComponent"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","name":"any"}]}],"created":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"wjTooltip":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}],"wjTooltipPosition":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input"}}]}]},"statics":{"_toolTip":{"__symbolic":"error","message":"Variable not initialized","line":95,"character":19},"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTooltipMeta"},"member":"outputs"}}}},"WjComponentLoader":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":"wj-component-loader","template":"<div #anchor></div>","inputs":["component","properties"],"outputs":["propertiesChange"]}]}],"members":{"_anchor":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ViewChild"},"arguments":["anchor",{"read":{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"},"static":true}]}]}],"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ComponentFactoryResolver"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ComponentFactoryResolver"},{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],"ngOnInit":[{"__symbolic":"method"}],"_createComponent":[{"__symbolic":"method"}],"_updateProperties":[{"__symbolic":"method"}],"_addPropListener":[{"__symbolic":"method"}]}},"WjCoreModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"declarations":[{"__symbolic":"reference","name":"WjTooltip"},{"__symbolic":"reference","name":"WjComponentLoader"}],"exports":[{"__symbolic":"reference","name":"WjTooltip"},{"__symbolic":"reference","name":"WjComponentLoader"}]}]}]}}}]
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mescius/wijmo.angular2legacy.core",
|
|
3
|
-
"version": "5.20261.45-nightly.
|
|
3
|
+
"version": "5.20261.45-nightly.d20260105.t163143",
|
|
4
4
|
"description": "UI library for pure JS, Angular, React, Vue and more...",
|
|
5
5
|
"author": "MESCIUS inc",
|
|
6
6
|
"license": "Commercial",
|
|
7
7
|
"main": "./index.js",
|
|
8
8
|
"types": "./index.d.ts",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@mescius/wijmo": "5.20261.45-nightly.
|
|
11
|
-
"@mescius/wijmo.angular2legacy.directivebase": "5.20261.45-nightly.
|
|
10
|
+
"@mescius/wijmo": "5.20261.45-nightly.d20260105.t163143",
|
|
11
|
+
"@mescius/wijmo.angular2legacy.directivebase": "5.20261.45-nightly.d20260105.t163143"
|
|
12
12
|
},
|
|
13
13
|
"homepage": "https://developer.mescius.com/wijmo",
|
|
14
14
|
"bugs": {
|