@fishawack/lab-velocity 1.10.0 → 1.10.2

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.
@@ -12,6 +12,7 @@ const store = {
12
12
  subscriptions: [],
13
13
  isSuperAdmin: false,
14
14
  redirect: process.env.HYDRATE_REDIRECT ?? 'index',
15
+ postLoginRedirect: process.env.HYDRATE_FRONTENDREDIRECT ?? process.env.HYDRATE_REDIRECT ?? 'index',
15
16
  autoLogin: process.env.HYDRATE_ADMIN === 'true' ? true: false,
16
17
  }
17
18
  },
@@ -120,7 +120,8 @@ export default {
120
120
  if (this.$store.state.auth.intended) {
121
121
  this.$router.push(this.$store.state.auth.intended);
122
122
  } else {
123
- this.$router.push({ name: "members" });
123
+ this.$router.push({ name: this.$store.state.auth.postLoginRedirect });
124
+ // this.$router.push({ name: "members" });
124
125
  // Problem here
125
126
  }
126
127
 
package/form/input.js CHANGED
@@ -36,6 +36,10 @@ export default {
36
36
  type: String,
37
37
  default: null,
38
38
  },
39
+ size: {
40
+ type: String,
41
+ default: null,
42
+ },
39
43
  error: {
40
44
  type: [String,Object],
41
45
  default: null,
package/form/input.vue CHANGED
@@ -46,6 +46,10 @@ export default {
46
46
  type: String,
47
47
  default: "text",
48
48
  },
49
+ size: {
50
+ type: String,
51
+ default: null,
52
+ },
49
53
  },
50
54
 
51
55
  methods: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fishawack/lab-velocity",
3
- "version": "1.10.0",
3
+ "version": "1.10.2",
4
4
  "description": "Avalere Health branded style system",
5
5
  "scripts": {
6
6
  "setup": "npm ci || npm i && npm run content",