@evenicanpm/portal-table-ui 1.4.1 → 1.6.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 (41) hide show
  1. package/dist/auth/auth-context.d.ts +36 -0
  2. package/dist/features/settings/index.d.ts +2 -0
  3. package/dist/features/table/components/dashboard/index.d.ts +1 -0
  4. package/dist/features/table/components/dashboard/table/actions.d.ts +14 -0
  5. package/dist/features/table/components/dashboard/table/data-mask-map.d.ts +2 -0
  6. package/dist/features/table/components/dashboard/table/details/details.d.ts +27 -0
  7. package/dist/features/table/components/dashboard/table/details/index.d.ts +1 -0
  8. package/dist/features/table/components/dashboard/table/details/label.d.ts +5 -0
  9. package/dist/features/table/components/dashboard/table/details/rows/downloads.d.ts +6 -0
  10. package/dist/features/table/components/dashboard/table/details/rows/index.d.ts +3 -0
  11. package/dist/features/table/components/dashboard/table/details/rows/primitive.d.ts +6 -0
  12. package/dist/features/table/components/dashboard/table/details/rows/table.d.ts +17 -0
  13. package/dist/features/table/components/dashboard/table/details/styles.d.ts +10 -0
  14. package/dist/features/table/components/dashboard/table/filter-render-map.d.ts +2 -0
  15. package/dist/features/table/components/dashboard/table/filters/date-filter.d.ts +2 -0
  16. package/dist/features/table/components/dashboard/table/filters/status-filter.d.ts +2 -0
  17. package/dist/features/table/components/dashboard/table/index.d.ts +2 -0
  18. package/dist/features/table/components/dashboard/table/no-results.d.ts +2 -0
  19. package/dist/features/table/components/dashboard/table/status-pill.d.ts +8 -0
  20. package/dist/features/table/components/dashboard/table/table-header.d.ts +16 -0
  21. package/dist/features/table/components/dashboard/table/table-input.d.ts +11 -0
  22. package/dist/features/table/components/dashboard/table/table-row/action-button.d.ts +8 -0
  23. package/dist/features/table/components/dashboard/table/table-row/table-row.d.ts +32 -0
  24. package/dist/features/table/components/dashboard/table/table-row-skeleton.d.ts +6 -0
  25. package/dist/features/table/components/dashboard/table/table.d.ts +18 -0
  26. package/dist/features/table/components/dashboard/table-dashboard.d.ts +22 -0
  27. package/dist/features/table/index.d.ts +8 -0
  28. package/dist/features/table/logic/index.d.ts +23 -0
  29. package/dist/features/table/logic/resolvers.d.ts +21 -0
  30. package/dist/features/table/logic/transformers.d.ts +35 -0
  31. package/dist/features/table/logic/types.d.ts +8 -0
  32. package/dist/features/table/types/handlers.d.ts +53 -0
  33. package/dist/features/table/types/index.d.ts +69 -0
  34. package/dist/features/table/types/queries.d.ts +27 -0
  35. package/dist/features/table/types/schemas.d.ts +31 -0
  36. package/dist/index.d.ts +63 -0
  37. package/dist/portal.d.ts +38 -0
  38. package/dist/tsconfig.tsbuildinfo +1 -0
  39. package/package.json +8 -4
  40. package/tsconfig.json +0 -28
  41. package/typedoc.json +0 -10
@@ -0,0 +1,38 @@
1
+ import type { PropsWithChildren } from "react";
2
+ import { type AuthProviderProps } from "./auth/auth-context";
3
+ /**
4
+ * Main Entry point properties into portal package
5
+ *
6
+ *
7
+ */
8
+ interface PortalProps extends AuthProviderProps {
9
+ }
10
+ /**
11
+ * The main **e4Portal** entry point.
12
+ * * This is a React Functional Component that provides the core context
13
+ * and layout for the application. It is required to wrap all components
14
+ * that use the library's hooks or sub-components.
15
+ *
16
+ *
17
+ * @param props - The properties passed to the Portal component.
18
+ * @returns A React Element rendering the main application structure.
19
+ */
20
+ declare const Portal: {
21
+ ({ session, logout, children, }: PropsWithChildren<PortalProps>): import("react").JSX.Element;
22
+ /**
23
+ *
24
+ * # Feature: Table
25
+ * This is the table feature component.
26
+ * @params props
27
+ *
28
+ */
29
+ Table: ({ resources, viewConfigQuery }: import("./features/table/components/dashboard/table-dashboard").TableProps) => import("react").JSX.Element;
30
+ };
31
+ /**
32
+ *
33
+ * # Feature: Settings
34
+ * This is the table feature component.
35
+ * @params props
36
+ *
37
+ */
38
+ export { Portal, type PortalProps };