dolphin-components 3.0.1-patch → 3.0.1
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/dolphin-components.cjs.js +36 -38
- package/dist/dolphin-components.css +1 -1
- package/dist/dolphin-components.es.js +2035 -2051
- package/dist/dolphin-components.umd.js +33 -35
- package/dist/index.d.ts +17 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import { App } from 'vue';
|
|
2
2
|
import { AxiosInstance } from 'axios';
|
|
3
|
+
import { CellComponent } from 'tabulator-tables';
|
|
3
4
|
import { ColumnDefinition } from 'tabulator-tables';
|
|
5
|
+
import { ColumnDefinitionAlign } from 'tabulator-tables';
|
|
4
6
|
import { ComponentOptionsMixin } from 'vue';
|
|
5
7
|
import { ComponentProvideOptions } from 'vue';
|
|
6
8
|
import { DefineComponent } from 'vue';
|
|
7
9
|
import { DirectiveBinding } from 'vue';
|
|
10
|
+
import { Editor } from 'tabulator-tables';
|
|
8
11
|
import { PublicProps } from 'vue';
|
|
12
|
+
import { VerticalAlign } from 'tabulator-tables';
|
|
9
13
|
|
|
10
14
|
declare const __VLS_component: DefineComponent<ContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
11
15
|
[x: string]: never;
|
|
@@ -360,8 +364,19 @@ export declare interface TabulatorData {
|
|
|
360
364
|
[key: string]: any;
|
|
361
365
|
}
|
|
362
366
|
|
|
363
|
-
export declare interface TabulatorHeader
|
|
364
|
-
|
|
367
|
+
export declare interface TabulatorHeader {
|
|
368
|
+
title: string;
|
|
369
|
+
field: string;
|
|
370
|
+
headerFilter?: Editor;
|
|
371
|
+
headerFilterPlaceholder?: string;
|
|
372
|
+
isNotMandatory?: boolean;
|
|
373
|
+
width?: number;
|
|
374
|
+
vertAlign?: VerticalAlign;
|
|
375
|
+
hozAlign?: ColumnDefinitionAlign;
|
|
376
|
+
headerSort?: boolean;
|
|
377
|
+
formatter?: (cell: CellComponent) => string;
|
|
378
|
+
cellClick?: (e: UIEvent, cell: CellComponent) => void;
|
|
379
|
+
sorter?: ColumnDefinition["sorter"];
|
|
365
380
|
}
|
|
366
381
|
|
|
367
382
|
export declare interface TabulatorModalSettings {
|