comand-component-library 4.0.52 → 4.0.54
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/comand-component-library.js +34 -17
- package/dist/comand-component-library.umd.cjs +2 -2
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/assets/styles/component-library-global-styles.scss +0 -1
- package/src/components/CmdBox.vue +4 -1
- package/src/components/CmdContainer.vue +8 -0
- package/src/components/CmdFormElement.vue +2 -1
- package/src/components/CmdHeadline.vue +3 -1
- package/src/components/CmdTabs.vue +4 -2
- package/src/components/CmdTextImageBlock.vue +2 -0
- package/src/components/CmdWidthLimitationWrapper.vue +9 -9
- package/src/main.js +5 -7
package/src/main.js
CHANGED
@@ -4,26 +4,24 @@ import "comand-frontend-framework/styles"
|
|
4
4
|
|
5
5
|
import { createApp } from "vue"
|
6
6
|
|
7
|
-
// import ComponentLibrary from "./ComponentLibrary.vue"
|
8
7
|
import ComponentLibrary from "./ComponentLibrary.vue"
|
8
|
+
|
9
9
|
//import { createRouter, createWebHistory } from "vue-router"
|
10
10
|
import "clickout-event"
|
11
11
|
|
12
|
-
/* import directives */
|
12
|
+
/* begin import directives ---------------------------------------------------------------------------------------- */
|
13
13
|
// directive to format telephone- and fax-number
|
14
14
|
import directiveTelephone from "./directives/telephone"
|
15
15
|
|
16
16
|
// directive to set focus on specific form-elements
|
17
17
|
import directiveFocus from "./directives/focus"
|
18
|
+
/* end import directives ---------------------------------------------------------------------------------------- */
|
18
19
|
|
19
|
-
/* begin imports css from comand-
|
20
|
+
/* begin imports css from comand-ui-iconfonts-dependency ---------------------------------------------------------------------------------------- */
|
20
21
|
import 'comand-ui-iconfonts/src/fonts/base-iconfont/base-iconfont.css'
|
21
|
-
|
22
|
-
/* import additional iconfont containing company-logos */
|
23
22
|
import 'comand-ui-iconfonts/src/fonts/logos-iconfont/logos-iconfont.css'
|
24
|
-
|
25
|
-
/* import additional iconfont containing editmode-iconfont-icons */
|
26
23
|
import 'comand-ui-iconfonts/src/fonts/editmode-iconfont/editmode-iconfont.css'
|
24
|
+
/* end imports css from comand-ui-iconfonts-dependency ---------------------------------------------------------------------------------------- */
|
27
25
|
|
28
26
|
/* import css for global-styles */
|
29
27
|
import '@/assets/styles/component-library-global-styles.scss'
|