@christianriedl/media 1.0.189 → 1.0.190

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@christianriedl/media",
3
- "version": "1.0.189",
3
+ "version": "1.0.190",
4
4
  "description": "RIC media interfaces",
5
5
 
6
6
  "main": "dist/index.js",
@@ -8,17 +8,11 @@
8
8
 
9
9
  <template>
10
10
  <v-row dense :class="[place.color,'place']" :style="heightStyle" >
11
- <v-col cols="12" >
12
- <p class="vorne">{{place.vorne}}</p>
11
+ <v-col v-if="place.vorne" cols="12" >
12
+ <p class="vorne">{{place.vorne}}<br>{{place.vorne2}}</p>
13
13
  </v-col>
14
- <v-col cols="12" >
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>
14
+ <v-col v-if="place.hinten" cols="12" >
15
+ <p class="hinten">{{place.hinten}}<br>{{place.hinten2}}</p>
22
16
  </v-col>
23
17
  </v-row>
24
18
  <v-divider></v-divider>
@@ -31,12 +25,12 @@
31
25
  border-width: medium;
32
26
  }
33
27
  .vorne {
34
- font-size: medium;
28
+ font-size: large;
35
29
  font-family: monospace;
36
30
  background-color: white;
37
31
  }
38
32
  .hinten {
39
- font-size: medium;
33
+ font-size: large;
40
34
  font-family: monospace;
41
35
  background-color: lightgrey;
42
36
  }
@@ -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(100);
17
+ const placeHeight = ref(120);
18
18
  const regale = reactive<Regal[]>(initPlaces());
19
19
 
20
20
  start();
@@ -24,7 +24,7 @@
24
24
  for (let i = 0; i < 10; i++) {
25
25
  let regal: Regal = { faecher: [], faecher2: [] };
26
26
  for (let j = 0; j < 6; j++) {
27
- const fach: IPlace = { vorne: "", hinten: "", color: regalColor };
27
+ const fach: IPlace = { vorne: "", hinten: "", vorne2: "", hinten2: "", color: regalColor };
28
28
  if (i < 8) {
29
29
  // Wohnzimmer
30
30
  if ((i < 2 || i > 5) && j > 2)
@@ -33,7 +33,7 @@
33
33
  fach.color = glassColor;
34
34
  }
35
35
  regal.faecher.push(fach);
36
- const fach2: IPlace = { vorne: "", hinten: "", color: regalColor };
36
+ const fach2: IPlace = { vorne: "", hinten: "", vorne2: "", hinten2: "", color: regalColor };
37
37
  if (i < 8) {
38
38
  // Wohnzimmer
39
39
  if ((i < 2 || i > 5) && j > 2)
@@ -83,10 +83,9 @@
83
83
 
84
84
  <template>
85
85
  <v-container fluid class="bg-office" >
86
- <h1>SOLL</h1>
87
86
  <v-row dense>
88
87
  <v-col cols="9">
89
- <h2>WOHNZIMMER</h2>
88
+ <h2>SOLL - WOHNZIMMER</h2>
90
89
  </v-col>
91
90
  <v-col cols="3">
92
91
  <h2>VORZIMMER</h2>
@@ -104,10 +103,9 @@
104
103
  <book-place v-for="m in 6" :place="regale[9].faecher[m-1]" :height="placeHeight" ></book-place>
105
104
  </v-col>
106
105
  </v-row>
107
- <h1>IST</h1>
108
106
  <v-row dense>
109
107
  <v-col cols="9">
110
- <h2>WOHNZIMMER</h2>
108
+ <h2>IST - WOHNZIMMER</h2>
111
109
  </v-col>
112
110
  <v-col cols="3">
113
111
  <h2>VORZIMMER</h2>