Skip to content

Commit

Permalink
fix(forms): misc style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Leopoldthecoder committed Nov 23, 2023
1 parent 0286c73 commit 1aa146b
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 36 deletions.
1 change: 1 addition & 0 deletions packages/core/forms/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
"extends": "../../../package.json"
},
"dependencies": {
"@kong/icons": "^1.8.0",
"fecha": "^4.2.3",
"lodash": "^4.17.21"
},
Expand Down
1 change: 0 additions & 1 deletion packages/core/forms/src/generator/FormGenerator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,6 @@ export default {
&:hover {
background-color: #e6e6e6;
border-color: #adadad;
color: #333;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,22 @@
</KCard>

<KButton
appearance="tertiary"
class="array-card-remove-button"
@click="$emit('remove-item')"
>
<template #icon>
<KIcon
icon="trash"
size="18"
/>
</template>
<TrashIcon />
</KButton>
</div>
</template>

<script>
import { TrashIcon } from '@kong/icons'
export default {
name: 'FieldArrayCardContainer',
components: { TrashIcon },
props: {
model: {
type: Object,
Expand Down Expand Up @@ -50,10 +50,15 @@ export default {

<style lang="scss" scoped>
.array-card-container {
align-items: center;
display: flex;
.card {
margin-bottom: 8px;
}
.array-card-remove-button {
margin-left: 12px;
}
}
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,17 @@
type="button"
@click="$emit('remove-item')"
>
<template #icon>
<KIcon
icon="trash"
size="18"
/>
</template>
<TrashIcon />
</KButton>
</div>
</template>

<script>
import { TrashIcon } from '@kong/icons'
export default {
name: 'FieldArrayItem',
components: { TrashIcon },
props: {
model: {
type: String,
Expand Down
24 changes: 12 additions & 12 deletions packages/core/forms/src/generator/fields/advanced/FieldMetric.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,30 @@
@click="contentVisible = !contentVisible"
>
{{ model.name ? model.name : 'New Item' }}
<i class="material-icons">add</i>
<AddIcon class="metric-add-icon" />
</div>
<transition name="slide-fade">
<div
v-if="contentVisible"
class="content"
>
<slot />
<i
class="material-icons"
<TrashIcon
class="metric-remove-icon"
@click="$emit('remove-item')"
>
delete
</i>
/>
</div>
</transition>
</div>
</template>

<script>
import { AddIcon, TrashIcon } from '@kong/icons'
import abstractField from '../abstractField'
export default {
name: 'FieldMetric',
components: { AddIcon, TrashIcon },
mixins: [abstractField],
emits: ['remove-item'],
Expand Down Expand Up @@ -76,7 +76,7 @@ export default {
width: 100%;
&:hover { background-color: #f5f5f5; }
}
i {
.metric-add-icon {
margin-left: auto;
transition: all .7s;
user-select: none;
Expand All @@ -87,10 +87,8 @@ export default {
height: auto;
overflow: hidden;
transition: all .5s;
i:hover {
color: #c9302c;
}
.material-icons {
.metric-remove-icon {
float: right;
margin-bottom: 16px;
margin-right: 16px;
Expand All @@ -99,6 +97,8 @@ export default {
padding: 16px;
}
}
&.active .title i { transform: rotate(135deg); }
&.active .title .metric-add-icon {
transform: rotate(45deg);
}
}
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -211,17 +211,6 @@ export default {
},
}
</script>
<style lang="scss">
.vue-form-generator .field-wrap {
.k-button {
&,
&:hover {
background: none;
border: none;
}
}
}
</style>

<style lang="scss" scoped>
.object-advanced-wrapper {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@
<template #actionButton>
<div class="filter-clear-button-container">
<KButton
appearance="tertiary"
size="small"
@click="clearFields"
>
Expand Down
3 changes: 3 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1aa146b

Please sign in to comment.