bkui-vue 0.0.1-beta.401 → 0.0.1-beta.403
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/index.cjs.js +34 -34
- package/dist/index.esm.js +3 -6
- package/dist/index.umd.js +35 -35
- package/lib/select/index.d.ts +6 -6
- package/lib/select/index.js +1 -1
- package/lib/select/select.d.ts +2 -2
- package/lib/volar.components.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
@@ -15677,9 +15677,6 @@ var Component$j = defineComponent({
|
|
15677
15677
|
multiple,
|
15678
15678
|
remoteMethod,
|
15679
15679
|
loading: loading2,
|
15680
|
-
loadingText,
|
15681
|
-
noDataText,
|
15682
|
-
noMatchText,
|
15683
15680
|
popoverMinWidth,
|
15684
15681
|
showOnInit,
|
15685
15682
|
multipleMode,
|
@@ -15703,19 +15700,19 @@ var Component$j = defineComponent({
|
|
15703
15700
|
if (props2.noDataText === void 0) {
|
15704
15701
|
return t2.value.noData;
|
15705
15702
|
}
|
15706
|
-
return noDataText;
|
15703
|
+
return props2.noDataText;
|
15707
15704
|
});
|
15708
15705
|
const localNoMatchText = computed(() => {
|
15709
15706
|
if (props2.noMatchText === void 0) {
|
15710
15707
|
return t2.value.noMatchedData;
|
15711
15708
|
}
|
15712
|
-
return noMatchText;
|
15709
|
+
return props2.noMatchText;
|
15713
15710
|
});
|
15714
15711
|
const localLoadingText = computed(() => {
|
15715
15712
|
if (props2.loadingText === void 0) {
|
15716
15713
|
return t2.value.loading;
|
15717
15714
|
}
|
15718
|
-
return loadingText;
|
15715
|
+
return props2.loadingText;
|
15719
15716
|
});
|
15720
15717
|
const localPlaceholder = computed(() => {
|
15721
15718
|
if (props2.placeholder === void 0) {
|