vue-intergrall-plugins 1.0.0 → 1.0.2
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/dist/vue-intergrall-plugins.css +3419 -0
- package/dist/vue-intergrall-plugins.esm.js +16017 -0
- package/dist/vue-intergrall-plugins.min.js +1 -1
- package/dist/vue-intergrall-plugins.ssr.js +16219 -0
- package/package.json +12 -15
- package/src/lib-components/Buttons/IconButton.vue +1 -1
- package/src/lib-components/Buttons/SimpleButton.vue +1 -1
- package/src/lib-components/Cards/Card.vue +1 -1
- package/src/lib-components/Cards/CardFile.vue +1 -1
- package/src/lib-components/Chat/BtnEmojis.vue +1 -13
- package/src/lib-components/Chat/BtnFiles.vue +1 -1
- package/src/lib-components/Chat/ExpandTextarea.vue +297 -270
- package/src/lib-components/Chat/MultipleFilePreview.vue +1 -1
- package/src/lib-components/Chat/Picker.vue +1 -1
- package/src/lib-components/Chat/SingleFilePreview.vue +1 -1
- package/src/lib-components/Chat/SkeletonPicker.vue +1 -1
- package/src/lib-components/Chat/StandardMessages.vue +1 -1
- package/src/lib-components/Chat/TextFooter.vue +1 -13
- package/src/lib-components/Loader/Loader.vue +1 -1
- package/src/lib-components/Messages/AnexoMensagem.vue +1 -1
- package/src/lib-components/Messages/ChatMessages.vue +1 -1
- package/src/lib-components/Messages/InteratividadeBotoes.vue +120 -122
- package/src/lib-components/Messages/InteratividadeFormulario.vue +291 -276
- package/src/lib-components/Messages/InteratividadePopup.vue +1 -1
- package/src/lib-components/Scroll/ScrollContent.vue +1 -1
- package/src/lib-components/Templates/TemplateGenerator.vue +299 -259
package/package.json
CHANGED
|
@@ -1,12 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vue-intergrall-plugins",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/vue-intergrall-plugins.ssr.js",
|
|
6
|
-
"browser":
|
|
7
|
-
"dist/vue-intergrall-plugins.esm.js": "dist/vue-intergrall-plugins.esm.js",
|
|
8
|
-
"dist/vue-intergrall-plugins.min.js": "dist/vue-intergrall-plugins.min.js"
|
|
9
|
-
},
|
|
6
|
+
"browser": "dist/vue-intergrall-plugins.esm.js",
|
|
10
7
|
"module": "dist/vue-intergrall-plugins.esm.js",
|
|
11
8
|
"unpkg": "dist/vue-intergrall-plugins.min.js",
|
|
12
9
|
"files": [
|
|
@@ -31,25 +28,24 @@
|
|
|
31
28
|
"@rollup/plugin-json": "^4.1.0",
|
|
32
29
|
"@rollup/plugin-node-resolve": "^9.0.0",
|
|
33
30
|
"@rollup/plugin-replace": "^2.4.2",
|
|
34
|
-
"@vue/cli-plugin-babel": "^
|
|
35
|
-
"@vue/cli-service": "^
|
|
31
|
+
"@vue/cli-plugin-babel": "^5.0.8",
|
|
32
|
+
"@vue/cli-service": "^5.0.8",
|
|
36
33
|
"autoprefixer": "^10.3.6",
|
|
37
34
|
"cross-env": "^7.0.3",
|
|
38
35
|
"cssnano": "^5.0.8",
|
|
39
36
|
"minimist": "^1.2.5",
|
|
40
37
|
"rimraf": "^3.0.2",
|
|
41
38
|
"rollup": "^2.58.0",
|
|
42
|
-
"rollup-plugin-node-polyfills": "^0.2.1",
|
|
43
39
|
"rollup-plugin-terser": "^7.0.2",
|
|
44
|
-
"rollup-plugin-vue": "^
|
|
40
|
+
"rollup-plugin-vue": "^6.0.0",
|
|
45
41
|
"vue": "^2.6.14",
|
|
46
42
|
"vue-template-compiler": "^2.6.14"
|
|
47
43
|
},
|
|
48
44
|
"peerDependencies": {
|
|
49
|
-
"@fortawesome/fontawesome-free": "^
|
|
50
|
-
"@fortawesome/fontawesome-svg-core": "^
|
|
51
|
-
"@fortawesome/free-solid-svg-icons": "^
|
|
52
|
-
"@fortawesome/vue-fontawesome": "^2.0.
|
|
45
|
+
"@fortawesome/fontawesome-free": "^5.15.4",
|
|
46
|
+
"@fortawesome/fontawesome-svg-core": "^1.2.36",
|
|
47
|
+
"@fortawesome/free-solid-svg-icons": "^5.15.4",
|
|
48
|
+
"@fortawesome/vue-fontawesome": "^2.0.2",
|
|
53
49
|
"@popperjs/core": "^2.11.2",
|
|
54
50
|
"core-js": "^3.18.1",
|
|
55
51
|
"postcss": "^8.3.8",
|
|
@@ -64,7 +60,8 @@
|
|
|
64
60
|
"node": ">=12"
|
|
65
61
|
},
|
|
66
62
|
"dependencies": {
|
|
67
|
-
"axios": "^
|
|
68
|
-
"kind-of": "^6.0.3"
|
|
63
|
+
"axios": "^1.6.7",
|
|
64
|
+
"kind-of": "^6.0.3",
|
|
65
|
+
"rollup-plugin-css-only": "^4.5.2"
|
|
69
66
|
}
|
|
70
67
|
}
|
|
@@ -108,19 +108,7 @@ export default {
|
|
|
108
108
|
};
|
|
109
109
|
</script>
|
|
110
110
|
|
|
111
|
-
<style>
|
|
112
|
-
.show-y-enter-active,
|
|
113
|
-
.show-y-leave-enter {
|
|
114
|
-
opacity: 1;
|
|
115
|
-
transform: translateY(0);
|
|
116
|
-
transition: all 200ms linear;
|
|
117
|
-
}
|
|
118
|
-
.show-y-enter,
|
|
119
|
-
.show-y-leave-to {
|
|
120
|
-
opacity: 0;
|
|
121
|
-
transform: translateY(5%);
|
|
122
|
-
}
|
|
123
|
-
|
|
111
|
+
<style scoped>
|
|
124
112
|
.emoji-text-container {
|
|
125
113
|
position: relative;
|
|
126
114
|
}
|