aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-03-28 11:49:12 +1100
committerTerry Truong <terry06890@gmail.com>2022-03-28 11:49:12 +1100
commit34e34b9620d88b5d76b87a4bbcd473c2fc6002a9 (patch)
tree03c49e4473f52172682a3d00498a4250df82eb1a /src/components
parentb82d3a24b2487454397535c6fefda250d4ff6114 (diff)
Rename Settings to SettingsPane, and ParentBar to AncestryBarcore-widgets
Diffstat (limited to 'src/components')
-rw-r--r--src/components/AncestryBar.vue (renamed from src/components/ParentBar.vue)6
-rw-r--r--src/components/SettingsPane.vue (renamed from src/components/Settings.vue)0
2 files changed, 3 insertions, 3 deletions
diff --git a/src/components/ParentBar.vue b/src/components/AncestryBar.vue
index 0f73008..2e0d5d0 100644
--- a/src/components/ParentBar.vue
+++ b/src/components/AncestryBar.vue
@@ -12,7 +12,7 @@ export default defineComponent({
},
data(){
return {
- tileMargin: 5, //px (gap between separated-parent tiles)
+ tileMargin: 5, //px (gap between detached-ancestor tiles)
scrollBarOffset: 10, //px (gap for scrollbar, used to prevent overlap with tiles)
};
},
@@ -52,7 +52,7 @@ export default defineComponent({
},
methods: {
onClick(node: LayoutNode){
- this.$emit('sepd-parent-clicked', node);
+ this.$emit('detached-ancestor-clicked', node);
},
onInnerInfoIconClicked(data: LayoutNode){
this.$emit('info-icon-clicked', data);
@@ -61,7 +61,7 @@ export default defineComponent({
components: {
TileImg,
},
- emits: ['sepd-parent-clicked', 'info-icon-clicked'],
+ emits: ['detached-ancestor-clicked', 'info-icon-clicked'],
});
</script>
diff --git a/src/components/Settings.vue b/src/components/SettingsPane.vue
index 4fa3e03..4fa3e03 100644
--- a/src/components/Settings.vue
+++ b/src/components/SettingsPane.vue