comand-component-library 4.0.17 → 4.0.18
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/comand-component-library.js +910 -875
- package/dist/comand-component-library.umd.cjs +3 -3
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/src/ComponentLibrary.vue +15 -1
- package/src/assets/data/listOfComponents.json +1 -0
- package/src/{pages/BasicForm.vue → components/CmdBasicForm.vue} +9 -14
- package/src/components/CmdBreadcrumbs.vue +2 -2
- package/src/components/CmdFancyBox.vue +3 -3
- package/src/components/CmdPageFooter.vue +36 -0
- package/src/components/CmdPageHeader.vue +2 -2
- package/src/components/CmdSiteFooter.vue +1 -3
- package/src/components/CmdSiteHeader.vue +0 -2
- package/src/components/CmdSwitchLanguage.vue +1 -1
- package/src/index.js +1 -1
- package/src/pages/PageOverview.vue +1 -43
- /package/src/mixins/{pages/BasicForm → CmdBasicForm}/DefaultMessageProperties.js +0 -0
@@ -1,12 +1,4 @@
|
|
1
1
|
<template>
|
2
|
-
<!-- begin basic-form ------------------------------------------------------------------------------------------------------------------------------------------------------->
|
3
|
-
<CmdWidthLimitationWrapper>
|
4
|
-
<h2 class="headline-demopage" id="section-basic-form">
|
5
|
-
<span>Basic Form</span>
|
6
|
-
</h2>
|
7
|
-
<BasicForm :formAction="basicForm.formAction" />
|
8
|
-
</CmdWidthLimitationWrapper>
|
9
|
-
<!-- end basic-form ------------------------------------------------------------------------------------------------------------------------------------------------------->
|
10
2
|
|
11
3
|
<!-- begin basic-form ------------------------------------------------------------------------------------------------------------------------------------------------------->
|
12
4
|
<CmdWidthLimitationWrapper>
|
@@ -66,41 +58,7 @@ export default {
|
|
66
58
|
faqsData,
|
67
59
|
boxesTeamOverviewData,
|
68
60
|
listOfDownloadsData,
|
69
|
-
listOfSiteLinksData
|
70
|
-
basicForm: {
|
71
|
-
configuration: {
|
72
|
-
salutation: {
|
73
|
-
name: "salutation",
|
74
|
-
default: "m",
|
75
|
-
replaceInputType: true
|
76
|
-
},
|
77
|
-
lastName: {
|
78
|
-
name: "surname",
|
79
|
-
required: true,
|
80
|
-
type: "text"
|
81
|
-
},
|
82
|
-
firstName: {
|
83
|
-
required: false,
|
84
|
-
type: "text"
|
85
|
-
},
|
86
|
-
email: {
|
87
|
-
required: true,
|
88
|
-
type: "email"
|
89
|
-
},
|
90
|
-
phone: {
|
91
|
-
required: false,
|
92
|
-
type: "phone"
|
93
|
-
},
|
94
|
-
additionalText: {
|
95
|
-
required: false,
|
96
|
-
element: "textarea"
|
97
|
-
},
|
98
|
-
acceptPrivacy: {
|
99
|
-
required: true,
|
100
|
-
replaceInputType: true
|
101
|
-
}
|
102
|
-
}
|
103
|
-
}
|
61
|
+
listOfSiteLinksData
|
104
62
|
}
|
105
63
|
}
|
106
64
|
}
|
File without changes
|