ng-tailwind 2.24.311 → 2.24.312
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/bundles/ng-tailwind.umd.js +4 -9
- package/bundles/ng-tailwind.umd.js.map +1 -1
- package/components/ngt-dropzone/ngt-dropzone-file-viewer/ngt-dropzone-file-viewer.component.d.ts +1 -1
- package/esm2015/components/ngt-action/ngt-action.component.js +2 -4
- package/esm2015/components/ngt-datatable/ngt-tbody/ngt-tbody.component.js +2 -4
- package/esm2015/components/ngt-datatable/ngt-thead/ngt-thead.component.js +2 -4
- package/esm2015/components/ngt-dropzone/ngt-dropzone-file-viewer/ngt-dropzone-file-viewer.component.js +3 -2
- package/fesm2015/ng-tailwind.js +4 -9
- package/fesm2015/ng-tailwind.js.map +1 -1
- package/package.json +1 -1
|
@@ -2838,10 +2838,8 @@
|
|
|
2838
2838
|
color: {
|
|
2839
2839
|
bg: 'bg-gray-500',
|
|
2840
2840
|
text: 'text-white',
|
|
2841
|
-
border: '',
|
|
2842
2841
|
},
|
|
2843
|
-
text: 'text-xl'
|
|
2844
|
-
border: '',
|
|
2842
|
+
text: 'text-xl'
|
|
2845
2843
|
});
|
|
2846
2844
|
}
|
|
2847
2845
|
NgtActionComponent.prototype.onClick = function (event) {
|
|
@@ -4124,9 +4122,7 @@
|
|
|
4124
4122
|
bg: 'bg-white',
|
|
4125
4123
|
text: '',
|
|
4126
4124
|
border: ''
|
|
4127
|
-
}
|
|
4128
|
-
my: '',
|
|
4129
|
-
border: '',
|
|
4125
|
+
}
|
|
4130
4126
|
});
|
|
4131
4127
|
this.hostElement.nativeElement.classList += this.ngtStyle.compile([
|
|
4132
4128
|
'h',
|
|
@@ -4623,9 +4619,7 @@
|
|
|
4623
4619
|
bg: 'bg-gray-200',
|
|
4624
4620
|
text: '',
|
|
4625
4621
|
border: ''
|
|
4626
|
-
}
|
|
4627
|
-
my: '',
|
|
4628
|
-
border: '',
|
|
4622
|
+
}
|
|
4629
4623
|
});
|
|
4630
4624
|
this.hostElement.nativeElement.classList += this.ngtStyle.compile([
|
|
4631
4625
|
'h',
|
|
@@ -6867,6 +6861,7 @@
|
|
|
6867
6861
|
};
|
|
6868
6862
|
NgtDropzoneFileViewerComponent.prototype.downloadFile = function () {
|
|
6869
6863
|
var file = document.createElement("a");
|
|
6864
|
+
file.target = '_blank';
|
|
6870
6865
|
file.href = this.url;
|
|
6871
6866
|
file.setAttribute("download", this.fileName);
|
|
6872
6867
|
file.click();
|