@revolist/vue3-datagrid 4.23.8 → 4.23.11
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/README.md +185 -14
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -11,17 +11,27 @@
|
|
|
11
11
|
<img src="https://badgen.net/bundlephobia/tree-shaking/@revolist/revogrid" alt="Tree shaking"/>
|
|
12
12
|
<img src="https://img.shields.io/bundlephobia/min/@revolist/revogrid" alt="Bundle size"/>
|
|
13
13
|
<img src="https://sonarcloud.io/api/project_badges/measure?project=revolist_revogrid&metric=alert_status" alt="Sonar Quality Gate"/>
|
|
14
|
+
<a href="https://github.com/revolist/revogrid/actions/workflows/unit.yml">
|
|
15
|
+
<img src="https://github.com/revolist/revogrid/actions/workflows/unit.yml/badge.svg" alt="Workflow status badge" loading="lazy" height="20">
|
|
16
|
+
</a>
|
|
17
|
+
<a href="https://github.com/revolist/revogrid/actions/workflows/e2e.yml">
|
|
18
|
+
<img src="https://github.com/revolist/revogrid/actions/workflows/e2e.yml/badge.svg" alt="Workflow status badge" loading="lazy" height="20">
|
|
19
|
+
</a>
|
|
14
20
|
</p>
|
|
15
21
|
|
|
16
22
|
|
|
17
23
|
<h3 align="center">Powerful Vue 3 Data Grid component built on top of <a href="https://github.com/revolist/revogrid" target="_blank">RevoGrid</a>.</h3>
|
|
18
24
|
<p align="center">
|
|
19
|
-
|
|
25
|
+
Render 1M+ rows, millions of cells, and thousands of columns efficiently with no hard row limit in the grid.
|
|
26
|
+
</p>
|
|
27
|
+
<p align="center">
|
|
28
|
+
Used by some of the largest companies in Europe and the United States.
|
|
20
29
|
</p>
|
|
21
30
|
|
|
22
31
|
<p align="center">
|
|
23
32
|
<a href="https://rv-grid.com/demo/">Demo and API</a> •
|
|
24
33
|
<a href="#key-features">Key Features</a> •
|
|
34
|
+
<a href="#revogrid-pro-features">Pro Features</a> •
|
|
25
35
|
<a href="#basic-usage">How To Use</a> •
|
|
26
36
|
<a href="#installation">Installation</a> •
|
|
27
37
|
<a href="https://rv-grid.com/guide/">Docs</a> •
|
|
@@ -35,10 +45,12 @@ Support Millions of cells and thousands of columns easy and efficiently for fast
|
|
|
35
45
|
|
|
36
46
|
## Key Features
|
|
37
47
|
|
|
38
|
-
- **High Performance**:
|
|
48
|
+
- **High Performance**: Render 1M+ rows and millions of cells with no hard row limit in the grid. Virtualization keeps the DOM focused on the visible viewport.
|
|
39
49
|
|
|
40
50
|
- **[Accessibility](https://rv-grid.com/guide/wcag)**: Follows WAI-ARIA best practices.
|
|
41
51
|
|
|
52
|
+
- **[RTL Support](https://rv-grid.com/guide/rtl)**: Comprehensive Right-to-Left language support for Arabic, Hebrew, Persian, and other RTL languages. Features automatic column reordering, proper text alignment, and layout adjustments for RTL interfaces.
|
|
53
|
+
|
|
42
54
|
- **[Keyboard Support](https://rv-grid.com/guide/defs#Keyboard)**:
|
|
43
55
|
- Excel-like focus for efficient navigation and editing.
|
|
44
56
|
- Seamless copy/paste from Excel, Google Sheets, or any other sheet format.
|
|
@@ -48,7 +60,7 @@ Support Millions of cells and thousands of columns easy and efficiently for fast
|
|
|
48
60
|
|
|
49
61
|
- **[Intelligent Virtual DOM](https://rv-grid.com/guide/overview#VNode-Reactive-DOM)**: Smart row recombination to minimize redraws.
|
|
50
62
|
|
|
51
|
-
- **[Virtual Scroll](https://rv-grid.com/guide/viewports)**: Handles large datasets
|
|
63
|
+
- **[Virtual Scroll](https://rv-grid.com/guide/viewports)**: Handles large datasets without rendering every row or column into the DOM.
|
|
52
64
|
|
|
53
65
|
- **[Drag and Drop](https://rv-grid.com/guide/row/order)**: Drag and drop in [rows](https://rv-grid.com/guide/row/order) and [columns](https://rv-grid.com/guide/column/order).
|
|
54
66
|
|
|
@@ -64,7 +76,10 @@ Support Millions of cells and thousands of columns easy and efficiently for fast
|
|
|
64
76
|
- Header filtering.
|
|
65
77
|
- Custom filters to extend system filters with your own set.
|
|
66
78
|
|
|
67
|
-
- **[Export](https://rv-grid.com/guide/export.plugin)**:
|
|
79
|
+
- **[Export](https://rv-grid.com/guide/export.plugin)**:
|
|
80
|
+
- **[CSV](https://rv-grid.com/guide/export.plugin)**: Built-in file export for core RevoGrid data workflows.
|
|
81
|
+
- **[PDF](https://rv-grid.com/guide/pdf-export)**: Browser-side PDF export with the lightweight [`@revolist/revogrid-pdf-export`](https://www.npmjs.com/package/@revolist/revogrid-pdf-export) plugin.
|
|
82
|
+
- **[Excel (Pro)](https://rv-grid.com/guide/data-grid-export-excel)**: Workbook export for RevoGrid Pro with layout, styles, frozen panes, merged cells, and formulas.
|
|
68
83
|
|
|
69
84
|
- **Custom Sizes**: Define custom sizes for [columns](https://rv-grid.com/guide/column/#Column-Size) and [rows](https://rv-grid.com/guide/row/height). Automatic sizing based on content.
|
|
70
85
|
|
|
@@ -101,20 +116,137 @@ Support Millions of cells and thousands of columns easy and efficiently for fast
|
|
|
101
116
|
|
|
102
117
|
- **[Plugin System](https://rv-grid.com/guide/plugin/)**: Create custom plugins or extend existing ones easily.
|
|
103
118
|
|
|
104
|
-
- **[Formula Support](https://rv-grid.com/guide/cell/formula)**: Evaluate formulas in cell data with Excel-like syntax, including basic arithmetic, statistical functions, and cell references.
|
|
105
|
-
- **[Pivot Table](https://rv-grid.com/demo/pivot)**: Transform and analyze data dynamically with drag-and-drop field arrangement, aggregation functions, and interactive filtering capabilities.
|
|
106
|
-
|
|
107
|
-
- **[Master Detail/Subtables/Forms](https://rv-grid.com/guide/row/master.pro)**: Expand rows to reveal child data.
|
|
108
|
-
- **[Cell/Column/Row Span/Merge](https://rv-grid.com/guide/cell/merge)**: Merge cells to form groups.
|
|
109
|
-
- **Auto Merge**: Automatically merges cells with identical values in a column.
|
|
110
|
-
- **Form editig**: Edit forms directly within the grid, featuring all necessary fields, including custom options and markdown support for a fast and enhanced data entry experience.
|
|
111
|
-
|
|
112
119
|
- **Customizations**:
|
|
113
120
|
- [Column header template](https://rv-grid.com/guide/column/header.template).
|
|
114
121
|
- [Row header template](https://rv-grid.com/guide/row/headers).
|
|
115
122
|
- [Cell properties](https://rv-grid.com/guide/cell/) (define custom properties for rendered cells).
|
|
116
|
-
-
|
|
117
|
-
-
|
|
123
|
+
- [Cell template](https://rv-grid.com/guide/cell/renderer) (create your own cell views).
|
|
124
|
+
- [Cell editor](https://rv-grid.com/guide/cell/editor) (use predefined or apply your own custom editors and cell types).
|
|
125
|
+
|
|
126
|
+
- **[AI Agents and MCP](https://rv-grid.com/guide/mcp)**: Connect Codex, Cursor, Claude Code, and VS Code to version-aware RevoGrid docs, examples, migrations, feature availability, and typed API context.
|
|
127
|
+
|
|
128
|
+
- **Rich API & Additional Improvements**: Explore hundreds of other small customizations and improvements in [RevoGrid](https://rv-grid.com/).
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
## RevoGrid Pro Features
|
|
132
|
+
|
|
133
|
+
RevoGrid Pro extends the core grid with production plugins for advanced data entry, analytics, layout, validation, remote data workflows, and enterprise planning.
|
|
134
|
+
|
|
135
|
+
- **Advanced Data Structures**:
|
|
136
|
+
- **Hierarchical Data View**: Display tree data with expandable rows, nested relationships, sorting, filtering, editing, and drag-and-drop friendly hierarchy handling.
|
|
137
|
+
- **Row Transpose**: Flip records into a row-oriented view when users need to inspect one entity as a vertical form-like grid.
|
|
138
|
+
|
|
139
|
+
- **Headers, Columns, and Grid Structure**:
|
|
140
|
+
- **Multi-Level Headers / Column Groups**: Build stacked, nested headers so related columns can sit under shared parent groups.
|
|
141
|
+
- **Multi-Row Headers**: Render more than one header row for dense tables, grouped labels, or spreadsheet-like header layouts.
|
|
142
|
+
- **Column Group Panel**: Let users drag columns into a grouping panel to create row groups interactively.
|
|
143
|
+
- **Column Group Render Sync**: Keep grouped header rendering aligned during column moves, resizing, and virtualization updates.
|
|
144
|
+
- **Column Move with Groups**: Move columns while preserving grouped header relationships and valid group boundaries.
|
|
145
|
+
- **Column Collapse & Expand (Drill Down)**: Collapse grouped columns to focus on summary information, then expand when details are needed.
|
|
146
|
+
- **Column Hide**: Hide and reveal columns to create focused views without mutating the underlying dataset.
|
|
147
|
+
- **Column Add Popup**: Provide a UI flow for adding columns from available field definitions.
|
|
148
|
+
- **Column Selection**: Select entire columns from the header for bulk operations, copying, formatting, or analysis.
|
|
149
|
+
- **Column Stretch**: Distribute column widths to fill available grid space while respecting sizing constraints.
|
|
150
|
+
- **Column Autosize**: Measure content and automatically adjust column widths for readability.
|
|
151
|
+
- **Merge Cells**: Merge cells across rows and columns for grouped labels, reports, or spreadsheet-style layouts.
|
|
152
|
+
- **Auto Merge / Same-Value Merge**: Automatically merge neighboring cells with matching values to reduce visual repetition.
|
|
153
|
+
- **Sticky Cells and Rows**: Keep important rows, cells, totals, labels, or action areas visible while scrolling.
|
|
154
|
+
- **Overlay Layers**: Push temporary UI layers above the grid for richer interactions without replacing the main grid.
|
|
155
|
+
|
|
156
|
+
- **Remote Data and Large Dataset Workflows**:
|
|
157
|
+
- **Server Loading with Infinite Scroll**: Load remote data as users scroll, keeping memory and DOM usage controlled for large datasets.
|
|
158
|
+
- **Infinite Scroll**: Support total-based or dynamic scrolling patterns where rows are fetched and released in chunks.
|
|
159
|
+
- **Pagination**: Split large datasets into page-sized views with built-in navigation controls.
|
|
160
|
+
- **Remote Pagination**: Keep page index, page size, total counts, and server-loaded rows synchronized with the grid.
|
|
161
|
+
- **Server-Side Grouping**: Request grouped row blocks from a remote source, expand group paths on demand, and combine grouping with remote filtering, sorting, and export.
|
|
162
|
+
|
|
163
|
+
- **Data Management and Change Tracking**:
|
|
164
|
+
- **Audit Trail History**: Record data-change history for traceability, review, and compliance-oriented workflows.
|
|
165
|
+
- **History**: Track user edits and provide undo/redo controls for grid changes.
|
|
166
|
+
- **History Controls**: Add ready-made UI controls for navigating undo and redo stacks.
|
|
167
|
+
- **Range Apply Preview**: Preview copy, paste, or fill changes before applying them to target cells.
|
|
168
|
+
- **Smart Auto Fill**: Fill ranges from an initial value, series, or pattern to speed repetitive data entry.
|
|
169
|
+
- **Excel Export/Import**: Export and import Excel workbook formats including `xlsx`, `xlsm`, `xlsb`, and `xls`.
|
|
170
|
+
- **Multi-Column Export Headers**: Preserve grouped and multi-level column headers when exporting structured grids.
|
|
171
|
+
- **Clipboard with JSON**: Copy and paste structured JSON/object values while keeping control over parsing and rendering.
|
|
172
|
+
|
|
173
|
+
- **Selection and Range Operations**:
|
|
174
|
+
- **Multi-Range Selection**: Work with multiple selected ranges for spreadsheet-style copy, edit, and interaction flows.
|
|
175
|
+
- **Range Selection Limit**: Restrict selected ranges with configurable limits to protect performance and workflow rules.
|
|
176
|
+
- **Row Checkbox Selection**: Select rows through checkbox controls with bulk selection and keyboard-friendly behavior.
|
|
177
|
+
- **Row Advanced Drag and Drop**: Reorder rows with custom drag handles, multi-row behavior, and controlled drop handling.
|
|
178
|
+
- **Row Expand**: Add expandable row affordances for detail views, children, or custom row content.
|
|
179
|
+
- **Row Custom Heading**: Customize row header content for labels, actions, or contextual row information.
|
|
180
|
+
|
|
181
|
+
- **Filtering, Search, and Grouping**:
|
|
182
|
+
- **Advanced Selection Filtering**: Filter with multi-condition selection controls for categorical data.
|
|
183
|
+
- **Selection Filter Cascade**: Cascade filters so each choice narrows available values in dependent filters.
|
|
184
|
+
- **Advanced Slider Filtering**: Filter numeric values with range sliders.
|
|
185
|
+
- **Header Input Filtering**: Put filter inputs in the header area for fast per-column search.
|
|
186
|
+
- **Date Filter**: Filter temporal data by date-specific conditions and ranges.
|
|
187
|
+
- **Row Grouping Drag and Drop**: Drag fields into a panel to group rows dynamically.
|
|
188
|
+
- **Grouping Aggregation**: Calculate grouped summaries such as sum, average, count, min, and max.
|
|
189
|
+
- **Server-Side Group Aggregation**: Combine remote grouped data with aggregate values returned by the server.
|
|
190
|
+
|
|
191
|
+
- **Calculations and Formulas**:
|
|
192
|
+
- **Formula Engine**: Add Excel-like formulas with cell references, dynamic calculations, and a broad function set.
|
|
193
|
+
- **Formula Bar**: Give users a dedicated place to inspect and edit formulas.
|
|
194
|
+
- **Formula Name Manager**: Define reusable named references for formulas.
|
|
195
|
+
- **Formula Dependency Highlighting**: Highlight related cells so users can understand formula inputs and outputs.
|
|
196
|
+
- **Summary Header**: Render calculated summary values in header-level UI.
|
|
197
|
+
|
|
198
|
+
- **Data Visualization and Cell Rendering**:
|
|
199
|
+
- **Charts in Cells**: Render compact visuals such as progress lines, progress lines with values, sparklines, bar charts, timelines, rating stars, badges, change indicators, thumbs, and pie charts.
|
|
200
|
+
- **Heat and Cold Maps**: Color-code values with gradients and legends so users can compare magnitude quickly.
|
|
201
|
+
- **Conditional Formatting**: Apply styling rules based on cell values, row data, or custom logic.
|
|
202
|
+
- **Multi-Cell Formatting**: Choose different renderers or editors inside the same column based on row-level conditions.
|
|
203
|
+
- **Cell Flash**: Highlight recently changed values so live updates are easy to spot.
|
|
204
|
+
- **Avatar, Badge, Progress, Rate, Link, and Chart Column Types**: Use ready-made renderers for common visual data patterns.
|
|
205
|
+
- **Array Renderer**: Display array-like values inside cells with a purpose-built renderer.
|
|
206
|
+
- **Buttons**: Add action buttons inside grid cells for row-level commands.
|
|
207
|
+
|
|
208
|
+
- **Editing and Data Entry**:
|
|
209
|
+
- **Dynamic Form Editing**: Edit row data through a generated form with custom options and richer inputs.
|
|
210
|
+
- **Full Row Editing**: Edit multiple columns in a row as one coordinated editing flow.
|
|
211
|
+
- **Cell Checkbox Editors**: Use checkbox cells that act as both renderer and editor.
|
|
212
|
+
- **Cell Slider Editor**: Edit bounded numeric values with an inline slider.
|
|
213
|
+
- **Cell Counter Editor**: Adjust numeric values with plus/minus controls and configurable steps.
|
|
214
|
+
- **Textarea Editor**: Edit longer text values without leaving the grid.
|
|
215
|
+
- **Dropdown Editor**: Edit values through a dropdown or custom popup.
|
|
216
|
+
- **Timeline Editor**: Edit date ranges and timeline-like values with visual controls.
|
|
217
|
+
- **Cell Validation**: Highlight invalid cells and block or guide invalid edits with custom rules.
|
|
218
|
+
- **Input Validation**: Validate editor input before it is committed to the grid.
|
|
219
|
+
|
|
220
|
+
- **User Interaction and UX**:
|
|
221
|
+
- **Context Menus**: Build menus for cells, rows, columns, and headers with actions such as cut, copy, paste, insert, delete, and custom commands.
|
|
222
|
+
- **Tooltips**: Show contextual information on hover for cells or custom grid elements.
|
|
223
|
+
- **Next Line Focus (WCAG)**: Move focus automatically to the next row during data entry workflows.
|
|
224
|
+
- **WCAG Helpers**: Improve keyboard and screen-reader-oriented grid workflows.
|
|
225
|
+
- **Cell Focus Helpers**: Extend focus behavior for custom editing and navigation scenarios.
|
|
226
|
+
- **Info Panel**: Show contextual status or helper information around grid interactions.
|
|
227
|
+
- **Loader**: Display loading state while remote data, exports, or long-running operations are in progress.
|
|
228
|
+
|
|
229
|
+
- **Development and Integration**:
|
|
230
|
+
- **Event Manager**: Coordinate grid events through one managed layer for easier customization and cleanup.
|
|
231
|
+
- **Observable Props**: React to property changes and synchronize plugin state with grid configuration.
|
|
232
|
+
- **Plugin Dependencies**: Declare and resolve plugin relationships when features need to work together.
|
|
233
|
+
- **Dimension Animation**: Animate row and column dimension changes for smoother layout transitions.
|
|
234
|
+
- **Dropdown Infrastructure**: Reuse popup/dropdown services for custom editors and plugin UI.
|
|
235
|
+
- **Grid Presets and Utilities**: Compose reusable grid configurations, helper functions, and shared plugin behavior.
|
|
236
|
+
|
|
237
|
+
- **Enterprise Analytics and Planning**:
|
|
238
|
+
- **Pivot Table**: Build multidimensional analytics with dynamic row, column, and value dimensions; built-in and custom aggregations; hierarchical rows; generated column groups; flat headers; grand totals and subtotals; values-on-rows layouts; row and column drill-down; grouped aggregate values; drag-and-drop configuration; compact field panel; server-side engine/store contracts; remote sorting and filtering; drilldown contracts; field registry validation; cache keys; serializable errors; and state save/load.
|
|
239
|
+
- **Pivot Configurator**: Give users a drag-and-drop UI for choosing Pivot rows, columns, values, filters, and field layout.
|
|
240
|
+
- **Gantt & Scheduling**: Plan projects with task, dependency, calendar, resource, assignment, and baseline models; summary tasks and milestones; WBS hierarchy; automatic scheduling; working calendars and holidays; constrained scheduling; dependency validation; FS, SS, FF, and SF dependencies with lead/lag; critical path and slack; baselines; resource filtering; task move, resize, create, and progress controls; indent/outdent; timeline zoom; highlighted ranges; non-working time shading; labels; and custom markers.
|
|
241
|
+
- **Gantt Toolbar**: Provide ready-made timeline navigation, baseline, critical path, and export actions for Gantt views.
|
|
242
|
+
- **Gantt Task Editor Dialog**: Edit task fields, dependencies, resources, and scheduling details in a structured dialog.
|
|
243
|
+
|
|
244
|
+
- **Advanced Support**:
|
|
245
|
+
- **AI Agent Support**: Use Pro AI tooling to generate plugins, renderers, templates, and grid configurations.
|
|
246
|
+
- **RevoGrid MCP - AI-Native Grid Intelligence**: Connect AI coding tools to version-aware docs, examples, migrations, feature resolution, and typed API context.
|
|
247
|
+
- **Support via GitHub**: Get engineering support through GitHub-based workflows.
|
|
248
|
+
- **Support via Email**: Get direct support for Pro and enterprise implementation questions.
|
|
249
|
+
|
|
118
250
|
|
|
119
251
|
|
|
120
252
|
> ⚠️ **Note**: Repository Notice: This repo is read-only. Create new issues at the [revogrid repo](https://github.com/revolist/revogrid)
|
|
@@ -335,6 +467,45 @@ If you or your company would like to support the ongoing development of RevoGrid
|
|
|
335
467
|
Thank you for supporting RevoGrid! 🙏
|
|
336
468
|
|
|
337
469
|
|
|
470
|
+
## Testing
|
|
471
|
+
|
|
472
|
+
[](https://github.com/revolist/revogrid/actions/workflows/ci-unit.yml)
|
|
473
|
+
[](https://github.com/revolist/revogrid/actions/workflows/ci-e2e.yml)
|
|
474
|
+
|
|
475
|
+
RevoGrid is thoroughly tested to ensure reliability and stability.
|
|
476
|
+
|
|
477
|
+
| Suite | Command | Scope |
|
|
478
|
+
|---|---|---|
|
|
479
|
+
| Unit | `npm run test` | Services, utilities, pure logic |
|
|
480
|
+
| E2E (Playwright) | `npm run test:e2e` | Real browser rendering & interaction |
|
|
481
|
+
|
|
482
|
+
### E2E Tests
|
|
483
|
+
|
|
484
|
+
End-to-end tests use [@stencil/playwright](https://www.npmjs.com/package/@stencil/playwright) to run `<revo-grid>` in a real Chromium browser. The dev server starts automatically when you run:
|
|
485
|
+
|
|
486
|
+
```bash
|
|
487
|
+
npm run test:e2e
|
|
488
|
+
```
|
|
489
|
+
|
|
490
|
+
Test files live in `e2e/` and share helpers from `e2e/helpers.ts`:
|
|
491
|
+
|
|
492
|
+
### Local startup troubleshooting
|
|
493
|
+
|
|
494
|
+
For targeted local work, confirm a new or changed test is discoverable before starting the dev server:
|
|
495
|
+
|
|
496
|
+
```bash
|
|
497
|
+
./node_modules/.bin/playwright test e2e/pinning.spec.ts --grep "test name" --list
|
|
498
|
+
```
|
|
499
|
+
|
|
500
|
+
Then run a non-watch Stencil build to catch compile errors without invoking the Playwright web-server lifecycle:
|
|
501
|
+
|
|
502
|
+
```bash
|
|
503
|
+
./node_modules/.bin/stencil build --dev --serve --no-open
|
|
504
|
+
```
|
|
505
|
+
|
|
506
|
+
If Playwright fails before any tests run with a Stencil dev-server startup error such as `ERR_SOCKET_BAD_PORT` and port `65536`, treat it as an environment/startup issue rather than an e2e assertion failure. Check `node -v` and whether another local server is already using `localhost:3333`, then retry only after changing that environment state.
|
|
507
|
+
|
|
508
|
+
|
|
338
509
|
## Contributing
|
|
339
510
|
|
|
340
511
|
By getting involved, you'll have the opportunity to enhance your skills, gain valuable experience, and make a significant impact on an innovative project. Your contribution, no matter how big or small, is valuable.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@revolist/vue3-datagrid",
|
|
3
|
-
"version": "4.23.
|
|
3
|
+
"version": "4.23.11",
|
|
4
4
|
"description": "Vue 3 DataGrid Spreadsheet component with native Vue 3 cell render support",
|
|
5
5
|
"main": "./dist/vue3-datagrid.umd.cjs",
|
|
6
6
|
"module": "./dist/vue3-datagrid.js",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"homepage": "https://github.com/revolist/revogrid#readme",
|
|
66
66
|
"license": "MIT",
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@revolist/revogrid": "4.23.
|
|
68
|
+
"@revolist/revogrid": "4.23.11"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
71
|
"@stencil/core": "^4.43.2",
|