Compare commits

...

3 Commits

Author SHA1 Message Date
Kalista Payne 210e23ee90 Merge branch 'develop' into phillip/bv-remove1 2026-03-24 17:34:30 -05:00
Kalista Payne 69333cb2e1 fix(lint): self-closing 2026-03-24 17:31:25 -05:00
Phillip Thelen 04396a01d2 remove bootstrap-vue form plugins 2026-02-17 12:56:13 +01:00
5 changed files with 11 additions and 17 deletions
@@ -25,7 +25,7 @@
@keydown.down="autoCompleteMixinSelectNextAutocomplete($event)"
@keypress.enter="autoCompleteMixinSelectAutocomplete($event)"
@keydown.esc="autoCompleteMixinHandleEscape($event)"
>
></input>
</div>
<div class="form-group">
<label>
@@ -44,7 +44,7 @@
@keydown.down="autoCompleteMixinSelectNextAutocomplete($event)"
@keypress.enter="autoCompleteMixinSelectAutocomplete($event)"
@keydown.esc="autoCompleteMixinHandleEscape($event)"
>
></input>
</div>
<div class="form-group">
<label>
@@ -179,9 +179,6 @@
</button>
</div>
</div>
<!-- @TODO: Implement in V2 .form-grouplabel
strong(v-once) {{$t('endDate')}}
b-form-input.end-date-input-->
<div
v-if="creating"
class="form-group"
@@ -10,11 +10,12 @@
<label>
<strong v-once>{{ $t('name') }} *</strong>
</label>
<b-form-input
<input
class="form-control"
v-model="workingGroup.name"
type="text"
:placeholder="isParty ? $t('newPartyPlaceholder') : $t('newGuildPlaceholder')"
/>
></input>
</div>
<div class="form-group">
<label>
@@ -10,7 +10,8 @@
>
<b-dropdown-header>
<div class="mb-2 search-input-wrapper">
<b-form-input
<input
class="form-control"
ref="searchInput"
v-model="search"
type="text"
@@ -22,7 +23,7 @@
@keydown.down="autoCompleteMixinSelectNextAutocomplete($event)"
@keydown.enter="searchEnterHandler($event)"
@keydown.esc="searchEscHandler($event)"
/>
/></input>
<emoji-auto-complete
ref="emojiAutocomplete"
:text="search"
@@ -11,12 +11,13 @@
>
<b-dropdown-header>
<div class="mb-2">
<b-form-input
<input
class="form-control"
v-model="search"
type="text"
:placeholder="searchPlaceholder"
@keyup.enter="handleSubmit"
/>
></input>
</div>
</b-dropdown-header>
<template #button-content>
-6
View File
@@ -4,9 +4,6 @@ import {
ModalPlugin,
DropdownPlugin,
PopoverPlugin,
FormPlugin,
FormInputPlugin,
FormRadioPlugin,
TooltipPlugin,
NavbarPlugin,
CollapsePlugin,
@@ -38,9 +35,6 @@ Vue.use(StoreModule);
Vue.use(ModalPlugin);
Vue.use(DropdownPlugin);
Vue.use(PopoverPlugin);
Vue.use(FormPlugin);
Vue.use(FormInputPlugin);
Vue.use(FormRadioPlugin);
Vue.use(TooltipPlugin);
Vue.use(NavbarPlugin);
Vue.use(CollapsePlugin);