dolphin-components 2.2.19 → 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 +25100 -23798
- package/dist/dolphin-components.umd.js +3488 -3358
- package/dist/index.d.ts +17 -1
- package/package.json +63 -62
package/dist/index.d.ts
CHANGED
|
@@ -166,6 +166,7 @@ endDate: string;
|
|
|
166
166
|
dateType: string;
|
|
167
167
|
isBS: boolean;
|
|
168
168
|
};
|
|
169
|
+
searchOnLoad: boolean;
|
|
169
170
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
170
171
|
|
|
171
172
|
export declare interface DateRangeProps {
|
|
@@ -175,6 +176,7 @@ export declare interface DateRangeProps {
|
|
|
175
176
|
dateType: string;
|
|
176
177
|
isBS: boolean;
|
|
177
178
|
};
|
|
179
|
+
searchOnLoad: boolean;
|
|
178
180
|
}
|
|
179
181
|
|
|
180
182
|
export declare const DateSelector: DefineComponent<DateSelectorProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
@@ -308,6 +310,8 @@ export declare interface SwitchProps {
|
|
|
308
310
|
|
|
309
311
|
export declare const Tabulator: DefineComponent<TabulatorProps, {
|
|
310
312
|
reInitializeTabulator: () => void;
|
|
313
|
+
print: () => void;
|
|
314
|
+
exportTable: () => void;
|
|
311
315
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
312
316
|
[x: string]: never;
|
|
313
317
|
}, string, PublicProps, Readonly<TabulatorProps> & Readonly<{
|
|
@@ -315,8 +319,8 @@ reInitializeTabulator: () => void;
|
|
|
315
319
|
}>, {
|
|
316
320
|
action: boolean;
|
|
317
321
|
data: TabulatorData_2[];
|
|
318
|
-
columns: TabulatorHeader[];
|
|
319
322
|
placeholder: string;
|
|
323
|
+
columns: TabulatorHeader[];
|
|
320
324
|
paginationSize: number;
|
|
321
325
|
paginationSizeSelector: number[];
|
|
322
326
|
actionButtons: TabulatorAction_2[];
|
|
@@ -328,6 +332,12 @@ apiEndpoint: string;
|
|
|
328
332
|
queryParams: Record<string, any>;
|
|
329
333
|
settingsButton: boolean;
|
|
330
334
|
printButton: boolean;
|
|
335
|
+
exportButton: boolean;
|
|
336
|
+
sheetName: string;
|
|
337
|
+
enableHeaderPrint: boolean;
|
|
338
|
+
enableFooterPrint: boolean;
|
|
339
|
+
enableHeaderBlock: boolean;
|
|
340
|
+
enableFooterBlock: boolean;
|
|
331
341
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
332
342
|
|
|
333
343
|
export declare interface TabulatorAction {
|
|
@@ -391,6 +401,12 @@ export declare interface TabulatorProps {
|
|
|
391
401
|
printButton?: boolean;
|
|
392
402
|
exportButton?: boolean;
|
|
393
403
|
sheetName?: string;
|
|
404
|
+
headerContent?: string;
|
|
405
|
+
footerContent?: string;
|
|
406
|
+
enableHeaderPrint?: boolean;
|
|
407
|
+
enableFooterPrint?: boolean;
|
|
408
|
+
enableHeaderBlock?: boolean;
|
|
409
|
+
enableFooterBlock?: boolean;
|
|
394
410
|
}
|
|
395
411
|
|
|
396
412
|
export declare const Toast: {
|
package/package.json
CHANGED
|
@@ -1,65 +1,66 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
2
|
+
"name": "dolphin-components",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "2.2.21",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"author": "<Mavorion Systems> (https://mavorion.com/)",
|
|
10
|
+
"homepage": "https://mavorion.com/",
|
|
11
|
+
"license": "Apache-2.0",
|
|
12
|
+
"main": "./dist/dolphin-components.umd.cjs",
|
|
13
|
+
"module": "./dist/dolphin-components.es.js",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"import": "./dist/dolphin-components.es.js",
|
|
18
|
+
"require": "./dist/dolphin-components.umd.cjs"
|
|
19
|
+
},
|
|
20
|
+
"./dolphin-components.css": "./dist/dolphin-components.css"
|
|
19
21
|
},
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
]
|
|
22
|
+
"types": "./dist/index.d.ts",
|
|
23
|
+
"scripts": {
|
|
24
|
+
"dev": "vite --host",
|
|
25
|
+
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly",
|
|
26
|
+
"format": "prettier --write src/",
|
|
27
|
+
"format:check": "prettier --check src/",
|
|
28
|
+
"preview": "vite preview"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
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
|
+
"moment": "^2.30.1",
|
|
36
|
+
"nepali-date-library": "^1.1.4",
|
|
37
|
+
"nepali-datepicker-vue": "^1.0.7",
|
|
38
|
+
"sweetalert2": "^11.22.4",
|
|
39
|
+
"tabulator-tables": "^6.3.1",
|
|
40
|
+
"tailwindcss": "^4.1.12",
|
|
41
|
+
"utility-types": "^3.11.0",
|
|
42
|
+
"vue": "^3.5.18",
|
|
43
|
+
"vue-datepicker-next": "^1.0.3",
|
|
44
|
+
"vue-multiselect": "^3.3.1",
|
|
45
|
+
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
|
|
46
|
+
},
|
|
47
|
+
"peerDependencies": {
|
|
48
|
+
"vue-router": "^4.5.0"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@types/node": "^24.3.0",
|
|
52
|
+
"@vitejs/plugin-vue": "^6.0.1",
|
|
53
|
+
"@vue/tsconfig": "^0.8.0",
|
|
54
|
+
"path": "^0.12.7",
|
|
55
|
+
"prettier": "3.6.2",
|
|
56
|
+
"rollup-plugin-typescript2": "^0.36.0",
|
|
57
|
+
"typescript": "~5.9.2",
|
|
58
|
+
"vite": "^7.1.2",
|
|
59
|
+
"vite-plugin-dts": "^4.5.4",
|
|
60
|
+
"vue-tsc": "^3.0.5"
|
|
61
|
+
},
|
|
62
|
+
"keywords": [
|
|
63
|
+
"mavorion",
|
|
64
|
+
"dolphin"
|
|
65
|
+
]
|
|
65
66
|
}
|