@christianriedl/utils 1.0.47 → 1.0.48
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/package.json
CHANGED
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
<tr class="settingsline">
|
|
21
21
|
<td style="width:50%">{{item.description}}</td>
|
|
22
22
|
<td style="width:50%">
|
|
23
|
-
<v-switch v-if="isBoolean" v-model="item.value" hide-details marg color="primary" @change="onChange"></v-switch>
|
|
24
|
-
<v-text-field v-if="isString" v-model="item.value" hide-details type="string" @change="onChange"></v-text-field>
|
|
25
|
-
<v-text-field v-if="isNumber" v-model="item.value" hide-details type="number" @change="onChange"></v-text-field>
|
|
23
|
+
<v-switch v-if="isBoolean" v-model="item.value" density="compact" hide-details marg color="primary" @change="onChange"></v-switch>
|
|
24
|
+
<v-text-field v-if="isString" v-model="item.value" density="compact" hide-details type="string" @change="onChange"></v-text-field>
|
|
25
|
+
<v-text-field v-if="isNumber" v-model="item.value" density="compact" hide-details type="number" @change="onChange"></v-text-field>
|
|
26
26
|
<v-select v-if="isEnum" name="enum" density="compact" v-model="item.value"
|
|
27
27
|
:items="item.values"
|
|
28
28
|
persistent-hint
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
const appState = inject<IAppState>('appstate')!;
|
|
8
8
|
const appConfig = inject<IAppConfig>('appconfig')!;
|
|
9
9
|
|
|
10
|
-
const heightStyle = computed(() => { return { height: appState.bodyHeight.value + 'px' } });
|
|
10
|
+
const heightStyle = computed(() => { return { height: appState.bodyHeight.value + 'px', overflowY: 'auto' } });
|
|
11
11
|
|
|
12
12
|
let changed = false;
|
|
13
13
|
const subscribePushNotifications = appConfig.subscribePush ? appConfig.items["subscribePushNotifications"] : null;
|