adata-ui 3.1.31 → 3.1.33
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/dist/module.json
CHANGED
|
@@ -17,7 +17,8 @@ const props = defineProps({
|
|
|
17
17
|
autocompleteOption: { type: null, required: false, default: void 0 },
|
|
18
18
|
autocompleteKey: { type: null, required: false, default: void 0 },
|
|
19
19
|
autocompleteFn: { type: Function, required: false, default: void 0 },
|
|
20
|
-
colorClasses: { type: String, required: false }
|
|
20
|
+
colorClasses: { type: String, required: false },
|
|
21
|
+
shadow: { type: Boolean, required: false, default: false }
|
|
21
22
|
});
|
|
22
23
|
const { t } = useI18n();
|
|
23
24
|
const uiConfig = {
|
|
@@ -190,7 +191,8 @@ defineExpose({
|
|
|
190
191
|
v-if="autocompleteList.length && isFocused"
|
|
191
192
|
:class="[
|
|
192
193
|
'absolute z-[31] w-full flex flex-col gap-4 rounded bg-white p-2 dark:bg-gray-900',
|
|
193
|
-
isDropdownUp ? 'bottom-[44px]' : 'top-[44px]'
|
|
194
|
+
isDropdownUp ? 'bottom-[44px]' : 'top-[44px]',
|
|
195
|
+
shadow ? 'autocomplete-shadow' : ''
|
|
194
196
|
]"
|
|
195
197
|
>
|
|
196
198
|
<ul
|
|
@@ -297,5 +299,5 @@ defineExpose({
|
|
|
297
299
|
</template>
|
|
298
300
|
|
|
299
301
|
<style scoped>
|
|
300
|
-
.input:-webkit-autofill~.label,.input:focus~.label,.input:not(:focus):valid~.label{font-size:10px;transform:translateY(-10px)}.input.sm:-webkit-autofill~.label,.input.sm:focus~.label,.input.sm:not(:focus):valid~.label{display:none}.input::-ms-clear,.input::-ms-reveal{display:none}.slide-in-enter-active{opacity:0;transform:translateY(-50%);transition:transform .5s;z-index:0}.slide-in-enter-to{z-index:auto}.slide-in-enter-to,.slide-in-leave-active{opacity:1;transform:translateY(0)}.slide-in-leave-to{opacity:0;transform:translateY(-100%)}.autocomplete-fade-enter-active,.autocomplete-fade-leave-active{transition:opacity .15s ease}.autocomplete-fade-enter-from,.autocomplete-fade-leave-to{opacity:0}.move-input{padding-left:40px!important}
|
|
302
|
+
.input:-webkit-autofill~.label,.input:focus~.label,.input:not(:focus):valid~.label{font-size:10px;transform:translateY(-10px)}.input.sm:-webkit-autofill~.label,.input.sm:focus~.label,.input.sm:not(:focus):valid~.label{display:none}.input::-ms-clear,.input::-ms-reveal{display:none}.autocomplete-shadow{box-shadow:0 1px 8px 0 #8b929c4d}.slide-in-enter-active{opacity:0;transform:translateY(-50%);transition:transform .5s;z-index:0}.slide-in-enter-to{z-index:auto}.slide-in-enter-to,.slide-in-leave-active{opacity:1;transform:translateY(0)}.slide-in-leave-to{opacity:0;transform:translateY(-100%)}.autocomplete-fade-enter-active,.autocomplete-fade-leave-active{transition:opacity .15s ease}.autocomplete-fade-enter-from,.autocomplete-fade-leave-to{opacity:0}.move-input{padding-left:40px!important}
|
|
301
303
|
</style>
|
|
@@ -25,6 +25,8 @@ import {
|
|
|
25
25
|
} from "#components";
|
|
26
26
|
import { ref, useI18n, useAppConfig, watch } from "#imports";
|
|
27
27
|
import { useCurrentModule } from "../../composables/projectState";
|
|
28
|
+
import ChartBar from "#icons/chartBar.vue";
|
|
29
|
+
import Bank from "#icons/bank.vue";
|
|
28
30
|
const tab = ref(useCurrentModule().value);
|
|
29
31
|
const { t } = useI18n();
|
|
30
32
|
const appConfig = useAppConfig();
|
|
@@ -39,8 +41,8 @@ const tabOptions = [
|
|
|
39
41
|
key: "pk"
|
|
40
42
|
},
|
|
41
43
|
{
|
|
42
|
-
name: "header.products.
|
|
43
|
-
key: "
|
|
44
|
+
name: "header.products.compliance.label",
|
|
45
|
+
key: "compliance"
|
|
44
46
|
},
|
|
45
47
|
{
|
|
46
48
|
name: "header.products.tenders.label",
|
|
@@ -50,17 +52,17 @@ const tabOptions = [
|
|
|
50
52
|
name: "header.products.analytics.label",
|
|
51
53
|
key: "analytics"
|
|
52
54
|
},
|
|
53
|
-
{
|
|
54
|
-
name: "header.products.fines.label",
|
|
55
|
-
key: "fines"
|
|
56
|
-
},
|
|
57
55
|
{
|
|
58
56
|
name: "header.products.fea.label",
|
|
59
57
|
key: "fea"
|
|
60
58
|
},
|
|
61
59
|
{
|
|
62
|
-
name: "header.products.
|
|
63
|
-
key: "
|
|
60
|
+
name: "header.products.fines.label",
|
|
61
|
+
key: "fines"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
name: "header.products.jobs.label",
|
|
65
|
+
key: "work"
|
|
64
66
|
}
|
|
65
67
|
];
|
|
66
68
|
const sideLinks = {
|
|
@@ -124,6 +126,16 @@ const sideLinks = {
|
|
|
124
126
|
}
|
|
125
127
|
],
|
|
126
128
|
tenders: [
|
|
129
|
+
{
|
|
130
|
+
icon: ChartBar,
|
|
131
|
+
label: t("header.products.tenders.items.monitoring.title"),
|
|
132
|
+
link: `https://zakupki.${mode}.kz` + PAGES.tender.monitoring
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
icon: Bank,
|
|
136
|
+
label: t("header.products.tenders.items.akimat.title"),
|
|
137
|
+
link: `https://zakupki.${mode}.kz` + PAGES.tender.akimat
|
|
138
|
+
},
|
|
127
139
|
{
|
|
128
140
|
icon: ISearch,
|
|
129
141
|
label: "header.products.tenders.items.tenders.title",
|