@westartcom/bread-quasar-fields 0.1.16 → 0.1.18
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.
|
@@ -50,8 +50,6 @@
|
|
|
50
50
|
</div>
|
|
51
51
|
</div>
|
|
52
52
|
|
|
53
|
-
<div class="field-description" v-if="field.description">{{ field.description }}</div>
|
|
54
|
-
|
|
55
53
|
<div class="validation-errors" v-if="invalid && internalErrors && internalErrors.length">
|
|
56
54
|
<span class="error danger-txt-color" v-for="(error, index) in internalErrors" :key="index + 'error'">{{ error }}</span>
|
|
57
55
|
</div>
|
|
@@ -391,6 +389,7 @@ export default defineComponent({
|
|
|
391
389
|
|
|
392
390
|
.remove {
|
|
393
391
|
color: var(--color-danger);
|
|
392
|
+
cursor: pointer;
|
|
394
393
|
|
|
395
394
|
span {
|
|
396
395
|
cursor: pointer;
|
|
@@ -491,7 +491,7 @@ export default defineComponent({
|
|
|
491
491
|
async loadPrefetchedOptions() {
|
|
492
492
|
let params: ApiQueryParams = {
|
|
493
493
|
select: this.queryFields,
|
|
494
|
-
per_page: 20
|
|
494
|
+
per_page: this.customParams?.per_page ?? 20
|
|
495
495
|
};
|
|
496
496
|
|
|
497
497
|
if (this.customParams) {
|
|
@@ -616,7 +616,7 @@ export default defineComponent({
|
|
|
616
616
|
split: this.splitSearchQuery
|
|
617
617
|
},
|
|
618
618
|
paginate: true,
|
|
619
|
-
per_page: 20
|
|
619
|
+
per_page: this.customParams?.per_page ?? 20
|
|
620
620
|
};
|
|
621
621
|
|
|
622
622
|
if (this.customParams) {
|
package/fields/TextField.vue
CHANGED