adata-ui 0.3.97 → 0.3.99

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adata-ui",
3
- "version": "0.3.97",
3
+ "version": "0.3.99",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -5,6 +5,15 @@ import FooterAccordion from "@/components/newComponents/FooterRedesign/FooterAcc
5
5
  export default {
6
6
  name: "FooterRedesign",
7
7
  components: {FooterAccordion},
8
+ props: {
9
+ mode: {
10
+ type: String,
11
+ required: true,
12
+ validator: function (value) {
13
+ return ["prod", "dev", "staging"].indexOf(value) !== -1;
14
+ },
15
+ }
16
+ },
8
17
  data() {
9
18
  return {
10
19
  main: {
@@ -48,7 +57,7 @@ export default {
48
57
  [
49
58
  {
50
59
  title: 'Комплаенс',
51
- link: `https://compliance.${this.environment}`,
60
+ link: `https://ac.${this.environment}/compliance`,
52
61
  isNew: true
53
62
  },
54
63
  {
@@ -58,7 +67,7 @@ export default {
58
67
  },
59
68
  {
60
69
  title: 'ВЭД',
61
- link: `https://fea.${this.environment}`,
70
+ link: `https://tnved.${this.environment}`,
62
71
  isNew: true
63
72
  }
64
73
  ]