@stonecrop/atable 0.13.12 → 0.13.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/assets/index.css +1 -1
- package/dist/atable.d.ts +209 -13
- package/dist/atable.js +1040 -1021
- package/dist/atable.js.map +1 -1
- package/dist/src/icons/index.d.ts +2 -1
- package/dist/src/icons/index.d.ts.map +1 -1
- package/dist/src/icons/index.js +3 -1
- package/dist/src/index.d.ts +1 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +1 -1
- package/dist/src/stores/table.d.ts +168 -0
- package/dist/src/stores/table.d.ts.map +1 -1
- package/dist/src/types/index.d.ts +37 -13
- package/dist/src/types/index.d.ts.map +1 -1
- package/package.json +4 -4
- package/src/components/AGanttCell.vue +9 -11
- package/src/components/ARow.vue +27 -4
- package/src/components/ARowActions.vue +11 -10
- package/src/components/ATable.vue +19 -2
- package/src/icons/index.ts +3 -1
- package/src/icons/stonecrop-ui-icon-open.svg +5 -0
- package/src/index.ts +10 -1
- package/src/types/index.ts +39 -13
|
@@ -9,7 +9,8 @@ import DuplicateIcon from './stonecrop-ui-icon-duplicate.svg?raw';
|
|
|
9
9
|
import InsertAboveIcon from './stonecrop-ui-icon-insert-above.svg?raw';
|
|
10
10
|
import InsertBelowIcon from './stonecrop-ui-icon-insert-below.svg?raw';
|
|
11
11
|
import MoveIcon from './stonecrop-ui-icon-move.svg?raw';
|
|
12
|
-
|
|
12
|
+
import OpenIcon from './stonecrop-ui-icon-open.svg?raw';
|
|
13
|
+
export { AddIcon, DeleteIcon, DuplicateIcon, InsertAboveIcon, InsertBelowIcon, MoveIcon, OpenIcon };
|
|
13
14
|
/**
|
|
14
15
|
* Map of action types to their default icons.
|
|
15
16
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/icons/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,OAAO,MAAM,iCAAiC,CAAA;AACrD,OAAO,UAAU,MAAM,oCAAoC,CAAA;AAC3D,OAAO,aAAa,MAAM,uCAAuC,CAAA;AACjE,OAAO,eAAe,MAAM,0CAA0C,CAAA;AACtE,OAAO,eAAe,MAAM,0CAA0C,CAAA;AACtE,OAAO,QAAQ,MAAM,kCAAkC,CAAA;AAEvD,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,aAAa,EAAE,eAAe,EAAE,eAAe,EAAE,QAAQ,EAAE,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/icons/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,OAAO,MAAM,iCAAiC,CAAA;AACrD,OAAO,UAAU,MAAM,oCAAoC,CAAA;AAC3D,OAAO,aAAa,MAAM,uCAAuC,CAAA;AACjE,OAAO,eAAe,MAAM,0CAA0C,CAAA;AACtE,OAAO,eAAe,MAAM,0CAA0C,CAAA;AACtE,OAAO,QAAQ,MAAM,kCAAkC,CAAA;AACvD,OAAO,QAAQ,MAAM,kCAAkC,CAAA;AAEvD,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,aAAa,EAAE,eAAe,EAAE,eAAe,EAAE,QAAQ,EAAE,QAAQ,EAAE,CAAA;AAEnG;;;;GAIG;AACH,eAAO,MAAM,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAQ9C,CAAA"}
|
package/dist/src/icons/index.js
CHANGED
|
@@ -9,7 +9,8 @@ import DuplicateIcon from './stonecrop-ui-icon-duplicate.svg?raw';
|
|
|
9
9
|
import InsertAboveIcon from './stonecrop-ui-icon-insert-above.svg?raw';
|
|
10
10
|
import InsertBelowIcon from './stonecrop-ui-icon-insert-below.svg?raw';
|
|
11
11
|
import MoveIcon from './stonecrop-ui-icon-move.svg?raw';
|
|
12
|
-
|
|
12
|
+
import OpenIcon from './stonecrop-ui-icon-open.svg?raw';
|
|
13
|
+
export { AddIcon, DeleteIcon, DuplicateIcon, InsertAboveIcon, InsertBelowIcon, MoveIcon, OpenIcon };
|
|
13
14
|
/**
|
|
14
15
|
* Map of action types to their default icons.
|
|
15
16
|
*
|
|
@@ -22,4 +23,5 @@ export const actionIcons = {
|
|
|
22
23
|
insertAbove: InsertAboveIcon,
|
|
23
24
|
insertBelow: InsertBelowIcon,
|
|
24
25
|
move: MoveIcon,
|
|
26
|
+
open: OpenIcon,
|
|
25
27
|
};
|
package/dist/src/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ export { createTableStore } from './stores/table';
|
|
|
13
13
|
export type { FilterState, FilterStateRecord } from './stores/table';
|
|
14
14
|
export type * from './types';
|
|
15
15
|
export { schemaToColumns } from './schemaToColumns';
|
|
16
|
-
export { AddIcon, DeleteIcon, DuplicateIcon, InsertAboveIcon, InsertBelowIcon, MoveIcon, actionIcons } from './icons';
|
|
16
|
+
export { AddIcon, DeleteIcon, DuplicateIcon, InsertAboveIcon, InsertBelowIcon, MoveIcon, OpenIcon, actionIcons, } from './icons';
|
|
17
17
|
/**
|
|
18
18
|
* Install all ATable components
|
|
19
19
|
* @param app - Vue app instance
|
package/dist/src/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AAEzB,OAAO,KAAK,MAAM,wBAAwB,CAAA;AAC1C,OAAO,aAAa,MAAM,gCAAgC,CAAA;AAC1D,OAAO,UAAU,MAAM,6BAA6B,CAAA;AACpD,OAAO,IAAI,MAAM,uBAAuB,CAAA;AACxC,OAAO,WAAW,MAAM,8BAA8B,CAAA;AACtD,OAAO,MAAM,MAAM,yBAAyB,CAAA;AAC5C,OAAO,YAAY,MAAM,+BAA+B,CAAA;AACxD,OAAO,aAAa,MAAM,gCAAgC,CAAA;AAC1D,OAAO,gBAAgB,MAAM,mCAAmC,CAAA;AAChE,OAAO,WAAW,MAAM,8BAA8B,CAAA;AACtD,OAAO,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAA;AACjD,YAAY,EAAE,WAAW,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAA;AACpE,mBAAmB,SAAS,CAAA;AAC5B,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AAGnD,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AAEzB,OAAO,KAAK,MAAM,wBAAwB,CAAA;AAC1C,OAAO,aAAa,MAAM,gCAAgC,CAAA;AAC1D,OAAO,UAAU,MAAM,6BAA6B,CAAA;AACpD,OAAO,IAAI,MAAM,uBAAuB,CAAA;AACxC,OAAO,WAAW,MAAM,8BAA8B,CAAA;AACtD,OAAO,MAAM,MAAM,yBAAyB,CAAA;AAC5C,OAAO,YAAY,MAAM,+BAA+B,CAAA;AACxD,OAAO,aAAa,MAAM,gCAAgC,CAAA;AAC1D,OAAO,gBAAgB,MAAM,mCAAmC,CAAA;AAChE,OAAO,WAAW,MAAM,8BAA8B,CAAA;AACtD,OAAO,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAA;AACjD,YAAY,EAAE,WAAW,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAA;AACpE,mBAAmB,SAAS,CAAA;AAC5B,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AAGnD,OAAO,EACN,OAAO,EACP,UAAU,EACV,aAAa,EACb,eAAe,EACf,eAAe,EACf,QAAQ,EACR,QAAQ,EACR,WAAW,GACX,MAAM,SAAS,CAAA;AAEhB;;;;GAIG;AACH,iBAAS,OAAO,CAAC,GAAG,EAAE,GAAG,QAWxB;AAED,OAAO,EACN,KAAK,EACL,aAAa,EACb,UAAU,EACV,IAAI,EACJ,WAAW,EACX,MAAM,EACN,YAAY,EACZ,aAAa,EACb,gBAAgB,EAChB,WAAW,EACX,OAAO,GACP,CAAA"}
|
package/dist/src/index.js
CHANGED
|
@@ -11,7 +11,7 @@ import ATableModal from './components/ATableModal.vue';
|
|
|
11
11
|
export { createTableStore } from './stores/table';
|
|
12
12
|
export { schemaToColumns } from './schemaToColumns';
|
|
13
13
|
// Icon exports
|
|
14
|
-
export { AddIcon, DeleteIcon, DuplicateIcon, InsertAboveIcon, InsertBelowIcon, MoveIcon, actionIcons } from './icons';
|
|
14
|
+
export { AddIcon, DeleteIcon, DuplicateIcon, InsertAboveIcon, InsertBelowIcon, MoveIcon, OpenIcon, actionIcons, } from './icons';
|
|
15
15
|
/**
|
|
16
16
|
* Install all ATable components
|
|
17
17
|
* @param app - Vue app instance
|
|
@@ -86,12 +86,19 @@ export declare const createTableStore: (initData: {
|
|
|
86
86
|
config: import("vue").Ref<{
|
|
87
87
|
view?: "uncounted" | "list" | "list-expansion" | undefined;
|
|
88
88
|
fullWidth?: boolean | undefined;
|
|
89
|
+
clickable?: boolean | undefined;
|
|
89
90
|
rowActions?: {
|
|
90
91
|
enabled: boolean;
|
|
91
92
|
position?: "before-index" | "after-index" | "end" | undefined;
|
|
92
93
|
dropdownThreshold?: number | undefined;
|
|
93
94
|
forceDropdown?: boolean | undefined;
|
|
94
95
|
actions?: {
|
|
96
|
+
open?: boolean | {
|
|
97
|
+
enabled?: boolean | undefined;
|
|
98
|
+
label?: string | undefined;
|
|
99
|
+
icon?: string | undefined;
|
|
100
|
+
handler?: ((rowIndex: number, store: ReturnType<typeof createTableStore>) => void | boolean) | undefined;
|
|
101
|
+
} | undefined;
|
|
95
102
|
add?: boolean | {
|
|
96
103
|
enabled?: boolean | undefined;
|
|
97
104
|
label?: string | undefined;
|
|
@@ -134,12 +141,19 @@ export declare const createTableStore: (initData: {
|
|
|
134
141
|
view: "tree";
|
|
135
142
|
defaultTreeExpansion?: "root" | "branch" | "leaf" | undefined;
|
|
136
143
|
fullWidth?: boolean | undefined;
|
|
144
|
+
clickable?: boolean | undefined;
|
|
137
145
|
rowActions?: {
|
|
138
146
|
enabled: boolean;
|
|
139
147
|
position?: "before-index" | "after-index" | "end" | undefined;
|
|
140
148
|
dropdownThreshold?: number | undefined;
|
|
141
149
|
forceDropdown?: boolean | undefined;
|
|
142
150
|
actions?: {
|
|
151
|
+
open?: boolean | {
|
|
152
|
+
enabled?: boolean | undefined;
|
|
153
|
+
label?: string | undefined;
|
|
154
|
+
icon?: string | undefined;
|
|
155
|
+
handler?: ((rowIndex: number, store: ReturnType<typeof createTableStore>) => void | boolean) | undefined;
|
|
156
|
+
} | undefined;
|
|
143
157
|
add?: boolean | {
|
|
144
158
|
enabled?: boolean | undefined;
|
|
145
159
|
label?: string | undefined;
|
|
@@ -182,12 +196,19 @@ export declare const createTableStore: (initData: {
|
|
|
182
196
|
view: "gantt";
|
|
183
197
|
dependencyGraph?: boolean | undefined;
|
|
184
198
|
fullWidth?: boolean | undefined;
|
|
199
|
+
clickable?: boolean | undefined;
|
|
185
200
|
rowActions?: {
|
|
186
201
|
enabled: boolean;
|
|
187
202
|
position?: "before-index" | "after-index" | "end" | undefined;
|
|
188
203
|
dropdownThreshold?: number | undefined;
|
|
189
204
|
forceDropdown?: boolean | undefined;
|
|
190
205
|
actions?: {
|
|
206
|
+
open?: boolean | {
|
|
207
|
+
enabled?: boolean | undefined;
|
|
208
|
+
label?: string | undefined;
|
|
209
|
+
icon?: string | undefined;
|
|
210
|
+
handler?: ((rowIndex: number, store: ReturnType<typeof createTableStore>) => void | boolean) | undefined;
|
|
211
|
+
} | undefined;
|
|
191
212
|
add?: boolean | {
|
|
192
213
|
enabled?: boolean | undefined;
|
|
193
214
|
label?: string | undefined;
|
|
@@ -231,12 +252,19 @@ export declare const createTableStore: (initData: {
|
|
|
231
252
|
defaultTreeExpansion?: "root" | "branch" | "leaf" | undefined;
|
|
232
253
|
dependencyGraph?: boolean | undefined;
|
|
233
254
|
fullWidth?: boolean | undefined;
|
|
255
|
+
clickable?: boolean | undefined;
|
|
234
256
|
rowActions?: {
|
|
235
257
|
enabled: boolean;
|
|
236
258
|
position?: "before-index" | "after-index" | "end" | undefined;
|
|
237
259
|
dropdownThreshold?: number | undefined;
|
|
238
260
|
forceDropdown?: boolean | undefined;
|
|
239
261
|
actions?: {
|
|
262
|
+
open?: boolean | {
|
|
263
|
+
enabled?: boolean | undefined;
|
|
264
|
+
label?: string | undefined;
|
|
265
|
+
icon?: string | undefined;
|
|
266
|
+
handler?: ((rowIndex: number, store: ReturnType<typeof createTableStore>) => void | boolean) | undefined;
|
|
267
|
+
} | undefined;
|
|
240
268
|
add?: boolean | {
|
|
241
269
|
enabled?: boolean | undefined;
|
|
242
270
|
label?: string | undefined;
|
|
@@ -278,12 +306,19 @@ export declare const createTableStore: (initData: {
|
|
|
278
306
|
}, TableConfig | {
|
|
279
307
|
view?: "uncounted" | "list" | "list-expansion" | undefined;
|
|
280
308
|
fullWidth?: boolean | undefined;
|
|
309
|
+
clickable?: boolean | undefined;
|
|
281
310
|
rowActions?: {
|
|
282
311
|
enabled: boolean;
|
|
283
312
|
position?: "before-index" | "after-index" | "end" | undefined;
|
|
284
313
|
dropdownThreshold?: number | undefined;
|
|
285
314
|
forceDropdown?: boolean | undefined;
|
|
286
315
|
actions?: {
|
|
316
|
+
open?: boolean | {
|
|
317
|
+
enabled?: boolean | undefined;
|
|
318
|
+
label?: string | undefined;
|
|
319
|
+
icon?: string | undefined;
|
|
320
|
+
handler?: ((rowIndex: number, store: ReturnType<typeof createTableStore>) => void | boolean) | undefined;
|
|
321
|
+
} | undefined;
|
|
287
322
|
add?: boolean | {
|
|
288
323
|
enabled?: boolean | undefined;
|
|
289
324
|
label?: string | undefined;
|
|
@@ -326,12 +361,19 @@ export declare const createTableStore: (initData: {
|
|
|
326
361
|
view: "tree";
|
|
327
362
|
defaultTreeExpansion?: "root" | "branch" | "leaf" | undefined;
|
|
328
363
|
fullWidth?: boolean | undefined;
|
|
364
|
+
clickable?: boolean | undefined;
|
|
329
365
|
rowActions?: {
|
|
330
366
|
enabled: boolean;
|
|
331
367
|
position?: "before-index" | "after-index" | "end" | undefined;
|
|
332
368
|
dropdownThreshold?: number | undefined;
|
|
333
369
|
forceDropdown?: boolean | undefined;
|
|
334
370
|
actions?: {
|
|
371
|
+
open?: boolean | {
|
|
372
|
+
enabled?: boolean | undefined;
|
|
373
|
+
label?: string | undefined;
|
|
374
|
+
icon?: string | undefined;
|
|
375
|
+
handler?: ((rowIndex: number, store: ReturnType<typeof createTableStore>) => void | boolean) | undefined;
|
|
376
|
+
} | undefined;
|
|
335
377
|
add?: boolean | {
|
|
336
378
|
enabled?: boolean | undefined;
|
|
337
379
|
label?: string | undefined;
|
|
@@ -374,12 +416,19 @@ export declare const createTableStore: (initData: {
|
|
|
374
416
|
view: "gantt";
|
|
375
417
|
dependencyGraph?: boolean | undefined;
|
|
376
418
|
fullWidth?: boolean | undefined;
|
|
419
|
+
clickable?: boolean | undefined;
|
|
377
420
|
rowActions?: {
|
|
378
421
|
enabled: boolean;
|
|
379
422
|
position?: "before-index" | "after-index" | "end" | undefined;
|
|
380
423
|
dropdownThreshold?: number | undefined;
|
|
381
424
|
forceDropdown?: boolean | undefined;
|
|
382
425
|
actions?: {
|
|
426
|
+
open?: boolean | {
|
|
427
|
+
enabled?: boolean | undefined;
|
|
428
|
+
label?: string | undefined;
|
|
429
|
+
icon?: string | undefined;
|
|
430
|
+
handler?: ((rowIndex: number, store: ReturnType<typeof createTableStore>) => void | boolean) | undefined;
|
|
431
|
+
} | undefined;
|
|
383
432
|
add?: boolean | {
|
|
384
433
|
enabled?: boolean | undefined;
|
|
385
434
|
label?: string | undefined;
|
|
@@ -423,12 +472,19 @@ export declare const createTableStore: (initData: {
|
|
|
423
472
|
defaultTreeExpansion?: "root" | "branch" | "leaf" | undefined;
|
|
424
473
|
dependencyGraph?: boolean | undefined;
|
|
425
474
|
fullWidth?: boolean | undefined;
|
|
475
|
+
clickable?: boolean | undefined;
|
|
426
476
|
rowActions?: {
|
|
427
477
|
enabled: boolean;
|
|
428
478
|
position?: "before-index" | "after-index" | "end" | undefined;
|
|
429
479
|
dropdownThreshold?: number | undefined;
|
|
430
480
|
forceDropdown?: boolean | undefined;
|
|
431
481
|
actions?: {
|
|
482
|
+
open?: boolean | {
|
|
483
|
+
enabled?: boolean | undefined;
|
|
484
|
+
label?: string | undefined;
|
|
485
|
+
icon?: string | undefined;
|
|
486
|
+
handler?: ((rowIndex: number, store: ReturnType<typeof createTableStore>) => void | boolean) | undefined;
|
|
487
|
+
} | undefined;
|
|
432
488
|
add?: boolean | {
|
|
433
489
|
enabled?: boolean | undefined;
|
|
434
490
|
label?: string | undefined;
|
|
@@ -733,12 +789,19 @@ export declare const createTableStore: (initData: {
|
|
|
733
789
|
config: import("vue").Ref<{
|
|
734
790
|
view?: "uncounted" | "list" | "list-expansion" | undefined;
|
|
735
791
|
fullWidth?: boolean | undefined;
|
|
792
|
+
clickable?: boolean | undefined;
|
|
736
793
|
rowActions?: {
|
|
737
794
|
enabled: boolean;
|
|
738
795
|
position?: "before-index" | "after-index" | "end" | undefined;
|
|
739
796
|
dropdownThreshold?: number | undefined;
|
|
740
797
|
forceDropdown?: boolean | undefined;
|
|
741
798
|
actions?: {
|
|
799
|
+
open?: boolean | {
|
|
800
|
+
enabled?: boolean | undefined;
|
|
801
|
+
label?: string | undefined;
|
|
802
|
+
icon?: string | undefined;
|
|
803
|
+
handler?: ((rowIndex: number, store: ReturnType<typeof createTableStore>) => void | boolean) | undefined;
|
|
804
|
+
} | undefined;
|
|
742
805
|
add?: boolean | {
|
|
743
806
|
enabled?: boolean | undefined;
|
|
744
807
|
label?: string | undefined;
|
|
@@ -781,12 +844,19 @@ export declare const createTableStore: (initData: {
|
|
|
781
844
|
view: "tree";
|
|
782
845
|
defaultTreeExpansion?: "root" | "branch" | "leaf" | undefined;
|
|
783
846
|
fullWidth?: boolean | undefined;
|
|
847
|
+
clickable?: boolean | undefined;
|
|
784
848
|
rowActions?: {
|
|
785
849
|
enabled: boolean;
|
|
786
850
|
position?: "before-index" | "after-index" | "end" | undefined;
|
|
787
851
|
dropdownThreshold?: number | undefined;
|
|
788
852
|
forceDropdown?: boolean | undefined;
|
|
789
853
|
actions?: {
|
|
854
|
+
open?: boolean | {
|
|
855
|
+
enabled?: boolean | undefined;
|
|
856
|
+
label?: string | undefined;
|
|
857
|
+
icon?: string | undefined;
|
|
858
|
+
handler?: ((rowIndex: number, store: ReturnType<typeof createTableStore>) => void | boolean) | undefined;
|
|
859
|
+
} | undefined;
|
|
790
860
|
add?: boolean | {
|
|
791
861
|
enabled?: boolean | undefined;
|
|
792
862
|
label?: string | undefined;
|
|
@@ -829,12 +899,19 @@ export declare const createTableStore: (initData: {
|
|
|
829
899
|
view: "gantt";
|
|
830
900
|
dependencyGraph?: boolean | undefined;
|
|
831
901
|
fullWidth?: boolean | undefined;
|
|
902
|
+
clickable?: boolean | undefined;
|
|
832
903
|
rowActions?: {
|
|
833
904
|
enabled: boolean;
|
|
834
905
|
position?: "before-index" | "after-index" | "end" | undefined;
|
|
835
906
|
dropdownThreshold?: number | undefined;
|
|
836
907
|
forceDropdown?: boolean | undefined;
|
|
837
908
|
actions?: {
|
|
909
|
+
open?: boolean | {
|
|
910
|
+
enabled?: boolean | undefined;
|
|
911
|
+
label?: string | undefined;
|
|
912
|
+
icon?: string | undefined;
|
|
913
|
+
handler?: ((rowIndex: number, store: ReturnType<typeof createTableStore>) => void | boolean) | undefined;
|
|
914
|
+
} | undefined;
|
|
838
915
|
add?: boolean | {
|
|
839
916
|
enabled?: boolean | undefined;
|
|
840
917
|
label?: string | undefined;
|
|
@@ -878,12 +955,19 @@ export declare const createTableStore: (initData: {
|
|
|
878
955
|
defaultTreeExpansion?: "root" | "branch" | "leaf" | undefined;
|
|
879
956
|
dependencyGraph?: boolean | undefined;
|
|
880
957
|
fullWidth?: boolean | undefined;
|
|
958
|
+
clickable?: boolean | undefined;
|
|
881
959
|
rowActions?: {
|
|
882
960
|
enabled: boolean;
|
|
883
961
|
position?: "before-index" | "after-index" | "end" | undefined;
|
|
884
962
|
dropdownThreshold?: number | undefined;
|
|
885
963
|
forceDropdown?: boolean | undefined;
|
|
886
964
|
actions?: {
|
|
965
|
+
open?: boolean | {
|
|
966
|
+
enabled?: boolean | undefined;
|
|
967
|
+
label?: string | undefined;
|
|
968
|
+
icon?: string | undefined;
|
|
969
|
+
handler?: ((rowIndex: number, store: ReturnType<typeof createTableStore>) => void | boolean) | undefined;
|
|
970
|
+
} | undefined;
|
|
887
971
|
add?: boolean | {
|
|
888
972
|
enabled?: boolean | undefined;
|
|
889
973
|
label?: string | undefined;
|
|
@@ -925,12 +1009,19 @@ export declare const createTableStore: (initData: {
|
|
|
925
1009
|
}, TableConfig | {
|
|
926
1010
|
view?: "uncounted" | "list" | "list-expansion" | undefined;
|
|
927
1011
|
fullWidth?: boolean | undefined;
|
|
1012
|
+
clickable?: boolean | undefined;
|
|
928
1013
|
rowActions?: {
|
|
929
1014
|
enabled: boolean;
|
|
930
1015
|
position?: "before-index" | "after-index" | "end" | undefined;
|
|
931
1016
|
dropdownThreshold?: number | undefined;
|
|
932
1017
|
forceDropdown?: boolean | undefined;
|
|
933
1018
|
actions?: {
|
|
1019
|
+
open?: boolean | {
|
|
1020
|
+
enabled?: boolean | undefined;
|
|
1021
|
+
label?: string | undefined;
|
|
1022
|
+
icon?: string | undefined;
|
|
1023
|
+
handler?: ((rowIndex: number, store: ReturnType<typeof createTableStore>) => void | boolean) | undefined;
|
|
1024
|
+
} | undefined;
|
|
934
1025
|
add?: boolean | {
|
|
935
1026
|
enabled?: boolean | undefined;
|
|
936
1027
|
label?: string | undefined;
|
|
@@ -973,12 +1064,19 @@ export declare const createTableStore: (initData: {
|
|
|
973
1064
|
view: "tree";
|
|
974
1065
|
defaultTreeExpansion?: "root" | "branch" | "leaf" | undefined;
|
|
975
1066
|
fullWidth?: boolean | undefined;
|
|
1067
|
+
clickable?: boolean | undefined;
|
|
976
1068
|
rowActions?: {
|
|
977
1069
|
enabled: boolean;
|
|
978
1070
|
position?: "before-index" | "after-index" | "end" | undefined;
|
|
979
1071
|
dropdownThreshold?: number | undefined;
|
|
980
1072
|
forceDropdown?: boolean | undefined;
|
|
981
1073
|
actions?: {
|
|
1074
|
+
open?: boolean | {
|
|
1075
|
+
enabled?: boolean | undefined;
|
|
1076
|
+
label?: string | undefined;
|
|
1077
|
+
icon?: string | undefined;
|
|
1078
|
+
handler?: ((rowIndex: number, store: ReturnType<typeof createTableStore>) => void | boolean) | undefined;
|
|
1079
|
+
} | undefined;
|
|
982
1080
|
add?: boolean | {
|
|
983
1081
|
enabled?: boolean | undefined;
|
|
984
1082
|
label?: string | undefined;
|
|
@@ -1021,12 +1119,19 @@ export declare const createTableStore: (initData: {
|
|
|
1021
1119
|
view: "gantt";
|
|
1022
1120
|
dependencyGraph?: boolean | undefined;
|
|
1023
1121
|
fullWidth?: boolean | undefined;
|
|
1122
|
+
clickable?: boolean | undefined;
|
|
1024
1123
|
rowActions?: {
|
|
1025
1124
|
enabled: boolean;
|
|
1026
1125
|
position?: "before-index" | "after-index" | "end" | undefined;
|
|
1027
1126
|
dropdownThreshold?: number | undefined;
|
|
1028
1127
|
forceDropdown?: boolean | undefined;
|
|
1029
1128
|
actions?: {
|
|
1129
|
+
open?: boolean | {
|
|
1130
|
+
enabled?: boolean | undefined;
|
|
1131
|
+
label?: string | undefined;
|
|
1132
|
+
icon?: string | undefined;
|
|
1133
|
+
handler?: ((rowIndex: number, store: ReturnType<typeof createTableStore>) => void | boolean) | undefined;
|
|
1134
|
+
} | undefined;
|
|
1030
1135
|
add?: boolean | {
|
|
1031
1136
|
enabled?: boolean | undefined;
|
|
1032
1137
|
label?: string | undefined;
|
|
@@ -1070,12 +1175,19 @@ export declare const createTableStore: (initData: {
|
|
|
1070
1175
|
defaultTreeExpansion?: "root" | "branch" | "leaf" | undefined;
|
|
1071
1176
|
dependencyGraph?: boolean | undefined;
|
|
1072
1177
|
fullWidth?: boolean | undefined;
|
|
1178
|
+
clickable?: boolean | undefined;
|
|
1073
1179
|
rowActions?: {
|
|
1074
1180
|
enabled: boolean;
|
|
1075
1181
|
position?: "before-index" | "after-index" | "end" | undefined;
|
|
1076
1182
|
dropdownThreshold?: number | undefined;
|
|
1077
1183
|
forceDropdown?: boolean | undefined;
|
|
1078
1184
|
actions?: {
|
|
1185
|
+
open?: boolean | {
|
|
1186
|
+
enabled?: boolean | undefined;
|
|
1187
|
+
label?: string | undefined;
|
|
1188
|
+
icon?: string | undefined;
|
|
1189
|
+
handler?: ((rowIndex: number, store: ReturnType<typeof createTableStore>) => void | boolean) | undefined;
|
|
1190
|
+
} | undefined;
|
|
1079
1191
|
add?: boolean | {
|
|
1080
1192
|
enabled?: boolean | undefined;
|
|
1081
1193
|
label?: string | undefined;
|
|
@@ -1380,12 +1492,19 @@ export declare const createTableStore: (initData: {
|
|
|
1380
1492
|
config: import("vue").Ref<{
|
|
1381
1493
|
view?: "uncounted" | "list" | "list-expansion" | undefined;
|
|
1382
1494
|
fullWidth?: boolean | undefined;
|
|
1495
|
+
clickable?: boolean | undefined;
|
|
1383
1496
|
rowActions?: {
|
|
1384
1497
|
enabled: boolean;
|
|
1385
1498
|
position?: "before-index" | "after-index" | "end" | undefined;
|
|
1386
1499
|
dropdownThreshold?: number | undefined;
|
|
1387
1500
|
forceDropdown?: boolean | undefined;
|
|
1388
1501
|
actions?: {
|
|
1502
|
+
open?: boolean | {
|
|
1503
|
+
enabled?: boolean | undefined;
|
|
1504
|
+
label?: string | undefined;
|
|
1505
|
+
icon?: string | undefined;
|
|
1506
|
+
handler?: ((rowIndex: number, store: ReturnType<typeof createTableStore>) => void | boolean) | undefined;
|
|
1507
|
+
} | undefined;
|
|
1389
1508
|
add?: boolean | {
|
|
1390
1509
|
enabled?: boolean | undefined;
|
|
1391
1510
|
label?: string | undefined;
|
|
@@ -1428,12 +1547,19 @@ export declare const createTableStore: (initData: {
|
|
|
1428
1547
|
view: "tree";
|
|
1429
1548
|
defaultTreeExpansion?: "root" | "branch" | "leaf" | undefined;
|
|
1430
1549
|
fullWidth?: boolean | undefined;
|
|
1550
|
+
clickable?: boolean | undefined;
|
|
1431
1551
|
rowActions?: {
|
|
1432
1552
|
enabled: boolean;
|
|
1433
1553
|
position?: "before-index" | "after-index" | "end" | undefined;
|
|
1434
1554
|
dropdownThreshold?: number | undefined;
|
|
1435
1555
|
forceDropdown?: boolean | undefined;
|
|
1436
1556
|
actions?: {
|
|
1557
|
+
open?: boolean | {
|
|
1558
|
+
enabled?: boolean | undefined;
|
|
1559
|
+
label?: string | undefined;
|
|
1560
|
+
icon?: string | undefined;
|
|
1561
|
+
handler?: ((rowIndex: number, store: ReturnType<typeof createTableStore>) => void | boolean) | undefined;
|
|
1562
|
+
} | undefined;
|
|
1437
1563
|
add?: boolean | {
|
|
1438
1564
|
enabled?: boolean | undefined;
|
|
1439
1565
|
label?: string | undefined;
|
|
@@ -1476,12 +1602,19 @@ export declare const createTableStore: (initData: {
|
|
|
1476
1602
|
view: "gantt";
|
|
1477
1603
|
dependencyGraph?: boolean | undefined;
|
|
1478
1604
|
fullWidth?: boolean | undefined;
|
|
1605
|
+
clickable?: boolean | undefined;
|
|
1479
1606
|
rowActions?: {
|
|
1480
1607
|
enabled: boolean;
|
|
1481
1608
|
position?: "before-index" | "after-index" | "end" | undefined;
|
|
1482
1609
|
dropdownThreshold?: number | undefined;
|
|
1483
1610
|
forceDropdown?: boolean | undefined;
|
|
1484
1611
|
actions?: {
|
|
1612
|
+
open?: boolean | {
|
|
1613
|
+
enabled?: boolean | undefined;
|
|
1614
|
+
label?: string | undefined;
|
|
1615
|
+
icon?: string | undefined;
|
|
1616
|
+
handler?: ((rowIndex: number, store: ReturnType<typeof createTableStore>) => void | boolean) | undefined;
|
|
1617
|
+
} | undefined;
|
|
1485
1618
|
add?: boolean | {
|
|
1486
1619
|
enabled?: boolean | undefined;
|
|
1487
1620
|
label?: string | undefined;
|
|
@@ -1525,12 +1658,19 @@ export declare const createTableStore: (initData: {
|
|
|
1525
1658
|
defaultTreeExpansion?: "root" | "branch" | "leaf" | undefined;
|
|
1526
1659
|
dependencyGraph?: boolean | undefined;
|
|
1527
1660
|
fullWidth?: boolean | undefined;
|
|
1661
|
+
clickable?: boolean | undefined;
|
|
1528
1662
|
rowActions?: {
|
|
1529
1663
|
enabled: boolean;
|
|
1530
1664
|
position?: "before-index" | "after-index" | "end" | undefined;
|
|
1531
1665
|
dropdownThreshold?: number | undefined;
|
|
1532
1666
|
forceDropdown?: boolean | undefined;
|
|
1533
1667
|
actions?: {
|
|
1668
|
+
open?: boolean | {
|
|
1669
|
+
enabled?: boolean | undefined;
|
|
1670
|
+
label?: string | undefined;
|
|
1671
|
+
icon?: string | undefined;
|
|
1672
|
+
handler?: ((rowIndex: number, store: ReturnType<typeof createTableStore>) => void | boolean) | undefined;
|
|
1673
|
+
} | undefined;
|
|
1534
1674
|
add?: boolean | {
|
|
1535
1675
|
enabled?: boolean | undefined;
|
|
1536
1676
|
label?: string | undefined;
|
|
@@ -1572,12 +1712,19 @@ export declare const createTableStore: (initData: {
|
|
|
1572
1712
|
}, TableConfig | {
|
|
1573
1713
|
view?: "uncounted" | "list" | "list-expansion" | undefined;
|
|
1574
1714
|
fullWidth?: boolean | undefined;
|
|
1715
|
+
clickable?: boolean | undefined;
|
|
1575
1716
|
rowActions?: {
|
|
1576
1717
|
enabled: boolean;
|
|
1577
1718
|
position?: "before-index" | "after-index" | "end" | undefined;
|
|
1578
1719
|
dropdownThreshold?: number | undefined;
|
|
1579
1720
|
forceDropdown?: boolean | undefined;
|
|
1580
1721
|
actions?: {
|
|
1722
|
+
open?: boolean | {
|
|
1723
|
+
enabled?: boolean | undefined;
|
|
1724
|
+
label?: string | undefined;
|
|
1725
|
+
icon?: string | undefined;
|
|
1726
|
+
handler?: ((rowIndex: number, store: ReturnType<typeof createTableStore>) => void | boolean) | undefined;
|
|
1727
|
+
} | undefined;
|
|
1581
1728
|
add?: boolean | {
|
|
1582
1729
|
enabled?: boolean | undefined;
|
|
1583
1730
|
label?: string | undefined;
|
|
@@ -1620,12 +1767,19 @@ export declare const createTableStore: (initData: {
|
|
|
1620
1767
|
view: "tree";
|
|
1621
1768
|
defaultTreeExpansion?: "root" | "branch" | "leaf" | undefined;
|
|
1622
1769
|
fullWidth?: boolean | undefined;
|
|
1770
|
+
clickable?: boolean | undefined;
|
|
1623
1771
|
rowActions?: {
|
|
1624
1772
|
enabled: boolean;
|
|
1625
1773
|
position?: "before-index" | "after-index" | "end" | undefined;
|
|
1626
1774
|
dropdownThreshold?: number | undefined;
|
|
1627
1775
|
forceDropdown?: boolean | undefined;
|
|
1628
1776
|
actions?: {
|
|
1777
|
+
open?: boolean | {
|
|
1778
|
+
enabled?: boolean | undefined;
|
|
1779
|
+
label?: string | undefined;
|
|
1780
|
+
icon?: string | undefined;
|
|
1781
|
+
handler?: ((rowIndex: number, store: ReturnType<typeof createTableStore>) => void | boolean) | undefined;
|
|
1782
|
+
} | undefined;
|
|
1629
1783
|
add?: boolean | {
|
|
1630
1784
|
enabled?: boolean | undefined;
|
|
1631
1785
|
label?: string | undefined;
|
|
@@ -1668,12 +1822,19 @@ export declare const createTableStore: (initData: {
|
|
|
1668
1822
|
view: "gantt";
|
|
1669
1823
|
dependencyGraph?: boolean | undefined;
|
|
1670
1824
|
fullWidth?: boolean | undefined;
|
|
1825
|
+
clickable?: boolean | undefined;
|
|
1671
1826
|
rowActions?: {
|
|
1672
1827
|
enabled: boolean;
|
|
1673
1828
|
position?: "before-index" | "after-index" | "end" | undefined;
|
|
1674
1829
|
dropdownThreshold?: number | undefined;
|
|
1675
1830
|
forceDropdown?: boolean | undefined;
|
|
1676
1831
|
actions?: {
|
|
1832
|
+
open?: boolean | {
|
|
1833
|
+
enabled?: boolean | undefined;
|
|
1834
|
+
label?: string | undefined;
|
|
1835
|
+
icon?: string | undefined;
|
|
1836
|
+
handler?: ((rowIndex: number, store: ReturnType<typeof createTableStore>) => void | boolean) | undefined;
|
|
1837
|
+
} | undefined;
|
|
1677
1838
|
add?: boolean | {
|
|
1678
1839
|
enabled?: boolean | undefined;
|
|
1679
1840
|
label?: string | undefined;
|
|
@@ -1717,12 +1878,19 @@ export declare const createTableStore: (initData: {
|
|
|
1717
1878
|
defaultTreeExpansion?: "root" | "branch" | "leaf" | undefined;
|
|
1718
1879
|
dependencyGraph?: boolean | undefined;
|
|
1719
1880
|
fullWidth?: boolean | undefined;
|
|
1881
|
+
clickable?: boolean | undefined;
|
|
1720
1882
|
rowActions?: {
|
|
1721
1883
|
enabled: boolean;
|
|
1722
1884
|
position?: "before-index" | "after-index" | "end" | undefined;
|
|
1723
1885
|
dropdownThreshold?: number | undefined;
|
|
1724
1886
|
forceDropdown?: boolean | undefined;
|
|
1725
1887
|
actions?: {
|
|
1888
|
+
open?: boolean | {
|
|
1889
|
+
enabled?: boolean | undefined;
|
|
1890
|
+
label?: string | undefined;
|
|
1891
|
+
icon?: string | undefined;
|
|
1892
|
+
handler?: ((rowIndex: number, store: ReturnType<typeof createTableStore>) => void | boolean) | undefined;
|
|
1893
|
+
} | undefined;
|
|
1726
1894
|
add?: boolean | {
|
|
1727
1895
|
enabled?: boolean | undefined;
|
|
1728
1896
|
label?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["../../../src/stores/table.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,aAAa,EAAiB,MAAM,KAAK,CAAA;AAEvD,OAAO,KAAK,EACX,WAAW,EACX,gBAAgB,EAChB,cAAc,EACd,YAAY,EACZ,cAAc,EACd,WAAW,EACX,WAAW,EACX,YAAY,EACZ,UAAU,EACV,QAAQ,EACR,MAAM,UAAU,CAAA;AAGjB;;;GAGG;AACH,MAAM,WAAW,WAAW;IAC3B,4BAA4B;IAC5B,KAAK,EAAE,GAAG,CAAA;IACV,yCAAyC;IACzC,UAAU,CAAC,EAAE,GAAG,CAAA;IAChB,uCAAuC;IACvC,QAAQ,CAAC,EAAE,GAAG,CAAA;CACd;AAED;;;GAGG;AACH,MAAM,MAAM,iBAAiB,GAAG,MAAM,CAAC,MAAM,EAAE,WAAW,CAAC,CAAA;AA+F3D,iBAAS,SAAS,CAAC,QAAQ,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,CAMjE;AAED;;;;;GAKG;AACH,eAAO,MAAM,gBAAgB,GAAI,UAAU;IAC1C,OAAO,EAAE,WAAW,EAAE,CAAA;IACtB,IAAI,EAAE,QAAQ,EAAE,CAAA;IAChB,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,MAAM,CAAC,EAAE,WAAW,CAAA;IACpB,KAAK,CAAC,EAAE,UAAU,CAAA;IAClB,YAAY,CAAC,EAAE,CAAC,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC,GAAG,IAAI,CAAA;CACpF
|
|
1
|
+
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["../../../src/stores/table.ts"],"names":[],"mappings":"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"}
|