Browse Source

1. 前端发布 8.2.29

2. 修复开发者工具的前端 bug
main
wangshaoping 2 months ago
parent
commit
ec22a30675
  1. 2
      erm.frontend/package.json
  2. 2
      gradle.properties
  3. 2
      io.sc.engine.mv.frontend/package.json
  4. 2
      io.sc.engine.rule.frontend/package.json
  5. 2
      io.sc.engine.st.frontend/package.json
  6. 2
      io.sc.platform.developer.doc/package.json
  7. 2
      io.sc.platform.developer.frontend/package.json
  8. 22
      io.sc.platform.developer.frontend/src/views/plugin/Components.vue
  9. 12
      io.sc.platform.developer.frontend/src/views/plugin/Liquibase.vue
  10. 12
      io.sc.platform.developer.frontend/src/views/plugin/Messages.vue
  11. 12
      io.sc.platform.developer.frontend/src/views/plugin/P6spy.vue
  12. 5
      io.sc.platform.developer.frontend/src/views/plugin/Parameters.vue
  13. 22
      io.sc.platform.developer.frontend/src/views/plugin/Repositories.vue
  14. 22
      io.sc.platform.developer.frontend/src/views/plugin/RestartProperties.vue
  15. 2
      io.sc.platform.lcdp.frontend/package.json
  16. 2
      io.sc.platform.license.keygen.frontend/package.json
  17. 2
      io.sc.platform.mvc.frontend/package.json
  18. 2
      io.sc.platform.scheduler.manager.frontend/package.json
  19. 2
      io.sc.platform.system.frontend/package.json
  20. 2
      io.sc.standard.frontend/package.json
  21. 2
      io.sc.website/package.json

2
erm.frontend/package.json

@ -111,7 +111,7 @@
"node-sql-parser": "5.3.4", "node-sql-parser": "5.3.4",
"pinia": "2.2.6", "pinia": "2.2.6",
"pinia-undo": "0.2.4", "pinia-undo": "0.2.4",
"platform-core": "8.2.28", "platform-core": "8.2.29",
"quasar": "2.17.4", "quasar": "2.17.4",
"sort-array": "5.0.0", "sort-array": "5.0.0",
"svg-path-commander": "2.1.5", "svg-path-commander": "2.1.5",

2
gradle.properties

@ -38,7 +38,7 @@ application_version=1.0.0
platform_group=io.sc platform_group=io.sc
platform_version=8.2.6 platform_version=8.2.6
platform_plugin_version=8.2.6 platform_plugin_version=8.2.6
platform_core_frontend_version=8.2.28 platform_core_frontend_version=8.2.29
########################################################### ###########################################################
# dependencies version # dependencies version

2
io.sc.engine.mv.frontend/package.json

@ -111,7 +111,7 @@
"node-sql-parser": "5.3.4", "node-sql-parser": "5.3.4",
"pinia": "2.2.6", "pinia": "2.2.6",
"pinia-undo": "0.2.4", "pinia-undo": "0.2.4",
"platform-core": "8.2.28", "platform-core": "8.2.29",
"quasar": "2.17.4", "quasar": "2.17.4",
"sort-array": "5.0.0", "sort-array": "5.0.0",
"svg-path-commander": "2.1.5", "svg-path-commander": "2.1.5",

2
io.sc.engine.rule.frontend/package.json

@ -111,7 +111,7 @@
"node-sql-parser": "5.3.4", "node-sql-parser": "5.3.4",
"pinia": "2.2.6", "pinia": "2.2.6",
"pinia-undo": "0.2.4", "pinia-undo": "0.2.4",
"platform-core": "8.2.28", "platform-core": "8.2.29",
"quasar": "2.17.4", "quasar": "2.17.4",
"sort-array": "5.0.0", "sort-array": "5.0.0",
"svg-path-commander": "2.1.5", "svg-path-commander": "2.1.5",

2
io.sc.engine.st.frontend/package.json

