diff --git a/src/components/v-input/v-input.vue b/src/components/v-input/v-input.vue index 2c3f21fd33..78cecb251d 100644 --- a/src/components/v-input/v-input.vue +++ b/src/components/v-input/v-input.vue @@ -29,13 +29,13 @@ {{ suffix }} props.min) { + if (props.value > props.min) { input.value.stepDown(); - emit('input', +input.value.value); + emit('input', input.value.value); } } }, diff --git a/src/interfaces/icon/index.ts b/src/interfaces/icon/index.ts index c4c6c8b5d6..8484801103 100644 --- a/src/interfaces/icon/index.ts +++ b/src/interfaces/icon/index.ts @@ -6,12 +6,5 @@ export default defineInterface(({ i18n }) => ({ name: i18n.t('interfaces.icon.icon'), icon: 'insert_emoticon', component: InterfaceIcon, - options: [ - { - field: 'iconColor', - name: 'Icon Color', - width: 'half', - interface: 'color', - }, - ], + options: [], })); diff --git a/src/interfaces/icon/readme.md b/src/interfaces/icon/readme.md index 4da98a8f13..dcf30d1d94 100644 --- a/src/interfaces/icon/readme.md +++ b/src/interfaces/icon/readme.md @@ -4,4 +4,5 @@ | Option | Description | Default | | ---------- | ----------- | ------- | -| `readonly` | Readonly | `false` | +| `disabled` | Disabled | `false` | +| `width` | Width | `half` |