@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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evenicanpm/portal-table-ui",
3
- "version": "1.4.1",
3
+ "version": "1.6.0",
4
4
  "description": "",
5
5
  "license": "ISC",
6
6
  "author": "",
@@ -15,6 +15,10 @@
15
15
  ".": "./src/index.ts"
16
16
  },
17
17
  "types": "./dist/index.d.ts",
18
+ "files": [
19
+ "dist",
20
+ "src"
21
+ ],
18
22
  "devDependencies": {
19
23
  "@emotion/react": "^11.11.3",
20
24
  "@emotion/styled": "^11.11.0",
@@ -37,11 +41,11 @@
37
41
  },
38
42
  "dependencies": {
39
43
  "@arrows/multimethod": "^2.1.0",
40
- "@evenicanpm/portal-types-schemas": "*",
41
- "@evenicanpm/ui": "^1.4.0",
44
+ "@evenicanpm/portal-types-schemas": "^1.6.0",
45
+ "@evenicanpm/ui": "^1.6.0",
42
46
  "@mui/lab": "^7.0.1-beta.19",
43
47
  "@tanstack/react-query": "^5.90.11",
44
48
  "date-fns": "^4.1.0"
45
49
  },
46
- "gitHead": "10194bd223a077c5f3313b342a495301ab722562"
50
+ "gitHead": "9b18fe6294cc0e57332ec8703825a609ac7b73b2"
47
51
  }
package/tsconfig.json DELETED
@@ -1,28 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ES6",
4
- "useDefineForClassFields": true,
5
- "lib": ["ES2022", "DOM", "DOM.Iterable"],
6
- "module": "ESNext",
7
- "sourceMap": true,
8
- "esModuleInterop": true,
9
- "skipLibCheck": true,
10
- "declaration": true,
11
- "preserveSymlinks": true,
12
- "moduleResolution": "Node",
13
- "resolveJsonModule": true,
14
- "isolatedModules": true,
15
- "emitDeclarationOnly": true,
16
- "jsx": "preserve",
17
- "strict": true,
18
- "noUnusedLocals": true,
19
- "noUnusedParameters": true,
20
- "noFallthroughCasesInSwitch": true,
21
- "allowJs": true,
22
- "forceConsistentCasingInFileNames": true,
23
- "incremental": true,
24
- "baseUrl": "./",
25
- "outDir": "./dist"
26
- },
27
- "include": ["src"]
28
- }
package/typedoc.json DELETED
@@ -1,10 +0,0 @@
1
- {
2
- "highlightLanguages": [
3
- "bash",
4
- "typescript",
5
- "tsx",
6
- "javascript",
7
- "html",
8
- "css"
9
- ]
10
- }