Skip to content

Commit 55c20af

Browse files
committed
Hover effect değişiklikler yapıldı
1 parent 054e805 commit 55c20af

File tree

7 files changed

+128
-128
lines changed

7 files changed

+128
-128
lines changed

dist/v-form-builder.common.js

Lines changed: 60 additions & 60 deletions
Large diffs are not rendered by default.

dist/v-form-builder.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/v-form-builder.umd.js

Lines changed: 60 additions & 60 deletions
Large diffs are not rendered by default.

dist/v-form-builder.umd.min.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/views/renderer/ControlView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040

4141
<div v-else class="control-view">
42-
<div v-if="!isHidden">
42+
<div v-show="!isHidden">
4343
<!-- render the label, readonly should show the label -->
4444
<ControlLabel
4545
v-show="control.isShowLabel || readOnly"

src/views/renderer/section-views/NormalSectionView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
</div>
2727
</div>
2828
<div class="normal-section" v-else>
29-
<div v-if="!isHidden">
29+
<div v-show="!isHidden">
3030
<div class="headline-block" v-show="section.isShowHeadline">
3131
<h2 :class="section.headlineAdditionalClass" v-text="section.headline"></h2>
3232
<p :class="section.subHeadlineAdditionalClass" v-text="section.subHeadline"></p>

src/views/renderer/section-views/ToggleableSectionView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
</div>
4848
<div v-else class="toggleable-section">
49-
<div v-if="!isHidden">
49+
<div v-show="!isHidden">
5050
<div class="headline-block">
5151
<h2 :class="section.headlineAdditionalClass">
5252
<!-- chevron icon to show/hide -->

0 commit comments

Comments
 (0)