@tekkare/romulus 0.1.125 → 0.1.126
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/module.json
CHANGED
|
@@ -321,6 +321,7 @@ onUnmounted(() => {
|
|
|
321
321
|
:style="{ '--rm-fcx-panel-w': panelWidth }"
|
|
322
322
|
>
|
|
323
323
|
<button
|
|
324
|
+
type="button"
|
|
324
325
|
class="filter-complex__trigger"
|
|
325
326
|
:class="{ 'filter-complex__trigger--active': isActive }"
|
|
326
327
|
@click="toggle"
|
|
@@ -390,6 +391,7 @@ onUnmounted(() => {
|
|
|
390
391
|
<button
|
|
391
392
|
v-for="option in visibleAvailable"
|
|
392
393
|
:key="option.value"
|
|
394
|
+
type="button"
|
|
393
395
|
class="filter-complex__item"
|
|
394
396
|
@click="addOption(option.value)"
|
|
395
397
|
>
|
|
@@ -445,6 +447,7 @@ onUnmounted(() => {
|
|
|
445
447
|
<button
|
|
446
448
|
v-for="option in filteredSelected"
|
|
447
449
|
:key="option.value"
|
|
450
|
+
type="button"
|
|
448
451
|
class="filter-complex__item"
|
|
449
452
|
@click="removeOption(option.value)"
|
|
450
453
|
>
|