|
@@ -17,6 +17,17 @@ const props = defineProps({
|
|
|
}
|
|
|
});
|
|
|
|
|
|
+const inputThemeOverrides = {
|
|
|
+ border: '0px',
|
|
|
+ borderHover: '0px',
|
|
|
+ borderFocus: '0px',
|
|
|
+ borderFocusWarning: '0px',
|
|
|
+ boxShadowFocus: 'none',
|
|
|
+ fontSizeMedium: '15px',
|
|
|
+ textColor: '#1A2029',
|
|
|
+ placeholderColor: 'rgba(158, 158, 158, 0.6)'
|
|
|
+}
|
|
|
+
|
|
|
const emit = defineEmits(['onClick', 'onEnter']);
|
|
|
|
|
|
const MAX_NUM = 5;
|
|
@@ -394,6 +405,7 @@ defineExpose({
|
|
|
@focus="focusInput"
|
|
|
@blur="blurInput"
|
|
|
@keypress="handleInpEnter"
|
|
|
+ :theme-overrides="inputThemeOverrides"
|
|
|
/>
|
|
|
</div>
|
|
|
</div>
|