@afeefa/vue-app 0.0.95 → 0.0.96

Sign up to get free protection for your applications and to get access to all the features.
@@ -1 +1 @@
1
- 0.0.95
1
+ 0.0.96
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@afeefa/vue-app",
3
- "version": "0.0.95",
3
+ "version": "0.0.96",
4
4
  "description": "",
5
5
  "author": "Afeefa Kollektiv <kollektiv@afeefa.de>",
6
6
  "license": "MIT",
@@ -16,6 +16,11 @@ export class ApiAction extends ApiResourcesApiAction {
16
16
  return this
17
17
  }
18
18
 
19
+ minDuration (duration) {
20
+ this._minDuration = duration
21
+ return this
22
+ }
23
+
19
24
  dispatchGlobalLoadingEvents (dispatch = true) {
20
25
  this._dispatchGlobalLoadingEvents = dispatch
21
26
  return this
@@ -4,6 +4,7 @@
4
4
  :label="label || name"
5
5
  :validator="validator"
6
6
  v-bind="$attrs"
7
+ v-on="$listeners"
7
8
  @input="textFieldValueChanged"
8
9
  @blur="onBlur"
9
10
  />
@@ -93,6 +93,8 @@ export default class FlyingContextContainer extends Vue {
93
93
  background: white;
94
94
  transition: right .2s;
95
95
  padding: 2rem;
96
+ overflow-x: hidden;
97
+ overflow-y: scroll;
96
98
 
97
99
  &:not(.visible) {
98
100
  right: -80vw;