vue-intergrall-plugins 1.1.90 → 1.2.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/README.md +220 -220
- package/dist/dist/vue-intergrall-plugins.css +1 -1
- package/dist/vue-intergrall-plugins.esm.js +193 -78
- package/dist/vue-intergrall-plugins.min.js +7 -7
- package/dist/vue-intergrall-plugins.ssr.js +245 -136
- package/package.json +61 -61
- package/src/lib-components/Buttons/IconButton.vue +27 -27
- package/src/lib-components/Buttons/SimpleButton.vue +140 -140
- package/src/lib-components/Cards/Card.vue +490 -490
- package/src/lib-components/Cards/CardCheck.vue +35 -35
- package/src/lib-components/Cards/CardFile.vue +163 -163
- package/src/lib-components/Chat/BtnDownloadAllFiles.vue +36 -36
- package/src/lib-components/Chat/BtnEmojis.vue +118 -118
- package/src/lib-components/Chat/BtnExpand.vue +17 -17
- package/src/lib-components/Chat/BtnFiles.vue +486 -486
- package/src/lib-components/Chat/BtnMic.vue +60 -60
- package/src/lib-components/Chat/BtnScreenShare.vue +31 -31
- package/src/lib-components/Chat/BtnStandardMessages.vue +17 -17
- package/src/lib-components/Chat/ExpandTextarea.vue +427 -427
- package/src/lib-components/Chat/MultipleFilePreview.vue +291 -291
- package/src/lib-components/Chat/Picker.vue +525 -525
- package/src/lib-components/Chat/RemainingCharacters.vue +28 -28
- package/src/lib-components/Chat/SingleFilePreview.vue +94 -94
- package/src/lib-components/Chat/SkeletonPicker.vue +110 -110
- package/src/lib-components/Chat/StandardMessages.vue +252 -252
- package/src/lib-components/Chat/TextFooter.vue +1007 -1007
- package/src/lib-components/Email/EmailExpanded.vue +270 -270
- package/src/lib-components/Email/EmailFile.vue +192 -192
- package/src/lib-components/Email/EmailFrom.vue +66 -66
- package/src/lib-components/Email/EmailItem.vue +867 -850
- package/src/lib-components/Email/EmailTo.vue +64 -64
- package/src/lib-components/Loader/Loader.vue +78 -78
- package/src/lib-components/Messages/AnexoMensagem.vue +534 -497
- package/src/lib-components/Messages/CardAttachment.vue +61 -61
- package/src/lib-components/Messages/CardMessages.vue +687 -687
- package/src/lib-components/Messages/InteratividadeBotoes.vue +197 -197
- package/src/lib-components/Messages/InteratividadeContato.vue +32 -32
- package/src/lib-components/Messages/InteratividadeContatoItem.vue +235 -235
- package/src/lib-components/Messages/InteratividadeFormulario.vue +334 -334
- package/src/lib-components/Messages/InteratividadePopup.vue +95 -95
- package/src/lib-components/Messages/LinkPreview.vue +176 -176
- package/src/lib-components/Scroll/ScrollContent.vue +166 -166
- package/src/lib-components/Templates/TemplateGenerator.vue +640 -640
- package/src/lib-components/Templates/TemplateMessage.vue +83 -83
- package/src/lib-components/Templates/TemplateSingle.vue +478 -478
|
@@ -1,64 +1,64 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div :class="emailToClass">
|
|
3
|
-
<p class="to" v-if="nameToRender" v-text="nameToRender" :title="nameToRender"></p>
|
|
4
|
-
<span class="additional" v-text="`<${email}>`" :title="email" v-if="showMail && email"></span>
|
|
5
|
-
</div>
|
|
6
|
-
</template>
|
|
7
|
-
|
|
8
|
-
<style scoped>
|
|
9
|
-
.email-to {
|
|
10
|
-
display: flex;
|
|
11
|
-
align-items: center;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.email-to .to {
|
|
15
|
-
margin: 0;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.email-to .to,
|
|
19
|
-
.email-to .additional {
|
|
20
|
-
font-size: 11.2px;
|
|
21
|
-
text-overflow: ellipsis;
|
|
22
|
-
white-space: nowrap;
|
|
23
|
-
overflow: hidden;
|
|
24
|
-
color: gray;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.email-to .additional {
|
|
28
|
-
margin-left: 5px;
|
|
29
|
-
}
|
|
30
|
-
</style>
|
|
31
|
-
|
|
32
|
-
<script>
|
|
33
|
-
export default {
|
|
34
|
-
props: {
|
|
35
|
-
currentName: {
|
|
36
|
-
type: String,
|
|
37
|
-
required: false,
|
|
38
|
-
default: ""
|
|
39
|
-
},
|
|
40
|
-
email: {
|
|
41
|
-
type: String,
|
|
42
|
-
required: false,
|
|
43
|
-
default: ""
|
|
44
|
-
},
|
|
45
|
-
showMail: {
|
|
46
|
-
type: Boolean,
|
|
47
|
-
required: false,
|
|
48
|
-
default: true
|
|
49
|
-
},
|
|
50
|
-
emailToClass: {
|
|
51
|
-
type: String,
|
|
52
|
-
required: false,
|
|
53
|
-
default: 'email-to'
|
|
54
|
-
}
|
|
55
|
-
},
|
|
56
|
-
computed: {
|
|
57
|
-
nameToRender() {
|
|
58
|
-
if(this.currentName) return this.currentName
|
|
59
|
-
if(this.email) return this.email
|
|
60
|
-
return '--'
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
</script>
|
|
1
|
+
<template>
|
|
2
|
+
<div :class="emailToClass">
|
|
3
|
+
<p class="to" v-if="nameToRender" v-text="nameToRender" :title="nameToRender"></p>
|
|
4
|
+
<span class="additional" v-text="`<${email}>`" :title="email" v-if="showMail && email"></span>
|
|
5
|
+
</div>
|
|
6
|
+
</template>
|
|
7
|
+
|
|
8
|
+
<style scoped>
|
|
9
|
+
.email-to {
|
|
10
|
+
display: flex;
|
|
11
|
+
align-items: center;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.email-to .to {
|
|
15
|
+
margin: 0;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.email-to .to,
|
|
19
|
+
.email-to .additional {
|
|
20
|
+
font-size: 11.2px;
|
|
21
|
+
text-overflow: ellipsis;
|
|
22
|
+
white-space: nowrap;
|
|
23
|
+
overflow: hidden;
|
|
24
|
+
color: gray;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.email-to .additional {
|
|
28
|
+
margin-left: 5px;
|
|
29
|
+
}
|
|
30
|
+
</style>
|
|
31
|
+
|
|
32
|
+
<script>
|
|
33
|
+
export default {
|
|
34
|
+
props: {
|
|
35
|
+
currentName: {
|
|
36
|
+
type: String,
|
|
37
|
+
required: false,
|
|
38
|
+
default: ""
|
|
39
|
+
},
|
|
40
|
+
email: {
|
|
41
|
+
type: String,
|
|
42
|
+
required: false,
|
|
43
|
+
default: ""
|
|
44
|
+
},
|
|
45
|
+
showMail: {
|
|
46
|
+
type: Boolean,
|
|
47
|
+
required: false,
|
|
48
|
+
default: true
|
|
49
|
+
},
|
|
50
|
+
emailToClass: {
|
|
51
|
+
type: String,
|
|
52
|
+
required: false,
|
|
53
|
+
default: 'email-to'
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
computed: {
|
|
57
|
+
nameToRender() {
|
|
58
|
+
if(this.currentName) return this.currentName
|
|
59
|
+
if(this.email) return this.email
|
|
60
|
+
return '--'
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
</script>
|
|
@@ -1,78 +1,78 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="req-loader-container" :class="{'align-right' : alignRight, 'light-bg' : hasBg}">
|
|
3
|
-
<div class="req-loader" :class="{'big' : size == 'big', 'slow' : slow}"></div>
|
|
4
|
-
</div>
|
|
5
|
-
</template>
|
|
6
|
-
|
|
7
|
-
<script>
|
|
8
|
-
export default {
|
|
9
|
-
props: {
|
|
10
|
-
hasBg: {
|
|
11
|
-
type: Boolean,
|
|
12
|
-
required: false
|
|
13
|
-
},
|
|
14
|
-
alignRight: {
|
|
15
|
-
type: Boolean,
|
|
16
|
-
required: false
|
|
17
|
-
},
|
|
18
|
-
size: {
|
|
19
|
-
type: String,
|
|
20
|
-
required: false,
|
|
21
|
-
default: "small"
|
|
22
|
-
},
|
|
23
|
-
slow: {
|
|
24
|
-
type: Boolean,
|
|
25
|
-
required: false
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
</script>
|
|
30
|
-
|
|
31
|
-
<style>
|
|
32
|
-
.req-loader-container {
|
|
33
|
-
position: absolute;
|
|
34
|
-
z-index: 1;
|
|
35
|
-
top: 0;
|
|
36
|
-
left: 0;
|
|
37
|
-
width: 100%;
|
|
38
|
-
height: 100%;
|
|
39
|
-
display: flex;
|
|
40
|
-
justify-content: center;
|
|
41
|
-
align-items: center;
|
|
42
|
-
}
|
|
43
|
-
.req-loader-container.light-bg {
|
|
44
|
-
background-color: rgba(0, 0, 0, 0.3);
|
|
45
|
-
border-radius: inherit;
|
|
46
|
-
}
|
|
47
|
-
.req-loader-container.align-right {
|
|
48
|
-
justify-content: flex-end;
|
|
49
|
-
}
|
|
50
|
-
.req-loader-container.align-right .req-loader {
|
|
51
|
-
margin-right: 15px;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.req-loader {
|
|
55
|
-
border: 2px solid #CCC;
|
|
56
|
-
border-top: 2px solid #333;
|
|
57
|
-
border-radius: 50%;
|
|
58
|
-
width: 20px;
|
|
59
|
-
height: 20px;
|
|
60
|
-
min-width: 20px;
|
|
61
|
-
min-height: 20px;
|
|
62
|
-
animation: spin 2s linear infinite;
|
|
63
|
-
}
|
|
64
|
-
.req-loader.big {
|
|
65
|
-
width: 40px;
|
|
66
|
-
height: 40px;
|
|
67
|
-
animation: spin 3s linear infinite;
|
|
68
|
-
}
|
|
69
|
-
.req-loader.slow {
|
|
70
|
-
animation: spin 4s linear infinite;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
@keyframes spin {
|
|
74
|
-
0% { transform: rotate(0deg); }
|
|
75
|
-
100% { transform: rotate(360deg); }
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="req-loader-container" :class="{'align-right' : alignRight, 'light-bg' : hasBg}">
|
|
3
|
+
<div class="req-loader" :class="{'big' : size == 'big', 'slow' : slow}"></div>
|
|
4
|
+
</div>
|
|
5
|
+
</template>
|
|
6
|
+
|
|
7
|
+
<script>
|
|
8
|
+
export default {
|
|
9
|
+
props: {
|
|
10
|
+
hasBg: {
|
|
11
|
+
type: Boolean,
|
|
12
|
+
required: false
|
|
13
|
+
},
|
|
14
|
+
alignRight: {
|
|
15
|
+
type: Boolean,
|
|
16
|
+
required: false
|
|
17
|
+
},
|
|
18
|
+
size: {
|
|
19
|
+
type: String,
|
|
20
|
+
required: false,
|
|
21
|
+
default: "small"
|
|
22
|
+
},
|
|
23
|
+
slow: {
|
|
24
|
+
type: Boolean,
|
|
25
|
+
required: false
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
</script>
|
|
30
|
+
|
|
31
|
+
<style>
|
|
32
|
+
.req-loader-container {
|
|
33
|
+
position: absolute;
|
|
34
|
+
z-index: 1;
|
|
35
|
+
top: 0;
|
|
36
|
+
left: 0;
|
|
37
|
+
width: 100%;
|
|
38
|
+
height: 100%;
|
|
39
|
+
display: flex;
|
|
40
|
+
justify-content: center;
|
|
41
|
+
align-items: center;
|
|
42
|
+
}
|
|
43
|
+
.req-loader-container.light-bg {
|
|
44
|
+
background-color: rgba(0, 0, 0, 0.3);
|
|
45
|
+
border-radius: inherit;
|
|
46
|
+
}
|
|
47
|
+
.req-loader-container.align-right {
|
|
48
|
+
justify-content: flex-end;
|
|
49
|
+
}
|
|
50
|
+
.req-loader-container.align-right .req-loader {
|
|
51
|
+
margin-right: 15px;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.req-loader {
|
|
55
|
+
border: 2px solid #CCC;
|
|
56
|
+
border-top: 2px solid #333;
|
|
57
|
+
border-radius: 50%;
|
|
58
|
+
width: 20px;
|
|
59
|
+
height: 20px;
|
|
60
|
+
min-width: 20px;
|
|
61
|
+
min-height: 20px;
|
|
62
|
+
animation: spin 2s linear infinite;
|
|
63
|
+
}
|
|
64
|
+
.req-loader.big {
|
|
65
|
+
width: 40px;
|
|
66
|
+
height: 40px;
|
|
67
|
+
animation: spin 3s linear infinite;
|
|
68
|
+
}
|
|
69
|
+
.req-loader.slow {
|
|
70
|
+
animation: spin 4s linear infinite;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
@keyframes spin {
|
|
74
|
+
0% { transform: rotate(0deg); }
|
|
75
|
+
100% { transform: rotate(360deg); }
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
</style>
|