@webitel/ui-sdk 24.12.55 → 24.12.57

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "24.12.55",
3
+ "version": "24.12.57",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -25,30 +25,39 @@
25
25
 
26
26
  &__table-wrapper {
27
27
  display: flex;
28
+ flex: 1 1 100%;
28
29
  flex-direction: column;
29
30
  justify-content: space-between;
30
- flex: 1 1 100%;
31
31
  width: 100%;
32
- gap: var(--spacing-sm);
33
32
  min-height: 0;
33
+ gap: var(--spacing-sm);
34
34
 
35
35
  .wt-table__head {
36
36
  position: sticky;
37
- top: 0;
38
37
  z-index: 1;
38
+ top: 0;
39
39
  }
40
40
 
41
41
  .wt-pagination {
42
42
  margin-top: auto;
43
43
  }
44
44
  }
45
+
46
+ &__visible-scroll-wrapper {
47
+ overflow: visible;
48
+ height: 100%;
49
+
50
+ .wt-table {
51
+ overflow: visible;
52
+ }
53
+ }
45
54
  }
46
55
 
47
56
  .table-title {
48
57
  position: relative;
49
58
  display: flex;
50
- flex-wrap: wrap;
51
59
  align-items: center;
60
+ flex-wrap: wrap;
52
61
  justify-content: space-between;
53
62
  margin: var(--spacing-sm) 0;
54
63
 
@@ -28,8 +28,8 @@
28
28
  />
29
29
 
30
30
  <div class="table-section__table-wrapper">
31
- <div>
32
- <wt-table-transition v-if="dataList.length && !isLoading">
31
+ <div class="table-section__visible-scroll-wrapper">
32
+ <wt-table-transition v-if="dataList.length && !isLoading" >
33
33
  <wt-table
34
34
  :data="localizedDataList"
35
35
  :grid-actions="access.edit"
@@ -215,6 +215,10 @@ const applicationsAccess = (value = true) => ({
215
215
  _enabled: value,
216
216
  _locale: `WebitelApplications.${WebitelApplications.CRM}.sections.${CrmSections.CONTACT_GROUPS}`,
217
217
  },
218
+ [CrmSections.PRIORITIES]: {
219
+ _enabled: value,
220
+ _locale: `WebitelApplications.${WebitelApplications.CRM}.sections.${CrmSections.PRIORITIES}`,
221
+ },
218
222
  },
219
223
  });
220
224