adata-ui 0.3.7 → 0.3.8
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/README.md +7 -7
- package/babel.config.js +5 -5
- package/dist/adata-ui.common.js +5538 -33
- package/dist/adata-ui.common.js.map +1 -1
- package/dist/adata-ui.css +1 -1
- package/dist/adata-ui.umd.js +5538 -33
- package/dist/adata-ui.umd.js.map +1 -1
- package/dist/adata-ui.umd.min.js +2 -2
- package/dist/adata-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/public/index.html +17 -17
- package/src/components/ErrorPages/BadGateway.vue +131 -96
- package/src/components/ErrorPages/Forbidden.vue +300 -148
- package/src/components/ErrorPages/NotFound.vue +886 -340
- package/src/components/ErrorPages/Unavailable.vue +2589 -907
- package/src/components/Header/Header.vue +7 -2
- package/src/components/index.js +10 -10
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
{{ item.name }}
|
|
50
50
|
</a>
|
|
51
51
|
</div>
|
|
52
|
-
<div v-show="hasSearchField" class="mobile-search">
|
|
53
|
-
<div @click="$emit('search')" class="search-input">
|
|
52
|
+
<div v-show="hasSearchField || hasFavourites" class="mobile-search">
|
|
53
|
+
<div v-show="hasSearchField" @click="$emit('search')" class="search-input">
|
|
54
54
|
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
55
55
|
<path d="M14 13.9995L10.5967 10.596" stroke="#2C3E50" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
56
56
|
<circle cx="7" cy="7" r="5" stroke="#2C3E50" stroke-linecap="round" stroke-linejoin="round"/>
|
|
@@ -1124,6 +1124,7 @@ export default {
|
|
|
1124
1124
|
@media (max-width: 1025px) {
|
|
1125
1125
|
display: flex;
|
|
1126
1126
|
align-items: center;
|
|
1127
|
+
justify-content: flex-end;
|
|
1127
1128
|
gap: 8px;
|
|
1128
1129
|
width: 100%;
|
|
1129
1130
|
}
|
|
@@ -1141,6 +1142,10 @@ export default {
|
|
|
1141
1142
|
line-height: 20px;
|
|
1142
1143
|
cursor: pointer;
|
|
1143
1144
|
}
|
|
1145
|
+
a {
|
|
1146
|
+
height: 100%;
|
|
1147
|
+
max-height: 100%;
|
|
1148
|
+
}
|
|
1144
1149
|
.favorite-btn {
|
|
1145
1150
|
background: rgba(189, 199, 206, 0.2);
|
|
1146
1151
|
display: flex;
|
package/src/components/index.js
CHANGED
|
@@ -12,11 +12,11 @@ import ASearchTextField from "./SearchTextField/SearchTextField";
|
|
|
12
12
|
import AMailTo from "./MailTo/MailTo";
|
|
13
13
|
import ATable from "./Table/ATable";
|
|
14
14
|
import ALoader from "./Loader/Loader";
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
15
|
+
import ABadGateway from "./ErrorPages/BadGateway";
|
|
16
|
+
import AForbidden from "./ErrorPages/Forbidden";
|
|
17
|
+
import AInternalServerError from "./ErrorPages/InternalServerError";
|
|
18
|
+
import ANotFound from "./ErrorPages/NotFound";
|
|
19
|
+
import AUnavailable from "./ErrorPages/Unavailable";
|
|
20
20
|
|
|
21
21
|
const Components = {
|
|
22
22
|
ACheckbox,
|
|
@@ -32,11 +32,11 @@ const Components = {
|
|
|
32
32
|
ATable,
|
|
33
33
|
ALoader,
|
|
34
34
|
ACheckboxMenu,
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
35
|
+
ABadGateway,
|
|
36
|
+
AForbidden,
|
|
37
|
+
AInternalServerError,
|
|
38
|
+
ANotFound,
|
|
39
|
+
AUnavailable,
|
|
40
40
|
};
|
|
41
41
|
|
|
42
42
|
Object.keys(Components).forEach((name) => {
|