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
@@ -4,7 +4,7 @@
4
4
  "compatibility": {
5
5
  "nuxt": ">=3.15.0"
6
6
  },
7
- "version": "2.11.4",
7
+ "version": "2.11.5",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "0.8.4",
10
10
  "unbuild": "2.0.0"
@@ -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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-hs-ui",
3
- "version": "2.11.4",
3
+ "version": "2.11.5",
4
4
  "description": "My new Nuxt module",
5
5
  "repository": "https://github.com/hare-systems-ryo/nuxt-hs-ui",
6
6
  "license": "MIT",