@ -111,7 +111,7 @@
"node-sql-parser": "5.3.4", "node-sql-parser": "5.3.4",
"pinia": "2.2.6", "pinia": "2.2.6",
"pinia-undo": "0.2.4", "pinia-undo": "0.2.4",
"platform-core": "8.2.28", "platform-core": "8.2.29",
"quasar": "2.17.4", "quasar": "2.17.4",
"sort-array": "5.0.0", "sort-array": "5.0.0",
"svg-path-commander": "2.1.5", "svg-path-commander": "2.1.5",

2
io.sc.platform.developer.doc/package.json

@ -28,7 +28,7 @@
"vuepress": "2.0.0-rc.15" "vuepress": "2.0.0-rc.15"
}, },
"dependencies": { "dependencies": {
"platform-core": "8.2.28", "platform-core": "8.2.29",
"quasar": "2.17.4", "quasar": "2.17.4",
"vue": "3.5.13", "vue": "3.5.13",
"vue-i18n": "10.0.4" "vue-i18n": "10.0.4"

2
io.sc.platform.developer.frontend/package.json

@ -122,4 +122,4 @@
"vue-router": "4.5.0", "vue-router": "4.5.0",
"xml-formatter": "3.6.3" "xml-formatter": "3.6.3"
} }
} }

22
io.sc.platform.developer.frontend/src/views/plugin/Components.vue

@ -11,28 +11,16 @@
name: 'includes', name: 'includes',
label: $t('include'), label: $t('include'),
sortable: false, sortable: false,
format: (includes) => { format: Formater.join('<br/>'),
includes = includes || []; title: Formater.join('\n'),
let result = '';
for (const include of includes) {
result += include + '<br/>';
}
return result;
},
}, },
{ {
width: 300, width: 300,
name: 'excludes', name: 'excludes',
label: $t('exclude'), label: $t('exclude'),
sortable: false, sortable: false,
format: (excludes) => { format: Formater.join('<br/>'),
excludes = excludes || []; title: Formater.join('\n'),
let result = '';
for (const exclude of excludes) {
result += exclude + '<br/>';
}
return result;
},
}, },
{ width: 200, name: 'configurationFileUrl', label: $t('url'), sortable: false }, { width: 200, name: 'configurationFileUrl', label: $t('url'), sortable: false },
]" ]"
@ -40,5 +28,5 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import 'tailwindcss/utilities.css'; import 'tailwindcss/utilities.css';
import { Environment } from 'platform-core'; import { Environment, Formater } from 'platform-core';
</script> </script>

12
io.sc.platform.developer.frontend/src/views/plugin/Liquibase.vue

@ -13,14 +13,8 @@
width: 600, width: 600,
name: 'locations', name: 'locations',
label: $t('location'), label: $t('location'),
format: (locations) => { format: Formater.join('<br/>'),
locations = locations || []; title: Formater.join('\n'),
let result = '';
for (const location of locations) {
result += location + '<br/>';
}
return result;
},
align: 'left', align: 'left',
sortable: false, sortable: false,
}, },
@ -30,5 +24,5 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import 'tailwindcss/utilities.css'; import 'tailwindcss/utilities.css';
import { Environment } from 'platform-core'; import { Environment, Formater } from 'platform-core';
</script> </script>

12
io.sc.platform.developer.frontend/src/views/plugin/Messages.vue

