@mescius/wijmo.angular2.grid.transposed 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 +68 -0
- package/es5-esm.js +68 -0
- package/index.d.ts +479 -0
- package/index.js +69 -0
- package/package.json +46 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,479 @@
|
|
|
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.grid.transposed}
|
|
15
|
+
* Contains Angular 2 components for the <b>wijmo.grid.transposed</b> module.
|
|
16
|
+
*
|
|
17
|
+
* <b>wijmo.angular2.grid.transposed</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
|
+
import * as ɵngcc0 from '@angular/core';
|
|
27
|
+
import * as ɵngcc1 from '@angular/common';
|
|
28
|
+
export declare var ___keepComment: any;
|
|
29
|
+
import { EventEmitter, AfterViewInit, ElementRef, Injector, OnInit, OnDestroy } from '@angular/core';
|
|
30
|
+
import { IWjComponentMetadata, IWjComponentMeta } from '@grapecity/wijmo.angular2.directivebase';
|
|
31
|
+
import * as wjcGridTransposed from '@grapecity/wijmo.grid.transposed';
|
|
32
|
+
declare var wjTransposedGridMeta: IWjComponentMeta;
|
|
33
|
+
export { wjTransposedGridMeta };
|
|
34
|
+
/**
|
|
35
|
+
* Angular 2 component for the {@link wijmo.grid.transposed.TransposedGrid} control.
|
|
36
|
+
*
|
|
37
|
+
* Use the <b>wj-transposed-grid</b> component to add <b>TransposedGrid</b> controls to your
|
|
38
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
39
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
40
|
+
*
|
|
41
|
+
* The <b>WjTransposedGrid</b> component is derived from the <b>TransposedGrid</b> control and
|
|
42
|
+
* inherits all its properties, events and methods.
|
|
43
|
+
*
|
|
44
|
+
* The <b>wj-transposed-grid</b> component may contain a {@link wijmo.angular2.grid.transposed.WjTransposedGridRow} child component.
|
|
45
|
+
*/
|
|
46
|
+
export declare class WjTransposedGrid extends wjcGridTransposed.TransposedGrid implements OnInit, OnDestroy, AfterViewInit {
|
|
47
|
+
static readonly meta: IWjComponentMetadata;
|
|
48
|
+
private _wjBehaviour;
|
|
49
|
+
/**
|
|
50
|
+
* Indicates whether the component has been initialized by Angular.
|
|
51
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
52
|
+
*/
|
|
53
|
+
isInitialized: boolean;
|
|
54
|
+
/**
|
|
55
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
56
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
57
|
+
*/
|
|
58
|
+
initialized: EventEmitter<any>;
|
|
59
|
+
/**
|
|
60
|
+
* Defines a name of a property represented by [(ngModel)] directive (if specified).
|
|
61
|
+
* Default value is ''.
|
|
62
|
+
*/
|
|
63
|
+
wjModelProperty: string;
|
|
64
|
+
/**
|
|
65
|
+
* Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
|
|
66
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
67
|
+
* In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
|
|
68
|
+
*/
|
|
69
|
+
gotFocusNg: EventEmitter<any>;
|
|
70
|
+
/**
|
|
71
|
+
* Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
|
|
72
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
73
|
+
* In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
|
|
74
|
+
*/
|
|
75
|
+
lostFocusNg: EventEmitter<any>;
|
|
76
|
+
/**
|
|
77
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshing</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>refreshing</b> Wijmo event name.
|
|
80
|
+
*/
|
|
81
|
+
refreshingNg: EventEmitter<any>;
|
|
82
|
+
/**
|
|
83
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshed</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>refreshed</b> Wijmo event name.
|
|
86
|
+
*/
|
|
87
|
+
refreshedNg: EventEmitter<any>;
|
|
88
|
+
/**
|
|
89
|
+
* Angular (EventEmitter) version of the Wijmo <b>invalidInput</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>invalidInput</b> Wijmo event name.
|
|
92
|
+
*/
|
|
93
|
+
invalidInputNg: EventEmitter<any>;
|
|
94
|
+
/**
|
|
95
|
+
* Angular (EventEmitter) version of the Wijmo <b>beginningEdit</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>beginningEdit</b> Wijmo event name.
|
|
98
|
+
*/
|
|
99
|
+
beginningEditNg: EventEmitter<any>;
|
|
100
|
+
/**
|
|
101
|
+
* Angular (EventEmitter) version of the Wijmo <b>cellEditEnded</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>cellEditEnded</b> Wijmo event name.
|
|
104
|
+
*/
|
|
105
|
+
cellEditEndedNg: EventEmitter<any>;
|
|
106
|
+
/**
|
|
107
|
+
* Angular (EventEmitter) version of the Wijmo <b>cellEditEnding</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>cellEditEnding</b> Wijmo event name.
|
|
110
|
+
*/
|
|
111
|
+
cellEditEndingNg: EventEmitter<any>;
|
|
112
|
+
/**
|
|
113
|
+
* Angular (EventEmitter) version of the Wijmo <b>prepareCellForEdit</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>prepareCellForEdit</b> Wijmo event name.
|
|
116
|
+
*/
|
|
117
|
+
prepareCellForEditNg: EventEmitter<any>;
|
|
118
|
+
/**
|
|
119
|
+
* Angular (EventEmitter) version of the Wijmo <b>formatItem</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>formatItem</b> Wijmo event name.
|
|
122
|
+
*/
|
|
123
|
+
formatItemNg: EventEmitter<any>;
|
|
124
|
+
/**
|
|
125
|
+
* Angular (EventEmitter) version of the Wijmo <b>resizingColumn</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>resizingColumn</b> Wijmo event name.
|
|
128
|
+
*/
|
|
129
|
+
resizingColumnNg: EventEmitter<any>;
|
|
130
|
+
/**
|
|
131
|
+
* Angular (EventEmitter) version of the Wijmo <b>resizedColumn</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>resizedColumn</b> Wijmo event name.
|
|
134
|
+
*/
|
|
135
|
+
resizedColumnNg: EventEmitter<any>;
|
|
136
|
+
/**
|
|
137
|
+
* Angular (EventEmitter) version of the Wijmo <b>autoSizingColumn</b> event for programmatic access.
|
|
138
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
139
|
+
* In template bindings use the conventional <b>autoSizingColumn</b> Wijmo event name.
|
|
140
|
+
*/
|
|
141
|
+
autoSizingColumnNg: EventEmitter<any>;
|
|
142
|
+
/**
|
|
143
|
+
* Angular (EventEmitter) version of the Wijmo <b>autoSizedColumn</b> event for programmatic access.
|
|
144
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
145
|
+
* In template bindings use the conventional <b>autoSizedColumn</b> Wijmo event name.
|
|
146
|
+
*/
|
|
147
|
+
autoSizedColumnNg: EventEmitter<any>;
|
|
148
|
+
/**
|
|
149
|
+
* Angular (EventEmitter) version of the Wijmo <b>draggingColumn</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>draggingColumn</b> Wijmo event name.
|
|
152
|
+
*/
|
|
153
|
+
draggingColumnNg: EventEmitter<any>;
|
|
154
|
+
/**
|
|
155
|
+
* Angular (EventEmitter) version of the Wijmo <b>draggingColumnOver</b> event for programmatic access.
|
|
156
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
157
|
+
* In template bindings use the conventional <b>draggingColumnOver</b> Wijmo event name.
|
|
158
|
+
*/
|
|
159
|
+
draggingColumnOverNg: EventEmitter<any>;
|
|
160
|
+
/**
|
|
161
|
+
* Angular (EventEmitter) version of the Wijmo <b>draggedColumn</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>draggedColumn</b> Wijmo event name.
|
|
164
|
+
*/
|
|
165
|
+
draggedColumnNg: EventEmitter<any>;
|
|
166
|
+
/**
|
|
167
|
+
* Angular (EventEmitter) version of the Wijmo <b>sortingColumn</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>sortingColumn</b> Wijmo event name.
|
|
170
|
+
*/
|
|
171
|
+
sortingColumnNg: EventEmitter<any>;
|
|
172
|
+
/**
|
|
173
|
+
* Angular (EventEmitter) version of the Wijmo <b>sortedColumn</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>sortedColumn</b> Wijmo event name.
|
|
176
|
+
*/
|
|
177
|
+
sortedColumnNg: EventEmitter<any>;
|
|
178
|
+
/**
|
|
179
|
+
* Angular (EventEmitter) version of the Wijmo <b>pinningColumn</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>pinningColumn</b> Wijmo event name.
|
|
182
|
+
*/
|
|
183
|
+
pinningColumnNg: EventEmitter<any>;
|
|
184
|
+
/**
|
|
185
|
+
* Angular (EventEmitter) version of the Wijmo <b>pinnedColumn</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>pinnedColumn</b> Wijmo event name.
|
|
188
|
+
*/
|
|
189
|
+
pinnedColumnNg: EventEmitter<any>;
|
|
190
|
+
/**
|
|
191
|
+
* Angular (EventEmitter) version of the Wijmo <b>resizingRow</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>resizingRow</b> Wijmo event name.
|
|
194
|
+
*/
|
|
195
|
+
resizingRowNg: EventEmitter<any>;
|
|
196
|
+
/**
|
|
197
|
+
* Angular (EventEmitter) version of the Wijmo <b>resizedRow</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>resizedRow</b> Wijmo event name.
|
|
200
|
+
*/
|
|
201
|
+
resizedRowNg: EventEmitter<any>;
|
|
202
|
+
/**
|
|
203
|
+
* Angular (EventEmitter) version of the Wijmo <b>autoSizingRow</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>autoSizingRow</b> Wijmo event name.
|
|
206
|
+
*/
|
|
207
|
+
autoSizingRowNg: EventEmitter<any>;
|
|
208
|
+
/**
|
|
209
|
+
* Angular (EventEmitter) version of the Wijmo <b>autoSizedRow</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>autoSizedRow</b> Wijmo event name.
|
|
212
|
+
*/
|
|
213
|
+
autoSizedRowNg: EventEmitter<any>;
|
|
214
|
+
/**
|
|
215
|
+
* Angular (EventEmitter) version of the Wijmo <b>draggingRow</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>draggingRow</b> Wijmo event name.
|
|
218
|
+
*/
|
|
219
|
+
draggingRowNg: EventEmitter<any>;
|
|
220
|
+
/**
|
|
221
|
+
* Angular (EventEmitter) version of the Wijmo <b>draggingRowOver</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>draggingRowOver</b> Wijmo event name.
|
|
224
|
+
*/
|
|
225
|
+
draggingRowOverNg: EventEmitter<any>;
|
|
226
|
+
/**
|
|
227
|
+
* Angular (EventEmitter) version of the Wijmo <b>draggedRow</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>draggedRow</b> Wijmo event name.
|
|
230
|
+
*/
|
|
231
|
+
draggedRowNg: EventEmitter<any>;
|
|
232
|
+
/**
|
|
233
|
+
* Angular (EventEmitter) version of the Wijmo <b>deletingRow</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>deletingRow</b> Wijmo event name.
|
|
236
|
+
*/
|
|
237
|
+
deletingRowNg: EventEmitter<any>;
|
|
238
|
+
/**
|
|
239
|
+
* Angular (EventEmitter) version of the Wijmo <b>deletedRow</b> event for programmatic access.
|
|
240
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
241
|
+
* In template bindings use the conventional <b>deletedRow</b> Wijmo event name.
|
|
242
|
+
*/
|
|
243
|
+
deletedRowNg: EventEmitter<any>;
|
|
244
|
+
/**
|
|
245
|
+
* Angular (EventEmitter) version of the Wijmo <b>loadingRows</b> event for programmatic access.
|
|
246
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
247
|
+
* In template bindings use the conventional <b>loadingRows</b> Wijmo event name.
|
|
248
|
+
*/
|
|
249
|
+
loadingRowsNg: EventEmitter<any>;
|
|
250
|
+
/**
|
|
251
|
+
* Angular (EventEmitter) version of the Wijmo <b>loadedRows</b> event for programmatic access.
|
|
252
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
253
|
+
* In template bindings use the conventional <b>loadedRows</b> Wijmo event name.
|
|
254
|
+
*/
|
|
255
|
+
loadedRowsNg: EventEmitter<any>;
|
|
256
|
+
/**
|
|
257
|
+
* Angular (EventEmitter) version of the Wijmo <b>rowEditStarting</b> event for programmatic access.
|
|
258
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
259
|
+
* In template bindings use the conventional <b>rowEditStarting</b> Wijmo event name.
|
|
260
|
+
*/
|
|
261
|
+
rowEditStartingNg: EventEmitter<any>;
|
|
262
|
+
/**
|
|
263
|
+
* Angular (EventEmitter) version of the Wijmo <b>rowEditStarted</b> event for programmatic access.
|
|
264
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
265
|
+
* In template bindings use the conventional <b>rowEditStarted</b> Wijmo event name.
|
|
266
|
+
*/
|
|
267
|
+
rowEditStartedNg: EventEmitter<any>;
|
|
268
|
+
/**
|
|
269
|
+
* Angular (EventEmitter) version of the Wijmo <b>rowEditEnding</b> event for programmatic access.
|
|
270
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
271
|
+
* In template bindings use the conventional <b>rowEditEnding</b> Wijmo event name.
|
|
272
|
+
*/
|
|
273
|
+
rowEditEndingNg: EventEmitter<any>;
|
|
274
|
+
/**
|
|
275
|
+
* Angular (EventEmitter) version of the Wijmo <b>rowEditEnded</b> event for programmatic access.
|
|
276
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
277
|
+
* In template bindings use the conventional <b>rowEditEnded</b> Wijmo event name.
|
|
278
|
+
*/
|
|
279
|
+
rowEditEndedNg: EventEmitter<any>;
|
|
280
|
+
/**
|
|
281
|
+
* Angular (EventEmitter) version of the Wijmo <b>rowAdded</b> event for programmatic access.
|
|
282
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
283
|
+
* In template bindings use the conventional <b>rowAdded</b> Wijmo event name.
|
|
284
|
+
*/
|
|
285
|
+
rowAddedNg: EventEmitter<any>;
|
|
286
|
+
/**
|
|
287
|
+
* Angular (EventEmitter) version of the Wijmo <b>groupCollapsedChanging</b> event for programmatic access.
|
|
288
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
289
|
+
* In template bindings use the conventional <b>groupCollapsedChanging</b> Wijmo event name.
|
|
290
|
+
*/
|
|
291
|
+
groupCollapsedChangingNg: EventEmitter<any>;
|
|
292
|
+
/**
|
|
293
|
+
* Angular (EventEmitter) version of the Wijmo <b>groupCollapsedChanged</b> event for programmatic access.
|
|
294
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
295
|
+
* In template bindings use the conventional <b>groupCollapsedChanged</b> Wijmo event name.
|
|
296
|
+
*/
|
|
297
|
+
groupCollapsedChangedNg: EventEmitter<any>;
|
|
298
|
+
/**
|
|
299
|
+
* Angular (EventEmitter) version of the Wijmo <b>columnGroupCollapsedChanging</b> event for programmatic access.
|
|
300
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
301
|
+
* In template bindings use the conventional <b>columnGroupCollapsedChanging</b> Wijmo event name.
|
|
302
|
+
*/
|
|
303
|
+
columnGroupCollapsedChangingNg: EventEmitter<any>;
|
|
304
|
+
/**
|
|
305
|
+
* Angular (EventEmitter) version of the Wijmo <b>columnGroupCollapsedChanged</b> event for programmatic access.
|
|
306
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
307
|
+
* In template bindings use the conventional <b>columnGroupCollapsedChanged</b> Wijmo event name.
|
|
308
|
+
*/
|
|
309
|
+
columnGroupCollapsedChangedNg: EventEmitter<any>;
|
|
310
|
+
/**
|
|
311
|
+
* Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanging</b> event for programmatic access.
|
|
312
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
313
|
+
* In template bindings use the conventional <b>itemsSourceChanging</b> Wijmo event name.
|
|
314
|
+
*/
|
|
315
|
+
itemsSourceChangingNg: EventEmitter<any>;
|
|
316
|
+
/**
|
|
317
|
+
* Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanged</b> event for programmatic access.
|
|
318
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
319
|
+
* In template bindings use the conventional <b>itemsSourceChanged</b> Wijmo event name.
|
|
320
|
+
*/
|
|
321
|
+
itemsSourceChangedNg: EventEmitter<any>;
|
|
322
|
+
/**
|
|
323
|
+
* Angular (EventEmitter) version of the Wijmo <b>selectionChanging</b> event for programmatic access.
|
|
324
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
325
|
+
* In template bindings use the conventional <b>selectionChanging</b> Wijmo event name.
|
|
326
|
+
*/
|
|
327
|
+
selectionChangingNg: EventEmitter<any>;
|
|
328
|
+
/**
|
|
329
|
+
* Angular (EventEmitter) version of the Wijmo <b>selectionChanged</b> event for programmatic access.
|
|
330
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
331
|
+
* In template bindings use the conventional <b>selectionChanged</b> Wijmo event name.
|
|
332
|
+
*/
|
|
333
|
+
selectionChangedNg: EventEmitter<any>;
|
|
334
|
+
/**
|
|
335
|
+
* Angular (EventEmitter) version of the Wijmo <b>scrollPositionChanged</b> event for programmatic access.
|
|
336
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
337
|
+
* In template bindings use the conventional <b>scrollPositionChanged</b> Wijmo event name.
|
|
338
|
+
*/
|
|
339
|
+
scrollPositionChangedNg: EventEmitter<any>;
|
|
340
|
+
/**
|
|
341
|
+
* Angular (EventEmitter) version of the Wijmo <b>updatingView</b> event for programmatic access.
|
|
342
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
343
|
+
* In template bindings use the conventional <b>updatingView</b> Wijmo event name.
|
|
344
|
+
*/
|
|
345
|
+
updatingViewNg: EventEmitter<any>;
|
|
346
|
+
/**
|
|
347
|
+
* Angular (EventEmitter) version of the Wijmo <b>updatedView</b> event for programmatic access.
|
|
348
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
349
|
+
* In template bindings use the conventional <b>updatedView</b> Wijmo event name.
|
|
350
|
+
*/
|
|
351
|
+
updatedViewNg: EventEmitter<any>;
|
|
352
|
+
/**
|
|
353
|
+
* Angular (EventEmitter) version of the Wijmo <b>updatingLayout</b> event for programmatic access.
|
|
354
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
355
|
+
* In template bindings use the conventional <b>updatingLayout</b> Wijmo event name.
|
|
356
|
+
*/
|
|
357
|
+
updatingLayoutNg: EventEmitter<any>;
|
|
358
|
+
/**
|
|
359
|
+
* Angular (EventEmitter) version of the Wijmo <b>updatedLayout</b> event for programmatic access.
|
|
360
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
361
|
+
* In template bindings use the conventional <b>updatedLayout</b> Wijmo event name.
|
|
362
|
+
*/
|
|
363
|
+
updatedLayoutNg: EventEmitter<any>;
|
|
364
|
+
/**
|
|
365
|
+
* Angular (EventEmitter) version of the Wijmo <b>pasting</b> event for programmatic access.
|
|
366
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
367
|
+
* In template bindings use the conventional <b>pasting</b> Wijmo event name.
|
|
368
|
+
*/
|
|
369
|
+
pastingNg: EventEmitter<any>;
|
|
370
|
+
/**
|
|
371
|
+
* Angular (EventEmitter) version of the Wijmo <b>pasted</b> event for programmatic access.
|
|
372
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
373
|
+
* In template bindings use the conventional <b>pasted</b> Wijmo event name.
|
|
374
|
+
*/
|
|
375
|
+
pastedNg: EventEmitter<any>;
|
|
376
|
+
/**
|
|
377
|
+
* Angular (EventEmitter) version of the Wijmo <b>pastingCell</b> event for programmatic access.
|
|
378
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
379
|
+
* In template bindings use the conventional <b>pastingCell</b> Wijmo event name.
|
|
380
|
+
*/
|
|
381
|
+
pastingCellNg: EventEmitter<any>;
|
|
382
|
+
/**
|
|
383
|
+
* Angular (EventEmitter) version of the Wijmo <b>pastedCell</b> event for programmatic access.
|
|
384
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
385
|
+
* In template bindings use the conventional <b>pastedCell</b> Wijmo event name.
|
|
386
|
+
*/
|
|
387
|
+
pastedCellNg: EventEmitter<any>;
|
|
388
|
+
/**
|
|
389
|
+
* Angular (EventEmitter) version of the Wijmo <b>copying</b> event for programmatic access.
|
|
390
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
391
|
+
* In template bindings use the conventional <b>copying</b> Wijmo event name.
|
|
392
|
+
*/
|
|
393
|
+
copyingNg: EventEmitter<any>;
|
|
394
|
+
/**
|
|
395
|
+
* Angular (EventEmitter) version of the Wijmo <b>copied</b> event for programmatic access.
|
|
396
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
397
|
+
* In template bindings use the conventional <b>copied</b> Wijmo event name.
|
|
398
|
+
*/
|
|
399
|
+
copiedNg: EventEmitter<any>;
|
|
400
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
401
|
+
/**
|
|
402
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
403
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
404
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
405
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
406
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
407
|
+
*/
|
|
408
|
+
created(): void;
|
|
409
|
+
ngOnInit(): void;
|
|
410
|
+
ngAfterViewInit(): void;
|
|
411
|
+
ngOnDestroy(): void;
|
|
412
|
+
addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
|
|
413
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjTransposedGrid, [null, null, { optional: true; skipSelf: true; }]>;
|
|
414
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjTransposedGrid, "wj-transposed-grid", never, { "wjModelProperty": "wjModelProperty"; "autoGenerateRows": "autoGenerateRows"; "isDisabled": "isDisabled"; "tabOrder": "tabOrder"; "newRowAtTop": "newRowAtTop"; "allowAddNew": "allowAddNew"; "allowDelete": "allowDelete"; "allowDragging": "allowDragging"; "allowMerging": "allowMerging"; "allowResizing": "allowResizing"; "allowSorting": "allowSorting"; "allowPinning": "allowPinning"; "autoScroll": "autoScroll"; "autoRowHeights": "autoRowHeights"; "autoSizeMode": "autoSizeMode"; "autoGenerateColumns": "autoGenerateColumns"; "autoSearch": "autoSearch"; "caseSensitiveSearch": "caseSensitiveSearch"; "quickAutoSize": "quickAutoSize"; "bigCheckboxes": "bigCheckboxes"; "childItemsPath": "childItemsPath"; "groupHeaderFormat": "groupHeaderFormat"; "headersVisibility": "headersVisibility"; "showSelectedHeaders": "showSelectedHeaders"; "showMarquee": "showMarquee"; "showPlaceholders": "showPlaceholders"; "itemFormatter": "itemFormatter"; "isReadOnly": "isReadOnly"; "imeEnabled": "imeEnabled"; "mergeManager": "mergeManager"; "selectionMode": "selectionMode"; "showGroups": "showGroups"; "showSort": "showSort"; "showDropDown": "showDropDown"; "showAlternatingRows": "showAlternatingRows"; "showErrors": "showErrors"; "alternatingRowStep": "alternatingRowStep"; "itemValidator": "itemValidator"; "validateEdits": "validateEdits"; "treeIndent": "treeIndent"; "itemsSource": "itemsSource"; "autoClipboard": "autoClipboard"; "expandSelectionOnCopyPaste": "expandSelectionOnCopyPaste"; "frozenRows": "frozenRows"; "frozenColumns": "frozenColumns"; "cloneFrozenCells": "cloneFrozenCells"; "deferResizing": "deferResizing"; "sortRowIndex": "sortRowIndex"; "editColumnIndex": "editColumnIndex"; "stickyHeaders": "stickyHeaders"; "preserveSelectedState": "preserveSelectedState"; "preserveOutlineState": "preserveOutlineState"; "preserveWhiteSpace": "preserveWhiteSpace"; "keyActionTab": "keyActionTab"; "keyActionEnter": "keyActionEnter"; "rowHeaderPath": "rowHeaderPath"; "virtualizationThreshold": "virtualizationThreshold"; "anchorCursor": "anchorCursor"; "lazyRender": "lazyRender"; "refreshOnEdit": "refreshOnEdit"; "copyHeaders": "copyHeaders"; "columnGroups": "columnGroups"; "rowGroups": "rowGroups"; "commitEmptyEdits": "commitEmptyEdits"; "headersFocusability": "headersFocusability"; }, { "initialized": "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"; }, never, ["*"], false, never>;
|
|
415
|
+
}
|
|
416
|
+
declare var wjTransposedGridRowMeta: IWjComponentMeta;
|
|
417
|
+
export { wjTransposedGridRowMeta };
|
|
418
|
+
/**
|
|
419
|
+
* Angular 2 component for the {@link wijmo.grid.transposed.TransposedGridRow} class.
|
|
420
|
+
*
|
|
421
|
+
* The <b>wj-transposed-grid-row</b> component must be
|
|
422
|
+
* contained in a {@link wijmo.angular2.grid.transposed.WjTransposedGrid} component.
|
|
423
|
+
*
|
|
424
|
+
* Use the <b>wj-transposed-grid-row</b> component to add <b>TransposedGridRow</b> controls to your
|
|
425
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
426
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
427
|
+
*
|
|
428
|
+
* The <b>WjTransposedGridRow</b> component is derived from the <b>TransposedGridRow</b> class and
|
|
429
|
+
* inherits all its properties, events and methods.
|
|
430
|
+
*/
|
|
431
|
+
export declare class WjTransposedGridRow extends wjcGridTransposed.TransposedGridRow implements OnInit, OnDestroy, AfterViewInit {
|
|
432
|
+
static readonly meta: IWjComponentMetadata;
|
|
433
|
+
private _wjBehaviour;
|
|
434
|
+
/**
|
|
435
|
+
* Indicates whether the component has been initialized by Angular.
|
|
436
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
437
|
+
*/
|
|
438
|
+
isInitialized: boolean;
|
|
439
|
+
/**
|
|
440
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
441
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
442
|
+
*/
|
|
443
|
+
initialized: EventEmitter<any>;
|
|
444
|
+
/**
|
|
445
|
+
* Gets or sets a name of a property that this component is assigned to.
|
|
446
|
+
* Default value is '_rowInfo'.
|
|
447
|
+
*/
|
|
448
|
+
wjProperty: string;
|
|
449
|
+
/**
|
|
450
|
+
* Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
|
|
451
|
+
* See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
|
|
452
|
+
*/
|
|
453
|
+
asyncBindings: boolean;
|
|
454
|
+
/**
|
|
455
|
+
* This event is used to implement two-way binding to the <b>isSelected</b> property.
|
|
456
|
+
* It's triggered when the property value changes, with the event argument holding the new property value.
|
|
457
|
+
* You can bind handlers to this event in templates using the <b>isSelectedChange</b> event name.
|
|
458
|
+
*/
|
|
459
|
+
isSelectedChangePC: EventEmitter<any>;
|
|
460
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
461
|
+
/**
|
|
462
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
463
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
464
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
465
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
466
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
467
|
+
*/
|
|
468
|
+
created(): void;
|
|
469
|
+
ngOnInit(): void;
|
|
470
|
+
ngAfterViewInit(): void;
|
|
471
|
+
ngOnDestroy(): void;
|
|
472
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjTransposedGridRow, [null, null, { optional: true; skipSelf: true; }]>;
|
|
473
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjTransposedGridRow, "wj-transposed-grid-row", never, { "asyncBindings": "asyncBindings"; "wjProperty": "wjProperty"; "name": "name"; "dataMap": "dataMap"; "dataType": "dataType"; "binding": "binding"; "sortMemberPath": "sortMemberPath"; "format": "format"; "cellTemplate": "cellTemplate"; "header": "header"; "width": "width"; "maxLength": "maxLength"; "minWidth": "minWidth"; "maxWidth": "maxWidth"; "align": "align"; "allowDragging": "allowDragging"; "allowSorting": "allowSorting"; "allowResizing": "allowResizing"; "allowMerging": "allowMerging"; "aggregate": "aggregate"; "isReadOnly": "isReadOnly"; "cssClass": "cssClass"; "cssClassAll": "cssClassAll"; "isContentHtml": "isContentHtml"; "isSelected": "isSelected"; "visible": "visible"; "wordWrap": "wordWrap"; "multiLine": "multiLine"; "mask": "mask"; "inputType": "inputType"; "isRequired": "isRequired"; "showDropDown": "showDropDown"; "dataMapEditor": "dataMapEditor"; "dropDownCssClass": "dropDownCssClass"; "quickAutoSize": "quickAutoSize"; "editor": "editor"; }, { "initialized": "initialized"; "isSelectedChangePC": "isSelectedChange"; }, never, never, false, never>;
|
|
474
|
+
}
|
|
475
|
+
export declare class WjGridTransposedModule {
|
|
476
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjGridTransposedModule, never>;
|
|
477
|
+
static ɵmod: ɵngcc0.ɵɵNgModuleDeclaration<WjGridTransposedModule, [typeof WjTransposedGrid, typeof WjTransposedGridRow], [typeof ɵngcc1.CommonModule], [typeof WjTransposedGrid, typeof WjTransposedGridRow]>;
|
|
478
|
+
static ɵinj: ɵngcc0.ɵɵInjectorDeclaration<WjGridTransposedModule>;
|
|
479
|
+
}
|
package/index.js
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
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 ɵngcc0 = require('@angular/core');
|
|
15
|
+
var ɵngcc1 = require('@angular/common');
|
|
16
|
+
|
|
17
|
+
var _c0 = ["*"];
|
|
18
|
+
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 r in o)o.hasOwnProperty(r)&&(e[r]=o[r])})(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,r,t){var n,i=arguments.length,a=i<3?o:null===t?t=Object.getOwnPropertyDescriptor(o,r):t;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(e,o,r,t);else for(var s=e.length-1;s>=0;s--)(n=e[s])&&(a=(i<3?n(a):i>3?n(o,r,a):n(o,r))||a);return i>3&&a&&Object.defineProperty(o,r,a),a},__param=this&&this.__param||function(e,o){return function(r,t){o(r,t,e)}},__importStar=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var o={};if(null!=e)for(var r in e)Object.hasOwnProperty.call(e,r)&&(o[r]=e[r]);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_angular2_directivebase_1=require("@mescius/wijmo.angular2.directivebase"),wjcGridTransposed=__importStar(require("@mescius/wijmo.grid.transposed")),wjTransposedGridMeta={selector:"wj-transposed-grid",template:"<div><ng-content></ng-content></div>",inputs:["wjModelProperty","autoGenerateRows","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","rowGroups","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_angular2_directivebase_1.WjValueAccessorFactory,multi:!0,deps:["WjComponent"]}]};exports.wjTransposedGridMeta=wjTransposedGridMeta;var WjTransposedGrid=function(e){__extends(WjTransposedGrid,e);function WjTransposedGrid(o,r,t){var n=e.call(this,wijmo_angular2_directivebase_1.WjDirectiveBehavior.getHostElement(o,r))||this;n.isInitialized=!1;n._wjBehaviour=wijmo_angular2_directivebase_1.WjDirectiveBehavior.attach(n,o,r,t);n.created();return n}o=WjTransposedGrid;WjTransposedGrid.prototype.created=function(){};WjTransposedGrid.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjTransposedGrid.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjTransposedGrid.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};WjTransposedGrid.prototype.addEventListener=function(o,r,t,n){var i=this;void 0===n&&(n=!1);var a=wijmo_angular2_directivebase_1.WjDirectiveBehavior,s=a.getZone(this);s&&a.outsideZoneEvents[r]?s.runOutsideAngular((function(){e.prototype.addEventListener.call(i,o,r,t,n)})):e.prototype.addEventListener.call(this,o,r,t,n)};var o;WjTransposedGrid.meta={outputs:wjTransposedGridMeta.outputs};
|
|
19
|
+
WjTransposedGrid.ɵfac = function WjTransposedGrid_Factory(t) { return new (t || WjTransposedGrid)(ɵngcc0.ɵɵdirectiveInject(core_1.ElementRef), ɵngcc0.ɵɵdirectiveInject(core_1.Injector), ɵngcc0.ɵɵdirectiveInject("WjComponent", 12)); };
|
|
20
|
+
WjTransposedGrid.ɵcmp = /*@__PURE__*/ ɵngcc0.ɵɵdefineComponent({ type: WjTransposedGrid, selectors: [["wj-transposed-grid"]], inputs: { wjModelProperty: "wjModelProperty", autoGenerateRows: "autoGenerateRows", isDisabled: "isDisabled", tabOrder: "tabOrder", newRowAtTop: "newRowAtTop", allowAddNew: "allowAddNew", allowDelete: "allowDelete", allowDragging: "allowDragging", allowMerging: "allowMerging", allowResizing: "allowResizing", allowSorting: "allowSorting", allowPinning: "allowPinning", autoScroll: "autoScroll", autoRowHeights: "autoRowHeights", autoSizeMode: "autoSizeMode", autoGenerateColumns: "autoGenerateColumns", autoSearch: "autoSearch", caseSensitiveSearch: "caseSensitiveSearch", quickAutoSize: "quickAutoSize", bigCheckboxes: "bigCheckboxes", childItemsPath: "childItemsPath", groupHeaderFormat: "groupHeaderFormat", headersVisibility: "headersVisibility", showSelectedHeaders: "showSelectedHeaders", showMarquee: "showMarquee", showPlaceholders: "showPlaceholders", itemFormatter: "itemFormatter", isReadOnly: "isReadOnly", imeEnabled: "imeEnabled", mergeManager: "mergeManager", selectionMode: "selectionMode", showGroups: "showGroups", showSort: "showSort", showDropDown: "showDropDown", showAlternatingRows: "showAlternatingRows", showErrors: "showErrors", alternatingRowStep: "alternatingRowStep", itemValidator: "itemValidator", validateEdits: "validateEdits", treeIndent: "treeIndent", itemsSource: "itemsSource", autoClipboard: "autoClipboard", expandSelectionOnCopyPaste: "expandSelectionOnCopyPaste", frozenRows: "frozenRows", frozenColumns: "frozenColumns", cloneFrozenCells: "cloneFrozenCells", deferResizing: "deferResizing", sortRowIndex: "sortRowIndex", editColumnIndex: "editColumnIndex", stickyHeaders: "stickyHeaders", preserveSelectedState: "preserveSelectedState", preserveOutlineState: "preserveOutlineState", preserveWhiteSpace: "preserveWhiteSpace", keyActionTab: "keyActionTab", keyActionEnter: "keyActionEnter", rowHeaderPath: "rowHeaderPath", virtualizationThreshold: "virtualizationThreshold", anchorCursor: "anchorCursor", lazyRender: "lazyRender", refreshOnEdit: "refreshOnEdit", copyHeaders: "copyHeaders", columnGroups: "columnGroups", rowGroups: "rowGroups", commitEmptyEdits: "commitEmptyEdits", headersFocusability: "headersFocusability" }, outputs: { initialized: "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" }, features: [ɵngcc0.ɵɵProvidersFeature([{ provide: "WjComponent", useExisting: core_1.forwardRef((function () { return o; })) }].concat(wjTransposedGridMeta.providers))], ngContentSelectors: _c0, decls: 2, vars: 0, template: function WjTransposedGrid_Template(rf, ctx) { if (rf & 1) {
|
|
21
|
+
ɵngcc0.ɵɵprojectionDef();
|
|
22
|
+
ɵngcc0.ɵɵelementStart(0, "div");
|
|
23
|
+
ɵngcc0.ɵɵprojection(1);
|
|
24
|
+
ɵngcc0.ɵɵelementEnd();
|
|
25
|
+
} }, encapsulation: 2 });
|
|
26
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && ɵngcc0.ɵsetClassMetadata(WjTransposedGrid, [{
|
|
27
|
+
type: core_1.Component,
|
|
28
|
+
args: [{ selector: wjTransposedGridMeta.selector, template: wjTransposedGridMeta.template, inputs: wjTransposedGridMeta.inputs, outputs: wjTransposedGridMeta.outputs, providers: [{ provide: "WjComponent", useExisting: core_1.forwardRef((function () { return o; })) }].concat(wjTransposedGridMeta.providers) }]
|
|
29
|
+
}], function () { return [{ type: undefined, decorators: [{
|
|
30
|
+
type: core_1.Inject,
|
|
31
|
+
args: [core_1.ElementRef]
|
|
32
|
+
}] }, { type: undefined, decorators: [{
|
|
33
|
+
type: core_1.Inject,
|
|
34
|
+
args: [core_1.Injector]
|
|
35
|
+
}] }, { type: undefined, decorators: [{
|
|
36
|
+
type: core_1.Inject,
|
|
37
|
+
args: ["WjComponent"]
|
|
38
|
+
}, {
|
|
39
|
+
type: core_1.SkipSelf
|
|
40
|
+
}, {
|
|
41
|
+
type: core_1.Optional
|
|
42
|
+
}] }]; }, null); })();return WjTransposedGrid=o=__decorate([,__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())],WjTransposedGrid)}(wjcGridTransposed.TransposedGrid);exports.WjTransposedGrid=WjTransposedGrid;var wjTransposedGridRowMeta={selector:"wj-transposed-grid-row",template:"",inputs:["asyncBindings","wjProperty","name","dataMap","dataType","binding","sortMemberPath","format","cellTemplate","header","width","maxLength","minWidth","maxWidth","align","allowDragging","allowSorting","allowResizing","allowMerging","aggregate","isReadOnly","cssClass","cssClassAll","isContentHtml","isSelected","visible","wordWrap","multiLine","mask","inputType","isRequired","showDropDown","dataMapEditor","dropDownCssClass","quickAutoSize","editor"],outputs:["initialized","isSelectedChangePC: isSelectedChange"],providers:[]};exports.wjTransposedGridRowMeta=wjTransposedGridRowMeta;var WjTransposedGridRow=function(e){__extends(WjTransposedGridRow,e);function WjTransposedGridRow(o,r,t){var n=e.call(this)||this;n.isInitialized=!1;n.wjProperty="_rowInfo";var i=(n._wjBehaviour=wijmo_angular2_directivebase_1.WjDirectiveBehavior.attach(n,o,r,t)).parentBehavior.directive;if(i.autoGenerateRows){i.autoGenerateRows=!1;i._rowInfo.clear()}n.created();return n}o=WjTransposedGridRow;WjTransposedGridRow.prototype.created=function(){};WjTransposedGridRow.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjTransposedGridRow.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjTransposedGridRow.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var o;WjTransposedGridRow.meta={outputs:wjTransposedGridRowMeta.outputs,changeEvents:{"grid.selectionChanged":["isSelected"]}};
|
|
43
|
+
WjTransposedGridRow.ɵfac = function WjTransposedGridRow_Factory(t) { return new (t || WjTransposedGridRow)(ɵngcc0.ɵɵdirectiveInject(core_1.ElementRef), ɵngcc0.ɵɵdirectiveInject(core_1.Injector), ɵngcc0.ɵɵdirectiveInject("WjComponent", 12)); };
|
|
44
|
+
WjTransposedGridRow.ɵcmp = /*@__PURE__*/ ɵngcc0.ɵɵdefineComponent({ type: WjTransposedGridRow, selectors: [["wj-transposed-grid-row"]], inputs: { asyncBindings: "asyncBindings", wjProperty: "wjProperty", name: "name", dataMap: "dataMap", dataType: "dataType", binding: "binding", sortMemberPath: "sortMemberPath", format: "format", cellTemplate: "cellTemplate", header: "header", width: "width", maxLength: "maxLength", minWidth: "minWidth", maxWidth: "maxWidth", align: "align", allowDragging: "allowDragging", allowSorting: "allowSorting", allowResizing: "allowResizing", allowMerging: "allowMerging", aggregate: "aggregate", isReadOnly: "isReadOnly", cssClass: "cssClass", cssClassAll: "cssClassAll", isContentHtml: "isContentHtml", isSelected: "isSelected", visible: "visible", wordWrap: "wordWrap", multiLine: "multiLine", mask: "mask", inputType: "inputType", isRequired: "isRequired", showDropDown: "showDropDown", dataMapEditor: "dataMapEditor", dropDownCssClass: "dropDownCssClass", quickAutoSize: "quickAutoSize", editor: "editor" }, outputs: { initialized: "initialized", isSelectedChangePC: "isSelectedChange" }, features: [ɵngcc0.ɵɵProvidersFeature([{ provide: "WjComponent", useExisting: core_1.forwardRef((function () { return o; })) }].concat(wjTransposedGridRowMeta.providers))], decls: 0, vars: 0, template: function WjTransposedGridRow_Template(rf, ctx) { }, encapsulation: 2 });
|
|
45
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && ɵngcc0.ɵsetClassMetadata(WjTransposedGridRow, [{
|
|
46
|
+
type: core_1.Component,
|
|
47
|
+
args: [{ selector: wjTransposedGridRowMeta.selector, template: wjTransposedGridRowMeta.template, inputs: wjTransposedGridRowMeta.inputs, outputs: wjTransposedGridRowMeta.outputs, providers: [{ provide: "WjComponent", useExisting: core_1.forwardRef((function () { return o; })) }].concat(wjTransposedGridRowMeta.providers) }]
|
|
48
|
+
}], function () { return [{ type: undefined, decorators: [{
|
|
49
|
+
type: core_1.Inject,
|
|
50
|
+
args: [core_1.ElementRef]
|
|
51
|
+
}] }, { type: undefined, decorators: [{
|
|
52
|
+
type: core_1.Inject,
|
|
53
|
+
args: [core_1.Injector]
|
|
54
|
+
}] }, { type: undefined, decorators: [{
|
|
55
|
+
type: core_1.Inject,
|
|
56
|
+
args: ["WjComponent"]
|
|
57
|
+
}, {
|
|
58
|
+
type: core_1.SkipSelf
|
|
59
|
+
}, {
|
|
60
|
+
type: core_1.Optional
|
|
61
|
+
}] }]; }, null); })();return WjTransposedGridRow=o=__decorate([,__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())],WjTransposedGridRow)}(wjcGridTransposed.TransposedGridRow);exports.WjTransposedGridRow=WjTransposedGridRow;var moduleExports=[WjTransposedGrid,WjTransposedGridRow],WjGridTransposedModule=function(){function WjGridTransposedModule(){}
|
|
62
|
+
WjGridTransposedModule.ɵfac = function WjGridTransposedModule_Factory(t) { return new (t || WjGridTransposedModule)(); };
|
|
63
|
+
WjGridTransposedModule.ɵmod = /*@__PURE__*/ ɵngcc0.ɵɵdefineNgModule({ type: WjGridTransposedModule });
|
|
64
|
+
WjGridTransposedModule.ɵinj = /*@__PURE__*/ ɵngcc0.ɵɵdefineInjector({ imports: [common_1.CommonModule] });
|
|
65
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && ɵngcc0.ɵsetClassMetadata(WjGridTransposedModule, [{
|
|
66
|
+
type: core_1.NgModule,
|
|
67
|
+
args: [{ imports: [common_1.CommonModule], declarations: moduleExports.slice(), exports: moduleExports.slice() }]
|
|
68
|
+
}], function () { return []; }, null); })();
|
|
69
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && ɵngcc0.ɵɵsetNgModuleScope(WjGridTransposedModule, { declarations: [WjTransposedGrid, WjTransposedGridRow], imports: [ɵngcc1.CommonModule], exports: [WjTransposedGrid, WjTransposedGridRow] }); })();return WjGridTransposedModule}();exports.WjGridTransposedModule=WjGridTransposedModule;
|
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mescius/wijmo.angular2.grid.transposed",
|
|
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.transposed": "5.20232.939",
|
|
12
|
+
"@mescius/wijmo.angular2.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
|
+
}
|