nuxt-hs-ui 2.11.4 → 2.11.5
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
|
@@ -221,7 +221,7 @@ interface SelectItemShow extends DisplaySelectItem<IdType> {
|
|
|
221
221
|
const displayList: Ref<SelectItemShow[]> = ref([]);
|
|
222
222
|
|
|
223
223
|
const setDisplayList = () => {
|
|
224
|
-
console.log("setDisplayList");
|
|
224
|
+
// console.log("setDisplayList");
|
|
225
225
|
displayList.value = useDisplayList<IdType>({
|
|
226
226
|
list: ObjectCopy(props.list).map((row) => {
|
|
227
227
|
return { ...row, text: gt(row.text) };
|
|
@@ -390,7 +390,7 @@ const onKeyup = (event: KeyboardEvent) => {
|
|
|
390
390
|
const setValue = async (row: SelectItemShow | null) => {
|
|
391
391
|
if (props.disabled) return;
|
|
392
392
|
if (props.readonly) return;
|
|
393
|
-
console.log(row);
|
|
393
|
+
// console.log(row);
|
|
394
394
|
displayData.value = row;
|
|
395
395
|
};
|
|
396
396
|
|