@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.
@@ -2,6 +2,7 @@ import { type CSSProperties } from 'vue';
2
2
  export type ThAttrs = {
3
3
  style?: string | CSSProperties;
4
4
  class?: any;
5
+ title?: string;
5
6
  };
6
7
  export type HeaderCellAttrs = {
7
8
  style?: string | CSSProperties;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pequity/squirrel",
3
3
  "description": "Squirrel component library",
4
- "version": "7.1.4",
4
+ "version": "7.1.5",
5
5
  "packageManager": "pnpm@9.15.9",
6
6
  "type": "module",
7
7
  "scripts": {
@@ -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