@mescius/wijmo.angular2legacy.grid.transposedmultirow 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 +14 -0
- package/es5-esm.js +14 -0
- package/index.d.ts +411 -0
- package/index.js +14 -0
- package/index.metadata.json +1 -0
- package/package.json +46 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,411 @@
|
|
|
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.grid.transposedmultirow}
|
|
15
|
+
* Contains Angular 2 components for the <b>wijmo.grid.transposedmultirow</b> module.
|
|
16
|
+
*
|
|
17
|
+
* <b>wijmo.angular2legacy.grid.transposedmultirow</b> is an external TypeScript module that can be imported to your code
|
|
18
|
+
* using its ambient module name. For example:
|
|
19
|
+
*
|
|
20
|
+
*
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare var ___keepComment: any;
|
|
27
|
+
import { EventEmitter, AfterViewInit, ElementRef, Injector, OnInit, OnDestroy } from '@angular/core';
|
|
28
|
+
import { IWjComponentMetadata, IWjComponentMeta } from '@grapecity/wijmo.angular2legacy.directivebase';
|
|
29
|
+
import * as wjcGridTransposedmultirow from '@grapecity/wijmo.grid.transposedmultirow';
|
|
30
|
+
declare var wjTransposedMultiRowMeta: IWjComponentMeta;
|
|
31
|
+
export { wjTransposedMultiRowMeta };
|
|
32
|
+
/**
|
|
33
|
+
* Angular 2 component for the {@link wijmo.grid.transposedmultirow.TransposedMultiRow} control.
|
|
34
|
+
*
|
|
35
|
+
* Use the <b>wj-transposed-multi-row</b> component to add <b>TransposedMultiRow</b> controls to your
|
|
36
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
37
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
38
|
+
*
|
|
39
|
+
* The <b>WjTransposedMultiRow</b> component is derived from the <b>TransposedMultiRow</b> control and
|
|
40
|
+
* inherits all its properties, events and methods.
|
|
41
|
+
*/
|
|
42
|
+
export declare class WjTransposedMultiRow extends wjcGridTransposedmultirow.TransposedMultiRow implements OnInit, OnDestroy, AfterViewInit {
|
|
43
|
+
static readonly meta: IWjComponentMetadata;
|
|
44
|
+
private _wjBehaviour;
|
|
45
|
+
/**
|
|
46
|
+
* Indicates whether the component has been initialized by Angular.
|
|
47
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
48
|
+
*/
|
|
49
|
+
isInitialized: boolean;
|
|
50
|
+
/**
|
|
51
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
52
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
53
|
+
*/
|
|
54
|
+
initialized: EventEmitter<any>;
|
|
55
|
+
/**
|
|
56
|
+
* Defines a name of a property represented by [(ngModel)] directive (if specified).
|
|
57
|
+
* Default value is ''.
|
|
58
|
+
*/
|
|
59
|
+
wjModelProperty: string;
|
|
60
|
+
/**
|
|
61
|
+
* Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
|
|
62
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
63
|
+
* In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
|
|
64
|
+
*/
|
|
65
|
+
gotFocusNg: EventEmitter<any>;
|
|
66
|
+
/**
|
|
67
|
+
* Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
|
|
68
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
69
|
+
* In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
|
|
70
|
+
*/
|
|
71
|
+
lostFocusNg: EventEmitter<any>;
|
|
72
|
+
/**
|
|
73
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
|
|
74
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
75
|
+
* In template bindings use the conventional <b>refreshing</b> Wijmo event name.
|
|
76
|
+
*/
|
|
77
|
+
refreshingNg: EventEmitter<any>;
|
|
78
|
+
/**
|
|
79
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshed</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>refreshed</b> Wijmo event name.
|
|
82
|
+
*/
|
|
83
|
+
refreshedNg: EventEmitter<any>;
|
|
84
|
+
/**
|
|
85
|
+
* Angular (EventEmitter) version of the Wijmo <b>invalidInput</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>invalidInput</b> Wijmo event name.
|
|
88
|
+
*/
|
|
89
|
+
invalidInputNg: EventEmitter<any>;
|
|
90
|
+
/**
|
|
91
|
+
* Angular (EventEmitter) version of the Wijmo <b>beginningEdit</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>beginningEdit</b> Wijmo event name.
|
|
94
|
+
*/
|
|
95
|
+
beginningEditNg: EventEmitter<any>;
|
|
96
|
+
/**
|
|
97
|
+
* Angular (EventEmitter) version of the Wijmo <b>cellEditEnded</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>cellEditEnded</b> Wijmo event name.
|
|
100
|
+
*/
|
|
101
|
+
cellEditEndedNg: EventEmitter<any>;
|
|
102
|
+
/**
|
|
103
|
+
* Angular (EventEmitter) version of the Wijmo <b>cellEditEnding</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>cellEditEnding</b> Wijmo event name.
|
|
106
|
+
*/
|
|
107
|
+
cellEditEndingNg: EventEmitter<any>;
|
|
108
|
+
/**
|
|
109
|
+
* Angular (EventEmitter) version of the Wijmo <b>prepareCellForEdit</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>prepareCellForEdit</b> Wijmo event name.
|
|
112
|
+
*/
|
|
113
|
+
prepareCellForEditNg: EventEmitter<any>;
|
|
114
|
+
/**
|
|
115
|
+
* Angular (EventEmitter) version of the Wijmo <b>formatItem</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>formatItem</b> Wijmo event name.
|
|
118
|
+
*/
|
|
119
|
+
formatItemNg: EventEmitter<any>;
|
|
120
|
+
/**
|
|
121
|
+
* Angular (EventEmitter) version of the Wijmo <b>resizingColumn</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>resizingColumn</b> Wijmo event name.
|
|
124
|
+
*/
|
|
125
|
+
resizingColumnNg: EventEmitter<any>;
|
|
126
|
+
/**
|
|
127
|
+
* Angular (EventEmitter) version of the Wijmo <b>resizedColumn</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>resizedColumn</b> Wijmo event name.
|
|
130
|
+
*/
|
|
131
|
+
resizedColumnNg: EventEmitter<any>;
|
|
132
|
+
/**
|
|
133
|
+
* Angular (EventEmitter) version of the Wijmo <b>autoSizingColumn</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>autoSizingColumn</b> Wijmo event name.
|
|
136
|
+
*/
|
|
137
|
+
autoSizingColumnNg: EventEmitter<any>;
|
|
138
|
+
/**
|
|
139
|
+
* Angular (EventEmitter) version of the Wijmo <b>autoSizedColumn</b> event for programmatic access.
|
|
140
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
141
|
+
* In template bindings use the conventional <b>autoSizedColumn</b> Wijmo event name.
|
|
142
|
+
*/
|
|
143
|
+
autoSizedColumnNg: EventEmitter<any>;
|
|
144
|
+
/**
|
|
145
|
+
* Angular (EventEmitter) version of the Wijmo <b>draggingColumn</b> event for programmatic access.
|
|
146
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
147
|
+
* In template bindings use the conventional <b>draggingColumn</b> Wijmo event name.
|
|
148
|
+
*/
|
|
149
|
+
draggingColumnNg: EventEmitter<any>;
|
|
150
|
+
/**
|
|
151
|
+
* Angular (EventEmitter) version of the Wijmo <b>draggingColumnOver</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>draggingColumnOver</b> Wijmo event name.
|
|
154
|
+
*/
|
|
155
|
+
draggingColumnOverNg: EventEmitter<any>;
|
|
156
|
+
/**
|
|
157
|
+
* Angular (EventEmitter) version of the Wijmo <b>draggedColumn</b> event for programmatic access.
|
|
158
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
159
|
+
* In template bindings use the conventional <b>draggedColumn</b> Wijmo event name.
|
|
160
|
+
*/
|
|
161
|
+
draggedColumnNg: EventEmitter<any>;
|
|
162
|
+
/**
|
|
163
|
+
* Angular (EventEmitter) version of the Wijmo <b>sortingColumn</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>sortingColumn</b> Wijmo event name.
|
|
166
|
+
*/
|
|
167
|
+
sortingColumnNg: EventEmitter<any>;
|
|
168
|
+
/**
|
|
169
|
+
* Angular (EventEmitter) version of the Wijmo <b>sortedColumn</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>sortedColumn</b> Wijmo event name.
|
|
172
|
+
*/
|
|
173
|
+
sortedColumnNg: EventEmitter<any>;
|
|
174
|
+
/**
|
|
175
|
+
* Angular (EventEmitter) version of the Wijmo <b>pinningColumn</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>pinningColumn</b> Wijmo event name.
|
|
178
|
+
*/
|
|
179
|
+
pinningColumnNg: EventEmitter<any>;
|
|
180
|
+
/**
|
|
181
|
+
* Angular (EventEmitter) version of the Wijmo <b>pinnedColumn</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>pinnedColumn</b> Wijmo event name.
|
|
184
|
+
*/
|
|
185
|
+
pinnedColumnNg: EventEmitter<any>;
|
|
186
|
+
/**
|
|
187
|
+
* Angular (EventEmitter) version of the Wijmo <b>resizingRow</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>resizingRow</b> Wijmo event name.
|
|
190
|
+
*/
|
|
191
|
+
resizingRowNg: EventEmitter<any>;
|
|
192
|
+
/**
|
|
193
|
+
* Angular (EventEmitter) version of the Wijmo <b>resizedRow</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>resizedRow</b> Wijmo event name.
|
|
196
|
+
*/
|
|
197
|
+
resizedRowNg: EventEmitter<any>;
|
|
198
|
+
/**
|
|
199
|
+
* Angular (EventEmitter) version of the Wijmo <b>autoSizingRow</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>autoSizingRow</b> Wijmo event name.
|
|
202
|
+
*/
|
|
203
|
+
autoSizingRowNg: EventEmitter<any>;
|
|
204
|
+
/**
|
|
205
|
+
* Angular (EventEmitter) version of the Wijmo <b>autoSizedRow</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>autoSizedRow</b> Wijmo event name.
|
|
208
|
+
*/
|
|
209
|
+
autoSizedRowNg: EventEmitter<any>;
|
|
210
|
+
/**
|
|
211
|
+
* Angular (EventEmitter) version of the Wijmo <b>draggingRow</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>draggingRow</b> Wijmo event name.
|
|
214
|
+
*/
|
|
215
|
+
draggingRowNg: EventEmitter<any>;
|
|
216
|
+
/**
|
|
217
|
+
* Angular (EventEmitter) version of the Wijmo <b>draggingRowOver</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>draggingRowOver</b> Wijmo event name.
|
|
220
|
+
*/
|
|
221
|
+
draggingRowOverNg: EventEmitter<any>;
|
|
222
|
+
/**
|
|
223
|
+
* Angular (EventEmitter) version of the Wijmo <b>draggedRow</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>draggedRow</b> Wijmo event name.
|
|
226
|
+
*/
|
|
227
|
+
draggedRowNg: EventEmitter<any>;
|
|
228
|
+
/**
|
|
229
|
+
* Angular (EventEmitter) version of the Wijmo <b>deletingRow</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>deletingRow</b> Wijmo event name.
|
|
232
|
+
*/
|
|
233
|
+
deletingRowNg: EventEmitter<any>;
|
|
234
|
+
/**
|
|
235
|
+
* Angular (EventEmitter) version of the Wijmo <b>deletedRow</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>deletedRow</b> Wijmo event name.
|
|
238
|
+
*/
|
|
239
|
+
deletedRowNg: EventEmitter<any>;
|
|
240
|
+
/**
|
|
241
|
+
* Angular (EventEmitter) version of the Wijmo <b>loadingRows</b> event for programmatic access.
|
|
242
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
243
|
+
* In template bindings use the conventional <b>loadingRows</b> Wijmo event name.
|
|
244
|
+
*/
|
|
245
|
+
loadingRowsNg: EventEmitter<any>;
|
|
246
|
+
/**
|
|
247
|
+
* Angular (EventEmitter) version of the Wijmo <b>loadedRows</b> event for programmatic access.
|
|
248
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
249
|
+
* In template bindings use the conventional <b>loadedRows</b> Wijmo event name.
|
|
250
|
+
*/
|
|
251
|
+
loadedRowsNg: EventEmitter<any>;
|
|
252
|
+
/**
|
|
253
|
+
* Angular (EventEmitter) version of the Wijmo <b>rowEditStarting</b> event for programmatic access.
|
|
254
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
255
|
+
* In template bindings use the conventional <b>rowEditStarting</b> Wijmo event name.
|
|
256
|
+
*/
|
|
257
|
+
rowEditStartingNg: EventEmitter<any>;
|
|
258
|
+
/**
|
|
259
|
+
* Angular (EventEmitter) version of the Wijmo <b>rowEditStarted</b> event for programmatic access.
|
|
260
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
261
|
+
* In template bindings use the conventional <b>rowEditStarted</b> Wijmo event name.
|
|
262
|
+
*/
|
|
263
|
+
rowEditStartedNg: EventEmitter<any>;
|
|
264
|
+
/**
|
|
265
|
+
* Angular (EventEmitter) version of the Wijmo <b>rowEditEnding</b> event for programmatic access.
|
|
266
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
267
|
+
* In template bindings use the conventional <b>rowEditEnding</b> Wijmo event name.
|
|
268
|
+
*/
|
|
269
|
+
rowEditEndingNg: EventEmitter<any>;
|
|
270
|
+
/**
|
|
271
|
+
* Angular (EventEmitter) version of the Wijmo <b>rowEditEnded</b> event for programmatic access.
|
|
272
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
273
|
+
* In template bindings use the conventional <b>rowEditEnded</b> Wijmo event name.
|
|
274
|
+
*/
|
|
275
|
+
rowEditEndedNg: EventEmitter<any>;
|
|
276
|
+
/**
|
|
277
|
+
* Angular (EventEmitter) version of the Wijmo <b>rowAdded</b> event for programmatic access.
|
|
278
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
279
|
+
* In template bindings use the conventional <b>rowAdded</b> Wijmo event name.
|
|
280
|
+
*/
|
|
281
|
+
rowAddedNg: EventEmitter<any>;
|
|
282
|
+
/**
|
|
283
|
+
* Angular (EventEmitter) version of the Wijmo <b>groupCollapsedChanging</b> event for programmatic access.
|
|
284
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
285
|
+
* In template bindings use the conventional <b>groupCollapsedChanging</b> Wijmo event name.
|
|
286
|
+
*/
|
|
287
|
+
groupCollapsedChangingNg: EventEmitter<any>;
|
|
288
|
+
/**
|
|
289
|
+
* Angular (EventEmitter) version of the Wijmo <b>groupCollapsedChanged</b> event for programmatic access.
|
|
290
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
291
|
+
* In template bindings use the conventional <b>groupCollapsedChanged</b> Wijmo event name.
|
|
292
|
+
*/
|
|
293
|
+
groupCollapsedChangedNg: EventEmitter<any>;
|
|
294
|
+
/**
|
|
295
|
+
* Angular (EventEmitter) version of the Wijmo <b>columnGroupCollapsedChanging</b> event for programmatic access.
|
|
296
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
297
|
+
* In template bindings use the conventional <b>columnGroupCollapsedChanging</b> Wijmo event name.
|
|
298
|
+
*/
|
|
299
|
+
columnGroupCollapsedChangingNg: EventEmitter<any>;
|
|
300
|
+
/**
|
|
301
|
+
* Angular (EventEmitter) version of the Wijmo <b>columnGroupCollapsedChanged</b> event for programmatic access.
|
|
302
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
303
|
+
* In template bindings use the conventional <b>columnGroupCollapsedChanged</b> Wijmo event name.
|
|
304
|
+
*/
|
|
305
|
+
columnGroupCollapsedChangedNg: EventEmitter<any>;
|
|
306
|
+
/**
|
|
307
|
+
* Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanging</b> event for programmatic access.
|
|
308
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
309
|
+
* In template bindings use the conventional <b>itemsSourceChanging</b> Wijmo event name.
|
|
310
|
+
*/
|
|
311
|
+
itemsSourceChangingNg: EventEmitter<any>;
|
|
312
|
+
/**
|
|
313
|
+
* Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanged</b> event for programmatic access.
|
|
314
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
315
|
+
* In template bindings use the conventional <b>itemsSourceChanged</b> Wijmo event name.
|
|
316
|
+
*/
|
|
317
|
+
itemsSourceChangedNg: EventEmitter<any>;
|
|
318
|
+
/**
|
|
319
|
+
* Angular (EventEmitter) version of the Wijmo <b>selectionChanging</b> event for programmatic access.
|
|
320
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
321
|
+
* In template bindings use the conventional <b>selectionChanging</b> Wijmo event name.
|
|
322
|
+
*/
|
|
323
|
+
selectionChangingNg: EventEmitter<any>;
|
|
324
|
+
/**
|
|
325
|
+
* Angular (EventEmitter) version of the Wijmo <b>selectionChanged</b> event for programmatic access.
|
|
326
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
327
|
+
* In template bindings use the conventional <b>selectionChanged</b> Wijmo event name.
|
|
328
|
+
*/
|
|
329
|
+
selectionChangedNg: EventEmitter<any>;
|
|
330
|
+
/**
|
|
331
|
+
* Angular (EventEmitter) version of the Wijmo <b>scrollPositionChanged</b> event for programmatic access.
|
|
332
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
333
|
+
* In template bindings use the conventional <b>scrollPositionChanged</b> Wijmo event name.
|
|
334
|
+
*/
|
|
335
|
+
scrollPositionChangedNg: EventEmitter<any>;
|
|
336
|
+
/**
|
|
337
|
+
* Angular (EventEmitter) version of the Wijmo <b>updatingView</b> event for programmatic access.
|
|
338
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
339
|
+
* In template bindings use the conventional <b>updatingView</b> Wijmo event name.
|
|
340
|
+
*/
|
|
341
|
+
updatingViewNg: EventEmitter<any>;
|
|
342
|
+
/**
|
|
343
|
+
* Angular (EventEmitter) version of the Wijmo <b>updatedView</b> event for programmatic access.
|
|
344
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
345
|
+
* In template bindings use the conventional <b>updatedView</b> Wijmo event name.
|
|
346
|
+
*/
|
|
347
|
+
updatedViewNg: EventEmitter<any>;
|
|
348
|
+
/**
|
|
349
|
+
* Angular (EventEmitter) version of the Wijmo <b>updatingLayout</b> event for programmatic access.
|
|
350
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
351
|
+
* In template bindings use the conventional <b>updatingLayout</b> Wijmo event name.
|
|
352
|
+
*/
|
|
353
|
+
updatingLayoutNg: EventEmitter<any>;
|
|
354
|
+
/**
|
|
355
|
+
* Angular (EventEmitter) version of the Wijmo <b>updatedLayout</b> event for programmatic access.
|
|
356
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
357
|
+
* In template bindings use the conventional <b>updatedLayout</b> Wijmo event name.
|
|
358
|
+
*/
|
|
359
|
+
updatedLayoutNg: EventEmitter<any>;
|
|
360
|
+
/**
|
|
361
|
+
* Angular (EventEmitter) version of the Wijmo <b>pasting</b> event for programmatic access.
|
|
362
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
363
|
+
* In template bindings use the conventional <b>pasting</b> Wijmo event name.
|
|
364
|
+
*/
|
|
365
|
+
pastingNg: EventEmitter<any>;
|
|
366
|
+
/**
|
|
367
|
+
* Angular (EventEmitter) version of the Wijmo <b>pasted</b> event for programmatic access.
|
|
368
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
369
|
+
* In template bindings use the conventional <b>pasted</b> Wijmo event name.
|
|
370
|
+
*/
|
|
371
|
+
pastedNg: EventEmitter<any>;
|
|
372
|
+
/**
|
|
373
|
+
* Angular (EventEmitter) version of the Wijmo <b>pastingCell</b> event for programmatic access.
|
|
374
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
375
|
+
* In template bindings use the conventional <b>pastingCell</b> Wijmo event name.
|
|
376
|
+
*/
|
|
377
|
+
pastingCellNg: EventEmitter<any>;
|
|
378
|
+
/**
|
|
379
|
+
* Angular (EventEmitter) version of the Wijmo <b>pastedCell</b> event for programmatic access.
|
|
380
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
381
|
+
* In template bindings use the conventional <b>pastedCell</b> Wijmo event name.
|
|
382
|
+
*/
|
|
383
|
+
pastedCellNg: EventEmitter<any>;
|
|
384
|
+
/**
|
|
385
|
+
* Angular (EventEmitter) version of the Wijmo <b>copying</b> event for programmatic access.
|
|
386
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
387
|
+
* In template bindings use the conventional <b>copying</b> Wijmo event name.
|
|
388
|
+
*/
|
|
389
|
+
copyingNg: EventEmitter<any>;
|
|
390
|
+
/**
|
|
391
|
+
* Angular (EventEmitter) version of the Wijmo <b>copied</b> event for programmatic access.
|
|
392
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
393
|
+
* In template bindings use the conventional <b>copied</b> Wijmo event name.
|
|
394
|
+
*/
|
|
395
|
+
copiedNg: EventEmitter<any>;
|
|
396
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
397
|
+
/**
|
|
398
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
399
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
400
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
401
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
402
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
403
|
+
*/
|
|
404
|
+
created(): void;
|
|
405
|
+
ngOnInit(): void;
|
|
406
|
+
ngAfterViewInit(): void;
|
|
407
|
+
ngOnDestroy(): void;
|
|
408
|
+
addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
|
|
409
|
+
}
|
|
410
|
+
export declare class WjGridTransposedmultirowModule {
|
|
411
|
+
}
|
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,o){return(extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,o){e.__proto__=o}||function(e,o){for(var t in o)o.hasOwnProperty(t)&&(e[t]=o[t])})(e,o)};return function(e,o){extendStatics(e,o);function __(){this.constructor=e}e.prototype=null===o?Object.create(o):(__.prototype=o.prototype,new __)}}(),__decorate=this&&this.__decorate||function(e,o,t,r){var n,i=arguments.length,a=i<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,t):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(e,o,t,r);else for(var s=e.length-1;s>=0;s--)(n=e[s])&&(a=(i<3?n(a):i>3?n(o,t,a):n(o,t))||a);return i>3&&a&&Object.defineProperty(o,t,a),a},__param=this&&this.__param||function(e,o){return function(t,r){o(t,r,e)}},__importStar=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var o={};if(null!=e)for(var t in e)Object.hasOwnProperty.call(e,t)&&(o[t]=e[t]);o.default=e;return o};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"),wjcGridTransposedmultirow=__importStar(require("@mescius/wijmo.grid.transposedmultirow")),wjTransposedMultiRowMeta={selector:"wj-transposed-multi-row",template:"",inputs:["wjModelProperty","isDisabled","tabOrder","newRowAtTop","allowAddNew","allowDelete","allowDragging","allowMerging","allowResizing","allowSorting","allowPinning","autoScroll","autoRowHeights","autoSizeMode","autoGenerateColumns","autoSearch","caseSensitiveSearch","quickAutoSize","bigCheckboxes","childItemsPath","groupHeaderFormat","headersVisibility","showSelectedHeaders","showMarquee","showPlaceholders","itemFormatter","isReadOnly","imeEnabled","mergeManager","selectionMode","showGroups","showSort","showDropDown","showAlternatingRows","showErrors","alternatingRowStep","itemValidator","validateEdits","treeIndent","itemsSource","autoClipboard","expandSelectionOnCopyPaste","frozenRows","frozenColumns","cloneFrozenCells","deferResizing","sortRowIndex","editColumnIndex","stickyHeaders","preserveSelectedState","preserveOutlineState","preserveWhiteSpace","keyActionTab","keyActionEnter","rowHeaderPath","virtualizationThreshold","anchorCursor","lazyRender","refreshOnEdit","copyHeaders","columnGroups","layoutDefinition","commitEmptyEdits","headersFocusability"],outputs:["initialized","gotFocusNg: gotFocus","lostFocusNg: lostFocus","refreshingNg: refreshing","refreshedNg: refreshed","invalidInputNg: invalidInput","beginningEditNg: beginningEdit","cellEditEndedNg: cellEditEnded","cellEditEndingNg: cellEditEnding","prepareCellForEditNg: prepareCellForEdit","formatItemNg: formatItem","resizingColumnNg: resizingColumn","resizedColumnNg: resizedColumn","autoSizingColumnNg: autoSizingColumn","autoSizedColumnNg: autoSizedColumn","draggingColumnNg: draggingColumn","draggingColumnOverNg: draggingColumnOver","draggedColumnNg: draggedColumn","sortingColumnNg: sortingColumn","sortedColumnNg: sortedColumn","pinningColumnNg: pinningColumn","pinnedColumnNg: pinnedColumn","resizingRowNg: resizingRow","resizedRowNg: resizedRow","autoSizingRowNg: autoSizingRow","autoSizedRowNg: autoSizedRow","draggingRowNg: draggingRow","draggingRowOverNg: draggingRowOver","draggedRowNg: draggedRow","deletingRowNg: deletingRow","deletedRowNg: deletedRow","loadingRowsNg: loadingRows","loadedRowsNg: loadedRows","rowEditStartingNg: rowEditStarting","rowEditStartedNg: rowEditStarted","rowEditEndingNg: rowEditEnding","rowEditEndedNg: rowEditEnded","rowAddedNg: rowAdded","groupCollapsedChangingNg: groupCollapsedChanging","groupCollapsedChangedNg: groupCollapsedChanged","columnGroupCollapsedChangingNg: columnGroupCollapsedChanging","columnGroupCollapsedChangedNg: columnGroupCollapsedChanged","itemsSourceChangingNg: itemsSourceChanging","itemsSourceChangedNg: itemsSourceChanged","selectionChangingNg: selectionChanging","selectionChangedNg: selectionChanged","scrollPositionChangedNg: scrollPositionChanged","updatingViewNg: updatingView","updatedViewNg: updatedView","updatingLayoutNg: updatingLayout","updatedLayoutNg: updatedLayout","pastingNg: pasting","pastedNg: pasted","pastingCellNg: pastingCell","pastedCellNg: pastedCell","copyingNg: copying","copiedNg: copied"],providers:[{provide:forms_1.NG_VALUE_ACCESSOR,useFactory:wijmo.angular2legacy_directivebase_1.WjValueAccessorFactory,multi:!0,deps:["WjComponent"]}]};exports.wjTransposedMultiRowMeta=wjTransposedMultiRowMeta;var WjTransposedMultiRow=function(e){__extends(WjTransposedMultiRow,e);function WjTransposedMultiRow(o,t,r){var n=e.call(this,wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.getHostElement(o,t))||this;n.isInitialized=!1;n._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(n,o,t,r);n.created();return n}o=WjTransposedMultiRow;WjTransposedMultiRow.prototype.created=function(){};WjTransposedMultiRow.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjTransposedMultiRow.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjTransposedMultiRow.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};WjTransposedMultiRow.prototype.addEventListener=function(o,t,r,n){var i=this;void 0===n&&(n=!1);var a=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior,s=a.getZone(this);s&&a.outsideZoneEvents[t]?s.runOutsideAngular((function(){e.prototype.addEventListener.call(i,o,t,r,n)})):e.prototype.addEventListener.call(this,o,t,r,n)};var o;WjTransposedMultiRow.meta={outputs:wjTransposedMultiRowMeta.outputs};return WjTransposedMultiRow=o=__decorate([core_1.Component({selector:wjTransposedMultiRowMeta.selector,template:wjTransposedMultiRowMeta.template,inputs:wjTransposedMultiRowMeta.inputs,outputs:wjTransposedMultiRowMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return o}))}].concat(wjTransposedMultiRowMeta.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())],WjTransposedMultiRow)}(wjcGridTransposedmultirow.TransposedMultiRow);exports.WjTransposedMultiRow=WjTransposedMultiRow;var moduleExports=[WjTransposedMultiRow],WjGridTransposedmultirowModule=function(){function WjGridTransposedmultirowModule(){}return WjGridTransposedmultirowModule=__decorate([core_1.NgModule({imports:[common_1.CommonModule],declarations:moduleExports.slice(),exports:moduleExports.slice()})],WjGridTransposedmultirowModule)}();exports.WjGridTransposedmultirowModule=WjGridTransposedmultirowModule;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"__symbolic":"module","version":3,"metadata":{"___keepComment":{"__symbolic":"error","message":"Variable not initialized","line":26,"character":19},"wjTransposedMultiRowMeta":{"selector":"wj-transposed-multi-row","template":"","inputs":["wjModelProperty","isDisabled","tabOrder","newRowAtTop","allowAddNew","allowDelete","allowDragging","allowMerging","allowResizing","allowSorting","allowPinning","autoScroll","autoRowHeights","autoSizeMode","autoGenerateColumns","autoSearch","caseSensitiveSearch","quickAutoSize","bigCheckboxes","childItemsPath","groupHeaderFormat","headersVisibility","showSelectedHeaders","showMarquee","showPlaceholders","itemFormatter","isReadOnly","imeEnabled","mergeManager","selectionMode","showGroups","showSort","showDropDown","showAlternatingRows","showErrors","alternatingRowStep","itemValidator","validateEdits","treeIndent","itemsSource","autoClipboard","expandSelectionOnCopyPaste","frozenRows","frozenColumns","cloneFrozenCells","deferResizing","sortRowIndex","editColumnIndex","stickyHeaders","preserveSelectedState","preserveOutlineState","preserveWhiteSpace","keyActionTab","keyActionEnter","rowHeaderPath","virtualizationThreshold","anchorCursor","lazyRender","refreshOnEdit","copyHeaders","columnGroups","layoutDefinition","commitEmptyEdits","headersFocusability"],"outputs":["initialized","gotFocusNg: gotFocus","lostFocusNg: lostFocus","refreshingNg: refreshing","refreshedNg: refreshed","invalidInputNg: invalidInput","beginningEditNg: beginningEdit","cellEditEndedNg: cellEditEnded","cellEditEndingNg: cellEditEnding","prepareCellForEditNg: prepareCellForEdit","formatItemNg: formatItem","resizingColumnNg: resizingColumn","resizedColumnNg: resizedColumn","autoSizingColumnNg: autoSizingColumn","autoSizedColumnNg: autoSizedColumn","draggingColumnNg: draggingColumn","draggingColumnOverNg: draggingColumnOver","draggedColumnNg: draggedColumn","sortingColumnNg: sortingColumn","sortedColumnNg: sortedColumn","pinningColumnNg: pinningColumn","pinnedColumnNg: pinnedColumn","resizingRowNg: resizingRow","resizedRowNg: resizedRow","autoSizingRowNg: autoSizingRow","autoSizedRowNg: autoSizedRow","draggingRowNg: draggingRow","draggingRowOverNg: draggingRowOver","draggedRowNg: draggedRow","deletingRowNg: deletingRow","deletedRowNg: deletedRow","loadingRowsNg: loadingRows","loadedRowsNg: loadedRows","rowEditStartingNg: rowEditStarting","rowEditStartedNg: rowEditStarted","rowEditEndingNg: rowEditEnding","rowEditEndedNg: rowEditEnded","rowAddedNg: rowAdded","groupCollapsedChangingNg: groupCollapsedChanging","groupCollapsedChangedNg: groupCollapsedChanged","columnGroupCollapsedChangingNg: columnGroupCollapsedChanging","columnGroupCollapsedChangedNg: columnGroupCollapsedChanged","itemsSourceChangingNg: itemsSourceChanging","itemsSourceChangedNg: itemsSourceChanged","selectionChangingNg: selectionChanging","selectionChangedNg: selectionChanged","scrollPositionChangedNg: scrollPositionChanged","updatingViewNg: updatingView","updatedViewNg: updatedView","updatingLayoutNg: updatingLayout","updatedLayoutNg: updatedLayout","pastingNg: pasting","pastedNg: pasted","pastingCellNg: pastingCell","pastedCellNg: pastedCell","copyingNg: copying","copiedNg: copied"],"providers":[{"provide":{"__symbolic":"reference","module":"@angular/forms","name":"NG_VALUE_ACCESSOR"},"useFactory":{"__symbolic":"reference","module":"@mescius/wijmo.angular2legacy.directivebase","name":"WjValueAccessorFactory"},"multi":true,"deps":["WjComponent"]}]},"WjTransposedMultiRow":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.grid.transposedmultirow","name":"TransposedMultiRow"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTransposedMultiRowMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTransposedMultiRowMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTransposedMultiRowMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTransposedMultiRowMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjTransposedMultiRow"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTransposedMultiRowMeta"},"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"}],"addEventListener":[{"__symbolic":"method"}]},"statics":{"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTransposedMultiRowMeta"},"member":"outputs"}}}},"WjGridTransposedmultirowModule":{"__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":"WjTransposedMultiRow"}],"exports":[{"__symbolic":"reference","name":"WjTransposedMultiRow"}]}]}]}}},{"__symbolic":"module","version":1,"metadata":{"___keepComment":{"__symbolic":"error","message":"Variable not initialized","line":26,"character":19},"wjTransposedMultiRowMeta":{"selector":"wj-transposed-multi-row","template":"","inputs":["wjModelProperty","isDisabled","tabOrder","newRowAtTop","allowAddNew","allowDelete","allowDragging","allowMerging","allowResizing","allowSorting","allowPinning","autoScroll","autoRowHeights","autoSizeMode","autoGenerateColumns","autoSearch","caseSensitiveSearch","quickAutoSize","bigCheckboxes","childItemsPath","groupHeaderFormat","headersVisibility","showSelectedHeaders","showMarquee","showPlaceholders","itemFormatter","isReadOnly","imeEnabled","mergeManager","selectionMode","showGroups","showSort","showDropDown","showAlternatingRows","showErrors","alternatingRowStep","itemValidator","validateEdits","treeIndent","itemsSource","autoClipboard","expandSelectionOnCopyPaste","frozenRows","frozenColumns","cloneFrozenCells","deferResizing","sortRowIndex","editColumnIndex","stickyHeaders","preserveSelectedState","preserveOutlineState","preserveWhiteSpace","keyActionTab","keyActionEnter","rowHeaderPath","virtualizationThreshold","anchorCursor","lazyRender","refreshOnEdit","copyHeaders","columnGroups","layoutDefinition","commitEmptyEdits","headersFocusability"],"outputs":["initialized","gotFocusNg: gotFocus","lostFocusNg: lostFocus","refreshingNg: refreshing","refreshedNg: refreshed","invalidInputNg: invalidInput","beginningEditNg: beginningEdit","cellEditEndedNg: cellEditEnded","cellEditEndingNg: cellEditEnding","prepareCellForEditNg: prepareCellForEdit","formatItemNg: formatItem","resizingColumnNg: resizingColumn","resizedColumnNg: resizedColumn","autoSizingColumnNg: autoSizingColumn","autoSizedColumnNg: autoSizedColumn","draggingColumnNg: draggingColumn","draggingColumnOverNg: draggingColumnOver","draggedColumnNg: draggedColumn","sortingColumnNg: sortingColumn","sortedColumnNg: sortedColumn","pinningColumnNg: pinningColumn","pinnedColumnNg: pinnedColumn","resizingRowNg: resizingRow","resizedRowNg: resizedRow","autoSizingRowNg: autoSizingRow","autoSizedRowNg: autoSizedRow","draggingRowNg: draggingRow","draggingRowOverNg: draggingRowOver","draggedRowNg: draggedRow","deletingRowNg: deletingRow","deletedRowNg: deletedRow","loadingRowsNg: loadingRows","loadedRowsNg: loadedRows","rowEditStartingNg: rowEditStarting","rowEditStartedNg: rowEditStarted","rowEditEndingNg: rowEditEnding","rowEditEndedNg: rowEditEnded","rowAddedNg: rowAdded","groupCollapsedChangingNg: groupCollapsedChanging","groupCollapsedChangedNg: groupCollapsedChanged","columnGroupCollapsedChangingNg: columnGroupCollapsedChanging","columnGroupCollapsedChangedNg: columnGroupCollapsedChanged","itemsSourceChangingNg: itemsSourceChanging","itemsSourceChangedNg: itemsSourceChanged","selectionChangingNg: selectionChanging","selectionChangedNg: selectionChanged","scrollPositionChangedNg: scrollPositionChanged","updatingViewNg: updatingView","updatedViewNg: updatedView","updatingLayoutNg: updatingLayout","updatedLayoutNg: updatedLayout","pastingNg: pasting","pastedNg: pasted","pastingCellNg: pastingCell","pastedCellNg: pastedCell","copyingNg: copying","copiedNg: copied"],"providers":[{"provide":{"__symbolic":"reference","module":"@angular/forms","name":"NG_VALUE_ACCESSOR"},"useFactory":{"__symbolic":"reference","module":"@mescius/wijmo.angular2legacy.directivebase","name":"WjValueAccessorFactory"},"multi":true,"deps":["WjComponent"]}]},"WjTransposedMultiRow":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.grid.transposedmultirow","name":"TransposedMultiRow"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTransposedMultiRowMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTransposedMultiRowMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTransposedMultiRowMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTransposedMultiRowMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjTransposedMultiRow"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTransposedMultiRowMeta"},"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"}],"addEventListener":[{"__symbolic":"method"}]},"statics":{"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjTransposedMultiRowMeta"},"member":"outputs"}}}},"WjGridTransposedmultirowModule":{"__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":"WjTransposedMultiRow"}],"exports":[{"__symbolic":"reference","name":"WjTransposedMultiRow"}]}]}]}}}]
|
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mescius/wijmo.angular2legacy.grid.transposedmultirow",
|
|
3
|
+
"version": "5.20232.939",
|
|
4
|
+
"description": "UI library for pure JS, Angular, React, Vue and more...",
|
|
5
|
+
"author": "MESCIUS inc",
|
|
6
|
+
"license": "Commercial",
|
|
7
|
+
"main": "./index.js",
|
|
8
|
+
"types": "./index.d.ts",
|
|
9
|
+
"dependencies": {
|
|
10
|
+
"@mescius/wijmo": "5.20232.939",
|
|
11
|
+
"@mescius/wijmo.grid.transposedmultirow": "5.20232.939",
|
|
12
|
+
"@mescius/wijmo.angular2legacy.directivebase": "5.20232.939"
|
|
13
|
+
},
|
|
14
|
+
"homepage": "https://developer.mescius.com/wijmo",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://developer.mescius.com/forums/wijmo"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"control",
|
|
20
|
+
"component",
|
|
21
|
+
"ui",
|
|
22
|
+
"control library",
|
|
23
|
+
"component library",
|
|
24
|
+
"ui library",
|
|
25
|
+
"control-library",
|
|
26
|
+
"component-library",
|
|
27
|
+
"ui-library",
|
|
28
|
+
"grid",
|
|
29
|
+
"data grid",
|
|
30
|
+
"data-grid",
|
|
31
|
+
"datagrid",
|
|
32
|
+
"angular grid",
|
|
33
|
+
"react grid",
|
|
34
|
+
"vue grid",
|
|
35
|
+
"angular-grid",
|
|
36
|
+
"react-grid",
|
|
37
|
+
"vue-grid"
|
|
38
|
+
],
|
|
39
|
+
"module": "./es5-esm.js",
|
|
40
|
+
"esm5": "./es5-esm.js",
|
|
41
|
+
"wj-esm5": "./es5-esm.js",
|
|
42
|
+
"es2015Cjs": "./es2015-commonjs.js",
|
|
43
|
+
"wj-es2015Cjs": "./es2015-commonjs.js",
|
|
44
|
+
"esm2015": "./es2015-esm.js",
|
|
45
|
+
"wj-esm2015": "./es2015-esm.js"
|
|
46
|
+
}
|