vue-intergrall-plugins 1.0.1 → 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 +7483 -6119
- package/dist/vue-intergrall-plugins.min.js +1 -1
- package/dist/vue-intergrall-plugins.ssr.js +7610 -5106
- package/package.json +7 -6
- 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,6 +1,6 @@
|
|
|
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
6
|
"browser": "dist/vue-intergrall-plugins.esm.js",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"@rollup/plugin-json": "^4.1.0",
|
|
29
29
|
"@rollup/plugin-node-resolve": "^9.0.0",
|
|
30
30
|
"@rollup/plugin-replace": "^2.4.2",
|
|
31
|
-
"@vue/cli-plugin-babel": "^
|
|
32
|
-
"@vue/cli-service": "^
|
|
31
|
+
"@vue/cli-plugin-babel": "^5.0.8",
|
|
32
|
+
"@vue/cli-service": "^5.0.8",
|
|
33
33
|
"autoprefixer": "^10.3.6",
|
|
34
34
|
"cross-env": "^7.0.3",
|
|
35
35
|
"cssnano": "^5.0.8",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"rimraf": "^3.0.2",
|
|
38
38
|
"rollup": "^2.58.0",
|
|
39
39
|
"rollup-plugin-terser": "^7.0.2",
|
|
40
|
-
"rollup-plugin-vue": "^
|
|
40
|
+
"rollup-plugin-vue": "^6.0.0",
|
|
41
41
|
"vue": "^2.6.14",
|
|
42
42
|
"vue-template-compiler": "^2.6.14"
|
|
43
43
|
},
|
|
@@ -60,7 +60,8 @@
|
|
|
60
60
|
"node": ">=12"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"axios": "^
|
|
64
|
-
"kind-of": "^6.0.3"
|
|
63
|
+
"axios": "^1.6.7",
|
|
64
|
+
"kind-of": "^6.0.3",
|
|
65
|
+
"rollup-plugin-css-only": "^4.5.2"
|
|
65
66
|
}
|
|
66
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
|
}
|