@appscode/design-system 1.0.43-alpha.148 → 1.0.43-alpha.149
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
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
<!-- modal body end -->
|
|
40
40
|
|
|
41
41
|
<!-- modal footer start -->
|
|
42
|
-
<div
|
|
42
|
+
<div v-if="!hideActionFooter"
|
|
43
43
|
class="ac-modal-footer action-footer is-flex is-align-items-center is-justify-content-space-between"
|
|
44
44
|
>
|
|
45
45
|
<div>
|
|
@@ -77,6 +77,10 @@ export default {
|
|
|
77
77
|
ignoreOutsideClick: {
|
|
78
78
|
type: Boolean,
|
|
79
79
|
default: false
|
|
80
|
+
},
|
|
81
|
+
hideActionFooter: {
|
|
82
|
+
type: Boolean,
|
|
83
|
+
default: false
|
|
80
84
|
}
|
|
81
85
|
},
|
|
82
86
|
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
<!-- modal body end -->
|
|
38
38
|
|
|
39
39
|
<!-- modal footer start -->
|
|
40
|
-
<div
|
|
40
|
+
<div v-if="!hideActionFooter"
|
|
41
41
|
class="ac-modal-footer action-footer is-flex is-align-items-center is-justify-content-space-between"
|
|
42
42
|
>
|
|
43
43
|
<div>
|
|
@@ -77,6 +77,10 @@ export default defineComponent({
|
|
|
77
77
|
ignoreOutsideClick: {
|
|
78
78
|
type: Boolean,
|
|
79
79
|
default: false
|
|
80
|
+
},
|
|
81
|
+
hideActionFooter: {
|
|
82
|
+
type: Boolean,
|
|
83
|
+
default: false
|
|
80
84
|
}
|
|
81
85
|
},
|
|
82
86
|
emits: ["closemodal"],
|