@v1nt1248/3nclient-lib 0.1.42 → 0.1.43
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/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@v1nt1248/3nclient-lib",
|
|
3
3
|
"license": "AGPL-3.0-or-later",
|
|
4
4
|
"author": "v1nt1248",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.43",
|
|
6
6
|
"description": "Library for 3NWeb clients",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"files": [
|
|
@@ -60,19 +60,19 @@
|
|
|
60
60
|
"vuedraggable": "4.1.0"
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
|
-
"pinia": "2.
|
|
64
|
-
"vue": "3.5.
|
|
63
|
+
"pinia": "2.3.0",
|
|
64
|
+
"vue": "3.5.13"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@types/lodash": "4.17.12",
|
|
68
|
-
"@types/node": "20.
|
|
68
|
+
"@types/node": "20.17.12",
|
|
69
69
|
"@types/sanitize-html": "2.13.0",
|
|
70
70
|
"@typescript-eslint/eslint-plugin": "8.0.1",
|
|
71
71
|
"@typescript-eslint/parser": "8.0.1",
|
|
72
|
-
"@vitejs/plugin-vue": "5.1
|
|
73
|
-
"@vue/compiler-core": "3.5.
|
|
72
|
+
"@vitejs/plugin-vue": "5.2.1",
|
|
73
|
+
"@vue/compiler-core": "3.5.13",
|
|
74
74
|
"@vue/eslint-config-typescript": "13.0.0",
|
|
75
|
-
"@vue/runtime-core": "3.5.
|
|
75
|
+
"@vue/runtime-core": "3.5.13",
|
|
76
76
|
"@vuedx/typescript-plugin-vue": "0.7.6",
|
|
77
77
|
"eslint": "9.9.0",
|
|
78
78
|
"eslint-config-prettier": "^9.1.0",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"eslint-plugin-vue": "9.27.0",
|
|
84
84
|
"jackspeak": "4.0.1",
|
|
85
85
|
"path": "0.12.7",
|
|
86
|
-
"pinia": "2.
|
|
86
|
+
"pinia": "2.3.0",
|
|
87
87
|
"postcss-html": "1.7.0",
|
|
88
88
|
"prettier": "^3.3.3",
|
|
89
89
|
"sass": "1.80.3",
|
|
@@ -92,16 +92,16 @@
|
|
|
92
92
|
"stylelint-config-recommended-vue": "1.5.0",
|
|
93
93
|
"stylelint-config-standard": "36.0.1",
|
|
94
94
|
"stylelint-scss": "6.5.0",
|
|
95
|
-
"typescript": "5.
|
|
96
|
-
"vite": "5.4.
|
|
95
|
+
"typescript": "5.7.3",
|
|
96
|
+
"vite": "5.4.11",
|
|
97
97
|
"vite-plugin-css-injected-by-js": "3.5.2",
|
|
98
|
-
"vite-plugin-dts": "4.
|
|
99
|
-
"vite-plugin-vue-devtools": "^7.
|
|
100
|
-
"vitepress": "1.
|
|
101
|
-
"vue": "3.5.
|
|
102
|
-
"vue-tsc": "2.
|
|
98
|
+
"vite-plugin-dts": "4.5.0",
|
|
99
|
+
"vite-plugin-vue-devtools": "^7.7.0",
|
|
100
|
+
"vitepress": "1.5.0",
|
|
101
|
+
"vue": "3.5.13",
|
|
102
|
+
"vue-tsc": "2.2.0"
|
|
103
103
|
},
|
|
104
|
-
"packageManager": "pnpm@9.
|
|
104
|
+
"packageManager": "pnpm@9.15.3",
|
|
105
105
|
"pnpm": {
|
|
106
106
|
"peerDependencyRules": {
|
|
107
107
|
"ignoreMissing": [
|
|
@@ -53,17 +53,15 @@ export type Ui3nTableHeaderCellSlot<T extends Ui3nTableBodyBaseItem, K extends s
|
|
|
53
53
|
[p in `header-cell-${K}`]: () => VNode;
|
|
54
54
|
};
|
|
55
55
|
|
|
56
|
-
export type Ui3nTableBodyRowEventHandlers<T extends Ui3nTableBodyBaseItem> = {
|
|
57
|
-
select: (row: T, withoutEvents?: boolean) => void;
|
|
58
|
-
};
|
|
59
|
-
|
|
60
56
|
export type Ui3nTableBodyRowSlotScope<T extends Ui3nTableBodyBaseItem, K extends keyof T = keyof T> = {
|
|
61
57
|
row: T;
|
|
62
58
|
rowStyle?: Record<string, string>;
|
|
63
59
|
rowIndex: number;
|
|
64
60
|
isRowSelected?: boolean;
|
|
65
61
|
columnStyle?: { [P in Omit<K, 'id'> as string | number]: Record<string, string> };
|
|
66
|
-
eventHandlers?:
|
|
62
|
+
eventHandlers?: {
|
|
63
|
+
select: (row: T, withoutEvents?: boolean) => void;
|
|
64
|
+
};
|
|
67
65
|
};
|
|
68
66
|
|
|
69
67
|
export type Ui3nTableBodyRowSlot<T extends Ui3nTableBodyBaseItem> = {
|