@mescius/wijmo.vue2.grid.multirow 5.20232.939

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts ADDED
@@ -0,0 +1,314 @@
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.vue2.grid.multirow}
15
+ * Contains Vue 2 and 3 components for the <b>wijmo.grid.multirow</b> module.
16
+ */
17
+ /**
18
+ *
19
+ */
20
+ export declare var ___keepComment: any;
21
+ /**
22
+ * Vue component for the {@link wijmo.grid.multirow.MultiRow} control.
23
+ *
24
+ * The <b>wj-multi-row</b> component may contain
25
+ * the following child components:
26
+ * {@link wijmo.vue2.grid.multirow.WjMultiRowCellGroup}
27
+ * and {@link wijmo.vue2.grid.multirow.WjMultiRowCellTemplate}.
28
+ *
29
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.grid.multirow.MultiRow} control it represents.
30
+ *
31
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
32
+ * You can use this event to perform further initialization in addition to setting properties in markup.
33
+ * The signature of the handler function is the same as any other Wijmo event handlers.
34
+ */
35
+ export declare var WjMultiRow: any;
36
+ /**
37
+ * Vue component for the {@link wijmo.grid.multirow.MultiRowCell} class.
38
+ *
39
+ * The <b>wj-multi-row-cell</b> component should be contained in
40
+ * a {@link wijmo.vue2.grid.multirow.WjMultiRowCellGroup} component.
41
+ *
42
+ * The <b>wj-multi-row-cell</b> component may contain
43
+ * a {@link wijmo.vue2.grid.multirow.WjMultiRowCellTemplate} child component.
44
+ *
45
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.grid.multirow.MultiRowCell} class it represents.
46
+ *
47
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
48
+ * You can use this event to perform further initialization in addition to setting properties in markup.
49
+ * The signature of the handler function is the same as any other Wijmo event handlers.
50
+ */
51
+ export declare var WjMultiRowCell: any;
52
+ /**
53
+ * Vue component for the {@link wijmo.grid.multirow.MultiRowCellGroup} class.
54
+ *
55
+ * The <b>wj-multi-row-cell-group</b> component should be contained in
56
+ * a {@link wijmo.vue2.grid.multirow.WjMultiRow} component.
57
+ *
58
+ * The <b>wj-multi-row-cell-group</b> component may contain
59
+ * a {@link wijmo.vue2.grid.multirow.WjMultiRowCell} child component.
60
+ *
61
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.grid.multirow.MultiRowCellGroup} class it represents.
62
+ *
63
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
64
+ * You can use this event to perform further initialization in addition to setting properties in markup.
65
+ * The signature of the handler function is the same as any other Wijmo event handlers.
66
+ */
67
+ export declare var WjMultiRowCellGroup: any;
68
+ /**
69
+ * Vue component for the {@link MultiRow} cell templates.
70
+ *
71
+ * The <b>wj-multi-row-cell-template</b> component defines a template for a certain
72
+ * cell type in {@link MultiRow}. The template element must contain a <b>cellType</b> attribute that
73
+ * specifies the {@link wijmo.vue2.grid.CellTemplateType}. Depending on the template's cell type,
74
+ * the <b>wj-multi-row-cell-template</b> element must be a child
75
+ * of either {@link wijmo.vue2.grid.multirow.WjMultiRow}
76
+ * or {@link wijmo.vue2.grid.multirow.WjMultiRowCell} components.
77
+ *
78
+ * Column-specific cell templates must be contained in <b>wj-multi-row-cell</b>
79
+ * components, and cells that are not column-specific (like row header or top left cells)
80
+ * must be contained in the <b>wj-multi-row</b> component.
81
+ *
82
+ * The <b>wj-multi-row-cell-template</b> element
83
+ * may contain an arbitrary HTML fragment with Vue interpolation expressions and
84
+ * other components and directives.
85
+ *
86
+ * Bindings in HTML fragment can use scoped slot properties that store cell specific data.
87
+ * The properties are <b>col</b>, <b>row</b>, and <b>item</b>, which refer to the {@link MultiRowCell},
88
+ * {@link Row}, and <b>Row.dataItem</b> objects pertaining to the cell.
89
+ *
90
+ * For cell types like <b>Group</b> and <b>CellEdit</b>, an additional <b>value</b>
91
+ * property containing an unformatted cell value is provided.
92
+ *
93
+ * To reference slot properties, you can use either a new v-slot directive right on the
94
+ * <b>wj-multi-row-cell-template</b> element (it's available in Vue 2.6.0 or higher),
95
+ * or an old slot-scope directive on the <b>&lt;template&gt;</b> element nested in
96
+ * wj-multi-row-cell-template.
97
+ *
98
+ * For example, here is a
99
+ * {@link MultiRow} control with templates for row header cells and, regular
100
+ * and column header cells of the Country column:
101
+ *
102
+ * ```html
103
+ * <!-- component.html -->
104
+ * <wj-multi-row :itemsSource="data">
105
+ * <wj-multi-row-cell-template cellType="RowHeader" v-slot="cell">
106
+ * {{cell.row.index}}
107
+ * </wj-multi-row-cell-template>
108
+ * <wj-multi-row-cell-template cellType="RowHeaderEdit">
109
+ * ...
110
+ * </wj-multi-row-cell-template>
111
+ *
112
+ * <wj-multi-row-cell-group header="Statistics">
113
+ * <wj-multi-row-cell header="Country" binding="country">
114
+ * <wj-multi-row-cell-template cellType="ColumnHeader" v-slot="cell">
115
+ * <img src="resources/globe.png" />
116
+ * {{cell.col.header}}
117
+ * </wj-multi-row-cell-template>
118
+ * <wj-multi-row-cell-template cellType="Cell" v-slot="cell">
119
+ * <img :src="'resources/' + cell.item.country + '.png'" />
120
+ * {{cell.item.country}}
121
+ * </wj-multi-row-cell-template>
122
+ * </wj-multi-row-cell>
123
+ * <wj-multi-row-cell header="Sales" binding="sales"></wj-multi-row-cell>
124
+ * </wj-multi-row-cell-group>
125
+ * </wj-multi-row>
126
+ * ```
127
+ *
128
+ * The <b>wj-multi-row-cell-template</b> directive supports the following attributes:
129
+ *
130
+ * <dl class="dl-horizontal">
131
+ * <dt>cellType</dt>
132
+ * <dd>
133
+ * The <b>CellTemplateType</b> value defining the type of cell to which the template is applied.
134
+ * </dd>
135
+ * <dt>autoSizeRows</dt>
136
+ * <dd>
137
+ * Indicates whether the cell template will increase grid's default row height
138
+ * to accomodate cells content. Defaults to true.
139
+ * </dd>
140
+ * <dt>cellOverflow</dt>
141
+ * <dd>
142
+ * Defines the <b>style.overflow</b> property value for cells.
143
+ * </dd>
144
+ * <dt>forceFullEdit</dt>
145
+ * <dd>
146
+ * For cell edit templates, indicates whether cell editing forcibly starts in full edit mode,
147
+ * regardless of how the editing was initiated. In full edit mode pressing cursor keys don't finish editing.
148
+ * Defaults to true.
149
+ * </dd>
150
+ * </dl>
151
+ *
152
+ * The <b>cellType</b> attribute takes any of the following enumerated values:
153
+ *
154
+ * <b>Cell</b>
155
+ *
156
+ * Defines a regular (data) cell template. Must be a child of the {@link wijmo.vue2.grid.multirow.WjMultiRowCell} component.
157
+ * For example, this cell template shows flags in the cells of Country column:
158
+ *
159
+ * ```html
160
+ * <wj-multi-row-cell header="Country" binding="country">
161
+ * <wj-multi-row-cell-template cellType="Cell" v-slot="cell">
162
+ * <img :src="'resources/' + cell.item.country + '.png'" />
163
+ * {{cell.item.country}}
164
+ * </wj-multi-row-cell-template>
165
+ * </wj-multi-row-cell>
166
+ * ```
167
+ *
168
+ * <b>CellEdit</b>
169
+ *
170
+ * Defines a template for a cell in edit mode. Must be a child of the {@link wijmo.vue2.grid.multirow.WjMultiRowCell} component.
171
+ * This cell type has an additional <b>value</b> scoped slot property available for binding. It contains the
172
+ * original cell value before editing, and the updated value after editing.
173
+ *
174
+ * For example, here is a template that uses the Wijmo {@link InputNumber} control as an editor
175
+ * for the "Sales" column:
176
+ * ```html
177
+ * <wj-multi-row-cell header="Sales" binding="sales">
178
+ * <wj-multi-row-cell-template cellType="CellEdit">
179
+ * <wj-input-number v-model="cell.value" :step="1"></wj-input-number>
180
+ * </wj-multi-row-cell-template>
181
+ * </wj-multi-row-cell>
182
+ * ```
183
+ *
184
+ * Note that two-way binding can also be specified using the binding's <b>sync</b> modifier:
185
+ * ```html
186
+ * <wj-multi-row-cell header="Sales" binding="sales">
187
+ * <wj-multi-row-cell-template cellType="CellEdit">
188
+ * <wj-input-number value.sync="cell.value" :step="1"></wj-input-number>
189
+ * </wj-multi-row-cell-template>
190
+ * </wj-multi-row-cell>
191
+ * ```
192
+ *
193
+ * <b>ColumnHeader</b>
194
+ *
195
+ * Defines a template for a column header cell. Must be a child of the {@link wijmo.vue2.grid.multirow.WjMultiRowCell} component.
196
+ * For example, this template adds an image to the header of the "Country" column:
197
+ *
198
+ * ```html
199
+ * <wj-multi-row-cell header="Country" binding="country">
200
+ * <wj-multi-row-cell-template cellType="ColumnHeader" v-slot="cell">
201
+ * <img src="resources/globe.png" />
202
+ * {{cell.col.header}}
203
+ * </wj-multi-row-cell-template>
204
+ * </wj-multi-row-cell>
205
+ * ```
206
+ *
207
+ * <b>RowHeader</b>
208
+ *
209
+ * Defines a template for a row header cell. Must be a child of the {@link wijmo.vue2.grid.multirow.WjMultiRow} component.
210
+ * For example, this template shows row indices in the row headers:
211
+ *
212
+ * ```html
213
+ * <wj-multi-row :itemsSource="data">
214
+ * <wj-multi-row-cell-template cellType="RowHeader" v-slot="cell">
215
+ * {{cell.row.index / cell.row.grid.rowsPerItem + 1}}
216
+ * </wj-multi-row-cell-template>
217
+ * </wj-multi-row>
218
+ * ```
219
+ *
220
+ * Note that this template is applied to a row header cell, even if it is in a row that is
221
+ * in edit mode. In order to provide an edit-mode version of a row header cell with alternate
222
+ * content, define the <b>RowHeaderEdit</b> template.
223
+ *
224
+ * <b>RowHeaderEdit</b>
225
+ *
226
+ * Defines a template for a row header cell in edit mode. Must be a child of the
227
+ * {@link wijmo.vue2.grid.multirow.WjMultiRow} component. For example, this template shows dots in the header
228
+ * of rows being edited:
229
+ *
230
+ * ```html
231
+ * <wj-multi-row :itemsSource="data">
232
+ * <wj-multi-row-cell-template cellType="RowHeaderEdit">
233
+ * ...
234
+ * </wj-multi-row-cell-template>
235
+ * </wj-multi-row>
236
+ * ```
237
+ *
238
+ * Use the following <b>RowHeaderEdit</b> template to add the standard edit-mode indicator to cells where the <b>RowHeader</b> template
239
+ * applies:
240
+ *
241
+ * ```html
242
+ * <wj-multi-row :itemsSource="data">
243
+ * <wj-multi-row-cell-template cellType="RowHeaderEdit">
244
+ * &#x270e;&#xfe0e;
245
+ * </wj-multi-row-cell-template>
246
+ * </wj-multi-row>
247
+ * ```
248
+ *
249
+ * <b>TopLeft</b>
250
+ *
251
+ * Defines a template for the top left cell. Must be a child of the {@link wijmo.vue2.grid.multirow.WjMultiRow} component.
252
+ * For example, this template shows a down/right glyph in the top-left cell of the grid:
253
+ *
254
+ * ```html
255
+ * <wj-multi-row :itemsSource="data">
256
+ * <wj-multi-row-cell-template cellType="TopLeft">
257
+ * <span class="wj-glyph-down-right"></span>
258
+ * </wj-multi-row-cell-template>
259
+ * </wj-multi-row>
260
+ * ```
261
+ *
262
+ * <b>GroupHeader</b>
263
+ *
264
+ * Defines a template for a group header cell in a {@link GroupRow}. Must be a child of the {@link wijmo.vue2.grid.multirow.WjMultiRowCell} component.
265
+ *
266
+ * The <b>row</b> scoped slot property contains an instance of the <b>GroupRow</b> class. If the grouping comes
267
+ * from {@link CollectionView}, the <b>item</b> scoped slot property references the {@link CollectionViewGroup} object.
268
+ *
269
+ * For example, this template uses a checkbox element as an expand/collapse toggle:
270
+ *
271
+ * ```html
272
+ * <wj-multi-row-cell header="Country" binding="country">
273
+ * <wj-multi-row-cell-template cellType="GroupHeader" v-slot="cell">
274
+ * <input type="checkbox" v-model="cell.row.isCollapsed"/>
275
+ * {{cell.item.name}} ({{cell.item.items.length}} items)
276
+ * </wj-multi-row-cell-template>
277
+ * </wj-multi-row-cell>
278
+ * ```
279
+ *
280
+ * <b>Group</b>
281
+ *
282
+ * Defines a template for a regular cell (not a group header) in a {@link GroupRow}. Must be a child of the
283
+ * {@link wijmo.vue2.grid.multirow.WjMultiRowCell} component. This cell type has an additional <b>value</b> scoped
284
+ * slot property available for
285
+ * binding. In cases where columns have the <b>aggregate</b> property specified, it contains the unformatted
286
+ * aggregate value.
287
+ *
288
+ * For example, this template shows aggregate's value and kind for group row cells in the "Sales"
289
+ * column:
290
+ *
291
+ * ```html
292
+ * <wj-multi-row-cell header="Sales" binding="sales" aggregate="Avg">
293
+ * <wj-multi-row-cell-template cellType="Group" v-slot="cell">
294
+ * Average: {{formatNumber(cell.value, 'N0')}}
295
+ * </wj-multi-row-cell-template>
296
+ * </wj-multi-row-cell>
297
+ * ```
298
+ *
299
+ * <b>NewCellTemplate</b>
300
+ *
301
+ * Defines a cell in a new row template. Must be a child of the {@link wijmo.vue2.grid.multirow.WjMultiRowCell} component.
302
+ * Note that the <b>cell.item</b> property is undefined for this type of a cell.
303
+ * For example, this cell template shows a placeholder in the Date column's cell in the "new row" item:
304
+ *
305
+ * ```html
306
+ * <wj-multi-row-cell header="'Date'" binding="'date'">
307
+ * <wj-multi-row-cell-template cellType="NewCellTemplate">
308
+ * Enter a date here
309
+ * </wj-multi-row-cell-template>
310
+ * </wj-multi-row-cell>
311
+ * ```
312
+ */
313
+ export declare var WjMultiRowCellTemplate: any;
314
+ export declare function registerGridMultirow(app: any): void;
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 i in o)o.hasOwnProperty(i)&&(e[i]=o[i])})(e,o)};return function(e,o){extendStatics(e,o);function __(){this.constructor=e}e.prototype=null===o?Object.create(o):(__.prototype=o.prototype,new __)}}(),__importStar=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var o={};if(null!=e)for(var i in e)Object.hasOwnProperty.call(e,i)&&(o[i]=e[i]);o.default=e;return o};Object.defineProperty(exports,"__esModule",{value:!0});var wijmo_vue2_base_1=require("@mescius/wijmo.vue2.base"),wjcGridMultirow=__importStar(require("@mescius/wijmo.grid.multirow")),wjGrid=__importStar(require("@mescius/wijmo.vue2.grid")),WjMultiRowBehavior=function(e){__extends(WjMultiRowBehavior,e);function WjMultiRowBehavior(){return null!==e&&e.apply(this,arguments)||this}WjMultiRowBehavior.prototype._createControl=function(){var o=e.prototype._createControl.call(this);new wjGrid.DirectiveCellFactory(o);return o};WjMultiRowBehavior.tag="wj-multi-row";WjMultiRowBehavior.props=["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","headerLayoutDefinition","centerHeadersVertically","collapsedHeaders","showHeaderCollapseButton","multiRowGroupHeaders","commitEmptyEdits","headersFocusability"];WjMultiRowBehavior.events=["initialized","gotFocus","lostFocus","refreshing","refreshed","invalidInput","beginningEdit","cellEditEnded","cellEditEnding","prepareCellForEdit","formatItem","resizingColumn","resizedColumn","autoSizingColumn","autoSizedColumn","draggingColumn","draggingColumnOver","draggedColumn","sortingColumn","sortedColumn","pinningColumn","pinnedColumn","resizingRow","resizedRow","autoSizingRow","autoSizedRow","draggingRow","draggingRowOver","draggedRow","deletingRow","deletedRow","loadingRows","loadedRows","rowEditStarting","rowEditStarted","rowEditEnding","rowEditEnded","rowAdded","groupCollapsedChanging","groupCollapsedChanged","columnGroupCollapsedChanging","columnGroupCollapsedChanged","itemsSourceChanging","itemsSourceChanged","selectionChanging","selectionChanged","scrollPositionChanged","updatingView","updatedView","updatingLayout","updatedLayout","pasting","pasted","pastingCell","pastedCell","copying","copied","collapsedHeadersChanging"];WjMultiRowBehavior.changeEvents={collapsedHeadersChanged:["collapsedHeaders"]};WjMultiRowBehavior.classCtor=function(){return wjcGridMultirow.MultiRow};return WjMultiRowBehavior}(wijmo_vue2_base_1.WjComponentBehavior);exports.WjMultiRow=WjMultiRowBehavior.register();function registerV3WjMultiRow(e){e.component(WjMultiRowBehavior.tag,exports.WjMultiRow)}var WjMultiRowCellBehavior=function(e){__extends(WjMultiRowCellBehavior,e);function WjMultiRowCellBehavior(){return null!==e&&e.apply(this,arguments)||this}WjMultiRowCellBehavior.tag="wj-multi-row-cell";WjMultiRowCellBehavior.parentProp="cells";WjMultiRowCellBehavior.props=["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","colspan","rowspan"];WjMultiRowCellBehavior.events=["initialized"];WjMultiRowCellBehavior.changeEvents={"grid.selectionChanged":["isSelected"]};WjMultiRowCellBehavior.classCtor=function(){return wjcGridMultirow.MultiRowCell};return WjMultiRowCellBehavior}(wijmo_vue2_base_1.WjComponentBehavior);exports.WjMultiRowCell=WjMultiRowCellBehavior.register();function registerV3WjMultiRowCell(e){e.component(WjMultiRowCellBehavior.tag,exports.WjMultiRowCell)}var WjMultiRowCellGroupBehavior=function(e){__extends(WjMultiRowCellGroupBehavior,e);function WjMultiRowCellGroupBehavior(){return null!==e&&e.apply(this,arguments)||this}WjMultiRowCellGroupBehavior.tag="wj-multi-row-cell-group";WjMultiRowCellGroupBehavior.parentProp="layoutDefinition";WjMultiRowCellGroupBehavior.props=["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","colspan","rowspan"];WjMultiRowCellGroupBehavior.events=["initialized"];WjMultiRowCellGroupBehavior.changeEvents={"grid.selectionChanged":["isSelected"]};WjMultiRowCellGroupBehavior.classCtor=function(){return wjcGridMultirow.MultiRowCellGroup};return WjMultiRowCellGroupBehavior}(wijmo_vue2_base_1.WjComponentBehavior);exports.WjMultiRowCellGroup=WjMultiRowCellGroupBehavior.register();function registerV3WjMultiRowCellGroup(e){e.component(WjMultiRowCellGroupBehavior.tag,exports.WjMultiRowCellGroup)}var WjMultiRowCellTemplateTag="wj-multi-row-cell-template";exports.WjMultiRowCellTemplate=wijmo_vue2_base_1.VueApi.isV3Plus?wjGrid.WjFlexGridCellTemplateDefinition:wijmo_vue2_base_1.VueApi.component(WjMultiRowCellTemplateTag,wjGrid.WjFlexGridCellTemplateDefinition);function registerV3WjMultiRowCellTemplate(e){e.component(WjMultiRowCellTemplateTag,exports.WjMultiRowCellTemplate)}function registerGridMultirow(e){if(wijmo_vue2_base_1.VueApi.isV3Plus){registerV3WjMultiRow(e);registerV3WjMultiRowCell(e);registerV3WjMultiRowCellGroup(e);registerV3WjMultiRowCellTemplate(e)}}exports.registerGridMultirow=registerGridMultirow;
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@mescius/wijmo.vue2.grid.multirow",
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.multirow": "5.20232.939",
12
+ "@mescius/wijmo.grid": "5.20232.939",
13
+ "@mescius/wijmo.vue2.base": "5.20232.939"
14
+ },
15
+ "homepage": "https://developer.mescius.com/wijmo",
16
+ "bugs": {
17
+ "url": "https://developer.mescius.com/forums/wijmo"
18
+ },
19
+ "keywords": [
20
+ "control",
21
+ "component",
22
+ "ui",
23
+ "control library",
24
+ "component library",
25
+ "ui library",
26
+ "control-library",
27
+ "component-library",
28
+ "ui-library",
29
+ "grid",
30
+ "data grid",
31
+ "data-grid",
32
+ "datagrid",
33
+ "angular grid",
34
+ "react grid",
35
+ "vue grid",
36
+ "angular-grid",
37
+ "react-grid",
38
+ "vue-grid"
39
+ ],
40
+ "module": "./es5-esm.js",
41
+ "esm5": "./es5-esm.js",
42
+ "wj-esm5": "./es5-esm.js",
43
+ "es2015Cjs": "./es2015-commonjs.js",
44
+ "wj-es2015Cjs": "./es2015-commonjs.js",
45
+ "esm2015": "./es2015-esm.js",
46
+ "wj-esm2015": "./es2015-esm.js"
47
+ }