@teamprodevs/appsmith-custom-table 0.4.9 → 0.4.10
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.js +517 -510
- package/dist/app.umd.cjs +8 -8
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ declare enum PinDirection {
|
|
|
19
19
|
declare type TableModel = default_2.infer<typeof TableModelSchema>;
|
|
20
20
|
|
|
21
21
|
declare const TableModelSchema: default_2.ZodObject<{
|
|
22
|
-
|
|
22
|
+
tableData: default_2.ZodDefault<default_2.ZodArray<default_2.ZodAny>>;
|
|
23
23
|
limit: default_2.ZodOptional<default_2.ZodDefault<default_2.ZodNumber>>;
|
|
24
24
|
max_count: default_2.ZodNumber;
|
|
25
25
|
schema: default_2.ZodRecord<default_2.ZodString, default_2.ZodObject<{
|
|
@@ -5737,6 +5737,7 @@ declare const TableModelSchema: default_2.ZodObject<{
|
|
|
5737
5737
|
limit: default_2.ZodOptional<default_2.ZodNumber>;
|
|
5738
5738
|
}, default_2.core.$strip>], null>, default_2.core.$ZodFunctionOut>>;
|
|
5739
5739
|
updateModel: default_2.ZodOptional<default_2.ZodFunction<default_2.ZodTuple<readonly [default_2.ZodAny], null>, default_2.core.$ZodFunctionOut>>;
|
|
5740
|
+
onModelChange: default_2.ZodOptional<default_2.ZodFunction<default_2.ZodTuple<readonly [default_2.ZodAny], null>, default_2.core.$ZodFunctionOut>>;
|
|
5740
5741
|
}, default_2.core.$strip>;
|
|
5741
5742
|
|
|
5742
5743
|
export { }
|