@evenicanpm/portal-table-ui 1.5.0 → 1.7.0

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 (67) hide show
  1. package/package.json +6 -5
  2. package/src/auth/auth-context.tsx +92 -0
  3. package/src/features/table/components/dashboard/table/bulk-action-button.tsx +77 -0
  4. package/src/features/table/components/dashboard/table/data-mask-map.ts +26 -0
  5. package/src/features/table/components/dashboard/table/details/details.tsx +185 -0
  6. package/src/features/table/components/dashboard/table/details/label.tsx +26 -0
  7. package/src/features/table/components/dashboard/table/details/rows/downloads.tsx +25 -0
  8. package/src/features/table/components/dashboard/table/details/rows/primitive.tsx +25 -0
  9. package/src/features/table/components/dashboard/table/details/rows/table.tsx +73 -0
  10. package/{dist/features/table/components/dashboard/table/details/styles.d.ts → src/features/table/components/dashboard/table/details/styles.ts} +10 -2
  11. package/src/features/table/components/dashboard/table/details/templates/invoice-details.tsx +407 -0
  12. package/src/features/table/components/dashboard/table/details/templates/template-registry.ts +36 -0
  13. package/src/features/table/components/dashboard/table/filter-render-map.tsx +10 -0
  14. package/src/features/table/components/dashboard/table/filters/date-filter.tsx +31 -0
  15. package/src/features/table/components/dashboard/table/filters/status-filter.tsx +36 -0
  16. package/src/features/table/components/dashboard/table/no-results.tsx +26 -0
  17. package/src/features/table/components/dashboard/table/status-pill.tsx +18 -0
  18. package/src/features/table/components/dashboard/table/table-header.tsx +98 -0
  19. package/src/features/table/components/dashboard/table/table-input.tsx +94 -0
  20. package/src/features/table/components/dashboard/table/table-row/action-button.tsx +47 -0
  21. package/src/features/table/components/dashboard/table/table-row/table-row.tsx +144 -0
  22. package/src/features/table/components/dashboard/table/table-row-skeleton.tsx +35 -0
  23. package/src/features/table/components/dashboard/table/table.tsx +361 -0
  24. package/src/features/table/components/dashboard/table/use-select-rows.ts +53 -0
  25. package/src/features/table/components/dashboard/table-dashboard.tsx +71 -0
  26. package/{dist/features/table/index.d.ts → src/features/table/index.ts} +7 -1
  27. package/src/features/table/logic/resolvers.ts +111 -0
  28. package/src/features/table/logic/transformers.ts +56 -0
  29. package/src/features/table/logic/types.ts +8 -0
  30. package/{dist/features/table/types/handlers.d.ts → src/features/table/types/handlers.ts} +30 -12
  31. package/{dist/features/table/types/index.d.ts → src/features/table/types/index.ts} +1 -0
  32. package/{dist/features/table/types/queries.d.ts → src/features/table/types/queries.ts} +10 -3
  33. package/src/features/table/types/schemas.ts +89 -0
  34. package/{dist/index.d.ts → src/index.ts} +2 -1
  35. package/src/portal.tsx +68 -0
  36. package/dist/auth/auth-context.d.ts +0 -36
  37. package/dist/features/settings/index.d.ts +0 -2
  38. package/dist/features/table/components/dashboard/table/actions.d.ts +0 -14
  39. package/dist/features/table/components/dashboard/table/data-mask-map.d.ts +0 -2
  40. package/dist/features/table/components/dashboard/table/details/details.d.ts +0 -27
  41. package/dist/features/table/components/dashboard/table/details/label.d.ts +0 -5
  42. package/dist/features/table/components/dashboard/table/details/rows/downloads.d.ts +0 -6
  43. package/dist/features/table/components/dashboard/table/details/rows/primitive.d.ts +0 -6
  44. package/dist/features/table/components/dashboard/table/details/rows/table.d.ts +0 -17
  45. package/dist/features/table/components/dashboard/table/filter-render-map.d.ts +0 -2
  46. package/dist/features/table/components/dashboard/table/filters/date-filter.d.ts +0 -2
  47. package/dist/features/table/components/dashboard/table/filters/status-filter.d.ts +0 -2
  48. package/dist/features/table/components/dashboard/table/no-results.d.ts +0 -2
  49. package/dist/features/table/components/dashboard/table/status-pill.d.ts +0 -8
  50. package/dist/features/table/components/dashboard/table/table-header.d.ts +0 -16
  51. package/dist/features/table/components/dashboard/table/table-input.d.ts +0 -11
  52. package/dist/features/table/components/dashboard/table/table-row/action-button.d.ts +0 -8
  53. package/dist/features/table/components/dashboard/table/table-row/table-row.d.ts +0 -32
  54. package/dist/features/table/components/dashboard/table/table-row-skeleton.d.ts +0 -6
  55. package/dist/features/table/components/dashboard/table/table.d.ts +0 -18
  56. package/dist/features/table/components/dashboard/table-dashboard.d.ts +0 -22
  57. package/dist/features/table/logic/resolvers.d.ts +0 -21
  58. package/dist/features/table/logic/transformers.d.ts +0 -35
  59. package/dist/features/table/logic/types.d.ts +0 -8
  60. package/dist/features/table/types/schemas.d.ts +0 -31
  61. package/dist/portal.d.ts +0 -38
  62. package/dist/tsconfig.tsbuildinfo +0 -1
  63. /package/{dist/features/table/components/dashboard/index.d.ts → src/features/table/components/dashboard/index.tsx} +0 -0
  64. /package/{dist/features/table/components/dashboard/table/details/index.d.ts → src/features/table/components/dashboard/table/details/index.ts} +0 -0
  65. /package/{dist/features/table/components/dashboard/table/details/rows/index.d.ts → src/features/table/components/dashboard/table/details/rows/index.ts} +0 -0
  66. /package/{dist/features/table/components/dashboard/table/index.d.ts → src/features/table/components/dashboard/table/index.ts} +0 -0
  67. /package/{dist/features/table/logic/index.d.ts → src/features/table/logic/index.ts} +0 -0