@revolist/svelte-datagrid 4.14.0 → 4.14.2

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 CHANGED
@@ -61,6 +61,7 @@ Support Millions of cells and thousands of columns easy and efficiently for fast
61
61
  - Preserve existing collections.
62
62
  - Selection.
63
63
  - Slider.
64
+ - Header filtering.
64
65
  - Custom filters to extend system filters with your own set.
65
66
 
66
67
  - **[Export](https://rv-grid.com/guide/export.plugin)**: Export data to file.
@@ -76,6 +77,7 @@ Support Millions of cells and thousands of columns easy and efficiently for fast
76
77
 
77
78
  - **Grouping**:
78
79
  - [Column grouping](https://rv-grid.com/guide/column/grouping) (nested headers).
80
+ - Column grouping Drill Down: Collapse grouping columns to streamline your grid view, trimming away unnecessary columns and enhancing data organization. Perfect for focusing on the information that matters most, while keeping your workspace clean and efficient.
79
81
  - [Row grouping](https://rv-grid.com/guide/row/grouping) (nested rows).
80
82
 
81
83
  - **Column Types**: [More details](https://rv-grid.com/guide/column/#Column-Formats)
@@ -104,11 +106,15 @@ Support Millions of cells and thousands of columns easy and efficiently for fast
104
106
 
105
107
  - **[Master Detail/Subtables/Forms](https://rv-grid.com/guide/row/master.pro)**: Expand rows to reveal child data.
106
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.
107
111
 
108
112
  - **Customizations**:
109
113
  - [Column header template](https://rv-grid.com/guide/column/header.template).
110
114
  - [Row header template](https://rv-grid.com/guide/row/headers).
111
115
  - [Cell properties](https://rv-grid.com/guide/cell/) (define custom properties for rendered cells).
116
+ - Nested grids: Build a grid inside a grid, showcasing advanced editing options and user interactions for a more dynamic data presentation.
117
+ - Context Menu: Build context menus for any grid element - from cells to headers. Cut, copy, paste, add rows, modify columns, and more. Fully customizable with your own actions and behaviors.
112
118
 
113
119
 
114
120
  > ⚠️ **Note**: Repository Notice: This repo is read-only. Create new issues at the [revogrid repo](https://github.com/revolist/revogrid)
@@ -98,7 +98,8 @@ Or can be filter collection See `FilterCollection` for more info. */
98
98
  filter?: Components.RevoGrid["filter"]
99
99
 
100
100
  /** Alternative way to set sorting.
101
- `{columns: [{prop: 'name', order: 'asc'}]}` */
101
+ `{columns: [{prop: 'name', order: 'asc'}]}`
102
+ Use SortingPlugin to get current sorting state */
102
103
  sorting?: Components.RevoGrid["sorting"]
103
104
 
104
105
  /** Apply changes typed in editor on editor close except Escape cases.
@@ -197,18 +198,18 @@ This is just a duplicate of `afterfocus` from `revogr-focus.tsx`. */
197
198
  To prevent the default behavior of changing the order of `rgRow`, you can call `e.preventDefault()`. */
198
199
  roworderchanged: Parameters<JSX.RevoGrid["onRoworderchanged"]>[0]
199
200
 
200
- /** By `sorting.plugin.ts`
201
+ /** By `SortingPlugin`
201
202
  <br>Triggered immediately after header click.
202
203
  <br>First in sorting event sequence. Ff this event stops no other event called.
203
204
  <br>Use `e.preventDefault()` to prevent sorting. */
204
205
  beforesorting: Parameters<JSX.RevoGrid["onBeforesorting"]>[0]
205
206
 
206
- /** By `sorting.plugin.ts`
207
+ /** By `SortingPlugin`
207
208
  <br>Same as `beforesorting` but triggered after `beforeanysource` (when source is changed).
208
209
  <br>Use `e.preventDefault()` to prevent sorting data change. */
209
210
  beforesourcesortingapply: Parameters<JSX.RevoGrid["onBeforesourcesortingapply"]>[0]
210
211
 
211
- /** By `sorting.plugin.ts`
212
+ /** By `SortingPlugin`
212
213
  <br> After `beforesorting`
213
214
  <br>Triggered after column data updated with new sorting order.
214
215
  <br>Use `e.preventDefault()` to prevent sorting data change. */
@@ -300,7 +301,8 @@ Useful for modifying or preventing the default row definition behavior. */
300
301
  /** Emitted when the filter configuration is changed */
301
302
  filterconfigchanged: Parameters<JSX.RevoGrid["onFilterconfigchanged"]>[0]
302
303
 
303
- /** Emitted when the sorting configuration is changed */
304
+ /** Emitted when the sorting configuration is changed
305
+ SortingPlugin subsribed to this event */
304
306
  sortingconfigchanged: Parameters<JSX.RevoGrid["onSortingconfigchanged"]>[0]
305
307
 
306
308
  /** Emmited when the row headers are changed. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revolist/svelte-datagrid",
3
- "version": "4.14.0",
3
+ "version": "4.14.2",
4
4
  "description": "Svelte DataGrid Spreadsheet component with native cell render support",
5
5
  "main": "./dist/svelte-datagrid.umd.cjs",
6
6
  "module": "./dist/svelte-datagrid.js",
@@ -73,7 +73,7 @@
73
73
  "vite-plugin-dts": "^4.3.0"
74
74
  },
75
75
  "dependencies": {
76
- "@revolist/revogrid": "4.14.0"
76
+ "@revolist/revogrid": "4.14.2"
77
77
  },
78
78
  "publishConfig": {
79
79
  "access": "public"