@teamprodevs/appsmith-custom-table 0.4.15 → 0.4.17
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/app.css +1 -1
- package/dist/app.js +12743 -12813
- package/dist/app.umd.cjs +25 -25
- package/dist/index.d.ts +9 -0
- package/package.json +99 -99
package/dist/index.d.ts
CHANGED
|
@@ -5709,6 +5709,14 @@ declare const TableModelSchema: default_2.ZodObject<{
|
|
|
5709
5709
|
actionColumn: default_2.ZodOptional<default_2.ZodObject<{
|
|
5710
5710
|
enable: default_2.ZodBoolean;
|
|
5711
5711
|
pin: default_2.ZodOptional<default_2.ZodDefault<default_2.ZodEnum<typeof PinDirection>>>;
|
|
5712
|
+
type: default_2.ZodOptional<default_2.ZodEnum<{
|
|
5713
|
+
link: "link";
|
|
5714
|
+
default: "default";
|
|
5715
|
+
destructive: "destructive";
|
|
5716
|
+
outline: "outline";
|
|
5717
|
+
secondary: "secondary";
|
|
5718
|
+
ghost: "ghost";
|
|
5719
|
+
}>>;
|
|
5712
5720
|
}, default_2.core.$strip>>;
|
|
5713
5721
|
translations: default_2.ZodOptional<default_2.ZodRecord<default_2.ZodString, default_2.ZodString>>;
|
|
5714
5722
|
styles: default_2.ZodOptional<default_2.ZodObject<{
|
|
@@ -5717,6 +5725,7 @@ declare const TableModelSchema: default_2.ZodObject<{
|
|
|
5717
5725
|
row: default_2.ZodOptional<default_2.ZodString>;
|
|
5718
5726
|
cell: default_2.ZodOptional<default_2.ZodString>;
|
|
5719
5727
|
icon: default_2.ZodOptional<default_2.ZodString>;
|
|
5728
|
+
container: default_2.ZodOptional<default_2.ZodString>;
|
|
5720
5729
|
}, default_2.core.$strip>>;
|
|
5721
5730
|
body: default_2.ZodOptional<default_2.ZodObject<{
|
|
5722
5731
|
body: default_2.ZodOptional<default_2.ZodString>;
|
package/package.json
CHANGED
|
@@ -1,99 +1,99 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@teamprodevs/appsmith-custom-table",
|
|
3
|
-
"version": "0.4.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"private": false,
|
|
6
|
-
"keywords": [
|
|
7
|
-
"appsmith",
|
|
8
|
-
"custom table",
|
|
9
|
-
"tanstack table"
|
|
10
|
-
],
|
|
11
|
-
"publishConfig": {
|
|
12
|
-
"access": "public"
|
|
13
|
-
},
|
|
14
|
-
"scripts": {
|
|
15
|
-
"build": "tsc -b && vite build",
|
|
16
|
-
"lint": "eslint .",
|
|
17
|
-
"preview": "vite preview",
|
|
18
|
-
"prepublishOnly": "npm run build",
|
|
19
|
-
"storybook": "storybook dev -p 6006",
|
|
20
|
-
"build-storybook": "storybook build"
|
|
21
|
-
},
|
|
22
|
-
"repository": {
|
|
23
|
-
"type": "git",
|
|
24
|
-
"url": "git+https://github.com/smarts-uz/ts-vite-appsmith-table.git"
|
|
25
|
-
},
|
|
26
|
-
"types": "./dist/index.d.ts",
|
|
27
|
-
"exports": {
|
|
28
|
-
".": {
|
|
29
|
-
"import": "./dist/app.js",
|
|
30
|
-
"require": "./dist/app.umd.cjs"
|
|
31
|
-
},
|
|
32
|
-
"./dist/styles.css": "./dist/styles.css"
|
|
33
|
-
},
|
|
34
|
-
"files": [
|
|
35
|
-
"dist"
|
|
36
|
-
],
|
|
37
|
-
"sideEffects": false,
|
|
38
|
-
"main": "./dist/app.umd.js",
|
|
39
|
-
"module": "./dist/app.es.js",
|
|
40
|
-
"dependencies": {
|
|
41
|
-
"@faker-js/faker": "^10.1.0",
|
|
42
|
-
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
43
|
-
"@radix-ui/react-popover": "^1.1.15",
|
|
44
|
-
"@radix-ui/react-slider": "^1.3.6",
|
|
45
|
-
"@radix-ui/react-slot": "^1.2.4",
|
|
46
|
-
"@radix-ui/react-tooltip": "^1.2.8",
|
|
47
|
-
"@tailwindcss/vite": "^4.1.17",
|
|
48
|
-
"@tanstack/react-table": "^8.21.3",
|
|
49
|
-
"autoprefixer": "^10.4.22",
|
|
50
|
-
"class-variance-authority": "^0.7.1",
|
|
51
|
-
"clsx": "^2.1.1",
|
|
52
|
-
"date-fns": "^4.1.0",
|
|
53
|
-
"lucide-react": "^0.553.0",
|
|
54
|
-
"postcss": "^8.5.6",
|
|
55
|
-
"react": "18.3.1",
|
|
56
|
-
"react-day-picker": "^9.11.1",
|
|
57
|
-
"react-intersection-observer": "^10.0.0",
|
|
58
|
-
"tailwind-merge": "^3.4.0",
|
|
59
|
-
"tailwindcss": "3.4.18",
|
|
60
|
-
"tailwindcss-animate": "^1.0.7",
|
|
61
|
-
"vite-plugin-dts": "^4.5.4",
|
|
62
|
-
"vite-tsconfig-paths": "^5.1.4",
|
|
63
|
-
"zod": "^4.1.12"
|
|
64
|
-
},
|
|
65
|
-
"devDependencies": {
|
|
66
|
-
"@chromatic-com/storybook": "4.1.3",
|
|
67
|
-
"@eslint/js": "latest",
|
|
68
|
-
"@storybook/addon-a11y": "10.0.8",
|
|
69
|
-
"@storybook/addon-docs": "10.0.8",
|
|
70
|
-
"@storybook/addon-vitest": "10.0.8",
|
|
71
|
-
"@storybook/react-vite": "10.0.8",
|
|
72
|
-
"@types/lodash": "^4.17.20",
|
|
73
|
-
"@types/node": "^24.10.1",
|
|
74
|
-
"@types/react": "^19.2.6",
|
|
75
|
-
"@types/react-dom": "^19.2.3",
|
|
76
|
-
"@vitejs/plugin-react": "^5.1.1",
|
|
77
|
-
"@vitest/browser-playwright": "^4.0.13",
|
|
78
|
-
"@vitest/coverage-v8": "^4.0.13",
|
|
79
|
-
"babel-plugin-react-compiler": "^1.0.0",
|
|
80
|
-
"eslint": "^9.39.1",
|
|
81
|
-
"eslint-plugin-react-hooks": "^5.2.0",
|
|
82
|
-
"eslint-plugin-react-refresh": "^0.4.24",
|
|
83
|
-
"eslint-plugin-storybook": "10.0.8",
|
|
84
|
-
"globals": "^16.5.0",
|
|
85
|
-
"playwright": "^1.56.1",
|
|
86
|
-
"storybook": "10.0.8",
|
|
87
|
-
"tw-animate-css": "^1.4.0",
|
|
88
|
-
"typescript": "~5.9.3",
|
|
89
|
-
"typescript-eslint": "^8.47.0",
|
|
90
|
-
"vite": "^7.2.4",
|
|
91
|
-
"vitest": "^4.0.13"
|
|
92
|
-
},
|
|
93
|
-
"resolutions": {
|
|
94
|
-
"react-dom": "18.3.1",
|
|
95
|
-
"react": "18.3.1"
|
|
96
|
-
},
|
|
97
|
-
"author": "Ramz001",
|
|
98
|
-
"license": "MIT"
|
|
99
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@teamprodevs/appsmith-custom-table",
|
|
3
|
+
"version": "0.4.17",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"private": false,
|
|
6
|
+
"keywords": [
|
|
7
|
+
"appsmith",
|
|
8
|
+
"custom table",
|
|
9
|
+
"tanstack table"
|
|
10
|
+
],
|
|
11
|
+
"publishConfig": {
|
|
12
|
+
"access": "public"
|
|
13
|
+
},
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "tsc -b && vite build",
|
|
16
|
+
"lint": "eslint .",
|
|
17
|
+
"preview": "vite preview",
|
|
18
|
+
"prepublishOnly": "npm run build",
|
|
19
|
+
"storybook": "storybook dev -p 6006",
|
|
20
|
+
"build-storybook": "storybook build"
|
|
21
|
+
},
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/smarts-uz/ts-vite-appsmith-table.git"
|
|
25
|
+
},
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"exports": {
|
|
28
|
+
".": {
|
|
29
|
+
"import": "./dist/app.js",
|
|
30
|
+
"require": "./dist/app.umd.cjs"
|
|
31
|
+
},
|
|
32
|
+
"./dist/styles.css": "./dist/styles.css"
|
|
33
|
+
},
|
|
34
|
+
"files": [
|
|
35
|
+
"dist"
|
|
36
|
+
],
|
|
37
|
+
"sideEffects": false,
|
|
38
|
+
"main": "./dist/app.umd.js",
|
|
39
|
+
"module": "./dist/app.es.js",
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@faker-js/faker": "^10.1.0",
|
|
42
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
43
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
44
|
+
"@radix-ui/react-slider": "^1.3.6",
|
|
45
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
46
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
47
|
+
"@tailwindcss/vite": "^4.1.17",
|
|
48
|
+
"@tanstack/react-table": "^8.21.3",
|
|
49
|
+
"autoprefixer": "^10.4.22",
|
|
50
|
+
"class-variance-authority": "^0.7.1",
|
|
51
|
+
"clsx": "^2.1.1",
|
|
52
|
+
"date-fns": "^4.1.0",
|
|
53
|
+
"lucide-react": "^0.553.0",
|
|
54
|
+
"postcss": "^8.5.6",
|
|
55
|
+
"react": "18.3.1",
|
|
56
|
+
"react-day-picker": "^9.11.1",
|
|
57
|
+
"react-intersection-observer": "^10.0.0",
|
|
58
|
+
"tailwind-merge": "^3.4.0",
|
|
59
|
+
"tailwindcss": "3.4.18",
|
|
60
|
+
"tailwindcss-animate": "^1.0.7",
|
|
61
|
+
"vite-plugin-dts": "^4.5.4",
|
|
62
|
+
"vite-tsconfig-paths": "^5.1.4",
|
|
63
|
+
"zod": "^4.1.12"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@chromatic-com/storybook": "4.1.3",
|
|
67
|
+
"@eslint/js": "latest",
|
|
68
|
+
"@storybook/addon-a11y": "10.0.8",
|
|
69
|
+
"@storybook/addon-docs": "10.0.8",
|
|
70
|
+
"@storybook/addon-vitest": "10.0.8",
|
|
71
|
+
"@storybook/react-vite": "10.0.8",
|
|
72
|
+
"@types/lodash": "^4.17.20",
|
|
73
|
+
"@types/node": "^24.10.1",
|
|
74
|
+
"@types/react": "^19.2.6",
|
|
75
|
+
"@types/react-dom": "^19.2.3",
|
|
76
|
+
"@vitejs/plugin-react": "^5.1.1",
|
|
77
|
+
"@vitest/browser-playwright": "^4.0.13",
|
|
78
|
+
"@vitest/coverage-v8": "^4.0.13",
|
|
79
|
+
"babel-plugin-react-compiler": "^1.0.0",
|
|
80
|
+
"eslint": "^9.39.1",
|
|
81
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
82
|
+
"eslint-plugin-react-refresh": "^0.4.24",
|
|
83
|
+
"eslint-plugin-storybook": "10.0.8",
|
|
84
|
+
"globals": "^16.5.0",
|
|
85
|
+
"playwright": "^1.56.1",
|
|
86
|
+
"storybook": "10.0.8",
|
|
87
|
+
"tw-animate-css": "^1.4.0",
|
|
88
|
+
"typescript": "~5.9.3",
|
|
89
|
+
"typescript-eslint": "^8.47.0",
|
|
90
|
+
"vite": "^7.2.4",
|
|
91
|
+
"vitest": "^4.0.13"
|
|
92
|
+
},
|
|
93
|
+
"resolutions": {
|
|
94
|
+
"react-dom": "18.3.1",
|
|
95
|
+
"react": "18.3.1"
|
|
96
|
+
},
|
|
97
|
+
"author": "Ramz001",
|
|
98
|
+
"license": "MIT"
|
|
99
|
+
}
|