ninegrid2 6.430.0 → 6.431.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 +1 -1
- package/dist/bundle.esm.js +1 -1
- package/dist/etc/ngColumns.js +1 -1
- package/package.json +1 -1
- package/src/etc/ngColumns.js +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -14873,7 +14873,7 @@ class ngColumns
|
|
|
14873
14873
|
return {
|
|
14874
14874
|
"name": el.dataset.bind,
|
|
14875
14875
|
"type": (el.dataset.type || "string").toLocaleLowerCase(),
|
|
14876
|
-
"desc": ths.length > 0 ? ths[
|
|
14876
|
+
"desc": ths.length > 0 ? ths[ths.length - 1].getAttribute("title") : null,
|
|
14877
14877
|
};
|
|
14878
14878
|
};
|
|
14879
14879
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -14871,7 +14871,7 @@ class ngColumns
|
|
|
14871
14871
|
return {
|
|
14872
14872
|
"name": el.dataset.bind,
|
|
14873
14873
|
"type": (el.dataset.type || "string").toLocaleLowerCase(),
|
|
14874
|
-
"desc": ths.length > 0 ? ths[
|
|
14874
|
+
"desc": ths.length > 0 ? ths[ths.length - 1].getAttribute("title") : null,
|
|
14875
14875
|
};
|
|
14876
14876
|
};
|
|
14877
14877
|
|
package/dist/etc/ngColumns.js
CHANGED
|
@@ -20,7 +20,7 @@ export class ngColumns
|
|
|
20
20
|
return {
|
|
21
21
|
"name": el.dataset.bind,
|
|
22
22
|
"type": (el.dataset.type || "string").toLocaleLowerCase(),
|
|
23
|
-
"desc": ths.length > 0 ? ths[
|
|
23
|
+
"desc": ths.length > 0 ? ths[ths.length - 1].getAttribute("title") : null,
|
|
24
24
|
};
|
|
25
25
|
};
|
|
26
26
|
|
package/package.json
CHANGED
package/src/etc/ngColumns.js
CHANGED
|
@@ -20,7 +20,7 @@ export class ngColumns
|
|
|
20
20
|
return {
|
|
21
21
|
"name": el.dataset.bind,
|
|
22
22
|
"type": (el.dataset.type || "string").toLocaleLowerCase(),
|
|
23
|
-
"desc": ths.length > 0 ? ths[
|
|
23
|
+
"desc": ths.length > 0 ? ths[ths.length - 1].getAttribute("title") : null,
|
|
24
24
|
};
|
|
25
25
|
};
|
|
26
26
|
|