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