@stonecrop/atable 0.4.16 → 0.4.18
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/atable.d.ts +18 -18
- package/dist/atable.js +341 -338
- package/dist/atable.js.map +1 -1
- package/dist/atable.tsbuildinfo +1 -1
- package/dist/atable.umd.cjs +2 -2
- package/dist/atable.umd.cjs.map +1 -1
- package/dist/src/stores/table.d.ts +18 -18
- package/dist/src/stores/table.d.ts.map +1 -1
- package/dist/src/tsdoc-metadata.json +1 -1
- package/dist/src/utils.d.ts.map +1 -1
- package/package.json +24 -24
package/dist/atable.d.ts
CHANGED
|
@@ -81,9 +81,9 @@ pinned?: boolean | undefined;
|
|
|
81
81
|
resizable?: boolean | undefined;
|
|
82
82
|
cellComponent?: string | undefined;
|
|
83
83
|
cellComponentProps?: Record<string, any> | undefined;
|
|
84
|
-
modalComponent?:
|
|
84
|
+
modalComponent?: string | ((context: CellContext) => string) | undefined;
|
|
85
85
|
modalComponentExtraProps?: Record<string, any> | undefined;
|
|
86
|
-
format?:
|
|
86
|
+
format?: string | ((value: any, context: CellContext) => string) | undefined;
|
|
87
87
|
mask?: ((value: any) => any) | undefined;
|
|
88
88
|
isGantt?: boolean | undefined;
|
|
89
89
|
ganttComponent?: string | undefined;
|
|
@@ -100,9 +100,9 @@ pinned?: boolean | undefined;
|
|
|
100
100
|
resizable?: boolean | undefined;
|
|
101
101
|
cellComponent?: string | undefined;
|
|
102
102
|
cellComponentProps?: Record<string, any> | undefined;
|
|
103
|
-
modalComponent?:
|
|
103
|
+
modalComponent?: string | ((context: CellContext) => string) | undefined;
|
|
104
104
|
modalComponentExtraProps?: Record<string, any> | undefined;
|
|
105
|
-
format?:
|
|
105
|
+
format?: string | ((value: any, context: CellContext) => string) | undefined;
|
|
106
106
|
mask?: ((value: any) => any) | undefined;
|
|
107
107
|
isGantt?: boolean | undefined;
|
|
108
108
|
ganttComponent?: string | undefined;
|
|
@@ -110,10 +110,10 @@ colspan?: number | undefined;
|
|
|
110
110
|
originalIndex?: number | undefined;
|
|
111
111
|
}[]>;
|
|
112
112
|
config: Ref< {
|
|
113
|
-
view?:
|
|
113
|
+
view?: "uncounted" | "list" | "list-expansion" | "tree" | "gantt" | undefined;
|
|
114
114
|
fullWidth?: boolean | undefined;
|
|
115
115
|
}, TableConfig | {
|
|
116
|
-
view?:
|
|
116
|
+
view?: "uncounted" | "list" | "list-expansion" | "tree" | "gantt" | undefined;
|
|
117
117
|
fullWidth?: boolean | undefined;
|
|
118
118
|
}>;
|
|
119
119
|
display: Ref< {
|
|
@@ -212,9 +212,9 @@ pinned?: boolean | undefined;
|
|
|
212
212
|
resizable?: boolean | undefined;
|
|
213
213
|
cellComponent?: string | undefined;
|
|
214
214
|
cellComponentProps?: Record<string, any> | undefined;
|
|
215
|
-
modalComponent?:
|
|
215
|
+
modalComponent?: string | ((context: CellContext) => string) | undefined;
|
|
216
216
|
modalComponentExtraProps?: Record<string, any> | undefined;
|
|
217
|
-
format?:
|
|
217
|
+
format?: string | ((value: any, context: CellContext) => string) | undefined;
|
|
218
218
|
mask?: ((value: any) => any) | undefined;
|
|
219
219
|
isGantt?: boolean | undefined;
|
|
220
220
|
ganttComponent?: string | undefined;
|
|
@@ -231,9 +231,9 @@ pinned?: boolean | undefined;
|
|
|
231
231
|
resizable?: boolean | undefined;
|
|
232
232
|
cellComponent?: string | undefined;
|
|
233
233
|
cellComponentProps?: Record<string, any> | undefined;
|
|
234
|
-
modalComponent?:
|
|
234
|
+
modalComponent?: string | ((context: CellContext) => string) | undefined;
|
|
235
235
|
modalComponentExtraProps?: Record<string, any> | undefined;
|
|
236
|
-
format?:
|
|
236
|
+
format?: string | ((value: any, context: CellContext) => string) | undefined;
|
|
237
237
|
mask?: ((value: any) => any) | undefined;
|
|
238
238
|
isGantt?: boolean | undefined;
|
|
239
239
|
ganttComponent?: string | undefined;
|
|
@@ -241,10 +241,10 @@ colspan?: number | undefined;
|
|
|
241
241
|
originalIndex?: number | undefined;
|
|
242
242
|
}[]>;
|
|
243
243
|
config: Ref< {
|
|
244
|
-
view?:
|
|
244
|
+
view?: "uncounted" | "list" | "list-expansion" | "tree" | "gantt" | undefined;
|
|
245
245
|
fullWidth?: boolean | undefined;
|
|
246
246
|
}, TableConfig | {
|
|
247
|
-
view?:
|
|
247
|
+
view?: "uncounted" | "list" | "list-expansion" | "tree" | "gantt" | undefined;
|
|
248
248
|
fullWidth?: boolean | undefined;
|
|
249
249
|
}>;
|
|
250
250
|
display: Ref< {
|
|
@@ -343,9 +343,9 @@ pinned?: boolean | undefined;
|
|
|
343
343
|
resizable?: boolean | undefined;
|
|
344
344
|
cellComponent?: string | undefined;
|
|
345
345
|
cellComponentProps?: Record<string, any> | undefined;
|
|
346
|
-
modalComponent?:
|
|
346
|
+
modalComponent?: string | ((context: CellContext) => string) | undefined;
|
|
347
347
|
modalComponentExtraProps?: Record<string, any> | undefined;
|
|
348
|
-
format?:
|
|
348
|
+
format?: string | ((value: any, context: CellContext) => string) | undefined;
|
|
349
349
|
mask?: ((value: any) => any) | undefined;
|
|
350
350
|
isGantt?: boolean | undefined;
|
|
351
351
|
ganttComponent?: string | undefined;
|
|
@@ -362,9 +362,9 @@ pinned?: boolean | undefined;
|
|
|
362
362
|
resizable?: boolean | undefined;
|
|
363
363
|
cellComponent?: string | undefined;
|
|
364
364
|
cellComponentProps?: Record<string, any> | undefined;
|
|
365
|
-
modalComponent?:
|
|
365
|
+
modalComponent?: string | ((context: CellContext) => string) | undefined;
|
|
366
366
|
modalComponentExtraProps?: Record<string, any> | undefined;
|
|
367
|
-
format?:
|
|
367
|
+
format?: string | ((value: any, context: CellContext) => string) | undefined;
|
|
368
368
|
mask?: ((value: any) => any) | undefined;
|
|
369
369
|
isGantt?: boolean | undefined;
|
|
370
370
|
ganttComponent?: string | undefined;
|
|
@@ -372,10 +372,10 @@ colspan?: number | undefined;
|
|
|
372
372
|
originalIndex?: number | undefined;
|
|
373
373
|
}[]>;
|
|
374
374
|
config: Ref< {
|
|
375
|
-
view?:
|
|
375
|
+
view?: "uncounted" | "list" | "list-expansion" | "tree" | "gantt" | undefined;
|
|
376
376
|
fullWidth?: boolean | undefined;
|
|
377
377
|
}, TableConfig | {
|
|
378
|
-
view?:
|
|
378
|
+
view?: "uncounted" | "list" | "list-expansion" | "tree" | "gantt" | undefined;
|
|
379
379
|
fullWidth?: boolean | undefined;
|
|
380
380
|
}>;
|
|
381
381
|
display: Ref< {
|