hl-core 0.0.7-beta.4 → 0.0.7-beta.5
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.
|
@@ -22,7 +22,7 @@ export type InputTypes =
|
|
|
22
22
|
| 'url'
|
|
23
23
|
| 'week';
|
|
24
24
|
|
|
25
|
-
export
|
|
25
|
+
export type TaskListItem = {
|
|
26
26
|
addRegNumber: string | number;
|
|
27
27
|
applicationTaskId: string;
|
|
28
28
|
dateCreated: string;
|
|
@@ -40,4 +40,4 @@ export interface TaskListItem {
|
|
|
40
40
|
status: string;
|
|
41
41
|
userId: string;
|
|
42
42
|
userName: string;
|
|
43
|
-
}
|
|
43
|
+
};
|
package/layouts/default.vue
CHANGED
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
<base-menu-nav
|
|
9
9
|
v-model="$dataStore.menu.selectedItem"
|
|
10
10
|
:selected="$dataStore.menu.selectedItem"
|
|
11
|
-
:title="$dataStore.menu.title
|
|
12
|
-
:has-back="$dataStore.menu.hasBack
|
|
13
|
-
:back-icon="$dataStore.menu.backIcon
|
|
11
|
+
:title="$dataStore.menu.title ?? 'Страховые продукты'"
|
|
12
|
+
:has-back="$dataStore.menu.hasBack ?? false"
|
|
13
|
+
:back-icon="$dataStore.menu.backIcon ?? 'mdi-arrow-left'"
|
|
14
14
|
:class="{
|
|
15
15
|
'!hidden':
|
|
16
16
|
!$display().lgAndUp.value && !!$dataStore.menu.selectedItem.title,
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
>
|
|
21
21
|
<template #end>
|
|
22
22
|
<base-loader
|
|
23
|
-
v-if="$dataStore.menu.loading
|
|
23
|
+
v-if="$dataStore.menu.loading"
|
|
24
24
|
class="self-center m-5 opacity-70"
|
|
25
25
|
></base-loader>
|
|
26
26
|
</template>
|
package/nuxt.config.ts
CHANGED
|
@@ -3,10 +3,10 @@ import path from 'path';
|
|
|
3
3
|
export default defineNuxtConfig({
|
|
4
4
|
ssr: false,
|
|
5
5
|
|
|
6
|
-
modules: ['@pinia/nuxt', '@nuxtjs/tailwindcss'],
|
|
6
|
+
modules: ['@pinia/nuxt', '@nuxtjs/tailwindcss', '@nuxt/devtools'],
|
|
7
7
|
|
|
8
8
|
imports: {
|
|
9
|
-
dirs: ['store', 'composables'
|
|
9
|
+
dirs: ['store', 'composables'],
|
|
10
10
|
},
|
|
11
11
|
|
|
12
12
|
vite: {
|
package/package.json
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hl-core",
|
|
3
|
-
"version": "0.0.7-beta.
|
|
3
|
+
"version": "0.0.7-beta.5",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "nuxt.config.ts",
|
|
7
7
|
"files": [
|
|
8
8
|
"api/",
|
|
9
|
-
"models/",
|
|
10
9
|
"store/",
|
|
11
10
|
"layouts/",
|
|
12
11
|
"composables/",
|
|
@@ -24,6 +23,7 @@
|
|
|
24
23
|
"preview": "nuxt preview"
|
|
25
24
|
},
|
|
26
25
|
"devDependencies": {
|
|
26
|
+
"@nuxt/devtools": "^0.2.5",
|
|
27
27
|
"nuxt": "^3.2.3",
|
|
28
28
|
"prettier": "^2.8.4",
|
|
29
29
|
"typescript": "^4.9.5"
|
package/store/messages.ts
CHANGED
|
@@ -183,6 +183,10 @@ export const messages = {
|
|
|
183
183
|
assignee: 'Исполнитель',
|
|
184
184
|
initiator: 'Инициатор',
|
|
185
185
|
reason: 'Причина',
|
|
186
|
+
dateCreated: 'Дата начала',
|
|
187
|
+
factEndDate: 'Дата завершения',
|
|
188
|
+
decision: 'Статус',
|
|
189
|
+
userFullName: 'Исполнитель',
|
|
186
190
|
},
|
|
187
191
|
labels: {
|
|
188
192
|
search: 'Поиск',
|
package/tailwind.config.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
theme: {
|
|
3
|
-
screens: {
|
|
4
|
-
sm: { min: '600px' },
|
|
5
|
-
md: { min: '960px' },
|
|
6
|
-
lg: { min: '1280px' },
|
|
7
|
-
xl: { min: '1920px' },
|
|
8
|
-
},
|
|
9
|
-
},
|
|
10
|
-
};
|
|
1
|
+
module.exports = {
|
|
2
|
+
theme: {
|
|
3
|
+
screens: {
|
|
4
|
+
sm: { min: '600px' },
|
|
5
|
+
md: { min: '960px' },
|
|
6
|
+
lg: { min: '1280px' },
|
|
7
|
+
xl: { min: '1920px' },
|
|
8
|
+
},
|
|
9
|
+
},
|
|
10
|
+
};
|