dolphin-components 2.2.13 → 2.2.15
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 +3273 -3257
- package/dist/dolphin-components.css +1 -1
- package/dist/dolphin-components.es.js +14831 -14724
- package/dist/dolphin-components.umd.js +3273 -3257
- package/dist/index.d.ts +8 -1
- package/package.json +11 -11
package/dist/index.d.ts
CHANGED
|
@@ -129,7 +129,9 @@ export declare interface ContentTitle {
|
|
|
129
129
|
count?: number;
|
|
130
130
|
}
|
|
131
131
|
|
|
132
|
-
export declare const
|
|
132
|
+
export declare const CreateDebounce: <T>(callback: (arg?: T) => void, delay: number) => DebounceHandler<T>;
|
|
133
|
+
|
|
134
|
+
export declare const CreateShortCutKey: (keyStructure: string, callback: (e: KeyboardEvent) => void) => {
|
|
133
135
|
destroy(): void;
|
|
134
136
|
};
|
|
135
137
|
|
|
@@ -198,6 +200,11 @@ export declare interface DateSelectorProps {
|
|
|
198
200
|
classValue?: string;
|
|
199
201
|
}
|
|
200
202
|
|
|
203
|
+
declare type DebounceHandler<T> = {
|
|
204
|
+
run: (arg?: T) => void;
|
|
205
|
+
cancel: () => void;
|
|
206
|
+
};
|
|
207
|
+
|
|
201
208
|
export declare const FocusNext: {
|
|
202
209
|
install(app: App): void;
|
|
203
210
|
};
|
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.15",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
@@ -28,15 +28,15 @@
|
|
|
28
28
|
"preview": "vite preview"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@tailwindcss/vite": "^4.1.
|
|
32
|
-
"@types/tabulator-tables": "^6.2.
|
|
31
|
+
"@tailwindcss/vite": "^4.1.11",
|
|
32
|
+
"@types/tabulator-tables": "^6.2.7",
|
|
33
33
|
"axios": "^1.10.0",
|
|
34
|
-
"lucide-vue-next": "^0.
|
|
34
|
+
"lucide-vue-next": "^0.525.0",
|
|
35
35
|
"moment": "^2.30.1",
|
|
36
36
|
"nepali-datepicker-vue": "^1.0.7",
|
|
37
|
-
"sweetalert2": "^11.22.
|
|
37
|
+
"sweetalert2": "^11.22.2",
|
|
38
38
|
"tabulator-tables": "^6.3.1",
|
|
39
|
-
"tailwindcss": "^4.1.
|
|
39
|
+
"tailwindcss": "^4.1.11",
|
|
40
40
|
"utility-types": "^3.11.0",
|
|
41
41
|
"vue": "^3.5.17",
|
|
42
42
|
"vue-datepicker-next": "^1.0.3",
|
|
@@ -46,16 +46,16 @@
|
|
|
46
46
|
"vue-router": "^4.5.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@types/node": "^24.0.
|
|
50
|
-
"@vitejs/plugin-vue": "^
|
|
49
|
+
"@types/node": "^24.0.12",
|
|
50
|
+
"@vitejs/plugin-vue": "^6.0.0",
|
|
51
51
|
"@vue/tsconfig": "^0.7.0",
|
|
52
52
|
"path": "^0.12.7",
|
|
53
|
-
"prettier": "3.6.
|
|
53
|
+
"prettier": "3.6.2",
|
|
54
54
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
55
55
|
"typescript": "~5.8.3",
|
|
56
|
-
"vite": "^
|
|
56
|
+
"vite": "^7.0.3",
|
|
57
57
|
"vite-plugin-dts": "^4.5.4",
|
|
58
|
-
"vue-tsc": "^
|
|
58
|
+
"vue-tsc": "^3.0.1"
|
|
59
59
|
},
|
|
60
60
|
"keywords": [
|
|
61
61
|
"mavorion",
|