@ -11,14 +11,8 @@
name: 'includes', name: 'includes',
label: $t('include'), label: $t('include'),
sortable: false, sortable: false,
format: (includes) => { format: Formater.join('<br/>'),
includes = includes || []; title: Formater.join('\n'),
let result = '';
for (const include of includes) {
result += include + '<br/>';
}
return result;
},
}, },
{ {
width: 300, width: 300,
@ -40,5 +34,5 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import 'tailwindcss/utilities.css'; import 'tailwindcss/utilities.css';
import { Environment } from 'platform-core'; import { Environment, Formater } from 'platform-core';
</script> </script>

12
io.sc.platform.developer.frontend/src/views/plugin/P6spy.vue

@ -11,14 +11,8 @@
name: 'ignoredPatterns', name: 'ignoredPatterns',
label: $t('ignored'), label: $t('ignored'),
sortable: false, sortable: false,
format: (ignoredPatterns) => { format: Formater.join('<br/>'),
ignoredPatterns = ignoredPatterns || []; title: Formater.join('\n'),
let result = '';
for (const ignoredPattern of ignoredPatterns) {
result += ignoredPattern + '<br/>';
}
return result;
},
}, },
{ width: 200, name: 'configurationFileUrl', label: $t('url'), sortable: false }, { width: 200, name: 'configurationFileUrl', label: $t('url'), sortable: false },
]" ]"
@ -26,5 +20,5 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import 'tailwindcss/utilities.css'; import 'tailwindcss/utilities.css';
import { Environment } from 'platform-core'; import { Environment, Formater } from 'platform-core';
</script> </script>

5
io.sc.platform.developer.frontend/src/views/plugin/Parameters.vue

@ -3,6 +3,11 @@
:title="$t('menu.developer.plugin.parameters')" :title="$t('menu.developer.plugin.parameters')"
:tree="true" :tree="true"
tree-relationship-field="parentId" tree-relationship-field="parentId"
:tree-icon="
(row) => {
return { name: 'folder', color: 'amber' };
}
"
:toolbar-actions="['refresh', 'separator', 'view', 'export']" :toolbar-actions="['refresh', 'separator', 'view', 'export']"
:fetch-data-url="Environment.apiContextPath('/api/developer/plugins/parameters')" :fetch-data-url="Environment.apiContextPath('/api/developer/plugins/parameters')"
:checkbox-selection="false" :checkbox-selection="false"

22
io.sc.platform.developer.frontend/src/views/plugin/Repositories.vue

@ -11,28 +11,16 @@
name: 'includes', name: 'includes',
label: $t('include'), label: $t('include'),
sortable: false, sortable: false,
format: (includes) => { format: Formater.join('<br/>'),
includes = includes || []; title: Formater.join('\n'),
let result = '';
for (const include of includes) {
result += include + '<br/>';
}
return result;
},
}, },
{ {
width: 300, width: 300,
name: 'excludes', name: 'excludes',
label: $t('exclude'), label: $t('exclude'),
sortable: false, sortable: false,
format: (excludes) => { format: Formater.join('<br/>'),
excludes = excludes || []; title: Formater.join('\n'),
let result = '';
for (const exclude of excludes) {
result += exclude + '<br/>';
}
return result;
},
}, },
{ width: 200, name: 'configurationFileUrl', label: $t('url'), sortable: false }, { width: 200, name: 'configurationFileUrl', label: $t('url'), sortable: false },
]" ]"
@ -40,5 +28,5 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import 'tailwindcss/utilities.css'; import 'tailwindcss/utilities.css';
import { Environment } from 'platform-core'; import { Environment, Formater } from 'platform-core';
</script> </script>

22
io.sc.platform.developer.frontend/src/views/plugin/RestartProperties.vue

@ -11,28 +11,16 @@
name: 'container', name: 'container',
label: $t('webContainer'), label: $t('webContainer'),
sortable: false, sortable: false,
format: (containers) => { format: Formater.join('<br/>'),
containers = containers || []; title: Formater.join('\n'),
let result = '';
for (const container of containers) {
result += container + '<br/>';
}
return result;
},
}, },
{ {
width: 300, width: 300,
name: 'jar', name: 'jar',
label: $t('jar'), label: $t('jar'),
sortable: false, sortable: false,
format: (jars) => { format: Formater.join('<br/>'),
jars = jars || []; title: Formater.join('\n'),
let result = '';
for (const jar of jars) {
result += jar + '<br/>';
}
return result;
},
}, },
{ width: 200, name: 'configurationFileUrl', label: $t('url'), sortable: false }, { width: 200, name: 'configurationFileUrl', label: $t('url'), sortable: false },
]" ]"
@ -40,5 +28,5 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import 'tailwindcss/utilities.css'; import 'tailwindcss/utilities.css';
import { Environment } from 'platform-core'; import { Environment, Formater } from 'platform-core';
</script> </script>

