@aurora-ds/components 0.17.13 → 0.17.15

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/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as react from 'react';
2
- import { PropsWithChildren, FC, ReactNode, MouseEvent, CSSProperties, FormEvent, ComponentPropsWithoutRef, RefObject } from 'react';
2
+ import { PropsWithChildren, FC, ReactNode, MouseEvent, CSSProperties, FormEvent, ComponentPropsWithoutRef, ReactElement, RefObject } from 'react';
3
3
  import { Theme } from '@aurora-ds/theme';
4
4
 
5
5
  type IconProps = PropsWithChildren<{
@@ -562,8 +562,6 @@ type GridProps = {
562
562
  columns?: number | string;
563
563
  /** Number of rows (number or CSS grid-template-rows value). */
564
564
  rows?: number | string;
565
- /** Gap between items (theme spacing key) */
566
- gap?: keyof Theme['spacing'];
567
565
  /** Gap between columns (theme spacing key) */
568
566
  columnGap?: keyof Theme['spacing'];
569
567
  /** Gap between rows (theme spacing key) */
@@ -923,9 +921,9 @@ type TabItemProps = {
923
921
  /** Label of the tab */
924
922
  label?: string;
925
923
  /** Start icon of the tab */
926
- startIcon?: string;
924
+ startIcon?: ReactElement;
927
925
  /** End icon of the tab */
928
- endIcon?: string;
926
+ endIcon?: ReactElement;
929
927
  /** Optional value associated with the tab */
930
928
  value?: string | number;
931
929
  /** Whether the tab is active */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aurora-ds/components",
3
- "version": "0.17.13",
3
+ "version": "0.17.15",
4
4
  "type": "module",
5
5
  "description": "Aurora DS - React Components Library",
6
6
  "main": "dist/cjs/index.js",