@lancom/shared 0.0.188 → 0.0.189

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.
@@ -125,7 +125,7 @@
125
125
  </validation-provider>
126
126
  <div class="form-actions full">
127
127
  <btn
128
- btn-class="purple"
128
+ :btn-class="btnClass"
129
129
  :btn-disabled="invalid || processing"
130
130
  :btn-processing="processing"
131
131
  btn-label="Contact Us"
@@ -172,7 +172,13 @@ import { mapGetters } from 'vuex';
172
172
  import api from '@lancom/shared/assets/js/api';
173
173
 
174
174
  export default {
175
- name: 'ContactUs',
175
+ name: 'LancomContactUs',
176
+ props: {
177
+ btnClass: {
178
+ type: String,
179
+ default: 'purple'
180
+ }
181
+ },
176
182
  data() {
177
183
  return {
178
184
  form: {},
package/nuxt.config.js CHANGED
@@ -27,6 +27,7 @@ module.exports = (config, axios, { raygunClient } = {}) => ({
27
27
  },
28
28
  exclude: [
29
29
  '/faq',
30
+ '/products/',
30
31
  '/preview/**',
31
32
  '/checkout/**',
32
33
  '/customer/**'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lancom/shared",
3
- "version": "0.0.188",
3
+ "version": "0.0.189",
4
4
  "description": "lancom common scripts",
5
5
  "author": "e.tokovenko <e.tokovenko@gmail.com>",
6
6
  "repository": {