@asd20/ui 3.2.559 → 3.2.561

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
@@ -5,7 +5,7 @@
5
5
  "*.scss",
6
6
  "*.vue"
7
7
  ],
8
- "version": "3.2.559",
8
+ "version": "3.2.561",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -214,15 +214,14 @@ export default {
214
214
  },
215
215
  },
216
216
  mounted() {
217
+ const currentURL = new URL(window.location.href)
218
+ this.returnURL = currentURL.origin
217
219
  this.goBack()
218
220
  },
219
221
  methods: {
220
222
  goBack() {
221
223
  if (typeof window === 'undefined') return
222
- if (!document.referrer) {
223
- const currentURL = new URL(window.location.href)
224
- this.returnURL = currentURL.origin
225
- } else {
224
+ if (document.referrer !== undefined || '') {
226
225
  this.returnURL = document.referrer
227
226
  }
228
227
  // window.history.back()
@@ -1,25 +1,25 @@
1
1
  :root {
2
- --color__accent-s100: #041c2f;
3
- --color__accent-s90: #072a46;
4
- --color__accent-s80: #09395d;
5
- --color__accent-s70: #0b4775;
6
- --color__accent-s60: #0d558c;
7
- --color__accent-s50: #0f63a3;
8
- --color__accent-s40: #1171bb;
9
- --color__accent-s30: #147fd2;
10
- --color__accent-s20: #168ee9;
11
- --color__accent-s10: #2d99eb;
12
- --color__accent: #379eec;
13
- --color__accent-t10: #44a4ee;
14
- --color__accent-t20: #5cb0f0;
15
- --color__accent-t30: #73bbf2;
16
- --color__accent-t40: #8ac6f4;
17
- --color__accent-t50: #a2d2f6;
18
- --color__accent-t60: #b9ddf8;
19
- --color__accent-t70: #d0e8fb;
20
- --color__accent-t80: #e8f4fd;
2
+ --color__accent-s100: #000;
3
+ --color__accent-s90: #01040b;
4
+ --color__accent-s80: #030916;
5
+ --color__accent-s70: #0f1c50;
6
+ --color__accent-s60: #12205c;
7
+ --color__accent-s50: #142469;
8
+ --color__accent-s40: #182a7a;
9
+ --color__accent-s30: #1b2f87;
10
+ --color__accent-s20: #1e3493;
11
+ --color__accent-s10: #1e3493;
12
+ --color__accent: #225da5;
13
+ --color__accent-t10: #326aaf;
14
+ --color__accent-t20: #4479b9;
15
+ --color__accent-t30: #5b8bc4;
16
+ --color__accent-t40: #749dce;
17
+ --color__accent-t50: #8badd6;
18
+ --color__accent-t60: #a0bbdd;
19
+ --color__accent-t70: #b7cbe5;
20
+ --color__accent-t80: #cad9ec;
21
21
  --color__accent-t90: #dce5f1;
22
- --color__accent-t100: #ffffff;
22
+ --color__accent-t100: #fff;
23
23
  --color__on-accent: #ffffff;
24
24
  --color__on-primary: #ffffff;
25
25
  --color__on-secondary: #ffffff;