adata-ui 4.0.24 → 4.0.26
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
|
@@ -13,7 +13,11 @@ interface Props {
|
|
|
13
13
|
module?: ProjectKeys;
|
|
14
14
|
oldVersion?: string;
|
|
15
15
|
}
|
|
16
|
-
declare
|
|
16
|
+
declare var __VLS_29: {};
|
|
17
|
+
type __VLS_Slots = {} & {
|
|
18
|
+
notifications?: (props: typeof __VLS_29) => any;
|
|
19
|
+
};
|
|
20
|
+
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {
|
|
17
21
|
daysRemaining: number;
|
|
18
22
|
limitRemaining: number;
|
|
19
23
|
module: ProjectKeys;
|
|
@@ -22,4 +26,10 @@ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
22
26
|
mobileHeaderType: "search" | "default";
|
|
23
27
|
showLogIn: boolean;
|
|
24
28
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
29
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
25
30
|
export default _default;
|
|
31
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
32
|
+
new (): {
|
|
33
|
+
$slots: S;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<script setup>
|
|
2
|
+
import { useRoute } from "vue-router";
|
|
2
3
|
import AIconMagnifyingGlass from "../icons/other-service/magnifying-glass.vue";
|
|
3
4
|
import AIconUsersThree from "../icons/other-service/users-three.vue";
|
|
4
5
|
import AIconLink from "../icons/other-service/link.vue";
|
|
@@ -10,6 +11,7 @@ import AIconStandingScales from "../icons/other-service/standing-scales.vue";
|
|
|
10
11
|
import AIconArrowTopRightOnSquare from "../icons/other-service/arrow-top-right-on-square.vue";
|
|
11
12
|
import { PAGES } from "../shared/constants/pages";
|
|
12
13
|
import { useAppConfig } from "#imports";
|
|
14
|
+
import { useLocalePath, useI18n } from "#i18n";
|
|
13
15
|
const { tm, rt, t } = useI18n();
|
|
14
16
|
const route = useRoute();
|
|
15
17
|
const localePath = useLocalePath();
|
|
@@ -48,7 +50,7 @@ async function handleClick(link) {
|
|
|
48
50
|
|
|
49
51
|
<template>
|
|
50
52
|
<section class="a-container mb-10 flex flex-col gap-4 lg:mb-20 lg:gap-8">
|
|
51
|
-
<h2 class="heading-02 md:heading-01 px-4 md:px-0">
|
|
53
|
+
<h2 class="heading-02 md:heading-01 px-4 md:px-0 lg:text-4xl text-2xl lg:text-left text-center font-bold">
|
|
52
54
|
{{ t("restTasks.title") }}
|
|
53
55
|
</h2>
|
|
54
56
|
<ul class="grid grid-cols-1 gap-3 px-4 sm:grid-cols-2 lg:grid-cols-3 md:px-0">
|