dolphin-components 2.2.27 → 3.0.1-patch
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 +40 -38
- package/dist/dolphin-components.css +1 -1
- package/dist/dolphin-components.es.js +2060 -2044
- package/dist/dolphin-components.umd.js +37 -35
- package/dist/index.d.ts +2 -17
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
import { App } from 'vue';
|
|
2
2
|
import { AxiosInstance } from 'axios';
|
|
3
|
-
import { CellComponent } from 'tabulator-tables';
|
|
4
3
|
import { ColumnDefinition } from 'tabulator-tables';
|
|
5
|
-
import { ColumnDefinitionAlign } from 'tabulator-tables';
|
|
6
4
|
import { ComponentOptionsMixin } from 'vue';
|
|
7
5
|
import { ComponentProvideOptions } from 'vue';
|
|
8
6
|
import { DefineComponent } from 'vue';
|
|
9
7
|
import { DirectiveBinding } from 'vue';
|
|
10
|
-
import { Editor } from 'tabulator-tables';
|
|
11
8
|
import { PublicProps } from 'vue';
|
|
12
|
-
import { VerticalAlign } from 'tabulator-tables';
|
|
13
9
|
|
|
14
10
|
declare const __VLS_component: DefineComponent<ContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
15
11
|
[x: string]: never;
|
|
@@ -364,19 +360,8 @@ export declare interface TabulatorData {
|
|
|
364
360
|
[key: string]: any;
|
|
365
361
|
}
|
|
366
362
|
|
|
367
|
-
export declare interface TabulatorHeader {
|
|
368
|
-
|
|
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"];
|
|
363
|
+
export declare interface TabulatorHeader extends ColumnDefinition {
|
|
364
|
+
isMandatory?: boolean;
|
|
380
365
|
}
|
|
381
366
|
|
|
382
367
|
export declare interface TabulatorModalSettings {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dolphin-components",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "3.0.1-patch",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
@@ -52,10 +52,10 @@
|
|
|
52
52
|
"@vitejs/plugin-vue": "^6.0.3",
|
|
53
53
|
"@vue/tsconfig": "^0.8.1",
|
|
54
54
|
"path": "^0.12.7",
|
|
55
|
-
"prettier": "3.
|
|
55
|
+
"prettier": "3.7.4",
|
|
56
56
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
57
57
|
"typescript": "~5.9.3",
|
|
58
|
-
"vite": "^7.
|
|
58
|
+
"vite": "^7.3.0",
|
|
59
59
|
"vite-plugin-dts": "^4.5.4",
|
|
60
60
|
"vue-tsc": "^3.1.8"
|
|
61
61
|
},
|