gd-bs 6.5.8 → 6.6.0

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/dist/gd-bs.d.ts CHANGED
@@ -585,6 +585,7 @@ declare module 'gd-bs/components/card/types' {
585
585
  export interface ICardFooter<T = Element> {
586
586
  className?: string;
587
587
  content?: string | T;
588
+ data?: any;
588
589
  onRender?: (el?: HTMLElement, card?: ICardFooter) => void;
589
590
  }
590
591
 
@@ -594,6 +595,7 @@ declare module 'gd-bs/components/card/types' {
594
595
  export interface ICardHeader<T = Element> {
595
596
  className?: string;
596
597
  content?: string | T;
598
+ data?: any;
597
599
  onRender?: (el?: HTMLElement, card?: ICardHeader) => void;
598
600
  nav?: INavProps;
599
601
  }