@hexure/ui 1.14.3 → 1.14.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.
@@ -5,6 +5,7 @@ interface ActionProps {
5
5
  dataItemid?: string;
6
6
  label: string;
7
7
  onClick: (e?: any) => void;
8
+ title?: string;
8
9
  }
9
10
  export interface FieldProps extends AccessibleProps {
10
11
  action?: ActionProps;
@@ -12,6 +12,7 @@ interface ColumnProps {
12
12
  sortBy?: (row: RowObject) => void;
13
13
  width?: string | number;
14
14
  align?: 'center' | 'right';
15
+ title?: string;
15
16
  }
16
17
  export interface TableProps extends AccessibleProps {
17
18
  columns: ColumnProps[];
@@ -6,6 +6,7 @@ interface TabProps extends AccessibleProps {
6
6
  label: string;
7
7
  onClick?: (e?: any) => void;
8
8
  isActive?: boolean;
9
+ title?: string;
9
10
  }
10
11
  export interface TabsProps extends AccessibleProps {
11
12
  tabs: TabProps[];
@@ -14,6 +14,7 @@ export interface ZeroStateProps extends AccessibleProps {
14
14
  onClick: (e?: any) => void;
15
15
  format?: 'primary' | 'secondary' | 'red' | 'green' | string;
16
16
  disabled?: boolean;
17
+ title?: string;
17
18
  };
18
19
  /** Optional ID for automation purposes */
19
20
  dataItemid?: string;
package/dist/index.d.ts CHANGED
@@ -334,6 +334,7 @@ interface ActionProps {
334
334
  dataItemid?: string;
335
335
  label: string;
336
336
  onClick: (e?: any) => void;
337
+ title?: string;
337
338
  }
338
339
  interface FieldProps extends AccessibleProps {
339
340
  action?: ActionProps;
@@ -697,6 +698,7 @@ interface ColumnProps {
697
698
  sortBy?: (row: RowObject) => void;
698
699
  width?: string | number;
699
700
  align?: 'center' | 'right';
701
+ title?: string;
700
702
  }
701
703
  interface TableProps extends AccessibleProps {
702
704
  columns: ColumnProps[];
@@ -718,6 +720,7 @@ interface TabProps extends AccessibleProps {
718
720
  label: string;
719
721
  onClick?: (e?: any) => void;
720
722
  isActive?: boolean;
723
+ title?: string;
721
724
  }
722
725
  interface TabsProps extends AccessibleProps {
723
726
  tabs: TabProps[];
@@ -750,6 +753,7 @@ interface ZeroStateProps extends AccessibleProps {
750
753
  onClick: (e?: any) => void;
751
754
  format?: 'primary' | 'secondary' | 'red' | 'green' | string;
752
755
  disabled?: boolean;
756
+ title?: string;
753
757
  };
754
758
  /** Optional ID for automation purposes */
755
759
  dataItemid?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hexure/ui",
3
- "version": "1.14.3",
3
+ "version": "1.14.5",
4
4
  "description": "A library of shared UI components used within Hexure products.",
5
5
  "scripts": {
6
6
  "rollup": "rollup -c rollup.config.mjs",