Future Ideas and possible features (2024) #1527
ghiscoding
started this conversation in
Ideas
Replies: 1 comment 4 replies
-
@zewa666 I wouldn't mind the help on this if you want to take a look at it in Angular-Slickgrid, it will be required before moving the project in here (I just don't want to have to test frameworks in here) |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Below is a list of ideas, there's a good change that it will never come to fruition but I'm just listing them as possible ideas anyway
possible use of Web Worker for Export Services to avoid blocking main thread while downloadingtry to use SortableJS ESM import and see if it helps with build sizeimport Sortable from 'sortablejs/modular/sortable.core.esm.js';
(see SortableJS Getting Started)sortable.core.esm.js
doesn't play well with current Types@types/sortablejs
because the names don't match. Considering that this is a pain to get proper Types, I think I'll just keep current approach and 1kb bigger is not that much of a difference. The hope is that one day, SortableJS offers better ESM support (but I won't put much hope on this happening anytime soon sadly)between 2 gridsand/or drag row to outside container like a recycle binbetween 2 grids(won't do since this requires a new plugin and no one ever requested this feature), alternatively any user could simply create their own plugin themselves.stop using Jest Global types, see this potential PR of another project to handle itMigrate to Vitest insteadsilenceWarnings
to all ports in next version onlyGroupingAndColspanService
should be renamed toHeaderGroupingService
since there's nothing related to colspan (the colspan was actually meant to represent that header can span across multiple columns, but SlickGrid always called it Header Grouping, so let's use that name instead in the nextminor
version)"peerDependencies": { "react": ">= 18.0.0" }
fetch-jsonp
with native Fetch? Maybe this SOBeta Was this translation helpful? Give feedback.
All reactions