@mescius/wijmo.angular2.nav 5.20232.939
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/COMMERCIAL-LICENSE.html +485 -0
- package/README.md +363 -0
- package/es2015-commonjs.js +14 -0
- package/es2015-esm.js +136 -0
- package/es5-esm.js +136 -0
- package/index.d.ts +556 -0
- package/index.js +137 -0
- package/package.json +46 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,556 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
*
|
|
3
|
+
* Wijmo Library 5.20232.939
|
|
4
|
+
* https://developer.mescius.com/wijmo
|
|
5
|
+
*
|
|
6
|
+
* Copyright(c) MESCIUS inc. All rights reserved.
|
|
7
|
+
*
|
|
8
|
+
* Licensed under the End-User License Agreement For MESCIUS Wijmo Software.
|
|
9
|
+
* us.sales@mescius.com
|
|
10
|
+
* https://developer.mescius.com/wijmo/licensing
|
|
11
|
+
*
|
|
12
|
+
*/
|
|
13
|
+
/**
|
|
14
|
+
* {@module wijmo.angular2.nav}
|
|
15
|
+
* Contains Angular 2 components for the <b>wijmo.nav</b> module.
|
|
16
|
+
*
|
|
17
|
+
* <b>wijmo.angular2.nav</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 wjNav from 'wijmo/wijmo.angular2.nav';
|
|
21
|
+
*
|
|
22
|
+
* @Component({
|
|
23
|
+
* directives: [wjNav.WjTreeView],
|
|
24
|
+
* template: `
|
|
25
|
+
* <wj-tree-view [itemsSource]="items" [displayMemberPath]="'header'" [childItemsPath]="'items'">
|
|
26
|
+
* </wj-tree-view;`,
|
|
27
|
+
* selector: 'my-cmp',
|
|
28
|
+
* })
|
|
29
|
+
* export class MyCmp {
|
|
30
|
+
* data: any[];
|
|
31
|
+
* }</pre>
|
|
32
|
+
*
|
|
33
|
+
*/
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
*/
|
|
37
|
+
import * as ɵngcc0 from '@angular/core';
|
|
38
|
+
import * as ɵngcc1 from '@angular/common';
|
|
39
|
+
export declare var ___keepComment: any;
|
|
40
|
+
import { EventEmitter, AfterViewInit, ElementRef, Injector, OnInit, OnDestroy, AfterContentInit } from '@angular/core';
|
|
41
|
+
import { IWjComponentMetadata, IWjComponentMeta } from '@grapecity/wijmo.angular2.directivebase';
|
|
42
|
+
import * as wjcNav from '@grapecity/wijmo.nav';
|
|
43
|
+
declare var wjTreeViewMeta: IWjComponentMeta;
|
|
44
|
+
export { wjTreeViewMeta };
|
|
45
|
+
/**
|
|
46
|
+
* Angular 2 component for the {@link wijmo.nav.TreeView} control.
|
|
47
|
+
*
|
|
48
|
+
* Use the <b>wj-tree-view</b> component to add <b>TreeView</b> controls to your
|
|
49
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
50
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
51
|
+
*
|
|
52
|
+
* The <b>WjTreeView</b> component is derived from the <b>TreeView</b> control and
|
|
53
|
+
* inherits all its properties, events and methods.
|
|
54
|
+
*/
|
|
55
|
+
export declare class WjTreeView extends wjcNav.TreeView implements OnInit, OnDestroy, AfterViewInit {
|
|
56
|
+
static readonly meta: IWjComponentMetadata;
|
|
57
|
+
private _wjBehaviour;
|
|
58
|
+
/**
|
|
59
|
+
* Indicates whether the component has been initialized by Angular.
|
|
60
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
61
|
+
*/
|
|
62
|
+
isInitialized: boolean;
|
|
63
|
+
/**
|
|
64
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
65
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
66
|
+
*/
|
|
67
|
+
initialized: EventEmitter<any>;
|
|
68
|
+
/**
|
|
69
|
+
* Defines a name of a property represented by [(ngModel)] directive (if specified).
|
|
70
|
+
* Default value is ''.
|
|
71
|
+
*/
|
|
72
|
+
wjModelProperty: string;
|
|
73
|
+
/**
|
|
74
|
+
* Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
|
|
75
|
+
* See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
|
|
76
|
+
*/
|
|
77
|
+
asyncBindings: boolean;
|
|
78
|
+
/**
|
|
79
|
+
* Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
|
|
80
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
81
|
+
* In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
|
|
82
|
+
*/
|
|
83
|
+
gotFocusNg: EventEmitter<any>;
|
|
84
|
+
/**
|
|
85
|
+
* Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
|
|
86
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
87
|
+
* In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
|
|
88
|
+
*/
|
|
89
|
+
lostFocusNg: EventEmitter<any>;
|
|
90
|
+
/**
|
|
91
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
|
|
92
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
93
|
+
* In template bindings use the conventional <b>refreshing</b> Wijmo event name.
|
|
94
|
+
*/
|
|
95
|
+
refreshingNg: EventEmitter<any>;
|
|
96
|
+
/**
|
|
97
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
|
|
98
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
99
|
+
* In template bindings use the conventional <b>refreshed</b> Wijmo event name.
|
|
100
|
+
*/
|
|
101
|
+
refreshedNg: EventEmitter<any>;
|
|
102
|
+
/**
|
|
103
|
+
* Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
|
|
104
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
105
|
+
* In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
|
|
106
|
+
*/
|
|
107
|
+
invalidInputNg: EventEmitter<any>;
|
|
108
|
+
/**
|
|
109
|
+
* Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanged</b> event for programmatic access.
|
|
110
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
111
|
+
* In template bindings use the conventional <b>itemsSourceChanged</b> Wijmo event name.
|
|
112
|
+
*/
|
|
113
|
+
itemsSourceChangedNg: EventEmitter<any>;
|
|
114
|
+
/**
|
|
115
|
+
* Angular (EventEmitter) version of the Wijmo <b>loadingItems</b> event for programmatic access.
|
|
116
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
117
|
+
* In template bindings use the conventional <b>loadingItems</b> Wijmo event name.
|
|
118
|
+
*/
|
|
119
|
+
loadingItemsNg: EventEmitter<any>;
|
|
120
|
+
/**
|
|
121
|
+
* Angular (EventEmitter) version of the Wijmo <b>loadedItems</b> event for programmatic access.
|
|
122
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
123
|
+
* In template bindings use the conventional <b>loadedItems</b> Wijmo event name.
|
|
124
|
+
*/
|
|
125
|
+
loadedItemsNg: EventEmitter<any>;
|
|
126
|
+
/**
|
|
127
|
+
* Angular (EventEmitter) version of the Wijmo <b>itemClicked</b> event for programmatic access.
|
|
128
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
129
|
+
* In template bindings use the conventional <b>itemClicked</b> Wijmo event name.
|
|
130
|
+
*/
|
|
131
|
+
itemClickedNg: EventEmitter<any>;
|
|
132
|
+
/**
|
|
133
|
+
* Angular (EventEmitter) version of the Wijmo <b>selectedItemChanged</b> event for programmatic access.
|
|
134
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
135
|
+
* In template bindings use the conventional <b>selectedItemChanged</b> Wijmo event name.
|
|
136
|
+
*/
|
|
137
|
+
selectedItemChangedNg: EventEmitter<any>;
|
|
138
|
+
/**
|
|
139
|
+
* This event is used to implement two-way binding to the <b>selectedItem</b> property.
|
|
140
|
+
* It's triggered when the property value changes, with the event argument holding the new property value.
|
|
141
|
+
* You can bind handlers to this event in templates using the <b>selectedItemChange</b> event name.
|
|
142
|
+
*/
|
|
143
|
+
selectedItemChangePC: EventEmitter<any>;
|
|
144
|
+
/**
|
|
145
|
+
* This event is used to implement two-way binding to the <b>selectedNode</b> property.
|
|
146
|
+
* It's triggered when the property value changes, with the event argument holding the new property value.
|
|
147
|
+
* You can bind handlers to this event in templates using the <b>selectedNodeChange</b> event name.
|
|
148
|
+
*/
|
|
149
|
+
selectedNodeChangePC: EventEmitter<any>;
|
|
150
|
+
/**
|
|
151
|
+
* Angular (EventEmitter) version of the Wijmo <b>checkedItemsChanged</b> event for programmatic access.
|
|
152
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
153
|
+
* In template bindings use the conventional <b>checkedItemsChanged</b> Wijmo event name.
|
|
154
|
+
*/
|
|
155
|
+
checkedItemsChangedNg: EventEmitter<any>;
|
|
156
|
+
/**
|
|
157
|
+
* This event is used to implement two-way binding to the <b>checkedItems</b> property.
|
|
158
|
+
* It's triggered when the property value changes, with the event argument holding the new property value.
|
|
159
|
+
* You can bind handlers to this event in templates using the <b>checkedItemsChange</b> event name.
|
|
160
|
+
*/
|
|
161
|
+
checkedItemsChangePC: EventEmitter<any>;
|
|
162
|
+
/**
|
|
163
|
+
* Angular (EventEmitter) version of the Wijmo <b>isCollapsedChanging</b> event for programmatic access.
|
|
164
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
165
|
+
* In template bindings use the conventional <b>isCollapsedChanging</b> Wijmo event name.
|
|
166
|
+
*/
|
|
167
|
+
isCollapsedChangingNg: EventEmitter<any>;
|
|
168
|
+
/**
|
|
169
|
+
* Angular (EventEmitter) version of the Wijmo <b>isCollapsedChanged</b> event for programmatic access.
|
|
170
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
171
|
+
* In template bindings use the conventional <b>isCollapsedChanged</b> Wijmo event name.
|
|
172
|
+
*/
|
|
173
|
+
isCollapsedChangedNg: EventEmitter<any>;
|
|
174
|
+
/**
|
|
175
|
+
* Angular (EventEmitter) version of the Wijmo <b>isCheckedChanging</b> event for programmatic access.
|
|
176
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
177
|
+
* In template bindings use the conventional <b>isCheckedChanging</b> Wijmo event name.
|
|
178
|
+
*/
|
|
179
|
+
isCheckedChangingNg: EventEmitter<any>;
|
|
180
|
+
/**
|
|
181
|
+
* Angular (EventEmitter) version of the Wijmo <b>isCheckedChanged</b> event for programmatic access.
|
|
182
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
183
|
+
* In template bindings use the conventional <b>isCheckedChanged</b> Wijmo event name.
|
|
184
|
+
*/
|
|
185
|
+
isCheckedChangedNg: EventEmitter<any>;
|
|
186
|
+
/**
|
|
187
|
+
* Angular (EventEmitter) version of the Wijmo <b>formatItem</b> event for programmatic access.
|
|
188
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
189
|
+
* In template bindings use the conventional <b>formatItem</b> Wijmo event name.
|
|
190
|
+
*/
|
|
191
|
+
formatItemNg: EventEmitter<any>;
|
|
192
|
+
/**
|
|
193
|
+
* Angular (EventEmitter) version of the Wijmo <b>dragStart</b> event for programmatic access.
|
|
194
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
195
|
+
* In template bindings use the conventional <b>dragStart</b> Wijmo event name.
|
|
196
|
+
*/
|
|
197
|
+
dragStartNg: EventEmitter<any>;
|
|
198
|
+
/**
|
|
199
|
+
* Angular (EventEmitter) version of the Wijmo <b>dragOver</b> event for programmatic access.
|
|
200
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
201
|
+
* In template bindings use the conventional <b>dragOver</b> Wijmo event name.
|
|
202
|
+
*/
|
|
203
|
+
dragOverNg: EventEmitter<any>;
|
|
204
|
+
/**
|
|
205
|
+
* Angular (EventEmitter) version of the Wijmo <b>drop</b> event for programmatic access.
|
|
206
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
207
|
+
* In template bindings use the conventional <b>drop</b> Wijmo event name.
|
|
208
|
+
*/
|
|
209
|
+
dropNg: EventEmitter<any>;
|
|
210
|
+
/**
|
|
211
|
+
* Angular (EventEmitter) version of the Wijmo <b>dragEnd</b> event for programmatic access.
|
|
212
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
213
|
+
* In template bindings use the conventional <b>dragEnd</b> Wijmo event name.
|
|
214
|
+
*/
|
|
215
|
+
dragEndNg: EventEmitter<any>;
|
|
216
|
+
/**
|
|
217
|
+
* Angular (EventEmitter) version of the Wijmo <b>nodeEditStarting</b> event for programmatic access.
|
|
218
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
219
|
+
* In template bindings use the conventional <b>nodeEditStarting</b> Wijmo event name.
|
|
220
|
+
*/
|
|
221
|
+
nodeEditStartingNg: EventEmitter<any>;
|
|
222
|
+
/**
|
|
223
|
+
* Angular (EventEmitter) version of the Wijmo <b>nodeEditStarted</b> event for programmatic access.
|
|
224
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
225
|
+
* In template bindings use the conventional <b>nodeEditStarted</b> Wijmo event name.
|
|
226
|
+
*/
|
|
227
|
+
nodeEditStartedNg: EventEmitter<any>;
|
|
228
|
+
/**
|
|
229
|
+
* Angular (EventEmitter) version of the Wijmo <b>nodeEditEnding</b> event for programmatic access.
|
|
230
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
231
|
+
* In template bindings use the conventional <b>nodeEditEnding</b> Wijmo event name.
|
|
232
|
+
*/
|
|
233
|
+
nodeEditEndingNg: EventEmitter<any>;
|
|
234
|
+
/**
|
|
235
|
+
* Angular (EventEmitter) version of the Wijmo <b>nodeEditEnded</b> event for programmatic access.
|
|
236
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
237
|
+
* In template bindings use the conventional <b>nodeEditEnded</b> Wijmo event name.
|
|
238
|
+
*/
|
|
239
|
+
nodeEditEndedNg: EventEmitter<any>;
|
|
240
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
241
|
+
/**
|
|
242
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
243
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
244
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
245
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
246
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
247
|
+
*/
|
|
248
|
+
created(): void;
|
|
249
|
+
ngOnInit(): void;
|
|
250
|
+
ngAfterViewInit(): void;
|
|
251
|
+
ngOnDestroy(): void;
|
|
252
|
+
addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
|
|
253
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjTreeView, [null, null, { optional: true; skipSelf: true; }]>;
|
|
254
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjTreeView, "wj-tree-view", never, { "asyncBindings": "asyncBindings"; "wjModelProperty": "wjModelProperty"; "isDisabled": "isDisabled"; "tabOrder": "tabOrder"; "childItemsPath": "childItemsPath"; "displayMemberPath": "displayMemberPath"; "imageMemberPath": "imageMemberPath"; "checkedMemberPath": "checkedMemberPath"; "isContentHtml": "isContentHtml"; "showCheckboxes": "showCheckboxes"; "autoCollapse": "autoCollapse"; "isAnimated": "isAnimated"; "isReadOnly": "isReadOnly"; "allowDragging": "allowDragging"; "checkOnClick": "checkOnClick"; "expandOnClick": "expandOnClick"; "collapseOnClick": "collapseOnClick"; "expandOnLoad": "expandOnLoad"; "lazyLoadFunction": "lazyLoadFunction"; "itemsSource": "itemsSource"; "selectedItem": "selectedItem"; "selectedNode": "selectedNode"; "checkedItems": "checkedItems"; }, { "initialized": "initialized"; "gotFocusNg": "gotFocus"; "lostFocusNg": "lostFocus"; "refreshingNg": "refreshing"; "refreshedNg": "refreshed"; "invalidInputNg": "invalidInput"; "itemsSourceChangedNg": "itemsSourceChanged"; "loadingItemsNg": "loadingItems"; "loadedItemsNg": "loadedItems"; "itemClickedNg": "itemClicked"; "selectedItemChangedNg": "selectedItemChanged"; "selectedItemChangePC": "selectedItemChange"; "selectedNodeChangePC": "selectedNodeChange"; "checkedItemsChangedNg": "checkedItemsChanged"; "checkedItemsChangePC": "checkedItemsChange"; "isCollapsedChangingNg": "isCollapsedChanging"; "isCollapsedChangedNg": "isCollapsedChanged"; "isCheckedChangingNg": "isCheckedChanging"; "isCheckedChangedNg": "isCheckedChanged"; "formatItemNg": "formatItem"; "dragStartNg": "dragStart"; "dragOverNg": "dragOver"; "dropNg": "drop"; "dragEndNg": "dragEnd"; "nodeEditStartingNg": "nodeEditStarting"; "nodeEditStartedNg": "nodeEditStarted"; "nodeEditEndingNg": "nodeEditEnding"; "nodeEditEndedNg": "nodeEditEnded"; }, never, never, false, never>;
|
|
255
|
+
}
|
|
256
|
+
declare var wjTabPanelMeta: IWjComponentMeta;
|
|
257
|
+
export { wjTabPanelMeta };
|
|
258
|
+
/**
|
|
259
|
+
* Angular 2 component for the {@link wijmo.nav.TabPanel} control.
|
|
260
|
+
*
|
|
261
|
+
* Use the <b>wj-tab-panel</b> component to add <b>TabPanel</b> controls to your
|
|
262
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
263
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
264
|
+
*
|
|
265
|
+
* The <b>WjTabPanel</b> component is derived from the <b>TabPanel</b> control and
|
|
266
|
+
* inherits all its properties, events and methods.
|
|
267
|
+
*
|
|
268
|
+
* The <b>wj-tab-panel</b> component may contain a {@link wijmo.angular2.nav.WjTab} child component.
|
|
269
|
+
*/
|
|
270
|
+
export declare class WjTabPanel extends wjcNav.TabPanel implements OnInit, OnDestroy, AfterViewInit, AfterContentInit {
|
|
271
|
+
static readonly meta: IWjComponentMetadata;
|
|
272
|
+
private _wjBehaviour;
|
|
273
|
+
/**
|
|
274
|
+
* Indicates whether the component has been initialized by Angular.
|
|
275
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
276
|
+
*/
|
|
277
|
+
isInitialized: boolean;
|
|
278
|
+
/**
|
|
279
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
280
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
281
|
+
*/
|
|
282
|
+
initialized: EventEmitter<any>;
|
|
283
|
+
/**
|
|
284
|
+
* Defines a name of a property represented by [(ngModel)] directive (if specified).
|
|
285
|
+
* Default value is ''.
|
|
286
|
+
*/
|
|
287
|
+
wjModelProperty: string;
|
|
288
|
+
/**
|
|
289
|
+
* Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
|
|
290
|
+
* See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
|
|
291
|
+
*/
|
|
292
|
+
asyncBindings: boolean;
|
|
293
|
+
/**
|
|
294
|
+
* Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
|
|
295
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
296
|
+
* In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
|
|
297
|
+
*/
|
|
298
|
+
gotFocusNg: EventEmitter<any>;
|
|
299
|
+
/**
|
|
300
|
+
* Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
|
|
301
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
302
|
+
* In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
|
|
303
|
+
*/
|
|
304
|
+
lostFocusNg: EventEmitter<any>;
|
|
305
|
+
/**
|
|
306
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
|
|
307
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
308
|
+
* In template bindings use the conventional <b>refreshing</b> Wijmo event name.
|
|
309
|
+
*/
|
|
310
|
+
refreshingNg: EventEmitter<any>;
|
|
311
|
+
/**
|
|
312
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
|
|
313
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
314
|
+
* In template bindings use the conventional <b>refreshed</b> Wijmo event name.
|
|
315
|
+
*/
|
|
316
|
+
refreshedNg: EventEmitter<any>;
|
|
317
|
+
/**
|
|
318
|
+
* Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
|
|
319
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
320
|
+
* In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
|
|
321
|
+
*/
|
|
322
|
+
invalidInputNg: EventEmitter<any>;
|
|
323
|
+
/**
|
|
324
|
+
* Angular (EventEmitter) version of the Wijmo <b>selectedIndexChanged</b> event for programmatic access.
|
|
325
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
326
|
+
* In template bindings use the conventional <b>selectedIndexChanged</b> Wijmo event name.
|
|
327
|
+
*/
|
|
328
|
+
selectedIndexChangedNg: EventEmitter<any>;
|
|
329
|
+
/**
|
|
330
|
+
* This event is used to implement two-way binding to the <b>selectedIndex</b> property.
|
|
331
|
+
* It's triggered when the property value changes, with the event argument holding the new property value.
|
|
332
|
+
* You can bind handlers to this event in templates using the <b>selectedIndexChange</b> event name.
|
|
333
|
+
*/
|
|
334
|
+
selectedIndexChangePC: EventEmitter<any>;
|
|
335
|
+
/**
|
|
336
|
+
* This event is used to implement two-way binding to the <b>selectedTab</b> property.
|
|
337
|
+
* It's triggered when the property value changes, with the event argument holding the new property value.
|
|
338
|
+
* You can bind handlers to this event in templates using the <b>selectedTabChange</b> event name.
|
|
339
|
+
*/
|
|
340
|
+
selectedTabChangePC: EventEmitter<any>;
|
|
341
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
342
|
+
/**
|
|
343
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
344
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
345
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
346
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
347
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
348
|
+
*/
|
|
349
|
+
created(): void;
|
|
350
|
+
ngOnInit(): void;
|
|
351
|
+
ngAfterViewInit(): void;
|
|
352
|
+
ngOnDestroy(): void;
|
|
353
|
+
addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
|
|
354
|
+
ngAfterContentInit(): void;
|
|
355
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjTabPanel, [null, null, { optional: true; skipSelf: true; }]>;
|
|
356
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjTabPanel, "wj-tab-panel", never, { "asyncBindings": "asyncBindings"; "wjModelProperty": "wjModelProperty"; "isDisabled": "isDisabled"; "tabOrder": "tabOrder"; "isAnimated": "isAnimated"; "autoSwitch": "autoSwitch"; "selectedIndex": "selectedIndex"; "selectedTab": "selectedTab"; }, { "initialized": "initialized"; "gotFocusNg": "gotFocus"; "lostFocusNg": "lostFocus"; "refreshingNg": "refreshing"; "refreshedNg": "refreshed"; "invalidInputNg": "invalidInput"; "selectedIndexChangedNg": "selectedIndexChanged"; "selectedIndexChangePC": "selectedIndexChange"; "selectedTabChangePC": "selectedTabChange"; }, never, ["*"], false, never>;
|
|
357
|
+
}
|
|
358
|
+
declare var wjTabMeta: IWjComponentMeta;
|
|
359
|
+
export { wjTabMeta };
|
|
360
|
+
/**
|
|
361
|
+
* Angular 2 component for the {@link wijmo.nav.Tab} class.
|
|
362
|
+
*
|
|
363
|
+
* The <b>wj-tab</b> component must be
|
|
364
|
+
* contained in a {@link wijmo.angular2.nav.WjTabPanel} component.
|
|
365
|
+
*
|
|
366
|
+
* Use the <b>wj-tab</b> component to add <b>Tab</b> controls to your
|
|
367
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
368
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
369
|
+
*
|
|
370
|
+
* The <b>WjTab</b> component is derived from the <b>Tab</b> class and
|
|
371
|
+
* inherits all its properties, events and methods.
|
|
372
|
+
*/
|
|
373
|
+
export declare class WjTab extends wjcNav.Tab implements OnInit, OnDestroy, AfterViewInit, AfterContentInit {
|
|
374
|
+
static readonly meta: IWjComponentMetadata;
|
|
375
|
+
private _wjBehaviour;
|
|
376
|
+
/**
|
|
377
|
+
* Indicates whether the component has been initialized by Angular.
|
|
378
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
379
|
+
*/
|
|
380
|
+
isInitialized: boolean;
|
|
381
|
+
/**
|
|
382
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
383
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
384
|
+
*/
|
|
385
|
+
initialized: EventEmitter<any>;
|
|
386
|
+
/**
|
|
387
|
+
* Gets or sets a name of a property that this component is assigned to.
|
|
388
|
+
* Default value is 'tabs'.
|
|
389
|
+
*/
|
|
390
|
+
wjProperty: string;
|
|
391
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
392
|
+
/**
|
|
393
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
394
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
395
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
396
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
397
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
398
|
+
*/
|
|
399
|
+
created(): void;
|
|
400
|
+
ngOnInit(): void;
|
|
401
|
+
ngAfterViewInit(): void;
|
|
402
|
+
ngOnDestroy(): void;
|
|
403
|
+
ngAfterContentInit(): void;
|
|
404
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjTab, [null, null, { optional: true; skipSelf: true; }]>;
|
|
405
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjTab, "wj-tab", never, { "wjProperty": "wjProperty"; "isDisabled": "isDisabled"; "isVisible": "isVisible"; }, { "initialized": "initialized"; }, never, ["*"], false, never>;
|
|
406
|
+
}
|
|
407
|
+
declare var wjAccordionMeta: IWjComponentMeta;
|
|
408
|
+
export { wjAccordionMeta };
|
|
409
|
+
/**
|
|
410
|
+
* Angular 2 component for the {@link wijmo.nav.Accordion} control.
|
|
411
|
+
*
|
|
412
|
+
* Use the <b>wj-accordion</b> component to add <b>Accordion</b> controls to your
|
|
413
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
414
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
415
|
+
*
|
|
416
|
+
* The <b>WjAccordion</b> component is derived from the <b>Accordion</b> control and
|
|
417
|
+
* inherits all its properties, events and methods.
|
|
418
|
+
*
|
|
419
|
+
* The <b>wj-accordion</b> component may contain a {@link wijmo.angular2.nav.WjAccordionPane} child component.
|
|
420
|
+
*/
|
|
421
|
+
export declare class WjAccordion extends wjcNav.Accordion implements OnInit, OnDestroy, AfterViewInit, AfterContentInit {
|
|
422
|
+
static readonly meta: IWjComponentMetadata;
|
|
423
|
+
private _wjBehaviour;
|
|
424
|
+
/**
|
|
425
|
+
* Indicates whether the component has been initialized by Angular.
|
|
426
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
427
|
+
*/
|
|
428
|
+
isInitialized: boolean;
|
|
429
|
+
/**
|
|
430
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
431
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
432
|
+
*/
|
|
433
|
+
initialized: EventEmitter<any>;
|
|
434
|
+
/**
|
|
435
|
+
* Defines a name of a property represented by [(ngModel)] directive (if specified).
|
|
436
|
+
* Default value is ''.
|
|
437
|
+
*/
|
|
438
|
+
wjModelProperty: string;
|
|
439
|
+
/**
|
|
440
|
+
* Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
|
|
441
|
+
* See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
|
|
442
|
+
*/
|
|
443
|
+
asyncBindings: boolean;
|
|
444
|
+
/**
|
|
445
|
+
* Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
|
|
446
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
447
|
+
* In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
|
|
448
|
+
*/
|
|
449
|
+
gotFocusNg: EventEmitter<any>;
|
|
450
|
+
/**
|
|
451
|
+
* Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
|
|
452
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
453
|
+
* In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
|
|
454
|
+
*/
|
|
455
|
+
lostFocusNg: EventEmitter<any>;
|
|
456
|
+
/**
|
|
457
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
|
|
458
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
459
|
+
* In template bindings use the conventional <b>refreshing</b> Wijmo event name.
|
|
460
|
+
*/
|
|
461
|
+
refreshingNg: EventEmitter<any>;
|
|
462
|
+
/**
|
|
463
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
|
|
464
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
465
|
+
* In template bindings use the conventional <b>refreshed</b> Wijmo event name.
|
|
466
|
+
*/
|
|
467
|
+
refreshedNg: EventEmitter<any>;
|
|
468
|
+
/**
|
|
469
|
+
* Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
|
|
470
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
471
|
+
* In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
|
|
472
|
+
*/
|
|
473
|
+
invalidInputNg: EventEmitter<any>;
|
|
474
|
+
/**
|
|
475
|
+
* Angular (EventEmitter) version of the Wijmo <b>selectedIndexChanged</b> event for programmatic access.
|
|
476
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
477
|
+
* In template bindings use the conventional <b>selectedIndexChanged</b> Wijmo event name.
|
|
478
|
+
*/
|
|
479
|
+
selectedIndexChangedNg: EventEmitter<any>;
|
|
480
|
+
/**
|
|
481
|
+
* This event is used to implement two-way binding to the <b>selectedIndex</b> property.
|
|
482
|
+
* It's triggered when the property value changes, with the event argument holding the new property value.
|
|
483
|
+
* You can bind handlers to this event in templates using the <b>selectedIndexChange</b> event name.
|
|
484
|
+
*/
|
|
485
|
+
selectedIndexChangePC: EventEmitter<any>;
|
|
486
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
487
|
+
/**
|
|
488
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
489
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
490
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
491
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
492
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
493
|
+
*/
|
|
494
|
+
created(): void;
|
|
495
|
+
ngOnInit(): void;
|
|
496
|
+
ngAfterViewInit(): void;
|
|
497
|
+
ngOnDestroy(): void;
|
|
498
|
+
addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
|
|
499
|
+
ngAfterContentInit(): void;
|
|
500
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjAccordion, [null, null, { optional: true; skipSelf: true; }]>;
|
|
501
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjAccordion, "wj-accordion", never, { "asyncBindings": "asyncBindings"; "wjModelProperty": "wjModelProperty"; "isDisabled": "isDisabled"; "tabOrder": "tabOrder"; "isAnimated": "isAnimated"; "autoSwitch": "autoSwitch"; "selectedIndex": "selectedIndex"; "selectedPane": "selectedPane"; "showIcons": "showIcons"; "allowCollapseAll": "allowCollapseAll"; "allowExpandMany": "allowExpandMany"; }, { "initialized": "initialized"; "gotFocusNg": "gotFocus"; "lostFocusNg": "lostFocus"; "refreshingNg": "refreshing"; "refreshedNg": "refreshed"; "invalidInputNg": "invalidInput"; "selectedIndexChangedNg": "selectedIndexChanged"; "selectedIndexChangePC": "selectedIndexChange"; }, never, ["*"], false, never>;
|
|
502
|
+
}
|
|
503
|
+
declare var wjAccordionPaneMeta: IWjComponentMeta;
|
|
504
|
+
export { wjAccordionPaneMeta };
|
|
505
|
+
/**
|
|
506
|
+
* Angular 2 component for the {@link wijmo.nav.AccordionPane} class.
|
|
507
|
+
*
|
|
508
|
+
* The <b>wj-accordion-pane</b> component must be
|
|
509
|
+
* contained in a {@link wijmo.angular2.nav.WjAccordion} component.
|
|
510
|
+
*
|
|
511
|
+
* Use the <b>wj-accordion-pane</b> component to add <b>AccordionPane</b> controls to your
|
|
512
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
513
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
514
|
+
*
|
|
515
|
+
* The <b>WjAccordionPane</b> component is derived from the <b>AccordionPane</b> class and
|
|
516
|
+
* inherits all its properties, events and methods.
|
|
517
|
+
*/
|
|
518
|
+
export declare class WjAccordionPane extends wjcNav.AccordionPane implements OnInit, OnDestroy, AfterViewInit, AfterContentInit {
|
|
519
|
+
static readonly meta: IWjComponentMetadata;
|
|
520
|
+
private _wjBehaviour;
|
|
521
|
+
/**
|
|
522
|
+
* Indicates whether the component has been initialized by Angular.
|
|
523
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
524
|
+
*/
|
|
525
|
+
isInitialized: boolean;
|
|
526
|
+
/**
|
|
527
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
528
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
529
|
+
*/
|
|
530
|
+
initialized: EventEmitter<any>;
|
|
531
|
+
/**
|
|
532
|
+
* Gets or sets a name of a property that this component is assigned to.
|
|
533
|
+
* Default value is 'panes'.
|
|
534
|
+
*/
|
|
535
|
+
wjProperty: string;
|
|
536
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
537
|
+
/**
|
|
538
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
539
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
540
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
541
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
542
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
543
|
+
*/
|
|
544
|
+
created(): void;
|
|
545
|
+
ngOnInit(): void;
|
|
546
|
+
ngAfterViewInit(): void;
|
|
547
|
+
ngOnDestroy(): void;
|
|
548
|
+
ngAfterContentInit(): void;
|
|
549
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjAccordionPane, [null, null, { optional: true; skipSelf: true; }]>;
|
|
550
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjAccordionPane, "wj-accordion-pane", never, { "wjProperty": "wjProperty"; "isDisabled": "isDisabled"; "isVisible": "isVisible"; "isCollapsed": "isCollapsed"; }, { "initialized": "initialized"; }, never, ["*"], false, never>;
|
|
551
|
+
}
|
|
552
|
+
export declare class WjNavModule {
|
|
553
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjNavModule, never>;
|
|
554
|
+
static ɵmod: ɵngcc0.ɵɵNgModuleDeclaration<WjNavModule, [typeof WjTreeView, typeof WjTabPanel, typeof WjTab, typeof WjAccordion, typeof WjAccordionPane], [typeof ɵngcc1.CommonModule], [typeof WjTreeView, typeof WjTabPanel, typeof WjTab, typeof WjAccordion, typeof WjAccordionPane]>;
|
|
555
|
+
static ɵinj: ɵngcc0.ɵɵInjectorDeclaration<WjNavModule>;
|
|
556
|
+
}
|