@beterdichtbij/component-library 0.72.5-beta.6 → 0.72.6
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/README.md +12 -12
- package/dist/bd-component-lib.cjs.js +56 -56
- package/dist/bd-component-lib.css +1 -1
- package/dist/bd-component-lib.es.js +242 -266
- package/dist/bd-component-lib.umd.js +67 -67
- package/dist/locales/en.json +79 -79
- package/dist/locales/nl.json +180 -180
- package/dist/scss/_active-filters.scss +65 -65
- package/dist/scss/_alert.scss +11 -11
- package/dist/scss/_article.scss +31 -31
- package/dist/scss/_assign-conversation-modal.scss +13 -13
- package/dist/scss/_attachments.scss +107 -107
- package/dist/scss/_badge.scss +18 -18
- package/dist/scss/_button.scss +80 -80
- package/dist/scss/_card.scss +62 -62
- package/dist/scss/_chatcloud.scss +99 -99
- package/dist/scss/_collapsable-card.scss +103 -103
- package/dist/scss/_content-library-card-message-template.scss +136 -136
- package/dist/scss/_content-library-card.scss +158 -158
- package/dist/scss/_content-library-modal.scss +8 -8
- package/dist/scss/_content-library-overview.scss +4 -4
- package/dist/scss/_content-library-split-button.scss +23 -23
- package/dist/scss/_conversation-to-text-modal.scss +36 -36
- package/dist/scss/_dropdown.scss +113 -113
- package/dist/scss/_extern.scss +1 -1
- package/dist/scss/_file-upload-preview.scss +53 -53
- package/dist/scss/_file-upload.scss +26 -26
- package/dist/scss/_filter-card.scss +64 -64
- package/dist/scss/_form-field.scss +12 -12
- package/dist/scss/_form-multiple-checkbox.scss +51 -51
- package/dist/scss/_forms.scss +3 -3
- package/dist/scss/_header.scss +170 -170
- package/dist/scss/_icon-luscii-logo.scss +31 -31
- package/dist/scss/_icons.scss +38 -38
- package/dist/scss/_image-attachment-modal.scss +91 -91
- package/dist/scss/_input-group.scss +2 -2
- package/dist/scss/_loader.scss +59 -59
- package/dist/scss/_markdown-editor.scss +127 -114
- package/dist/scss/_message-template-form-modal.scss +32 -47
- package/dist/scss/_mixins.scss +78 -78
- package/dist/scss/_mobile-menu.scss +91 -91
- package/dist/scss/_modal.scss +182 -182
- package/dist/scss/_notification-button.scss +29 -29
- package/dist/scss/_pagination.scss +56 -56
- package/dist/scss/_phone-number-edit-modal.scss +35 -35
- package/dist/scss/_pill-container.scss +26 -26
- package/dist/scss/_pill.scss +63 -63
- package/dist/scss/_profile-image.scss +34 -34
- package/dist/scss/_table-sort-header.scss +13 -13
- package/dist/scss/_table.scss +16 -16
- package/dist/scss/_templates.scss +264 -264
- package/dist/scss/_toast.scss +69 -69
- package/dist/scss/_user-information.scss +34 -34
- package/dist/scss/_user.scss +21 -21
- package/dist/scss/_video-call-toast.scss +100 -100
- package/dist/scss/_zoomslider.scss +77 -77
- package/dist/scss/base/variables.scss +210 -210
- package/dist/scss/extern/_bootstrap.scss +14 -14
- package/dist/scss/extern/_prime-vue.scss +551 -551
- package/dist/scss/forms/_form-check.scss +16 -16
- package/dist/scss/forms/_form-input.scss +9 -9
- package/dist/scss/forms/_form-select.scss +4 -4
- package/dist/scss/main.scss +52 -52
- package/dist/scss/templates/_change-password-template.scss +8 -8
- package/dist/scss/templates/_content-library-template.scss +135 -135
- package/dist/scss/templates/_not-found-template.scss +35 -35
- package/dist/scss/templates/_video-call-template.scss +225 -225
- package/dist/stores/SessionTimeOutStore.ts +46 -46
- package/package.json +133 -133
|
@@ -1,226 +1,226 @@
|
|
|
1
|
-
.video-call-template {
|
|
2
|
-
$small-text: .8rem;
|
|
3
|
-
|
|
4
|
-
.bd-conversation-card {
|
|
5
|
-
margin-bottom: 20px;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.incoming,
|
|
9
|
-
.outgoing {
|
|
10
|
-
.card {
|
|
11
|
-
padding: 20px;
|
|
12
|
-
row-gap: 20px;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
&__video {
|
|
16
|
-
display: block;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
&__screenshare {
|
|
20
|
-
display: none;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
&__video,
|
|
24
|
-
&__screenshare {
|
|
25
|
-
justify-content: center;
|
|
26
|
-
align-items: center;
|
|
27
|
-
width: 100%;
|
|
28
|
-
border-radius: 4px;
|
|
29
|
-
background-color: $color-bg;
|
|
30
|
-
overflow: hidden;
|
|
31
|
-
font-size: 0;
|
|
32
|
-
|
|
33
|
-
div {
|
|
34
|
-
width: 100%;
|
|
35
|
-
height: 100%;
|
|
36
|
-
display: flex;
|
|
37
|
-
align-items: center;
|
|
38
|
-
justify-content: center;
|
|
39
|
-
|
|
40
|
-
video {
|
|
41
|
-
width: 100%;
|
|
42
|
-
object-fit: contain !important;
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
&__available-cameras-count {
|
|
48
|
-
font-size: $small-text;
|
|
49
|
-
margin: 0;
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.incoming {
|
|
54
|
-
&--loading,
|
|
55
|
-
&--declined,
|
|
56
|
-
&--hangup {
|
|
57
|
-
.card {
|
|
58
|
-
justify-content: center;
|
|
59
|
-
align-items: center;
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.card {
|
|
64
|
-
height: 680px;
|
|
65
|
-
|
|
66
|
-
@include media-breakpoint-down(sm) {
|
|
67
|
-
height: unset;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
button {
|
|
71
|
-
width: fit-content;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.permissions-denied__audio,
|
|
75
|
-
.permissions-denied__video {
|
|
76
|
-
display: flex;
|
|
77
|
-
gap: 16px;
|
|
78
|
-
align-items: baseline;
|
|
79
|
-
justify-content: center;
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
&__video,
|
|
84
|
-
&__screenshare {
|
|
85
|
-
height: 580px;
|
|
86
|
-
|
|
87
|
-
@include media-breakpoint-down(sm) {
|
|
88
|
-
height: 200px;
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
&__settings {
|
|
93
|
-
display: flex;
|
|
94
|
-
justify-content: center;
|
|
95
|
-
align-items: center;
|
|
96
|
-
gap: 8px;
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
.side {
|
|
101
|
-
display: flex;
|
|
102
|
-
flex-direction: column;
|
|
103
|
-
height: 100%;
|
|
104
|
-
gap: 20px;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.outgoing {
|
|
108
|
-
margin-bottom: 20px;
|
|
109
|
-
|
|
110
|
-
&__video {
|
|
111
|
-
height: 200px;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
.permissions-denied__video {
|
|
115
|
-
display: flex;
|
|
116
|
-
align-items: center;
|
|
117
|
-
flex-direction: column;
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
.settings {
|
|
122
|
-
border: 1px solid $gray;
|
|
123
|
-
padding: 20px;
|
|
124
|
-
border-radius: 8px;
|
|
125
|
-
margin-top: 20px;
|
|
126
|
-
|
|
127
|
-
p {
|
|
128
|
-
color: hsla(221, 13%, 48%, 1);
|
|
129
|
-
|
|
130
|
-
&:last-of-type {
|
|
131
|
-
margin-bottom: 0;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
&__status {
|
|
136
|
-
border-bottom: 2px solid $gray;
|
|
137
|
-
padding-bottom: 20px;
|
|
138
|
-
|
|
139
|
-
&-text {
|
|
140
|
-
margin-bottom: 8px;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
&-detail {
|
|
144
|
-
margin-bottom: 16px;
|
|
145
|
-
font-size: $small-text;
|
|
146
|
-
line-height: 21px;
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
&__signal {
|
|
151
|
-
display: flex;
|
|
152
|
-
align-items: center;
|
|
153
|
-
padding: 20px 0;
|
|
154
|
-
gap: 12px;
|
|
155
|
-
border-bottom: 1px solid $gray;
|
|
156
|
-
|
|
157
|
-
&.weak {
|
|
158
|
-
.indicator li:nth-child(1) {
|
|
159
|
-
background-color: $danger;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
&.steady {
|
|
164
|
-
.indicator li:nth-child(1),
|
|
165
|
-
.indicator li:nth-child(2) {
|
|
166
|
-
background-color: $warning;
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
&.strong {
|
|
171
|
-
.indicator li {
|
|
172
|
-
background-color: $success;
|
|
173
|
-
}
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
.indicator {
|
|
177
|
-
list-style: none;
|
|
178
|
-
display: flex;
|
|
179
|
-
align-items: flex-end;
|
|
180
|
-
margin: 0;
|
|
181
|
-
padding: 0;
|
|
182
|
-
gap: 2px;
|
|
183
|
-
|
|
184
|
-
li {
|
|
185
|
-
width: 6px;
|
|
186
|
-
border-radius: 1.6px;
|
|
187
|
-
background-color: $gray;
|
|
188
|
-
|
|
189
|
-
&:nth-child(1) {
|
|
190
|
-
height: 7px;
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
&:nth-child(2) {
|
|
194
|
-
height: 13px;
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
&:nth-child(3) {
|
|
198
|
-
height: 20px;
|
|
199
|
-
}
|
|
200
|
-
}
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
p {
|
|
204
|
-
margin-bottom: 0;
|
|
205
|
-
line-height: 20px;
|
|
206
|
-
}
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
&__help {
|
|
210
|
-
padding-top: 20px;
|
|
211
|
-
|
|
212
|
-
p {
|
|
213
|
-
font-size: $small-text;
|
|
214
|
-
line-height: 21px;
|
|
215
|
-
|
|
216
|
-
&:last-of-type {
|
|
217
|
-
margin-bottom: 0;
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
b {
|
|
221
|
-
font-weight: 600;
|
|
222
|
-
}
|
|
223
|
-
}
|
|
224
|
-
}
|
|
225
|
-
}
|
|
1
|
+
.video-call-template {
|
|
2
|
+
$small-text: .8rem;
|
|
3
|
+
|
|
4
|
+
.bd-conversation-card {
|
|
5
|
+
margin-bottom: 20px;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.incoming,
|
|
9
|
+
.outgoing {
|
|
10
|
+
.card {
|
|
11
|
+
padding: 20px;
|
|
12
|
+
row-gap: 20px;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
&__video {
|
|
16
|
+
display: block;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
&__screenshare {
|
|
20
|
+
display: none;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&__video,
|
|
24
|
+
&__screenshare {
|
|
25
|
+
justify-content: center;
|
|
26
|
+
align-items: center;
|
|
27
|
+
width: 100%;
|
|
28
|
+
border-radius: 4px;
|
|
29
|
+
background-color: $color-bg;
|
|
30
|
+
overflow: hidden;
|
|
31
|
+
font-size: 0;
|
|
32
|
+
|
|
33
|
+
div {
|
|
34
|
+
width: 100%;
|
|
35
|
+
height: 100%;
|
|
36
|
+
display: flex;
|
|
37
|
+
align-items: center;
|
|
38
|
+
justify-content: center;
|
|
39
|
+
|
|
40
|
+
video {
|
|
41
|
+
width: 100%;
|
|
42
|
+
object-fit: contain !important;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
&__available-cameras-count {
|
|
48
|
+
font-size: $small-text;
|
|
49
|
+
margin: 0;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.incoming {
|
|
54
|
+
&--loading,
|
|
55
|
+
&--declined,
|
|
56
|
+
&--hangup {
|
|
57
|
+
.card {
|
|
58
|
+
justify-content: center;
|
|
59
|
+
align-items: center;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.card {
|
|
64
|
+
height: 680px;
|
|
65
|
+
|
|
66
|
+
@include media-breakpoint-down(sm) {
|
|
67
|
+
height: unset;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
button {
|
|
71
|
+
width: fit-content;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.permissions-denied__audio,
|
|
75
|
+
.permissions-denied__video {
|
|
76
|
+
display: flex;
|
|
77
|
+
gap: 16px;
|
|
78
|
+
align-items: baseline;
|
|
79
|
+
justify-content: center;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
&__video,
|
|
84
|
+
&__screenshare {
|
|
85
|
+
height: 580px;
|
|
86
|
+
|
|
87
|
+
@include media-breakpoint-down(sm) {
|
|
88
|
+
height: 200px;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
&__settings {
|
|
93
|
+
display: flex;
|
|
94
|
+
justify-content: center;
|
|
95
|
+
align-items: center;
|
|
96
|
+
gap: 8px;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.side {
|
|
101
|
+
display: flex;
|
|
102
|
+
flex-direction: column;
|
|
103
|
+
height: 100%;
|
|
104
|
+
gap: 20px;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.outgoing {
|
|
108
|
+
margin-bottom: 20px;
|
|
109
|
+
|
|
110
|
+
&__video {
|
|
111
|
+
height: 200px;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.permissions-denied__video {
|
|
115
|
+
display: flex;
|
|
116
|
+
align-items: center;
|
|
117
|
+
flex-direction: column;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.settings {
|
|
122
|
+
border: 1px solid $gray;
|
|
123
|
+
padding: 20px;
|
|
124
|
+
border-radius: 8px;
|
|
125
|
+
margin-top: 20px;
|
|
126
|
+
|
|
127
|
+
p {
|
|
128
|
+
color: hsla(221, 13%, 48%, 1);
|
|
129
|
+
|
|
130
|
+
&:last-of-type {
|
|
131
|
+
margin-bottom: 0;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
&__status {
|
|
136
|
+
border-bottom: 2px solid $gray;
|
|
137
|
+
padding-bottom: 20px;
|
|
138
|
+
|
|
139
|
+
&-text {
|
|
140
|
+
margin-bottom: 8px;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
&-detail {
|
|
144
|
+
margin-bottom: 16px;
|
|
145
|
+
font-size: $small-text;
|
|
146
|
+
line-height: 21px;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
&__signal {
|
|
151
|
+
display: flex;
|
|
152
|
+
align-items: center;
|
|
153
|
+
padding: 20px 0;
|
|
154
|
+
gap: 12px;
|
|
155
|
+
border-bottom: 1px solid $gray;
|
|
156
|
+
|
|
157
|
+
&.weak {
|
|
158
|
+
.indicator li:nth-child(1) {
|
|
159
|
+
background-color: $danger;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
&.steady {
|
|
164
|
+
.indicator li:nth-child(1),
|
|
165
|
+
.indicator li:nth-child(2) {
|
|
166
|
+
background-color: $warning;
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
&.strong {
|
|
171
|
+
.indicator li {
|
|
172
|
+
background-color: $success;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.indicator {
|
|
177
|
+
list-style: none;
|
|
178
|
+
display: flex;
|
|
179
|
+
align-items: flex-end;
|
|
180
|
+
margin: 0;
|
|
181
|
+
padding: 0;
|
|
182
|
+
gap: 2px;
|
|
183
|
+
|
|
184
|
+
li {
|
|
185
|
+
width: 6px;
|
|
186
|
+
border-radius: 1.6px;
|
|
187
|
+
background-color: $gray;
|
|
188
|
+
|
|
189
|
+
&:nth-child(1) {
|
|
190
|
+
height: 7px;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
&:nth-child(2) {
|
|
194
|
+
height: 13px;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
&:nth-child(3) {
|
|
198
|
+
height: 20px;
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
p {
|
|
204
|
+
margin-bottom: 0;
|
|
205
|
+
line-height: 20px;
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
&__help {
|
|
210
|
+
padding-top: 20px;
|
|
211
|
+
|
|
212
|
+
p {
|
|
213
|
+
font-size: $small-text;
|
|
214
|
+
line-height: 21px;
|
|
215
|
+
|
|
216
|
+
&:last-of-type {
|
|
217
|
+
margin-bottom: 0;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
b {
|
|
221
|
+
font-weight: 600;
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
226
|
}
|
|
@@ -1,47 +1,47 @@
|
|
|
1
|
-
import { defineStore } from 'pinia';
|
|
2
|
-
import dayjs from 'dayjs';
|
|
3
|
-
import { ref } from 'vue';
|
|
4
|
-
|
|
5
|
-
export const useSessionTimeOutStore = defineStore('SessionTimeOutStore', () => {
|
|
6
|
-
const threshold = ref(null)
|
|
7
|
-
const warningThreshold = ref(null);
|
|
8
|
-
const time: any = ref(dayjs());
|
|
9
|
-
const taskId = ref(null);
|
|
10
|
-
|
|
11
|
-
const SetDefaultSessionTimeOutValues = (ServerDefaultValues : any) => {
|
|
12
|
-
threshold.value = ServerDefaultValues.TimeOutSessionInMinutes;
|
|
13
|
-
warningThreshold.value = ServerDefaultValues.TimeOutSessionShowWarning;
|
|
14
|
-
SetNewTime();
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
const SetNewTime = () => {
|
|
18
|
-
time.value = dayjs();
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
const SetTaskId = (id : any) => {
|
|
22
|
-
taskId.value = id;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
const ClearSessionTimeOut = () => {
|
|
26
|
-
if (taskId.value) {
|
|
27
|
-
clearInterval(taskId.value);
|
|
28
|
-
}
|
|
29
|
-
threshold.value = null
|
|
30
|
-
warningThreshold.value = null;
|
|
31
|
-
time.value = null;
|
|
32
|
-
taskId.value = null;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
const GetTime = () => time.value;
|
|
36
|
-
|
|
37
|
-
return {
|
|
38
|
-
SetDefaultSessionTimeOutValues,
|
|
39
|
-
SetTaskId,
|
|
40
|
-
ClearSessionTimeOut,
|
|
41
|
-
threshold,
|
|
42
|
-
warningThreshold,
|
|
43
|
-
taskId,
|
|
44
|
-
GetTime,
|
|
45
|
-
SetNewTime
|
|
46
|
-
}
|
|
1
|
+
import { defineStore } from 'pinia';
|
|
2
|
+
import dayjs from 'dayjs';
|
|
3
|
+
import { ref } from 'vue';
|
|
4
|
+
|
|
5
|
+
export const useSessionTimeOutStore = defineStore('SessionTimeOutStore', () => {
|
|
6
|
+
const threshold = ref(null)
|
|
7
|
+
const warningThreshold = ref(null);
|
|
8
|
+
const time: any = ref(dayjs());
|
|
9
|
+
const taskId = ref(null);
|
|
10
|
+
|
|
11
|
+
const SetDefaultSessionTimeOutValues = (ServerDefaultValues : any) => {
|
|
12
|
+
threshold.value = ServerDefaultValues.TimeOutSessionInMinutes;
|
|
13
|
+
warningThreshold.value = ServerDefaultValues.TimeOutSessionShowWarning;
|
|
14
|
+
SetNewTime();
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
const SetNewTime = () => {
|
|
18
|
+
time.value = dayjs();
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
const SetTaskId = (id : any) => {
|
|
22
|
+
taskId.value = id;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
const ClearSessionTimeOut = () => {
|
|
26
|
+
if (taskId.value) {
|
|
27
|
+
clearInterval(taskId.value);
|
|
28
|
+
}
|
|
29
|
+
threshold.value = null
|
|
30
|
+
warningThreshold.value = null;
|
|
31
|
+
time.value = null;
|
|
32
|
+
taskId.value = null;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
const GetTime = () => time.value;
|
|
36
|
+
|
|
37
|
+
return {
|
|
38
|
+
SetDefaultSessionTimeOutValues,
|
|
39
|
+
SetTaskId,
|
|
40
|
+
ClearSessionTimeOut,
|
|
41
|
+
threshold,
|
|
42
|
+
warningThreshold,
|
|
43
|
+
taskId,
|
|
44
|
+
GetTime,
|
|
45
|
+
SetNewTime
|
|
46
|
+
}
|
|
47
47
|
})
|