react-base-data-table 0.4.0 → 0.5.1

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.
Files changed (31) hide show
  1. package/README.md +14 -0
  2. package/dist/index.cjs.js +37 -20
  3. package/dist/index.cjs.js.map +1 -1
  4. package/dist/index.es.js +18748 -9955
  5. package/dist/index.es.js.map +1 -1
  6. package/dist/style.css +1 -1
  7. package/dist/types/components/BaseIcon.d.ts +11 -0
  8. package/dist/types/components/BaseTable/BaseTable.d.ts +13 -1
  9. package/dist/types/components/BaseTable/BaseTableRow.d.ts +1 -0
  10. package/dist/types/components/BaseTable/CustomRenderItem.d.ts +1 -0
  11. package/dist/types/components/BaseTable/contextMenu/actions/cellActions.d.ts +2 -1
  12. package/dist/types/components/BaseTable/contexts/useTableInteractionContext.d.ts +6 -49
  13. package/dist/types/components/BaseTable/dialogs/columnsDialog/ChartDialog.d.ts +7 -0
  14. package/dist/types/components/BaseTable/hooks/useTableInteractions.d.ts +20 -4
  15. package/dist/types/components/BaseTable/models/AdvancedTableSettings.d.ts +5 -1
  16. package/dist/types/components/BaseTable/models/BaseTableHeaders.d.ts +1 -1
  17. package/dist/types/components/BaseTable/models/DialogItem.d.ts +6 -0
  18. package/dist/types/components/BaseTable/tableCell/BaseTableCell.d.ts +1 -1
  19. package/dist/types/components/BaseTable/tableCell/baseTableCellFunctions.d.ts +16 -0
  20. package/dist/types/components/BaseTable/tableCell/cellImplementation/ListCell.d.ts +1 -1
  21. package/dist/types/components/BaseTable/tableCell/cellImplementation/NumberCell.d.ts +1 -1
  22. package/dist/types/components/BaseTable/tableFunctions/CellSelection.d.ts +2 -0
  23. package/dist/types/stores/clipboardStore.d.ts +24 -0
  24. package/dist/types/stores/dialogsStore.d.ts +2 -2
  25. package/dist/types/stores/tableSelectionStore.d.ts +4 -0
  26. package/dist/types/utils/cellCoordinates.d.ts +3 -0
  27. package/dist/types/utils/cellOverlapping.d.ts +6 -0
  28. package/package.json +3 -1
  29. package/dist/types/components/BaseTable/hooks/useTableData.d.ts +0 -19
  30. package/dist/types/components/BaseTable/hooks/useTableFiltering.d.ts +0 -13
  31. package/dist/types/components/BaseTable/hooks/useTableSorting.d.ts +0 -13
package/README.md CHANGED
@@ -264,6 +264,20 @@ const headers = [
264
264
 
265
265
  ## How to test the package in dev
266
266
 
267
+ To create the package locally.
268
+
269
+ ```bash
270
+ npm link
271
+ ```
272
+
273
+ In your test project.
274
+
275
+ ```bash
276
+ npm link react-base-data-table
277
+ ```
278
+
279
+ #OLD
280
+
267
281
  Yalc emulates npm publish. It is preferred over npm link for fewer issues.
268
282
 
269
283
  ```bash