@geode/opengeodeweb-front 10.13.2-rc.2 → 10.13.2-rc.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.
@@ -5,7 +5,7 @@ const { button_label, button_color, color } = defineProps({
5
5
  button_label: {
6
6
  type: String,
7
7
  required: false,
8
- default: "Launch the app",
8
+ default: "Load the app",
9
9
  },
10
10
  button_color: {
11
11
  type: String,
@@ -60,7 +60,7 @@ function submit() {
60
60
  </VRow>
61
61
  <VRow>
62
62
  <VCol>
63
- <VCheckbox label="Launch the app" v-model="launch" />
63
+ <VCheckbox label="Load the app" v-model="load" />
64
64
  </VCol>
65
65
  </VRow>
66
66
  </VContainer>
@@ -68,8 +68,27 @@ function submit() {
68
68
  </VCol>
69
69
  </VRow>
70
70
  <VRow align="center" justify="center">
71
- <VCol cols="4" class="d-flex justify-center align-center">
72
- <VBtn :text="button_label" :color="color || button_color" @click="submit" />
71
+ <VCol cols="auto" class="d-flex justify-center align-center">
72
+ <VBtn class="load-btn" :text="button_label" :color="color || button_color" @click="submit" />
73
73
  </VCol>
74
74
  </VRow>
75
75
  </template>
76
+
77
+ <style scoped>
78
+ .load-btn {
79
+ padding: 0 40px !important;
80
+ height: 50px !important;
81
+ border-radius: 8px;
82
+ text-transform: none !important;
83
+ font-weight: 600;
84
+ letter-spacing: 0.5px;
85
+ transition:
86
+ transform 0.2s ease,
87
+ box-shadow 0.2s ease !important;
88
+ }
89
+
90
+ .load-btn:hover {
91
+ transform: translateY(-2px);
92
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
93
+ }
94
+ </style>
@@ -22,7 +22,7 @@ const { steps, current_step_index } = toRefs(stepper_tree);
22
22
  @update:model-value="current_step_index = $event - 1"
23
23
  flat
24
24
  non-linear
25
- class="pa-0 ma-0 bg-transparent rounded-xl overflow-hidden custom-stepper flex-grow-1"
25
+ class="pa-0 ma-0 bg-transparent rounded-xl overflow-y-auto custom-stepper flex-grow-1"
26
26
  >
27
27
  <Step
28
28
  v-for="(step, index) in steps"
@@ -2,7 +2,7 @@ import back_schemas from "@geode/opengeodeweb-back/opengeodeweb_back_schemas.jso
2
2
  import fileDownload from "js-file-download";
3
3
  import viewer_schemas from "@geode/opengeodeweb-viewer/opengeodeweb_viewer_schemas.json";
4
4
 
5
- import { importWorkflowFromSnapshot } from "@ogw_front/utils/file_import_workflow";
5
+ import { importWorkflowFromSnapshot } from "@ogw_front/utils/import_workflow";
6
6
 
7
7
  import { useAppStore } from "@ogw_front/stores/app";
8
8
  import { useDataStore } from "@ogw_front/stores/data";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geode/opengeodeweb-front",
3
- "version": "10.13.2-rc.2",
3
+ "version": "10.13.2-rc.4",
4
4
  "description": "OpenSource Vue/Nuxt/Pinia/Vuetify framework for web applications",
5
5
  "homepage": "https://github.com/Geode-solutions/OpenGeodeWeb-Front",
6
6
  "bugs": {
@@ -10,7 +10,7 @@ import { addMicroserviceMetadatas, runBack, runViewer } from "@ogw_front/utils/l
10
10
  import { createPath, generateProjectFolderPath } from "@ogw_front/utils/local/path";
11
11
  import { Status } from "@ogw_front/utils/status";
12
12
  import { appMode } from "@ogw_front/utils/local/app_mode";
13
- import { importFile } from "@ogw_front/utils/file_import_workflow";
13
+ import { importFile } from "@ogw_front/utils/import_workflow";
14
14
  import { setupActivePinia } from "@ogw_tests/utils";
15
15
  import { useGeodeStore } from "@ogw_front/stores/geode";
16
16
  import { useInfraStore } from "@ogw_front/stores/infra";