@afeefa/vue-app 0.0.94 → 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.94
1
+ 0.0.96
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@afeefa/vue-app",
3
- "version": "0.0.94",
3
+ "version": "0.0.96",
4
4
  "description": "",
5
5
  "author": "Afeefa Kollektiv <kollektiv@afeefa.de>",
6
6
  "license": "MIT",
7
7
  "devDependencies": {
8
- "core-js": "^3.21.1",
9
- "vue": "^2.6.14",
8
+ "core-js": "^3.25.5",
9
+ "vue": "^2.7.10",
10
10
  "vue-class-component": "^7.2.6",
11
11
  "vue-property-decorator": "^9.1.2"
12
12
  }
@@ -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;