@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.
- package/dist/auth/auth-context.d.ts +36 -0
- package/dist/features/settings/index.d.ts +2 -0
- package/dist/features/table/components/dashboard/index.d.ts +1 -0
- package/dist/features/table/components/dashboard/table/actions.d.ts +14 -0
- package/dist/features/table/components/dashboard/table/data-mask-map.d.ts +2 -0
- package/dist/features/table/components/dashboard/table/details/details.d.ts +27 -0
- package/dist/features/table/components/dashboard/table/details/index.d.ts +1 -0
- package/dist/features/table/components/dashboard/table/details/label.d.ts +5 -0
- package/dist/features/table/components/dashboard/table/details/rows/downloads.d.ts +6 -0
- package/dist/features/table/components/dashboard/table/details/rows/index.d.ts +3 -0
- package/dist/features/table/components/dashboard/table/details/rows/primitive.d.ts +6 -0
- package/dist/features/table/components/dashboard/table/details/rows/table.d.ts +17 -0
- package/dist/features/table/components/dashboard/table/details/styles.d.ts +10 -0
- package/dist/features/table/components/dashboard/table/filter-render-map.d.ts +2 -0
- package/dist/features/table/components/dashboard/table/filters/date-filter.d.ts +2 -0
- package/dist/features/table/components/dashboard/table/filters/status-filter.d.ts +2 -0
- package/dist/features/table/components/dashboard/table/index.d.ts +2 -0
- package/dist/features/table/components/dashboard/table/no-results.d.ts +2 -0
- package/dist/features/table/components/dashboard/table/status-pill.d.ts +8 -0
- package/dist/features/table/components/dashboard/table/table-header.d.ts +16 -0
- package/dist/features/table/components/dashboard/table/table-input.d.ts +11 -0
- package/dist/features/table/components/dashboard/table/table-row/action-button.d.ts +8 -0
- package/dist/features/table/components/dashboard/table/table-row/table-row.d.ts +32 -0
- package/dist/features/table/components/dashboard/table/table-row-skeleton.d.ts +6 -0
- package/dist/features/table/components/dashboard/table/table.d.ts +18 -0
- package/dist/features/table/components/dashboard/table-dashboard.d.ts +22 -0
- package/dist/features/table/index.d.ts +8 -0
- package/dist/features/table/logic/index.d.ts +23 -0
- package/dist/features/table/logic/resolvers.d.ts +21 -0
- package/dist/features/table/logic/transformers.d.ts +35 -0
- package/dist/features/table/logic/types.d.ts +8 -0
- package/dist/features/table/types/handlers.d.ts +53 -0
- package/dist/features/table/types/index.d.ts +69 -0
- package/dist/features/table/types/queries.d.ts +27 -0
- package/dist/features/table/types/schemas.d.ts +31 -0
- package/dist/index.d.ts +63 -0
- package/dist/portal.d.ts +38 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +8 -4
- package/tsconfig.json +0 -28
- 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.
|
|
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.
|
|
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": "
|
|
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
|
-
}
|