@pegasusheavy/ngx-tailwindcss 0.1.1 → 0.1.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pegasusheavy/ngx-tailwindcss",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "A highly customizable Angular component library for Tailwind CSS 4+. Build beautiful, accessible UI components with full theming support, intelligent class merging, and zero bundled CSS. Features 30+ components including buttons, cards, modals, forms, tables, and more.",
5
5
  "license": "MIT",
6
6
  "exports": {
@@ -3829,7 +3829,7 @@ declare class TwTableComponent {
3829
3829
  }
3830
3830
 
3831
3831
  declare class TwDatatablesComponent {
3832
- data: any[];
3832
+ data: unknown[];
3833
3833
  columns: TableColumn[];
3834
3834
  title: string;
3835
3835
  subtitle?: string;
@@ -3847,8 +3847,8 @@ declare class TwDatatablesComponent {
3847
3847
  classOverride: string;
3848
3848
  containerClass: string;
3849
3849
  toolbarClass: string;
3850
- selectionChange: EventEmitter<any[]>;
3851
- rowClick: EventEmitter<any>;
3850
+ selectionChange: EventEmitter<unknown[]>;
3851
+ rowClick: EventEmitter<unknown>;
3852
3852
  sortChange: EventEmitter<{
3853
3853
  field: string;
3854
3854
  order: number;