diff --git a/.prettierrc b/.prettierrc index 276a47a73..3c409a1a8 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,5 +1,5 @@ { - "printWidth": 80, + "printWidth": 90, "singleQuote": true, "trailingComma": "none" } diff --git a/packages/search/index.js b/packages/search/index.js deleted file mode 100644 index e332cc98b..000000000 --- a/packages/search/index.js +++ /dev/null @@ -1,95 +0,0 @@ -import { use } from '../utils'; -import Field from '../field'; - -const [sfc, bem, t] = use('search'); - -export default sfc({ - inheritAttrs: false, - - props: { - value: String, - label: String, - showAction: Boolean, - shape: { - type: String, - default: 'square' - }, - background: { - type: String, - default: '#ffffff' - } - }, - - computed: { - listeners() { - return { - ...this.$listeners, - input: this.onInput, - keypress: this.onKeypress - }; - } - }, - - methods: { - onInput(value) { - this.$emit('input', value); - }, - - onKeypress(event) { - // press enter - if (event.keyCode === 13) { - event.preventDefault(); - this.$emit('search', this.value); - } - this.$emit('keypress', event); - }, - - onBack() { - this.$emit('input', ''); - this.$emit('cancel'); - }, - - renderLabel() { - return this.slots('label') - ? this.slots('label') - : this.label && (