vue-intergrall-plugins 1.0.9 → 1.0.12

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.
Files changed (33) hide show
  1. package/dist/vue-intergrall-plugins.css +33 -33
  2. package/dist/vue-intergrall-plugins.esm.js +8675 -16849
  3. package/package.json +1 -2
  4. package/src/lib-components/Buttons/IconButton.vue +1 -1
  5. package/src/lib-components/Buttons/SimpleButton.vue +1 -1
  6. package/src/lib-components/Cards/Card.vue +1 -1
  7. package/src/lib-components/Cards/CardFile.vue +2 -2
  8. package/src/lib-components/Chat/AudioSpeedControl.vue +1 -1
  9. package/src/lib-components/Chat/BtnDownloadAllFiles.vue +1 -1
  10. package/src/lib-components/Chat/BtnEmojis.vue +1 -1
  11. package/src/lib-components/Chat/BtnFiles.vue +1 -1
  12. package/src/lib-components/Chat/BtnScreenShare.vue +1 -1
  13. package/src/lib-components/Chat/ExpandTextarea.vue +1 -1
  14. package/src/lib-components/Chat/MultipleFilePreview.vue +1 -1
  15. package/src/lib-components/Chat/Picker.vue +1 -1
  16. package/src/lib-components/Chat/SingleFilePreview.vue +1 -1
  17. package/src/lib-components/Chat/SkeletonPicker.vue +1 -1
  18. package/src/lib-components/Chat/StandardMessages.vue +1 -1
  19. package/src/lib-components/Chat/TextFooter.vue +1 -1
  20. package/src/lib-components/Email/EmailFile.vue +1 -1
  21. package/src/lib-components/Email/EmailItem.vue +1 -1
  22. package/src/lib-components/Loader/Loader.vue +1 -1
  23. package/src/lib-components/Messages/AnexoMensagem.vue +2 -2
  24. package/src/lib-components/Messages/CardAttachment.vue +1 -1
  25. package/src/lib-components/Messages/CardMessages.vue +1 -1
  26. package/src/lib-components/Messages/ChatMessages.vue +1 -1
  27. package/src/lib-components/Messages/InteratividadeBotoes.vue +1 -1
  28. package/src/lib-components/Messages/InteratividadeFormulario.vue +1 -1
  29. package/src/lib-components/Messages/InteratividadePopup.vue +1 -1
  30. package/src/lib-components/Messages/LinkPreview.vue +2 -2
  31. package/src/lib-components/Scroll/ScrollContent.vue +2 -2
  32. package/src/lib-components/Templates/TemplateGenerator.vue +1 -1
  33. package/src/lib-components/Templates/TemplateSingle.vue +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue-intergrall-plugins",
3
- "version": "1.0.9",
3
+ "version": "1.0.12",
4
4
  "description": "",
5
5
  "main": "dist/vue-intergrall-plugins.ssr.js",
6
6
  "browser": "dist/vue-intergrall-plugins.esm.js",
@@ -60,7 +60,6 @@
60
60
  "node": ">=12"
61
61
  },
