ninegrid2 6.573.0 → 6.574.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/ai/aiContainer.js +2 -2
- package/dist/bundle.cjs.js +2 -2
- package/dist/bundle.esm.js +2 -2
- package/package.json +1 -1
- package/src/ai/aiContainer.js +2 -2
package/dist/ai/aiContainer.js
CHANGED
|
@@ -248,8 +248,8 @@ class aiContainer extends HTMLElement
|
|
|
248
248
|
const columnInfo = this.#getColumnInfo();
|
|
249
249
|
const uniqueKey = this.#getUniqueKey();
|
|
250
250
|
|
|
251
|
-
const isAnalyze = this.settings.shadowRoot.querySelector("chkAnalyze")
|
|
252
|
-
const analyzeCnt = this.settings.shadowRoot.querySelector("txtAnalyze")
|
|
251
|
+
const isAnalyze = this.settings.shadowRoot.querySelector("#chkAnalyze")?.checked || false;
|
|
252
|
+
const analyzeCnt = Number(this.settings.shadowRoot.querySelector("#txtAnalyze")?.value || 0);
|
|
253
253
|
|
|
254
254
|
console.log(isAnalyze, analyzeCnt);
|
|
255
255
|
|
package/dist/bundle.cjs.js
CHANGED
|
@@ -54411,8 +54411,8 @@ class aiContainer extends HTMLElement
|
|
|
54411
54411
|
const columnInfo = this.#getColumnInfo();
|
|
54412
54412
|
const uniqueKey = this.#getUniqueKey();
|
|
54413
54413
|
|
|
54414
|
-
const isAnalyze = this.settings.shadowRoot.querySelector("chkAnalyze")
|
|
54415
|
-
const analyzeCnt = this.settings.shadowRoot.querySelector("txtAnalyze")
|
|
54414
|
+
const isAnalyze = this.settings.shadowRoot.querySelector("#chkAnalyze")?.checked || false;
|
|
54415
|
+
const analyzeCnt = Number(this.settings.shadowRoot.querySelector("#txtAnalyze")?.value || 0);
|
|
54416
54416
|
|
|
54417
54417
|
console.log(isAnalyze, analyzeCnt);
|
|
54418
54418
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -54409,8 +54409,8 @@ class aiContainer extends HTMLElement
|
|
|
54409
54409
|
const columnInfo = this.#getColumnInfo();
|
|
54410
54410
|
const uniqueKey = this.#getUniqueKey();
|
|
54411
54411
|
|
|
54412
|
-
const isAnalyze = this.settings.shadowRoot.querySelector("chkAnalyze")
|
|
54413
|
-
const analyzeCnt = this.settings.shadowRoot.querySelector("txtAnalyze")
|
|
54412
|
+
const isAnalyze = this.settings.shadowRoot.querySelector("#chkAnalyze")?.checked || false;
|
|
54413
|
+
const analyzeCnt = Number(this.settings.shadowRoot.querySelector("#txtAnalyze")?.value || 0);
|
|
54414
54414
|
|
|
54415
54415
|
console.log(isAnalyze, analyzeCnt);
|
|
54416
54416
|
|
package/package.json
CHANGED
package/src/ai/aiContainer.js
CHANGED
|
@@ -248,8 +248,8 @@ class aiContainer extends HTMLElement
|
|
|
248
248
|
const columnInfo = this.#getColumnInfo();
|
|
249
249
|
const uniqueKey = this.#getUniqueKey();
|
|
250
250
|
|
|
251
|
-
const isAnalyze = this.settings.shadowRoot.querySelector("chkAnalyze")
|
|
252
|
-
const analyzeCnt = this.settings.shadowRoot.querySelector("txtAnalyze")
|
|
251
|
+
const isAnalyze = this.settings.shadowRoot.querySelector("#chkAnalyze")?.checked || false;
|
|
252
|
+
const analyzeCnt = Number(this.settings.shadowRoot.querySelector("#txtAnalyze")?.value || 0);
|
|
253
253
|
|
|
254
254
|
console.log(isAnalyze, analyzeCnt);
|
|
255
255
|
|