dolphin-components 2.1.3 → 2.1.4
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/index.d.ts
CHANGED
|
@@ -287,7 +287,7 @@ export declare interface TabulatorProps {
|
|
|
287
287
|
action?: boolean;
|
|
288
288
|
actionButtons?: TabulatorAction[];
|
|
289
289
|
heightOffset?: number;
|
|
290
|
-
actionMode?:
|
|
290
|
+
actionMode?: "frontend" | "api";
|
|
291
291
|
}
|
|
292
292
|
|
|
293
293
|
export declare const Toast: {
|
|
@@ -354,8 +354,8 @@ export declare class WebSocketWrapper {
|
|
|
354
354
|
export { }
|
|
355
355
|
|
|
356
356
|
|
|
357
|
-
declare module
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
}
|
|
357
|
+
declare module "@vue/runtime-core" {
|
|
358
|
+
interface ComponentCustomProperties {
|
|
359
|
+
$focusNext: (nextElementId: string) => void;
|
|
360
|
+
}
|
|
361
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dolphin-components",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "2.1.
|
|
4
|
+
"version": "2.1.4",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
@@ -23,6 +23,8 @@
|
|
|
23
23
|
"scripts": {
|
|
24
24
|
"dev": "vite",
|
|
25
25
|
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly",
|
|
26
|
+
"format": "prettier --write src/",
|
|
27
|
+
"format:check": "prettier --check src/",
|
|
26
28
|
"preview": "vite preview"
|
|
27
29
|
},
|
|
28
30
|
"dependencies": {
|
|
@@ -48,6 +50,7 @@
|
|
|
48
50
|
"@vitejs/plugin-vue": "^5.2.1",
|
|
49
51
|
"@vue/tsconfig": "^0.7.0",
|
|
50
52
|
"path": "^0.12.7",
|
|
53
|
+
"prettier": "3.5.3",
|
|
51
54
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
52
55
|
"typescript": "~5.7.3",
|
|
53
56
|
"vite": "^6.1.0",
|