@geode/opengeodeweb-front 10.13.2-rc.2 → 10.13.2-rc.3

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>
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.3",
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": {