@afeefa/vue-app 0.0.143 → 0.0.145

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.
@@ -1 +1 @@
1
- 0.0.143
1
+ 0.0.145
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@afeefa/vue-app",
3
- "version": "0.0.143",
3
+ "version": "0.0.145",
4
4
  "description": "",
5
5
  "author": "Afeefa Kollektiv <kollektiv@afeefa.de>",
6
6
  "license": "MIT",
@@ -62,6 +62,8 @@ export class FormFieldMixin extends Vue {
62
62
  .fromRequest(request)
63
63
  .load()
64
64
 
65
+ this.$emit('optionsLoaded', models, this.model)
66
+
65
67
  const options = []
66
68
 
67
69
  if (!this.validator || !this.validator.getParam('filled')) {
@@ -19,8 +19,6 @@
19
19
  </div>
20
20
 
21
21
  <div id="flyingContextContainer__children" />
22
-
23
- <div class="v-navigation-drawer__border" />
24
22
  </div>
25
23
  </template>
26
24
 
@@ -99,22 +97,18 @@ export default class FlyingContextContainer extends Vue {
99
97
  right: 0;
100
98
  height: 100%;
101
99
  min-width: 400px;
102
- max-width: 50vw;
100
+ max-width: calc(100vw - 100px);
103
101
  top: 0;
104
102
  background: white;
105
103
  transition: right .2s;
106
104
  padding: 2rem;
107
105
  overflow-y: auto;
106
+ border-left: 1px solid rgba(0, 0, 0, .12);
108
107
 
109
108
  &:not(.visible) {
110
109
  right: -80vw;
111
110
  }
112
111
 
113
- .v-navigation-drawer__border {
114
- background-color: rgba(0, 0, 0, .12);
115
- left: 0;
116
- }
117
-
118
112
  .closeButton {
119
113
  margin: -1rem 0 2rem -1rem;
120
114
  }
@@ -192,7 +192,7 @@ export default class ListView extends Mixins(ListViewMixin) {
192
192
  margin-bottom: 2rem;
193
193
  }
194
194
 
195
- .a-table-row > :last-child {
195
+ :deep(.a-table-row > :last-child) {
196
196
  width: 100%;
197
197
  }
198
198