dolphin-components 2.2.20 → 2.2.21
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 +3487 -3357
- package/dist/dolphin-components.css +1 -1
- package/dist/dolphin-components.es.js +25098 -23797
- package/dist/dolphin-components.umd.js +3488 -3358
- package/dist/index.d.ts +15 -1
- package/package.json +17 -16
package/dist/index.d.ts
CHANGED
|
@@ -310,6 +310,8 @@ export declare interface SwitchProps {
|
|
|
310
310
|
|
|
311
311
|
export declare const Tabulator: DefineComponent<TabulatorProps, {
|
|
312
312
|
reInitializeTabulator: () => void;
|
|
313
|
+
print: () => void;
|
|
314
|
+
exportTable: () => void;
|
|
313
315
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
314
316
|
[x: string]: never;
|
|
315
317
|
}, string, PublicProps, Readonly<TabulatorProps> & Readonly<{
|
|
@@ -317,8 +319,8 @@ reInitializeTabulator: () => void;
|
|
|
317
319
|
}>, {
|
|
318
320
|
action: boolean;
|
|
319
321
|
data: TabulatorData_2[];
|
|
320
|
-
columns: TabulatorHeader[];
|
|
321
322
|
placeholder: string;
|
|
323
|
+
columns: TabulatorHeader[];
|
|
322
324
|
paginationSize: number;
|
|
323
325
|
paginationSizeSelector: number[];
|
|
324
326
|
actionButtons: TabulatorAction_2[];
|
|
@@ -330,6 +332,12 @@ apiEndpoint: string;
|
|
|
330
332
|
queryParams: Record<string, any>;
|
|
331
333
|
settingsButton: boolean;
|
|
332
334
|
printButton: boolean;
|
|
335
|
+
exportButton: boolean;
|
|
336
|
+
sheetName: string;
|
|
337
|
+
enableHeaderPrint: boolean;
|
|
338
|
+
enableFooterPrint: boolean;
|
|
339
|
+
enableHeaderBlock: boolean;
|
|
340
|
+
enableFooterBlock: boolean;
|
|
333
341
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
334
342
|
|
|
335
343
|
export declare interface TabulatorAction {
|
|
@@ -393,6 +401,12 @@ export declare interface TabulatorProps {
|
|
|
393
401
|
printButton?: boolean;
|
|
394
402
|
exportButton?: boolean;
|
|
395
403
|
sheetName?: string;
|
|
404
|
+
headerContent?: string;
|
|
405
|
+
footerContent?: string;
|
|
406
|
+
enableHeaderPrint?: boolean;
|
|
407
|
+
enableFooterPrint?: boolean;
|
|
408
|
+
enableHeaderBlock?: boolean;
|
|
409
|
+
enableFooterBlock?: boolean;
|
|
396
410
|
}
|
|
397
411
|
|
|
398
412
|
export declare const Toast: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dolphin-components",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "2.2.
|
|
4
|
+
"version": "2.2.21",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
@@ -28,35 +28,36 @@
|
|
|
28
28
|
"preview": "vite preview"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@tailwindcss/vite": "^4.1.
|
|
32
|
-
"@types/tabulator-tables": "^6.2.
|
|
33
|
-
"axios": "^1.
|
|
34
|
-
"lucide-vue-next": "^0.
|
|
31
|
+
"@tailwindcss/vite": "^4.1.12",
|
|
32
|
+
"@types/tabulator-tables": "^6.2.10",
|
|
33
|
+
"axios": "^1.11.0",
|
|
34
|
+
"lucide-vue-next": "^0.539.0",
|
|
35
35
|
"moment": "^2.30.1",
|
|
36
|
+
"nepali-date-library": "^1.1.4",
|
|
36
37
|
"nepali-datepicker-vue": "^1.0.7",
|
|
37
|
-
"sweetalert2": "^11.22.
|
|
38
|
+
"sweetalert2": "^11.22.4",
|
|
38
39
|
"tabulator-tables": "^6.3.1",
|
|
39
|
-
"tailwindcss": "^4.1.
|
|
40
|
+
"tailwindcss": "^4.1.12",
|
|
40
41
|
"utility-types": "^3.11.0",
|
|
41
|
-
"vue": "^3.5.
|
|
42
|
+
"vue": "^3.5.18",
|
|
42
43
|
"vue-datepicker-next": "^1.0.3",
|
|
43
|
-
"vue-multiselect": "^3.
|
|
44
|
-
"xlsx": "
|
|
44
|
+
"vue-multiselect": "^3.3.1",
|
|
45
|
+
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
|
|
45
46
|
},
|
|
46
47
|
"peerDependencies": {
|
|
47
48
|
"vue-router": "^4.5.0"
|
|
48
49
|
},
|
|
49
50
|
"devDependencies": {
|
|
50
|
-
"@types/node": "^24.0
|
|
51
|
-
"@vitejs/plugin-vue": "^6.0.
|
|
52
|
-
"@vue/tsconfig": "^0.
|
|
51
|
+
"@types/node": "^24.3.0",
|
|
52
|
+
"@vitejs/plugin-vue": "^6.0.1",
|
|
53
|
+
"@vue/tsconfig": "^0.8.0",
|
|
53
54
|
"path": "^0.12.7",
|
|
54
55
|
"prettier": "3.6.2",
|
|
55
56
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
56
|
-
"typescript": "~5.
|
|
57
|
-
"vite": "^7.
|
|
57
|
+
"typescript": "~5.9.2",
|
|
58
|
+
"vite": "^7.1.2",
|
|
58
59
|
"vite-plugin-dts": "^4.5.4",
|
|
59
|
-
"vue-tsc": "^3.0.
|
|
60
|
+
"vue-tsc": "^3.0.5"
|
|
60
61
|
},
|
|
61
62
|
"keywords": [
|
|
62
63
|
"mavorion",
|