From af8be4350757929555a79dcda6f9f7f0f974aa87 Mon Sep 17 00:00:00 2001 From: Nick Coutsos Date: Sat, 16 Oct 2021 20:55:10 -0400 Subject: Rename search component and properties --- application/components/key.vue | 11 +- application/components/search.vue | 190 -------------------------------- application/components/value-picker.vue | 190 ++++++++++++++++++++++++++++++++ 3 files changed, 196 insertions(+), 195 deletions(-) delete mode 100644 application/components/search.vue create mode 100644 application/components/value-picker.vue diff --git a/application/components/key.vue b/application/components/key.vue index b44fb1e..f958c88 100644 --- a/application/components/key.vue +++ b/application/components/key.vue @@ -25,13 +25,14 @@ :onSelect="handleSelectCode" /> - @@ -50,7 +51,7 @@ import { getKeyStyles } from '../key-units' import KeyValue from './key-value.vue' import KeyParamlist from './key-paramlist.vue' -import Search from './search.vue' +import ValuePicker from './value-picker.vue' function makeIndex (tree) { const index = [] @@ -76,7 +77,7 @@ export default { components: { 'key-value': KeyValue, 'key-paramlist': KeyParamlist, - 'search': Search + ValuePicker }, data () { return { diff --git a/application/components/search.vue b/application/components/search.vue deleted file mode 100644 index a5ecdf5..0000000 --- a/application/components/search.vue +++ /dev/null @@ -1,190 +0,0 @@ - - - - - \ No newline at end of file diff --git a/application/components/value-picker.vue b/application/components/value-picker.vue new file mode 100644 index 0000000..fca91f7 --- /dev/null +++ b/application/components/value-picker.vue @@ -0,0 +1,190 @@ + + + + + \ No newline at end of file -- cgit v1.2.3