@enso-ui/how-to 4.0.1 → 4.0.6
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enso-ui/how-to",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.6",
|
|
4
4
|
"description": "Basic how-to package",
|
|
5
5
|
"main": "src/bulma/pages/howTo/Index.vue",
|
|
6
6
|
"scripts": {
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"@fortawesome/fontawesome-svg-core": "^1.2.2",
|
|
29
29
|
"@fortawesome/free-regular-svg-icons": "^5.2.0",
|
|
30
30
|
"@fortawesome/free-solid-svg-icons": "^5.2.0",
|
|
31
|
+
"@fortawesome/vue-fontawesome": "3.0.0-5",
|
|
31
32
|
"v-tooltip": "4.0.0-alpha.1",
|
|
32
33
|
"video.js": "^7.0",
|
|
33
34
|
"vue": "^3.0",
|
|
@@ -40,7 +41,7 @@
|
|
|
40
41
|
"autoprefixer": "^9.6.1",
|
|
41
42
|
"babel-eslint": "^10.0.1",
|
|
42
43
|
"cross-env": "^6.0.0",
|
|
43
|
-
"eslint": "^7.0",
|
|
44
|
+
"eslint": "^7.0.0",
|
|
44
45
|
"eslint-import-resolver-alias": "^1.1.2",
|
|
45
46
|
"eslint-plugin-vue": "^8.0.0"
|
|
46
47
|
}
|
|
@@ -170,6 +170,7 @@
|
|
|
170
170
|
</template>
|
|
171
171
|
|
|
172
172
|
<script>
|
|
173
|
+
import { FontAwesomeIcon as Fa } from '@fortawesome/vue-fontawesome';
|
|
173
174
|
import { library } from '@fortawesome/fontawesome-svg-core';
|
|
174
175
|
import {
|
|
175
176
|
faPlus, faUpload, faBan, faCheck, faPencilAlt, faTags,
|
|
@@ -185,7 +186,7 @@ export default {
|
|
|
185
186
|
|
|
186
187
|
directives: { focus },
|
|
187
188
|
|
|
188
|
-
components: {
|
|
189
|
+
components: { Fa, HowToVideo, Uploader, },
|
|
189
190
|
|
|
190
191
|
inject: ['canAccess', 'errorHandler', 'i18n', 'route', 'toastr'],
|
|
191
192
|
|
|
@@ -91,6 +91,7 @@
|
|
|
91
91
|
|
|
92
92
|
<script>
|
|
93
93
|
import { VTooltip } from 'v-tooltip';
|
|
94
|
+
import { FontAwesomeIcon as Fa } from '@fortawesome/vue-fontawesome';
|
|
94
95
|
import { library } from '@fortawesome/fontawesome-svg-core';
|
|
95
96
|
import { faInfo, faTags, faInfoCircle } from '@fortawesome/free-solid-svg-icons';
|
|
96
97
|
import { faTrashAlt, faEdit, faImage } from '@fortawesome/free-regular-svg-icons';
|
|
@@ -115,13 +116,14 @@ export default {
|
|
|
115
116
|
Card,
|
|
116
117
|
CardControl,
|
|
117
118
|
Confirmation,
|
|
118
|
-
videoPlayer,
|
|
119
119
|
CardHeader,
|
|
120
120
|
CardCollapse,
|
|
121
121
|
CardFooter,
|
|
122
122
|
CardFooterItem,
|
|
123
123
|
CardContent,
|
|
124
|
+
Fa,
|
|
124
125
|
Uploader,
|
|
126
|
+
videoPlayer,
|
|
125
127
|
},
|
|
126
128
|
|
|
127
129
|
inject: ['canAccess', 'errorHandler', 'i18n', 'route', 'toastr'],
|