@teamprodevs/appsmith-custom-table 0.4.12 → 0.4.14
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 +35563 -35547
- package/dist/app.umd.cjs +46 -46
- package/dist/index.d.ts +5 -7
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -28,11 +28,6 @@ declare const TableModelSchema: default_2.ZodObject<{
|
|
|
28
28
|
title: default_2.ZodOptional<default_2.ZodString>;
|
|
29
29
|
className: default_2.ZodOptional<default_2.ZodString>;
|
|
30
30
|
}, default_2.core.$strip>>;
|
|
31
|
-
indexRow: default_2.ZodOptional<default_2.ZodObject<{
|
|
32
|
-
enable: default_2.ZodBoolean;
|
|
33
|
-
pin: default_2.ZodOptional<default_2.ZodDefault<default_2.ZodEnum<typeof PinDirection>>>;
|
|
34
|
-
size: default_2.ZodOptional<default_2.ZodDefault<default_2.ZodEnum<typeof ItemSize>>>;
|
|
35
|
-
}, default_2.core.$strip>>;
|
|
36
31
|
rowActions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodObject<{
|
|
37
32
|
title: default_2.ZodString;
|
|
38
33
|
onClick: default_2.ZodString;
|
|
@@ -5707,10 +5702,13 @@ declare const TableModelSchema: default_2.ZodObject<{
|
|
|
5707
5702
|
}>>;
|
|
5708
5703
|
}, default_2.core.$strip>>>;
|
|
5709
5704
|
rowSelectionAction: default_2.ZodOptional<default_2.ZodString>;
|
|
5705
|
+
indexColumn: default_2.ZodOptional<default_2.ZodObject<{
|
|
5706
|
+
enable: default_2.ZodBoolean;
|
|
5707
|
+
pin: default_2.ZodOptional<default_2.ZodDefault<default_2.ZodEnum<typeof PinDirection>>>;
|
|
5708
|
+
}, default_2.core.$strip>>;
|
|
5710
5709
|
actionColumn: default_2.ZodOptional<default_2.ZodObject<{
|
|
5711
5710
|
enable: default_2.ZodBoolean;
|
|
5712
|
-
|
|
5713
|
-
pin: default_2.ZodDefault<default_2.ZodEnum<typeof PinDirection>>;
|
|
5711
|
+
pin: default_2.ZodOptional<default_2.ZodDefault<default_2.ZodEnum<typeof PinDirection>>>;
|
|
5714
5712
|
}, default_2.core.$strip>>;
|
|
5715
5713
|
translations: default_2.ZodOptional<default_2.ZodRecord<default_2.ZodString, default_2.ZodString>>;
|
|
5716
5714
|
styles: default_2.ZodOptional<default_2.ZodObject<{
|