bkui-vue 0.0.1-beta.402 → 0.0.1-beta.404
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 +5 -8
- 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/table/index.js +1 -1
- package/lib/table-column/index.js +1 -1
- package/lib/tree/index.js +1 -1
- package/package.json +2 -3
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) {
|
@@ -16903,7 +16900,7 @@ const IColumnType = {
|
|
16903
16900
|
};
|
16904
16901
|
const tableProps = {
|
16905
16902
|
data: PropTypes.arrayOf(PropTypes.any).def([]),
|
16906
|
-
columns: PropTypes.arrayOf(PropTypes.shape(IColumnType)).def([]),
|
16903
|
+
columns: PropTypes.arrayOf(PropTypes.shape(IColumnType).loose).def([]),
|
16907
16904
|
activeColumn: PropTypes.oneOfType([PropTypes.number.def(-1), PropTypes.arrayOf(PropTypes.number.def(-1))]),
|
16908
16905
|
columnPick: j("columnPick", {}).def("disabled"),
|
16909
16906
|
height: PropTypes.oneOfType([PropTypes.number, PropTypes.string]).def("auto"),
|
@@ -28743,7 +28740,7 @@ const treeProps = {
|
|
28743
28740
|
disabledFolderSelectable: PropTypes.bool.def(false),
|
28744
28741
|
showCheckbox: PropTypes.bool.def(false),
|
28745
28742
|
showNodeTypeIcon: PropTypes.bool.def(true),
|
28746
|
-
selected: PropTypes.oneOfType([PropTypes.string,
|
28743
|
+
selected: PropTypes.oneOfType([PropTypes.string, PropTypes.number, PropTypes.object]).def(null),
|
28747
28744
|
autoCheckChildren: PropTypes.bool.def(true),
|
28748
28745
|
autoOpenParentNode: PropTypes.bool.def(true),
|
28749
28746
|
expandAll: PropTypes.bool.def(false),
|