@platforma-sdk/ui-vue 1.8.0 → 1.8.2
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 +15 -0
- package/dist/lib.js +10 -7
- package/dist/lib.umd.cjs +2 -2
- package/dist/style.css +1 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/components/BlockLayout.vue +1 -1
- package/src/components/PlAppErrorNotificationAlert/PlAppErrorNotificationAlert.vue +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platforma-sdk/ui-vue",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/lib.umd.cjs",
|
|
6
6
|
"module": "dist/lib.js",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"@ag-grid-enterprise/menu": "^32.3.2",
|
|
36
36
|
"@ag-grid-enterprise/excel-export": "^32.3.2",
|
|
37
37
|
"@ag-grid-community/theming": "^32.3.2",
|
|
38
|
-
"@
|
|
39
|
-
"@
|
|
38
|
+
"@milaboratories/uikit": "^2.0.13",
|
|
39
|
+
"@platforma-sdk/model": "^1.8.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@faker-js/faker": "^8.4.1",
|
|
@@ -34,7 +34,7 @@ const app = computed(() => (sdk.loaded ? sdk.useApp() : undefined));
|
|
|
34
34
|
|
|
35
35
|
const errors = computed(() => (app.value ? app.value.model.outputErrors : {}));
|
|
36
36
|
|
|
37
|
-
const showErrorsNotification = computed(() => app.value?.showErrorsNotification);
|
|
37
|
+
const showErrorsNotification = computed(() => app.value?.showErrorsNotification ?? true);
|
|
38
38
|
</script>
|
|
39
39
|
|
|
40
40
|
<template>
|
|
@@ -49,10 +49,10 @@ watch(
|
|
|
49
49
|
</PlDialogModal>
|
|
50
50
|
|
|
51
51
|
<PlNotificationAlert v-model="isAlertOpen" type="error" closable>
|
|
52
|
-
|
|
52
|
+
Some outputs have errors.
|
|
53
53
|
<template #actions>
|
|
54
|
+
<PlBtnPrimary icon="arrow-right" @click="showErrors">See errors</PlBtnPrimary>
|
|
54
55
|
<PlSpacer />
|
|
55
|
-
<PlBtnPrimary @click="showErrors">Show errors</PlBtnPrimary>
|
|
56
56
|
</template>
|
|
57
57
|
</PlNotificationAlert>
|
|
58
58
|
</div>
|