@christianriedl/media 1.0.188 → 1.0.189
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/dist/iBooks.d.ts
CHANGED
|
@@ -42,10 +42,14 @@ export interface IBookPlace {
|
|
|
42
42
|
breite: number;
|
|
43
43
|
buchstaben: string;
|
|
44
44
|
buchstaben2: string;
|
|
45
|
+
zweitBuchstaben: string;
|
|
46
|
+
zweitBuchstaben2: string;
|
|
45
47
|
}
|
|
46
48
|
export interface IPlace {
|
|
47
49
|
vorne: string;
|
|
50
|
+
vorne2: string;
|
|
48
51
|
hinten: string;
|
|
52
|
+
hinten2: string;
|
|
49
53
|
color: string;
|
|
50
54
|
}
|
|
51
55
|
export interface IBooksService {
|
package/package.json
CHANGED
|
@@ -9,10 +9,16 @@
|
|
|
9
9
|
<template>
|
|
10
10
|
<v-row dense :class="[place.color,'place']" :style="heightStyle" >
|
|
11
11
|
<v-col cols="12" >
|
|
12
|
-
<p
|
|
12
|
+
<p class="vorne">{{place.vorne}}</p>
|
|
13
13
|
</v-col>
|
|
14
14
|
<v-col cols="12" >
|
|
15
|
-
<p
|
|
15
|
+
<p class="vorne">{{place.vorne2}}</p>
|
|
16
|
+
</v-col>
|
|
17
|
+
<v-col cols="12" >
|
|
18
|
+
<p class="hinten">{{place.hinten}}</p>
|
|
19
|
+
</v-col>
|
|
20
|
+
<v-col cols="12" >
|
|
21
|
+
<p class="hinten">{{place.hinten2}}</p>
|
|
16
22
|
</v-col>
|
|
17
23
|
</v-row>
|
|
18
24
|
<v-divider></v-divider>
|
|
@@ -25,11 +31,13 @@
|
|
|
25
31
|
border-width: medium;
|
|
26
32
|
}
|
|
27
33
|
.vorne {
|
|
28
|
-
font-size:
|
|
34
|
+
font-size: medium;
|
|
35
|
+
font-family: monospace;
|
|
29
36
|
background-color: white;
|
|
30
37
|
}
|
|
31
38
|
.hinten {
|
|
32
|
-
font-size:
|
|
39
|
+
font-size: medium;
|
|
40
|
+
font-family: monospace;
|
|
33
41
|
background-color: lightgrey;
|
|
34
42
|
}
|
|
35
43
|
</style>
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
const regalColor = "bg-brown-lighten-3";
|
|
15
15
|
const doorColor = "bg-brown-darken-1";
|
|
16
16
|
const glassColor = "bg-blue-grey-lighten-1";
|
|
17
|
-
const placeHeight = ref(
|
|
17
|
+
const placeHeight = ref(100);
|
|
18
18
|
const regale = reactive<Regal[]>(initPlaces());
|
|
19
19
|
|
|
20
20
|
start();
|
|
@@ -62,16 +62,20 @@
|
|
|
62
62
|
let fach = regal.faecher[place.fachVonOben - 1];
|
|
63
63
|
if (place.hinten) {
|
|
64
64
|
fach.hinten = place.buchstaben;
|
|
65
|
+
fach.hinten2 = place.zweitBuchstaben;
|
|
65
66
|
}
|
|
66
67
|
else {
|
|
67
68
|
fach.vorne = place.buchstaben;
|
|
69
|
+
fach.vorne2 = place.zweitBuchstaben;
|
|
68
70
|
}
|
|
69
71
|
fach = regal.faecher2[place.fachVonOben - 1];
|
|
70
72
|
if (place.hinten) {
|
|
71
73
|
fach.hinten = place.buchstaben2;
|
|
74
|
+
fach.hinten2 = place.zweitBuchstaben2;
|
|
72
75
|
}
|
|
73
76
|
else {
|
|
74
77
|
fach.vorne = place.buchstaben2;
|
|
78
|
+
fach.vorne2 = place.zweitBuchstaben2;
|
|
75
79
|
}
|
|
76
80
|
}
|
|
77
81
|
}
|