@tencentcloud/ai-desk-customer-vue 1.1.0 → 1.4.0
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/CHANGELOG.md +16 -3
- package/assets/customer_avatar.png +0 -0
- package/assets/face.svg +10 -0
- package/assets/files.svg +5 -0
- package/assets/image.svg +8 -0
- package/assets/rating_tool_icon.svg +5 -0
- package/assets/rating_tool_icon_h5.svg +1 -0
- package/assets/video.svg +8 -0
- package/assets/video_h5.svg +1 -0
- package/components/CustomerServiceChat/chat-header/index-web.vue +16 -14
- package/components/CustomerServiceChat/index-web.vue +72 -16
- package/components/CustomerServiceChat/message-input/index-web.vue +31 -5
- package/components/CustomerServiceChat/message-input/message-input-editor-web.vue +24 -0
- package/components/CustomerServiceChat/message-input-toolbar/emoji-picker/emoji-picker-dialog.vue +1 -1
- package/components/CustomerServiceChat/message-input-toolbar/emoji-picker/index.vue +1 -1
- package/components/CustomerServiceChat/message-input-toolbar/file-upload/index.vue +6 -8
- package/components/CustomerServiceChat/message-input-toolbar/image-upload/index.vue +11 -16
- package/components/CustomerServiceChat/message-input-toolbar/index-web.vue +61 -18
- package/components/CustomerServiceChat/message-input-toolbar/rating-tool/index.vue +72 -0
- package/components/CustomerServiceChat/message-input-toolbar/toolbar-item-container/style/h5.scss +10 -1
- package/components/CustomerServiceChat/message-input-toolbar/user-define-input-tool.vue +80 -0
- package/components/CustomerServiceChat/message-input-toolbar/video-upload/index.vue +9 -14
- package/components/CustomerServiceChat/message-list/index-web.vue +34 -6
- package/components/CustomerServiceChat/message-list/message-elements/message-bubble-web.vue +65 -19
- package/components/CustomerServiceChat/message-list/message-elements/message-desk/message-desk-elements/marked.ts +1 -1
- package/components/CustomerServiceChat/message-list/message-elements/message-desk/message-desk-elements/message-branch.vue +30 -11
- package/components/CustomerServiceChat/message-list/message-elements/message-desk/message-desk-elements/message-concurrency-limit.vue +40 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-desk/message-desk-elements/message-desk.vue +29 -7
- package/components/CustomerServiceChat/message-list/message-elements/message-desk/message-desk-elements/message-multi-branch/branch-pc.vue +107 -73
- package/components/CustomerServiceChat/message-list/message-elements/message-desk/message-desk-elements/message-multi-branch/index.vue +53 -52
- package/components/CustomerServiceChat/message-list/message-elements/message-desk/message-desk-elements/message-multi-form/component-mobile/input-mobile.vue +73 -80
- package/components/CustomerServiceChat/message-list/message-elements/message-desk/message-desk-elements/message-multi-form/component-mobile/label-mobile.vue +21 -24
- package/components/CustomerServiceChat/message-list/message-elements/message-desk/message-desk-elements/message-multi-form/component-mobile/radios-mobile.vue +115 -116
- package/components/CustomerServiceChat/message-list/message-elements/message-desk/message-desk-elements/message-multi-form/component-pc/input-pc.vue +69 -73
- package/components/CustomerServiceChat/message-list/message-elements/message-desk/message-desk-elements/message-multi-form/component-pc/label-pc.vue +21 -25
- package/components/CustomerServiceChat/message-list/message-elements/message-desk/message-desk-elements/message-multi-form/component-pc/radio-pc.vue +87 -77
- package/components/CustomerServiceChat/message-list/message-elements/message-desk/message-desk-elements/message-multi-form/form-mobile.vue +213 -200
- package/components/CustomerServiceChat/message-list/message-elements/message-desk/message-desk-elements/message-multi-form/form-pc.vue +122 -113
- package/components/CustomerServiceChat/message-list/message-elements/message-desk/message-desk-elements/message-multi-form/index.vue +7 -7
- package/components/CustomerServiceChat/message-list/message-elements/message-desk/message-desk-elements/message-order.vue +141 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-desk/message-desk-elements/message-rich-text.vue +5 -1
- package/components/CustomerServiceChat/message-list/message-elements/message-desk/message-desk-elements/message-stream.vue +25 -1
- package/components/CustomerServiceChat/message-list/message-elements/message-file.vue +1 -1
- package/components/CustomerServiceChat/message-list/scroll-button/index.vue +18 -6
- package/components/CustomerServiceChat/message-list/style/web.scss +2 -1
- package/components/CustomerServiceChat/message-toolbar-button/index.vue +111 -42
- package/components/CustomerServiceChat/message-toolbar-button/toolbar-button-end-human-service.vue +59 -0
- package/components/CustomerServiceChat/message-toolbar-button/toolbar-button-human-service.vue +55 -0
- package/components/CustomerServiceChat/message-toolbar-button/toolbar-button-service-rating.vue +59 -0
- package/components/common/BottomPopup/index.vue +1 -1
- package/constant.ts +25 -4
- package/interface.ts +35 -5
- package/locales/en/aidesk.ts +6 -3
- package/locales/fil/aidesk.ts +4 -1
- package/locales/id/aidesk.ts +7 -4
- package/locales/ja/aidesk.ts +5 -2
- package/locales/ms/aidesk.ts +5 -2
- package/locales/ru/aidesk.ts +6 -3
- package/locales/th/aidesk.ts +4 -1
- package/locales/vi/aidesk.ts +5 -2
- package/locales/zh_cn/aidesk.ts +5 -3
- package/locales/zh_tw/aidesk.ts +4 -1
- package/package.json +1 -1
- package/server.ts +11 -2
- package/utils/state.js +30 -0
- package/utils/utils.ts +48 -1
- package/assets/face.png +0 -0
- package/assets/files.png +0 -0
- package/assets/image.png +0 -0
- package/assets/video.png +0 -0
|
@@ -1,72 +1,67 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div>
|
|
3
|
-
<div v-if="!finishSubmit && props.payload.nodeStatus
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
2
|
+
<div class="form-mobile-container">
|
|
3
|
+
<div v-if="!finishSubmit && props.payload.nodeStatus !== 2" class="before-form">
|
|
4
|
+
<Icon :src="iconForm" width="60px" height="60px" style="margin:5px 4px"/>
|
|
5
|
+
<div :class="props.payload.nodeStatus === 1 ? 'form-button-disable': 'form-button'" @click="clickShowDialog">
|
|
6
|
+
{{ TUITranslateService.t("AIDesk.立即填写") }}
|
|
7
|
+
</div>
|
|
8
8
|
</div>
|
|
9
9
|
<div class="edit-form">
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
</FormPopup>
|
|
56
|
-
</div>
|
|
10
|
+
<div class="edit-form-item">
|
|
11
|
+
<FormPopup
|
|
12
|
+
class="form-item"
|
|
13
|
+
:show="showDialog"
|
|
14
|
+
:showHeaderCloseButton="false"
|
|
15
|
+
@onClose="closeDialog"
|
|
16
|
+
title=""
|
|
17
|
+
>
|
|
18
|
+
<div style="height:100%;overflow-y: auto;">
|
|
19
|
+
<div class="dialog-title">
|
|
20
|
+
<div>
|
|
21
|
+
{{ props.payload.content.tip }}
|
|
22
|
+
</div>
|
|
23
|
+
<div @click="closeDialog">
|
|
24
|
+
<Icon :src="iconClose" width="16px" height="16px"/>
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
27
|
+
<div
|
|
28
|
+
v-for="(item, index) in props.payload.content.inputVariables"
|
|
29
|
+
:key="index"
|
|
30
|
+
>
|
|
31
|
+
<div v-if="!finishSubmit && item.formType == 0 && props.payload.nodeStatus == 0">
|
|
32
|
+
<InputMobile :placeholder="item.placeholder" :variableValue="item.variableValue" :name="item.name" :isRequired="item.isRequired" @input-change="handleInputChange" :validator="item.isRequired == 1 && isValid(item.name)"/>
|
|
33
|
+
</div>
|
|
34
|
+
<div v-else-if="!finishSubmit && item.formType == 1 && props.payload.nodeStatus == 0">
|
|
35
|
+
<RadioMobile :chooseItemList="item.chooseItemList" :name="item.name" :isRequired="item.isRequired" @input-change="handleInputChange" :validator="item.isRequired == 1 && isValid(item.name)"/>
|
|
36
|
+
</div>
|
|
37
|
+
<div v-else class="variable-value-container-mobile">
|
|
38
|
+
<div class="variable-value-label">
|
|
39
|
+
{{ item.name }}
|
|
40
|
+
</div>
|
|
41
|
+
<div class="variable-value">
|
|
42
|
+
{{ item.variableValue == '' || item.variableValue == null ? mapValue[item.name] : item.variableValue}}
|
|
43
|
+
</div>
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
<div class="button-container"v-if="!finishSubmit && props.payload.nodeStatus === 0">
|
|
47
|
+
<div class="button" @click="handleSendForm">
|
|
48
|
+
{{ TUITranslateService.t("AIDesk.提交") }}
|
|
49
|
+
</div>
|
|
50
|
+
</div>
|
|
51
|
+
</div>
|
|
52
|
+
</FormPopup>
|
|
53
|
+
</div>
|
|
57
54
|
</div>
|
|
58
|
-
<div v-if="finishSubmit || props.payload.nodeStatus
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
</div>
|
|
55
|
+
<div v-if="finishSubmit || props.payload.nodeStatus == 2" class="before-form">
|
|
56
|
+
<div class="icon-container">
|
|
57
|
+
<Icon class="form-icon" :src="iconForm" width="60px" height="60px" style="margin:5px 4px"/>
|
|
58
|
+
<Icon v-if="finishSubmit || props.payload.nodeStatus == 2" class="form-icon-check" width="26px" height="26px" :src="iconFormFilled"/>
|
|
59
|
+
</div>
|
|
60
|
+
<div class="form-button" @click="clickShowDialog">
|
|
61
|
+
{{ TUITranslateService.t("AIDesk.查看内容") }}
|
|
62
|
+
</div>
|
|
67
63
|
</div>
|
|
68
64
|
</div>
|
|
69
|
-
|
|
70
65
|
</template>
|
|
71
66
|
<script lang="ts">
|
|
72
67
|
import vue from '../../../../../../../adapter-vue';
|
|
@@ -81,27 +76,27 @@ import LabelMobile from './component-mobile/label-mobile.vue';
|
|
|
81
76
|
import FormPopup from './component-mobile/form-popup.vue';
|
|
82
77
|
import { CUSTOM_MESSAGE_SRC } from '../../../../../../../constant';
|
|
83
78
|
import {TUITranslateService} from '@tencentcloud/chat-uikit-engine';
|
|
84
|
-
const { ref
|
|
79
|
+
const { ref, onMounted } = vue;
|
|
85
80
|
interface Props {
|
|
86
81
|
payload: customerServicePayloadType;
|
|
87
82
|
}
|
|
88
83
|
export default {
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
},
|
|
101
|
-
},
|
|
102
|
-
options:{
|
|
103
|
-
styleIsolation: 'apply-shared'
|
|
84
|
+
components:{
|
|
85
|
+
Icon,
|
|
86
|
+
InputMobile,
|
|
87
|
+
RadioMobile,
|
|
88
|
+
FormPopup,
|
|
89
|
+
LabelMobile
|
|
90
|
+
},
|
|
91
|
+
props: {
|
|
92
|
+
payload: {
|
|
93
|
+
type: Object as () => customerServicePayloadType,
|
|
94
|
+
default: () => ({}),
|
|
104
95
|
},
|
|
96
|
+
},
|
|
97
|
+
options:{
|
|
98
|
+
styleIsolation: 'apply-shared'
|
|
99
|
+
},
|
|
105
100
|
emits: ['sendMessage','showFormPopup'],
|
|
106
101
|
setup(props: Props, { emit }) {
|
|
107
102
|
const showDialog = ref<boolean>(false);
|
|
@@ -109,85 +104,86 @@ export default {
|
|
|
109
104
|
const isSubmit = ref<boolean>(false);
|
|
110
105
|
const finishSubmit = ref<boolean>(false);
|
|
111
106
|
const hasNullValue = ref<boolean>(true);
|
|
112
|
-
onMounted(()=>{
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
107
|
+
onMounted(() => {
|
|
108
|
+
let inputVariables = props.payload.content.inputVariables ?? [];
|
|
109
|
+
for (let i = 0; i < inputVariables.length; i++) {
|
|
110
|
+
const name = inputVariables[i].name;
|
|
111
|
+
const variableValue = inputVariables[i].variableValue;
|
|
112
|
+
mapValue.value[name]=variableValue;
|
|
113
|
+
}
|
|
120
114
|
});
|
|
121
|
-
const clickShowDialog = ()=>{
|
|
122
|
-
|
|
123
|
-
|
|
115
|
+
const clickShowDialog = () => {
|
|
116
|
+
if (props.payload.nodeStatus === 1) {
|
|
117
|
+
return;
|
|
118
|
+
}
|
|
119
|
+
showDialog.value = true;
|
|
120
|
+
emit('showFormPopup',true);
|
|
124
121
|
}
|
|
125
122
|
|
|
126
|
-
const closeDialog=()=>{
|
|
127
|
-
|
|
128
|
-
|
|
123
|
+
const closeDialog = () => {
|
|
124
|
+
showDialog.value = false;
|
|
125
|
+
emit('showFormPopup',false);
|
|
129
126
|
}
|
|
130
127
|
|
|
131
|
-
const checkValidator = (name:string) => {
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
}
|
|
128
|
+
const checkValidator = (name: string) => {
|
|
129
|
+
hasNullValue.value = false;
|
|
130
|
+
if (isSubmit.value == true) {
|
|
131
|
+
if (mapValue.value[name] == null || mapValue.value[name] == '') {
|
|
132
|
+
hasNullValue.value = true;
|
|
133
|
+
return true;
|
|
139
134
|
}
|
|
140
|
-
|
|
135
|
+
}
|
|
136
|
+
return false;
|
|
141
137
|
}
|
|
142
138
|
|
|
143
139
|
const isValid = (name:string) => {
|
|
144
|
-
|
|
140
|
+
return isSubmit.value && (mapValue.value[name] == null || mapValue.value[name] == '' || mapValue.value[name] == undefined);
|
|
145
141
|
}
|
|
146
142
|
|
|
147
143
|
const handleSendForm = (data: any) => {
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
}
|
|
144
|
+
isSubmit.value = true;
|
|
145
|
+
let list = props.payload.content.inputVariables;
|
|
146
|
+
for (let i = 0; i < list.length; i++) {
|
|
147
|
+
let value = mapValue.value[list[i].name];
|
|
148
|
+
if (value !='' && value != null) {
|
|
149
|
+
list[i].variableValue = value;
|
|
150
|
+
}else {
|
|
151
|
+
if (list[i].isRequired === 1 && checkValidator(list[i].name)) {
|
|
152
|
+
return;
|
|
153
|
+
}
|
|
159
154
|
}
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
155
|
+
}
|
|
156
|
+
const submitData = {
|
|
157
|
+
data: JSON.stringify({
|
|
158
|
+
src: CUSTOM_MESSAGE_SRC.MULTI_FORM,
|
|
159
|
+
content: {
|
|
160
|
+
inputVariables: list
|
|
161
|
+
},
|
|
162
|
+
customerServicePlugin: 0,
|
|
167
163
|
}),
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
164
|
+
};
|
|
165
|
+
emit('sendMessage', submitData);
|
|
166
|
+
finishSubmit.value = true;
|
|
167
|
+
isSubmit.value = false;
|
|
172
168
|
};
|
|
173
|
-
const handleInputChange = ({name,value}) =>{
|
|
174
|
-
|
|
169
|
+
const handleInputChange = ({name,value}) => {
|
|
170
|
+
mapValue.value[name] = value;
|
|
175
171
|
}
|
|
176
172
|
|
|
177
173
|
const showValue = (name:string,variableValue:string) => {
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
174
|
+
if (variableValue != null && variableValue != '') {
|
|
175
|
+
return variableValue
|
|
176
|
+
}
|
|
177
|
+
return mapValue.value[name];
|
|
182
178
|
}
|
|
183
179
|
return {
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
180
|
+
props,
|
|
181
|
+
iconForm,
|
|
182
|
+
iconFormFilled,
|
|
183
|
+
showDialog,
|
|
184
|
+
clickShowDialog,
|
|
185
|
+
iconClose,
|
|
186
|
+
checkValidator,
|
|
191
187
|
finishSubmit,
|
|
192
188
|
showValue,
|
|
193
189
|
mapValue,
|
|
@@ -204,6 +200,10 @@ export default {
|
|
|
204
200
|
<style lang="scss">
|
|
205
201
|
@import "../styles/common.scss";
|
|
206
202
|
|
|
203
|
+
.form-mobile-container {
|
|
204
|
+
font-family: PingFangSC-Regular;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
207
|
.edit-profile-container {
|
|
208
208
|
@extend .container;
|
|
209
209
|
font-size: 14px;
|
|
@@ -311,78 +311,91 @@ export default {
|
|
|
311
311
|
}
|
|
312
312
|
}
|
|
313
313
|
.before-form {
|
|
314
|
+
display:flex;
|
|
315
|
+
flex-direction: column;
|
|
316
|
+
justify-content: center;
|
|
317
|
+
.form-button {
|
|
314
318
|
display:flex;
|
|
315
|
-
flex-direction: column;
|
|
316
319
|
justify-content: center;
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
320
|
+
padding:6px 10px;
|
|
321
|
+
background-color: #1c66e5;
|
|
322
|
+
color:white;
|
|
323
|
+
border-radius:20px;
|
|
324
|
+
}
|
|
325
|
+
.form-button-disable {
|
|
326
|
+
background-color: #dbdbdb;
|
|
327
|
+
display: flex;
|
|
328
|
+
justify-content: center;
|
|
329
|
+
padding: 6px 10px;
|
|
330
|
+
color: white;
|
|
331
|
+
border-radius: 20px;
|
|
332
|
+
}
|
|
333
|
+
.icon-container {
|
|
334
|
+
position: relative;
|
|
335
|
+
.form-icon-check {
|
|
336
|
+
position: absolute;
|
|
337
|
+
right: 15px;
|
|
338
|
+
bottom: 6px;
|
|
333
339
|
}
|
|
340
|
+
}
|
|
334
341
|
}
|
|
335
342
|
|
|
336
343
|
.edit-form {
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
}
|
|
351
|
-
}
|
|
344
|
+
flex:1;
|
|
345
|
+
@include flex(column,flex-start,stretch);
|
|
346
|
+
.edit-form-item {
|
|
347
|
+
@include flex(row, flex-start, center);
|
|
348
|
+
.form-item {
|
|
349
|
+
@include flex(row, flex-start, stretch);
|
|
350
|
+
flex: none;
|
|
351
|
+
.form-item-input {
|
|
352
|
+
padding: 14px 10px;
|
|
353
|
+
font-size: 16px;
|
|
354
|
+
border: 0px;
|
|
355
|
+
background-color: rgba(248, 248, 248, 1);
|
|
356
|
+
}
|
|
352
357
|
}
|
|
353
|
-
|
|
358
|
+
}
|
|
354
359
|
}
|
|
355
360
|
|
|
356
|
-
.dialog-title{
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
361
|
+
.dialog-title {
|
|
362
|
+
display: flex;
|
|
363
|
+
flex-direction: row;
|
|
364
|
+
justify-content: space-between;
|
|
365
|
+
padding: 20px;
|
|
366
|
+
font-size: 16px;
|
|
367
|
+
font-weight: 500;
|
|
368
|
+
.dialog-close {
|
|
369
|
+
color: rgba(153,153,153,1);
|
|
370
|
+
}
|
|
366
371
|
}
|
|
367
|
-
.variable-value-container-mobile{
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
372
|
+
.variable-value-container-mobile {
|
|
373
|
+
padding: 16px;
|
|
374
|
+
display: flex;
|
|
375
|
+
flex-direction: row;
|
|
376
|
+
align-items: center;
|
|
377
|
+
border-bottom: 1px solid #e7e7e7;
|
|
378
|
+
gap: 5px;
|
|
373
379
|
}
|
|
374
|
-
.
|
|
375
|
-
|
|
380
|
+
.variable-value-label {
|
|
381
|
+
width: 70px;
|
|
382
|
+
white-space: nowrap;
|
|
383
|
+
}
|
|
384
|
+
.variable-value {
|
|
385
|
+
flex: 1;
|
|
386
|
+
}
|
|
387
|
+
.button-container {
|
|
388
|
+
display: flex;
|
|
389
|
+
justify-content: center;
|
|
390
|
+
margin: 15px;
|
|
391
|
+
.button {
|
|
392
|
+
display: flex;
|
|
376
393
|
justify-content: center;
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
background-color: #1c66e5;
|
|
384
|
-
color:white;
|
|
385
|
-
border-radius:25px ;
|
|
386
|
-
}
|
|
394
|
+
width: 87px;
|
|
395
|
+
padding: 6px 10px;
|
|
396
|
+
background-color: #1c66e5;
|
|
397
|
+
color: white;
|
|
398
|
+
border-radius: 20px;
|
|
399
|
+
}
|
|
387
400
|
}
|
|
388
|
-
</style>
|
|
401
|
+
</style>
|