@pequity/squirrel 7.1.4 → 7.1.5
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
|
@@ -2,7 +2,7 @@ import { type CSSProperties } from 'vue';
|
|
|
2
2
|
|
|
3
3
|
// Vue also defines the `class` attribute as any, that's why we use `any` here as well.
|
|
4
4
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
5
|
-
export type ThAttrs = { style?: string | CSSProperties; class?: any };
|
|
5
|
+
export type ThAttrs = { style?: string | CSSProperties; class?: any; title?: string };
|
|
6
6
|
export type HeaderCellAttrs = { style?: string | CSSProperties; class?: any; 'text-class'?: string };
|
|
7
7
|
/* eslint-enable @typescript-eslint/no-explicit-any */
|
|
8
8
|
|