62
62
  "dependencies": {
63
- "axios": "^1.6.7",
64
63
  "kind-of": "^6.0.3",
65
64
  "rollup-plugin-css-only": "^4.5.2",
66
65
  "rollup-plugin-vue": "^5.1.9"
@@ -19,7 +19,7 @@ export default {
19
19
  }
20
20
  </script>
21
21
 
22
- <style scoped>
22
+ <style>
23
23
  .simple-btn--icon.custom > span {
24
24
  width: 20px;
25
25
  height: 20px;
@@ -72,7 +72,7 @@ export default {
72
72
  }
73
73
  </script>
74
74
 
75
- <style scoped>
75
+ <style>
76
76
  .default-btn-style {
77
77
  transition-duration: 300ms;
78
78
  user-select: none;
@@ -210,7 +210,7 @@ export default {
210
210
  };
211
211
  </script>
212
212
 
213
- <style scoped>
213
+ <style>
214
214
  .fade-enter-active,
215
215
  .fade-leave-active {
216
216
  transition: opacity 200ms;
@@ -26,7 +26,7 @@
26
26
  </span>
27
27
  </template>
28
28
 
29
- <style scoped>
29
+ <style>
30
30
  .fade-enter-active, .fade-leave-active {
31
31
  transition: opacity .5s;
32
32
  }
@@ -60,7 +60,7 @@ export default {
60
60
  }
61
61
  </script>
62
62
 
63
- <style scoped>
63
+ <style>
64
64
  .file-item {
65
65
  width: 100%;
66
66
  height: 100%;
@@ -30,7 +30,7 @@ export default {
30
30
  };
31
31
  </script>
32
32
 
33
- <style scoped>
33
+ <style>
34
34
  .audio-speed-control {
35
35
  display: flex;
36
36
  align-items: center;
@@ -11,7 +11,7 @@
11
11
  </div>
12
12
  </template>
13
13
 
14
- <style scoped>
14
+ <style>
15
15
  .multiplos {
16
16
  display: flex;
17
17
  }
@@ -108,7 +108,7 @@ export default {
108
108
  };
109
109
  </script>
110
110
 
111
- <style scoped>
111
+ <style>
112
112
  .emoji-text-container {
113
113
  position: relative;
114
114
  }
@@ -136,7 +136,7 @@
136
136
  </span>
137
137
  </template>
138
138
 
139
- <style scoped>
139
+ <style>
140
140
  .fade-enter-active,
141
141
  .fade-leave-active {
142
142
  transition: opacity 0.3s;
@@ -9,7 +9,7 @@
9
9
  </div>
10
10
  </template>
11
11
 
12
- <style scoped>
12
+ <style>
13
13
  .text-footer-actions--btn {
14
14
  position: relative;
15
15
  }
@@ -308,7 +308,7 @@ export default {
308
308
  };
309
309
  </script>
310
310
 
311
- <style scoped>
311
+ <style>
312
312
  .sc-icone-fechar.sc-icone-fechar--externo {
313
313
  top: -10px;
314
314
  right: -10px;
@@ -97,7 +97,7 @@ export default {
97
97
  }
98
98
  </script>
99
99
 
100
- <style scoped>
100
+ <style>
101
101
  .multiple-file-preview {
102
102
  position: relative;
103
103
  display: flex;
@@ -249,7 +249,7 @@ export default {
249
249
  };
250
250
  </script>
251
251
 
252
- <style scoped>
252
+ <style>
253
253
  .box-shadow {
254
254
  -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
255
255
  0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
@@ -53,7 +53,7 @@ export default {
53
53
  }
54
54
  </script>
55
55
 
56
- <style scoped>
56
+ <style>
57
57
  .single-file-preview .close-icon {
58
58
  color: #E74C3C;
59
59
  cursor: pointer;
@@ -36,7 +36,7 @@ export default {
36
36
  }
37
37
  </script>
38
38
 
39
- <style scoped>
39
+ <style>
40
40
  .box-shadow {
41
41
  -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
42
42
  -moz-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
@@ -46,7 +46,7 @@
46
46
  </div>
47
47
  </template>
48
48
 
49
- <style scoped>
49
+ <style>
50
50
  .transition-selects {
51
51
  min-height: 80px;display: flex; flex-direction: column; width: 100%;
52
52
  }
@@ -641,7 +641,7 @@ export default {
641
641
  };
642
642
  </script>
643
643
 
644
- <style scoped>
644
+ <style>
645
645
  .text-footer-container {
646
646
  display: flex;
647
647
  justify-content: center;
@@ -42,7 +42,7 @@ export default {
42
42
  },
43
43
  }
44
44
  </script>
45
- <style scoped>
45
+ <style>
46
46
  .mr-5 {
47
47
  margin-right: 5px;
48
48
  }
@@ -102,7 +102,7 @@ export default {
102
102
  }
103
103
  }
104
104
  </script>
105
- <style scoped>
105
+ <style>
106
106
  .w-100 {
107
107
  width: 100%;
108
108
  }
@@ -28,7 +28,7 @@ export default {
28
28
  }
29
29
  </script>
30
30
 
31
- <style scoped>
31
+ <style>
32
32
  .req-loader-container {
33
33
  position: absolute;
34
34
  z-index: 1;
@@ -89,7 +89,7 @@
89
89
  </div>
90
90
  </template>
91
91
 
92
- <style scoped>
92
+ <style>
93
93
  .tippy-tooltip.light-theme .tippy-backdrop {
94
94
  background-color: #fff;
95
95
  }
@@ -207,7 +207,7 @@ export default {
207
207
  };
208
208
  </script>
209
209
 
210
- <style scoped>
210
+ <style>
211
211
  .mensagem__principal .default-doc {
212
212
  background-color: var(--files-bg);
213
213
  }
@@ -26,7 +26,7 @@
26
26
  </span>
27
27
  </template>
28
28
 
29
- <style scoped>
29
+ <style>
30
30
  .fade-enter-active, .fade-leave-active {
31
31
  transition: opacity .5s;
32
32
  }
@@ -345,7 +345,7 @@ export default {
345
345
  };
346
346
  </script>
347
347
 
348
- <style scoped>
348
+ <style>
349
349
  .fade-enter-active,
350
350
  .fade-leave-active {
351
351
  transition: opacity 200ms;
@@ -639,7 +639,7 @@ export default {
639
639
  };
640
640
  </script>
641
641
 
642
- <style scoped>
642
+ <style>
643
643
  :root {
644
644
  --message-color: #373737;
645
645
  --text-color: #fff;
@@ -103,7 +103,7 @@ export default {
103
103
  };
104
104
  </script>
105
105
 
106
- <style scoped>
106
+ <style>
107
107
  .interatividade-btn {
108
108
  width: 100%;
109
109
  display: flex;
@@ -254,7 +254,7 @@ export default {
254
254
  };
255
255
  </script>
256
256
 
257
- <style scoped>
257
+ <style>
258
258
  .divisor-form-info-aditional {
259
259
  display: flex;
260
260
  align-items: center;
@@ -56,7 +56,7 @@ export default {
56
56
  };
57
57
  </script>
58
58
 
59
- <style scoped>
59
+ <style>
60
60
  .box-shadow {
61
61
  -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
62
62
  0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
@@ -76,7 +76,7 @@ export default {
76
76
  const url = this.returnURL();
77
77
  if (!url) return;
78
78
  const encodedURL = Buffer(url).toString("base64");
79
- const response = await this.$httpRequest({
79
+ const response = await fetch({
80
80
  method: "get",
81
81
  url: `${baseURL}/preview?url=${encodedURL}${dev}`,
82
82
  // headers: {
@@ -128,7 +128,7 @@ export default {
128
128
  };
129
129
  </script>
130
130
 
131
- <style scoped>
131
+ <style>
132
132
  .link-preview {
133
133
  display: flex;
134
134
  flex-direction: column;
@@ -12,7 +12,7 @@
12
12
  </transition>
13
13
  </template>
14
14
 
15
- <style scoped>
15
+ <style>
16
16
  .fade-enter-active,
17
17
  .fade-leave-active {
18
18
  transition: opacity 0.3s;
@@ -121,7 +121,7 @@ export default {
121
121
  },
122
122
  };
123
123
  </script>
124
- <style scoped>
124
+ <style>
125
125
  .btn-rolagem {
126
126
  position: absolute;
127
127
  bottom: 10px;
@@ -285,7 +285,7 @@ export default {
285
285
  };
286
286
  </script>
287
287
 
288
- <style scoped>
288
+ <style>
289
289
  .tg-container {
290
290
  width: 100%;
291
291
  max-width: 800px;
@@ -118,7 +118,7 @@
118
118
  </div>
119
119
  </template>
120
120
 
121
- <style scoped>
121
+ <style>
122
122
  .btn-red button {
123
123
  background-color: red;
124
124
  }