@webitel/ui-sdk 3.1.38 → 3.1.40
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/ui-sdk.common.js +39 -23
- package/dist/ui-sdk.common.js.map +1 -1
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.umd.js +39 -23
- package/dist/ui-sdk.umd.js.map +1 -1
- package/dist/ui-sdk.umd.min.js +8 -8
- package/dist/ui-sdk.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/organisms/wt-app-header/wt-app-navigator.vue +19 -0
- package/src/css/components/_components.scss +0 -1
- package/src/modules/QueryFilters/components/filter-datetime.vue +1 -1
- package/src/css/components/molecules/wt-datepicker/datepicker-calendar.scss +0 -90
- package/src/css/components/molecules/wt-datetimepicker/_variables.scss +0 -11
package/package.json
CHANGED
|
@@ -136,6 +136,25 @@
|
|
|
136
136
|
</a>
|
|
137
137
|
</li>
|
|
138
138
|
|
|
139
|
+
<li
|
|
140
|
+
v-if="formattedApps[WebitelApplications.AUDIT]"
|
|
141
|
+
:class="{'active': formattedApps[WebitelApplications.AUDIT].currentApp }"
|
|
142
|
+
class="wt-app-navigator__card"
|
|
143
|
+
>
|
|
144
|
+
<a
|
|
145
|
+
:href="formattedApps[WebitelApplications.AUDIT].href"
|
|
146
|
+
:title="$t(`webitelUI.appNavigator.${[WebitelApplications.AUDIT]}`)"
|
|
147
|
+
class="wt-app-navigator__card__link"
|
|
148
|
+
target="_blank"
|
|
149
|
+
>
|
|
150
|
+
<img
|
|
151
|
+
:alt="`${[WebitelApplications.AUDIT]}-pic`"
|
|
152
|
+
class="wt-app-navigator__card__img"
|
|
153
|
+
src="../../../assets/components/organisms/wt-app-header/app-navigator/app-audit.svg"
|
|
154
|
+
>
|
|
155
|
+
</a>
|
|
156
|
+
</li>
|
|
157
|
+
|
|
139
158
|
</ul>
|
|
140
159
|
</nav>
|
|
141
160
|
</transition>
|
|
@@ -18,7 +18,6 @@
|
|
|
18
18
|
@import "molecules/wt-radio/variables";
|
|
19
19
|
@import "molecules/wt-checkbox/variables";
|
|
20
20
|
@import "molecules/wt-datepicker/variables";
|
|
21
|
-
@import "molecules/wt-datetimepicker/variables";
|
|
22
21
|
@import "molecules/wt-input/variables";
|
|
23
22
|
@import "molecules/wt-notification/variables";
|
|
24
23
|
@import "molecules/wt-search-bar/variables";
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
.vdp-datepicker__calendar {
|
|
2
|
-
width: fit-content;
|
|
3
|
-
right: 0;
|
|
4
|
-
padding: var(--datepicker-calendar-padding);
|
|
5
|
-
border-radius: var(--border-radius);
|
|
6
|
-
box-shadow: var(-elevation-1);
|
|
7
|
-
|
|
8
|
-
header {
|
|
9
|
-
display: flex;
|
|
10
|
-
justify-content: space-between;
|
|
11
|
-
align-content: flex-end;
|
|
12
|
-
margin-bottom: var(--datepicker-calendar-header-margin);
|
|
13
|
-
line-height: 0;
|
|
14
|
-
|
|
15
|
-
.day__month_btn {
|
|
16
|
-
@extend %typo-body-1;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.prev, .next {
|
|
20
|
-
float: none;
|
|
21
|
-
text-indent: 0;
|
|
22
|
-
color: transparent;
|
|
23
|
-
cursor: pointer;
|
|
24
|
-
//background: red !important;
|
|
25
|
-
border: none !important; // hide default arrows
|
|
26
|
-
|
|
27
|
-
&:hover {
|
|
28
|
-
background: none;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
&:before, &:after {
|
|
32
|
-
display: none;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
// cells wrapper
|
|
38
|
-
& > div:last-child {
|
|
39
|
-
display: grid;
|
|
40
|
-
grid-template-columns: repeat(7, 32px);
|
|
41
|
-
grid-gap: var(--datepicker-cell-gap);
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.cell {
|
|
45
|
-
@extend %typo-body-1;
|
|
46
|
-
display: flex;
|
|
47
|
-
align-items: center;
|
|
48
|
-
justify-content: center;
|
|
49
|
-
width: var(--datepicker-cell-size);
|
|
50
|
-
height: var(--datepicker-cell-size);
|
|
51
|
-
padding: 0;
|
|
52
|
-
border: none !important;
|
|
53
|
-
transition: var(--transition);
|
|
54
|
-
|
|
55
|
-
&.day-header {
|
|
56
|
-
@extend %typo-caption;
|
|
57
|
-
color: var(--form-label-color);
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
&.day {
|
|
61
|
-
border-radius: var(--border-radius);
|
|
62
|
-
|
|
63
|
-
&.selected {
|
|
64
|
-
color: var(--datepicker-selected-cell-text-color);
|
|
65
|
-
background: var(--datepicker-selected-cell-bg-color) !important;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
&:not(.blank):not(.disabled).day:hover,
|
|
69
|
-
&:not(.blank):not(.disabled).month:hover,
|
|
70
|
-
&:not(.blank):not(.disabled).year:hover {
|
|
71
|
-
background: var(--datepicker-cell--hover-color);
|
|
72
|
-
border-color: transparent;
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
&.month {
|
|
77
|
-
&.selected {
|
|
78
|
-
&:hover {
|
|
79
|
-
background: var(--datepicker-selected-cell-bg-color) !important;
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
&:not(.blank):not(.disabled).day:hover,
|
|
84
|
-
&:not(.blank):not(.disabled).month:hover,
|
|
85
|
-
&:not(.blank):not(.disabled).year:hover {
|
|
86
|
-
background: var(--datepicker-selected-cell-bg-color) !important;
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
:root {
|
|
3
|
-
--datetimepicker-padding: var(--datepicker-padding);
|
|
4
|
-
--datetimepicker-icon-margin: var(--datepicker-icon-margin);
|
|
5
|
-
--datetimepicker-border: 1px solid;
|
|
6
|
-
|
|
7
|
-
--datetimepicker-form-padding: var(--spacing-xs);
|
|
8
|
-
--datetimepicker-form-bg-color: var(--main-color);
|
|
9
|
-
|
|
10
|
-
--datetimepicker-form-content-margin: var(--spacing-xs);
|
|
11
|
-
}
|