dolphin-components 2.2.15 → 2.2.17
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 +1783 -1679
- package/dist/dolphin-components.css +1 -1
- package/dist/dolphin-components.es.js +40335 -15532
- package/dist/dolphin-components.umd.js +1783 -1679
- package/dist/index.d.ts +6 -0
- package/package.json +6 -5
package/dist/index.d.ts
CHANGED
|
@@ -326,6 +326,8 @@ showOptions: boolean;
|
|
|
326
326
|
paginationType: "local" | "remote";
|
|
327
327
|
apiEndpoint: string;
|
|
328
328
|
queryParams: Record<string, any>;
|
|
329
|
+
settingsButton: boolean;
|
|
330
|
+
printButton: boolean;
|
|
329
331
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
330
332
|
|
|
331
333
|
export declare interface TabulatorAction {
|
|
@@ -385,6 +387,10 @@ export declare interface TabulatorProps {
|
|
|
385
387
|
apiEndpoint?: string;
|
|
386
388
|
apiInstance?: AxiosInstance;
|
|
387
389
|
queryParams?: Record<string, any>;
|
|
390
|
+
settingsButton?: boolean;
|
|
391
|
+
printButton?: boolean;
|
|
392
|
+
exportButton?: boolean;
|
|
393
|
+
sheetName?: string;
|
|
388
394
|
}
|
|
389
395
|
|
|
390
396
|
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.17",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
@@ -40,22 +40,23 @@
|
|
|
40
40
|
"utility-types": "^3.11.0",
|
|
41
41
|
"vue": "^3.5.17",
|
|
42
42
|
"vue-datepicker-next": "^1.0.3",
|
|
43
|
-
"vue-multiselect": "^3.2.0"
|
|
43
|
+
"vue-multiselect": "^3.2.0",
|
|
44
|
+
"xlsx": "^0.18.5"
|
|
44
45
|
},
|
|
45
46
|
"peerDependencies": {
|
|
46
47
|
"vue-router": "^4.5.0"
|
|
47
48
|
},
|
|
48
49
|
"devDependencies": {
|
|
49
|
-
"@types/node": "^24.0.
|
|
50
|
+
"@types/node": "^24.0.15",
|
|
50
51
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
51
52
|
"@vue/tsconfig": "^0.7.0",
|
|
52
53
|
"path": "^0.12.7",
|
|
53
54
|
"prettier": "3.6.2",
|
|
54
55
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
55
56
|
"typescript": "~5.8.3",
|
|
56
|
-
"vite": "^7.0.
|
|
57
|
+
"vite": "^7.0.5",
|
|
57
58
|
"vite-plugin-dts": "^4.5.4",
|
|
58
|
-
"vue-tsc": "^3.0.
|
|
59
|
+
"vue-tsc": "^3.0.3"
|
|
59
60
|
},
|
|
60
61
|
"keywords": [
|
|
61
62
|
"mavorion",
|