shared-ritm 1.2.142 → 1.2.144

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.
@@ -42,6 +42,7 @@ export type Api_Project_Dto = {
42
42
  planned_start: string | null;
43
43
  planned_end: string | null;
44
44
  deleted_at: string | null;
45
+ completed_at: string | null;
45
46
  total_tasks: number;
46
47
  is_archive: boolean;
47
48
  teams: Api_Project_Team[];
@@ -43,6 +43,7 @@ export type Api_Search_User = {
43
43
  teams: Api_Search_User_Teams[];
44
44
  photos: Api_Search_User_Photos[];
45
45
  archiveHistory: Api_User_Archive_History_Item[];
46
+ has_brigades?: boolean;
46
47
  };
47
48
  export type Api_Search_Instruments = {
48
49
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shared-ritm",
3
- "version": "1.2.142",
3
+ "version": "1.2.144",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist",
@@ -46,6 +46,7 @@ export type Api_Project_Dto = {
46
46
  planned_start: string | null
47
47
  planned_end: string | null
48
48
  deleted_at: string | null
49
+ completed_at: string | null
49
50
  total_tasks: number
50
51
  is_archive: boolean
51
52
  teams: Api_Project_Team[]
@@ -49,6 +49,7 @@ export type Api_Search_User = {
49
49
  teams: Api_Search_User_Teams[]
50
50
  photos: Api_Search_User_Photos[]
51
51
  archiveHistory: Api_User_Archive_History_Item[]
52
+ has_brigades?: boolean
52
53
  }
53
54
 
54
55
  export type Api_Search_Instruments = {
@@ -9,6 +9,7 @@
9
9
  :mini-width="drawerMiniWidth"
10
10
  :breakpoint="960"
11
11
  show-if-above
12
+ persistent
12
13
  @mouseover="toggleSidebarMini(false)"
13
14
  @mouseout="toggleSidebarMini(true)"
14
15
  >
@@ -31,7 +32,7 @@
31
32
  <q-item-section avatar>
32
33
  <app-icon name="logo-icon" />
33
34
  </q-item-section>
34
- <q-item-section :class="$style['logo__text']">РИТМ</q-item-section>
35
+ <q-item-section :class="$style['logo__text']">{{ isSidebarMini ? '' : 'РИТМ' }}</q-item-section>
35
36
  </q-item>
36
37
  <q-btn
37
38
  dense
@@ -124,7 +125,6 @@ watch(
124
125
  }
125
126
  .logo {
126
127
  display: flex;
127
- justify-content: center;
128
128
  margin: 24px 0;
129
129
  &__text {
130
130
  color: white;
@@ -5,6 +5,7 @@
5
5
  header-class="text-purple"
6
6
  :class="[$style['menu-item'], { 'expansion-item-active': isRouteActive(item) && minify }]"
7
7
  :data-test="`sidebar-expansion-item-${(item.name || 'unnamed').toLowerCase().replace(/\s+/g, '-')}`"
8
+ :expand-icon-class="minify ? 'hidden' : ''"
8
9
  @update:model-value="expand = $event"
9
10
  >
10
11
  <template #header>
@@ -23,7 +24,7 @@
23
24
  <app-icon :name="item.icon" color="white" size="24px" />
24
25
  </q-item-section>
25
26
 
26
- <q-item-section :class="$style['menu-item__label']">{{ item.label }}</q-item-section>
27
+ <q-item-section :class="$style['menu-item__label']">{{ minify ? '' : item.label }}</q-item-section>
27
28
  </template>
28
29
 
29
30
  <sidebar-menu-item
@@ -50,7 +51,7 @@
50
51
  </q-item-section>
51
52
 
52
53
  <q-item-section :class="$style['menu-item__label']">
53
- <p>{{ item.label }}</p>
54
+ <p>{{ minify ? '' : item.label }}</p>
54
55
  </q-item-section>
55
56
  <q-tooltip
56
57
  :delay="100"