ide-assi 0.655.0 → 0.656.0
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/bundle.cjs.js
CHANGED
|
@@ -237598,7 +237598,7 @@ class aiNatualInput extends HTMLElement
|
|
|
237598
237598
|
const placeholder = this.getAttribute("placeholder") || "자연어 검색어를 입력하세요 (ex: 작성자가 홍길동인 데이타를 찾아줘)";
|
|
237599
237599
|
|
|
237600
237600
|
this.innerHTML = `
|
|
237601
|
-
<input type="text" placeholder="${placeholder}" />
|
|
237601
|
+
<input type="text" placeholder="${placeholder}" style="width: 100%;" />
|
|
237602
237602
|
`;
|
|
237603
237603
|
|
|
237604
237604
|
this.#target = this.querySelector("input");
|
package/dist/bundle.esm.js
CHANGED
|
@@ -237594,7 +237594,7 @@ class aiNatualInput extends HTMLElement
|
|
|
237594
237594
|
const placeholder = this.getAttribute("placeholder") || "자연어 검색어를 입력하세요 (ex: 작성자가 홍길동인 데이타를 찾아줘)";
|
|
237595
237595
|
|
|
237596
237596
|
this.innerHTML = `
|
|
237597
|
-
<input type="text" placeholder="${placeholder}" />
|
|
237597
|
+
<input type="text" placeholder="${placeholder}" style="width: 100%;" />
|
|
237598
237598
|
`;
|
|
237599
237599
|
|
|
237600
237600
|
this.#target = this.querySelector("input");
|
|
@@ -45,7 +45,7 @@ class aiNatualInput extends HTMLElement
|
|
|
45
45
|
const placeholder = this.getAttribute("placeholder") || "자연어 검색어를 입력하세요 (ex: 작성자가 홍길동인 데이타를 찾아줘)";
|
|
46
46
|
|
|
47
47
|
this.innerHTML = `
|
|
48
|
-
<input type="text" placeholder="${placeholder}" />
|
|
48
|
+
<input type="text" placeholder="${placeholder}" style="width: 100%;" />
|
|
49
49
|
`;
|
|
50
50
|
|
|
51
51
|
this.#target = this.querySelector("input");
|
package/package.json
CHANGED
|
@@ -45,7 +45,7 @@ class aiNatualInput extends HTMLElement
|
|
|
45
45
|
const placeholder = this.getAttribute("placeholder") || "자연어 검색어를 입력하세요 (ex: 작성자가 홍길동인 데이타를 찾아줘)";
|
|
46
46
|
|
|
47
47
|
this.innerHTML = `
|
|
48
|
-
<input type="text" placeholder="${placeholder}" />
|
|
48
|
+
<input type="text" placeholder="${placeholder}" style="width: 100%;" />
|
|
49
49
|
`;
|
|
50
50
|
|
|
51
51
|
this.#target = this.querySelector("input");
|