vue-intergrall-plugins 0.0.300 → 0.0.500
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 +185 -185
- package/dist/vue-intergrall-plugins.esm.js +818 -427
- package/dist/vue-intergrall-plugins.min.js +1 -1
- package/dist/vue-intergrall-plugins.ssr.js +788 -457
- package/package.json +66 -66
- 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 +412 -412
- package/src/lib-components/Cards/CardCheck.vue +35 -35
- package/src/lib-components/Cards/CardFile.vue +157 -157
- package/src/lib-components/Chat/AudioSpeedControl.vue +60 -0
- package/src/lib-components/Chat/BtnDownloadAllFiles.vue +32 -32
- package/src/lib-components/Chat/BtnEmojis.vue +131 -125
- package/src/lib-components/Chat/BtnExpand.vue +17 -17
- package/src/lib-components/Chat/BtnFiles.vue +415 -415
- package/src/lib-components/Chat/BtnMic.vue +60 -60
- package/src/lib-components/Chat/BtnScreenShare.vue +32 -32
- package/src/lib-components/Chat/BtnStandardMessages.vue +17 -17
- package/src/lib-components/Chat/ExpandTextarea.vue +410 -410
- package/src/lib-components/Chat/MultipleFilePreview.vue +266 -266
- package/src/lib-components/Chat/Picker.vue +405 -368
- 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 +245 -245
- package/src/lib-components/Chat/TextFooter.vue +1075 -817
- package/src/lib-components/Email/EmailFile.vue +125 -125
- package/src/lib-components/Email/EmailItem.vue +185 -185
- package/src/lib-components/Loader/Loader.vue +78 -78
- package/src/lib-components/Messages/AnexoMensagem.vue +458 -385
- package/src/lib-components/Messages/CardAttachment.vue +61 -61
- package/src/lib-components/Messages/CardMessages.vue +666 -394
- package/src/lib-components/Messages/ChatMessages.vue +1077 -573
- package/src/lib-components/Messages/InteratividadeBotoes.vue +165 -165
- package/src/lib-components/Messages/InteratividadeFormulario.vue +392 -392
- package/src/lib-components/Messages/InteratividadePopup.vue +88 -88
- package/src/lib-components/Messages/LinkPreview.vue +163 -163
- package/src/lib-components/Scroll/ScrollContent.vue +150 -150
- package/src/lib-components/Templates/TemplateGenerator.vue +576 -576
- package/src/lib-components/Templates/TemplateMessage.vue +83 -83
- package/src/lib-components/Templates/TemplateSingle.vue +481 -481
|
@@ -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>
|