Merge branch 'release/2020.10-06'
This commit is contained in:
Generated
+7
-8
@@ -266,16 +266,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "doctrine/dbal",
|
"name": "doctrine/dbal",
|
||||||
"version": "2.11.1",
|
"version": "2.11.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/doctrine/dbal.git",
|
"url": "https://github.com/doctrine/dbal.git",
|
||||||
"reference": "6e6903cd5e3a5be60a79439e3ee8fe126f78fe86"
|
"reference": "fb5d5f2f26babf8dce217b1eb88300c22bb703a4"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/doctrine/dbal/zipball/6e6903cd5e3a5be60a79439e3ee8fe126f78fe86",
|
"url": "https://api.github.com/repos/doctrine/dbal/zipball/fb5d5f2f26babf8dce217b1eb88300c22bb703a4",
|
||||||
"reference": "6e6903cd5e3a5be60a79439e3ee8fe126f78fe86",
|
"reference": "fb5d5f2f26babf8dce217b1eb88300c22bb703a4",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -287,12 +287,11 @@
|
|||||||
"require-dev": {
|
"require-dev": {
|
||||||
"doctrine/coding-standard": "^8.1",
|
"doctrine/coding-standard": "^8.1",
|
||||||
"jetbrains/phpstorm-stubs": "^2019.1",
|
"jetbrains/phpstorm-stubs": "^2019.1",
|
||||||
"nikic/php-parser": "^4.4",
|
|
||||||
"phpstan/phpstan": "^0.12.40",
|
"phpstan/phpstan": "^0.12.40",
|
||||||
"phpunit/phpunit": "^9.3",
|
"phpunit/phpunit": "^9.4",
|
||||||
"psalm/plugin-phpunit": "^0.10.0",
|
"psalm/plugin-phpunit": "^0.10.0",
|
||||||
"symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
|
"symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
|
||||||
"vimeo/psalm": "^3.14.2"
|
"vimeo/psalm": "^3.17.2"
|
||||||
},
|
},
|
||||||
"suggest": {
|
"suggest": {
|
||||||
"symfony/console": "For helpful console commands such as SQL execution and import of files."
|
"symfony/console": "For helpful console commands such as SQL execution and import of files."
|
||||||
@@ -370,7 +369,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2020-09-27T04:09:41+00:00"
|
"time": "2020-10-20T14:36:48+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "doctrine/event-manager",
|
"name": "doctrine/event-manager",
|
||||||
|
|||||||
+6
-5
@@ -1,14 +1,14 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="panel">
|
<div class="panel">
|
||||||
<div class="panel-heading" role="tab" :id="'heading-' + id">
|
<div class="panel-heading">
|
||||||
<h3 class="panel-title">
|
<h3 class="panel-title">
|
||||||
<a role="button" data-toggle="collapse" :data-parent="parent" :href="'#collapse-' + id"
|
<a role="button" href="#" class="flex items-center justify-between" @click.prevent="expanded = !expanded">
|
||||||
aria-expanded="false" :aria-controls="'collapse-' + id">
|
<span>{{ title }}</span>
|
||||||
{{ title }}
|
<i class="fa fa-chevron-right transform" :class="{ 'rotate-90': expanded }"></i>
|
||||||
</a>
|
</a>
|
||||||
</h3>
|
</h3>
|
||||||
</div>
|
</div>
|
||||||
<div :id="'collapse-' + id" class="panel-collapse collapse" role="tabpanel" :aria-labelledby="'headine-' + id">
|
<div :class="{ 'hidden': !expanded }">
|
||||||
<div class="panel-body">
|
<div class="panel-body">
|
||||||
<slot></slot>
|
<slot></slot>
|
||||||
</div>
|
</div>
|
||||||
@@ -22,6 +22,7 @@
|
|||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
id: null,
|
id: null,
|
||||||
|
expanded: false,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
|
|||||||
+1
-1
@@ -8,7 +8,7 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
<tr v-for="contingent in contingents" :key="contingent.id">
|
<tr v-for="contingent in contingents" :key="contingent.id">
|
||||||
<th>{{ contingent.name }}</th>
|
<th>{{ contingent.name }}</th>
|
||||||
<td><span class="label" :class="contingent.available > 0 ? 'label-success' : 'label-danger'">{{ contingent.available }}</span></td>
|
<td><span class="label" :class="contingent.available > 0 ? 'label-success' : 'label-danger'">{{ contingent.available >= 0 ? contingent.available : 0 }}</span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
<panel title="Gebuchte Zusatzleistungen">
|
<panel title="Gebuchte Zusatzleistungen">
|
||||||
<ul class="list-group">
|
<ul class="list-group">
|
||||||
<li class="list-group-item" v-for="(assignment, serviceId) in serviceAssignments">
|
<li class="list-group-item" v-for="(assignment, serviceId) in serviceAssignments">
|
||||||
{{ services[serviceId].name }}: {{ assignment.join(', ')}}
|
{{ services[serviceId].name }}: {{ assignment.length }}
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</panel>
|
</panel>
|
||||||
@@ -48,4 +48,4 @@
|
|||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user