File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change 2
2
<div >
3
3
<span v-if =" title" class =" EditorField-Title" >{{ title }}</span >
4
4
<div class =" EditorField-Form" >
5
- <input-field :label =" label" :placeholder =" placeholder" />
5
+ <editor-input-field
6
+ :label =" label"
7
+ :placeholder =" placeholder"
8
+ :transparent =" transparent"
9
+ />
6
10
<content-card-editor-button
7
11
v-if =" iconName"
8
12
class =" Button"
14
18
15
19
<script lang="ts">
16
20
import Vue from ' vue'
17
- import InputField from ' @/components/InputField .vue'
21
+ import EditorInputField from ' @/components/EditorInputField .vue'
18
22
import ContentCardEditorButton from ' @/components/ContentCardEditorButton.vue'
19
23
20
24
export default Vue .extend ({
21
- components: { InputField , ContentCardEditorButton },
25
+ components: { EditorInputField , ContentCardEditorButton },
22
26
props: {
23
27
title: {
24
28
type: String ,
@@ -35,6 +39,11 @@ export default Vue.extend({
35
39
required: false ,
36
40
default: ' '
37
41
},
42
+ transparent: {
43
+ type: Boolean ,
44
+ required: false ,
45
+ default: false
46
+ },
38
47
iconName: {
39
48
type: String ,
40
49
required: false ,
You can’t perform that action at this time.
0 commit comments