@inspark/inspark-components 14.0.57 → 14.0.59
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/full/esm2020/components/button/button.component.mjs +2 -2
- package/full/esm2020/components/link/link.component.mjs +2 -2
- package/full/esm2020/components/table/table.component.mjs +3 -1
- package/full/fesm2015/inspark-inspark-components.mjs +4 -2
- package/full/fesm2015/inspark-inspark-components.mjs.map +1 -1
- package/full/fesm2020/inspark-inspark-components.mjs +4 -2
- package/full/fesm2020/inspark-inspark-components.mjs.map +1 -1
- package/full/package.json +1 -1
- package/interface/package.json +1 -1
- package/package.json +1 -1
|
@@ -631,7 +631,7 @@ class ButtonComponent extends Button {
|
|
|
631
631
|
else {
|
|
632
632
|
this._target = this.linkTarget === 'self' ? '_self' : 'blank';
|
|
633
633
|
}
|
|
634
|
-
if (this.icon && this.icon.indexOf('fa-') === -1 && this.icon.indexOf('pi-') === -1) {
|
|
634
|
+
if (this.icon && this.icon.indexOf('in-') === -1 && this.icon.indexOf('fa-') === -1 && this.icon.indexOf('pi-') === -1) {
|
|
635
635
|
this.isMaterialIcon = true;
|
|
636
636
|
}
|
|
637
637
|
else {
|
|
@@ -1737,6 +1737,8 @@ class TableComponent {
|
|
|
1737
1737
|
}
|
|
1738
1738
|
clear() {
|
|
1739
1739
|
this.dt.filterGlobal('', 'contains');
|
|
1740
|
+
this.searchText = '';
|
|
1741
|
+
this.dt.saveState();
|
|
1740
1742
|
}
|
|
1741
1743
|
localSearch(dt, searchText) {
|
|
1742
1744
|
dt.filterGlobal(searchText, 'contains');
|
|
@@ -2459,7 +2461,7 @@ class LinkComponent {
|
|
|
2459
2461
|
else {
|
|
2460
2462
|
this._target = this.linkTarget === 'self' ? '_self' : 'blank';
|
|
2461
2463
|
}
|
|
2462
|
-
if (this.icon && this.icon.indexOf('fa-') === -1) {
|
|
2464
|
+
if (this.icon && this.icon.indexOf('in-') === -1 && this.icon.indexOf('fa-') === -1) {
|
|
2463
2465
|
this.isMaterialIcon = true;
|
|
2464
2466
|
}
|
|
2465
2467
|
else {
|