@vc-shell/framework 1.0.247 → 1.0.248
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/CHANGELOG.md +4 -0
- package/core/composables/useAppInsights/index.ts +3 -3
- package/core/composables/useErrorHandler/index.ts +2 -2
- package/dist/core/composables/useAppInsights/index.d.ts +1 -1
- package/dist/core/composables/useAppInsights/index.d.ts.map +1 -1
- package/dist/framework.js +4 -3
- package/dist/shared/modules/dynamic/types/index.d.ts +1 -1
- package/dist/shared/modules/dynamic/types/index.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/shared/modules/dynamic/types/index.ts +1 -1
- package/ui/components/organisms/vc-table/vc-table.vue +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vc-shell/framework",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.248",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/framework.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -61,9 +61,9 @@
|
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@types/dompurify": "^3.0.5",
|
|
63
63
|
"@types/quill": "^2.0.14",
|
|
64
|
-
"@vc-shell/api-client-generator": "^1.0.
|
|
65
|
-
"@vc-shell/config-generator": "^1.0.
|
|
66
|
-
"@vc-shell/ts-config": "^1.0.
|
|
64
|
+
"@vc-shell/api-client-generator": "^1.0.248",
|
|
65
|
+
"@vc-shell/config-generator": "^1.0.248",
|
|
66
|
+
"@vc-shell/ts-config": "^1.0.248",
|
|
67
67
|
"@vitejs/plugin-vue": "^5.0.3",
|
|
68
68
|
"cypress-signalr-mock": "^1.5.0",
|
|
69
69
|
"sass": "^1.69.6",
|
|
@@ -170,7 +170,7 @@ export interface ListContentSchema {
|
|
|
170
170
|
title: string;
|
|
171
171
|
sortable?: boolean;
|
|
172
172
|
alwaysVisible?: boolean;
|
|
173
|
-
type?:
|
|
173
|
+
type?: ITableColumns["type"];
|
|
174
174
|
customTemplate?: GridTemplateOverride;
|
|
175
175
|
/** Additional method that is called when the focus is lost from the cell when editing.
|
|
176
176
|
* @description Method should be defined in the blade `scope`.
|
|
@@ -911,7 +911,7 @@ function rowCheckbox(item: T) {
|
|
|
911
911
|
}
|
|
912
912
|
|
|
913
913
|
function showActions(index: number) {
|
|
914
|
-
if (
|
|
914
|
+
if (typeof props.items[index] === "object") {
|
|
915
915
|
selectedRowIndex.value = index;
|
|
916
916
|
}
|
|
917
917
|
}
|