2
io.sc.platform.lcdp.frontend/package.json

@ -111,7 +111,7 @@
"node-sql-parser": "5.3.4", "node-sql-parser": "5.3.4",
"pinia": "2.2.6", "pinia": "2.2.6",
"pinia-undo": "0.2.4", "pinia-undo": "0.2.4",
"platform-core": "8.2.28", "platform-core": "8.2.29",
"quasar": "2.17.4", "quasar": "2.17.4",
"sort-array": "5.0.0", "sort-array": "5.0.0",
"svg-path-commander": "2.1.5", "svg-path-commander": "2.1.5",

2
io.sc.platform.license.keygen.frontend/package.json

@ -111,7 +111,7 @@
"node-sql-parser": "5.3.4", "node-sql-parser": "5.3.4",
"pinia": "2.2.6", "pinia": "2.2.6",
"pinia-undo": "0.2.4", "pinia-undo": "0.2.4",
"platform-core": "8.2.28", "platform-core": "8.2.29",
"quasar": "2.17.4", "quasar": "2.17.4",
"sort-array": "5.0.0", "sort-array": "5.0.0",
"svg-path-commander": "2.1.5", "svg-path-commander": "2.1.5",

2
io.sc.platform.mvc.frontend/package.json

@ -111,7 +111,7 @@
"node-sql-parser": "5.3.4", "node-sql-parser": "5.3.4",
"pinia": "2.2.6", "pinia": "2.2.6",
"pinia-undo": "0.2.4", "pinia-undo": "0.2.4",
"platform-core": "8.2.28", "platform-core": "8.2.29",
"quasar": "2.17.4", "quasar": "2.17.4",
"sort-array": "5.0.0", "sort-array": "5.0.0",
"svg-path-commander": "2.1.5", "svg-path-commander": "2.1.5",

2
io.sc.platform.scheduler.manager.frontend/package.json

@ -111,7 +111,7 @@
"node-sql-parser": "5.3.4", "node-sql-parser": "5.3.4",
"pinia": "2.2.6", "pinia": "2.2.6",
"pinia-undo": "0.2.4", "pinia-undo": "0.2.4",
"platform-core": "8.2.28", "platform-core": "8.2.29",
"quasar": "2.17.4", "quasar": "2.17.4",
"sort-array": "5.0.0", "sort-array": "5.0.0",
"svg-path-commander": "2.1.5", "svg-path-commander": "2.1.5",

2
io.sc.platform.system.frontend/package.json

@ -110,7 +110,7 @@
"mockjs": "1.1.0", "mockjs": "1.1.0",
"node-sql-parser": "5.3.4", "node-sql-parser": "5.3.4",
"pinia": "2.2.6", "pinia": "2.2.6",
"platform-core": "8.2.28", "platform-core": "8.2.29",
"quasar": "2.17.4", "quasar": "2.17.4",
"sort-array": "5.0.0", "sort-array": "5.0.0",
"svg-path-commander": "2.1.5", "svg-path-commander": "2.1.5",

2
io.sc.standard.frontend/package.json

@ -111,7 +111,7 @@
"node-sql-parser": "5.3.4", "node-sql-parser": "5.3.4",
"pinia": "2.2.6", "pinia": "2.2.6",
"pinia-undo": "0.2.4", "pinia-undo": "0.2.4",
"platform-core": "8.2.28", "platform-core": "8.2.29",
"quasar": "2.17.4", "quasar": "2.17.4",
"sort-array": "5.0.0", "sort-array": "5.0.0",
"svg-path-commander": "2.1.5", "svg-path-commander": "2.1.5",

2
io.sc.website/package.json

@ -28,6 +28,6 @@
}, },
"dependencies": { "dependencies": {
"vue": "3.5.13", "vue": "3.5.13",
"platform-core": "8.2.28" "platform-core": "8.2.29"
} }
} }
Loading…
Cancel
Save