@medway-ui/core 1.7.7 → 1.7.8

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.mts CHANGED
@@ -280,6 +280,7 @@ interface RankingAssigneeItemProps extends React.ComponentProps<typeof Avatar> {
280
280
  }
281
281
  interface RankingPriorityProps extends React.HTMLAttributes<HTMLTableCellElement> {
282
282
  children: React.ReactNode;
283
+ icon?: React.ReactElement;
283
284
  }
284
285
  interface RankingPercentageProps extends React.HTMLAttributes<HTMLTableCellElement> {
285
286
  value: number;
@@ -299,7 +300,7 @@ declare function RankingAssigneesColumn({ children, className, ...props }: Ranki
299
300
  declare function RankingAssigneeLabel({ children, className, ...props }: RankingAssigneeLabelProps): react_jsx_runtime.JSX.Element;
300
301
  declare function RankingAssigneeGroup({ children, className, ...props }: RankingAssigneeGroupProps): react_jsx_runtime.JSX.Element;
301
302
  declare function RankingAssigneeItem({ src, alt, fallback, className, ...props }: RankingAssigneeItemProps): react_jsx_runtime.JSX.Element;
302
- declare function RankingPriority({ children, className, ...props }: RankingPriorityProps): react_jsx_runtime.JSX.Element;
303
+ declare function RankingPriority({ children, className, icon, ...props }: RankingPriorityProps): react_jsx_runtime.JSX.Element;
303
304
  declare function RankingPercentage({ value, className, ...props }: RankingPercentageProps): react_jsx_runtime.JSX.Element;
304
305
  declare function RankingButton({ children, className, onClick, ...props }: RankingButtonProps): react_jsx_runtime.JSX.Element;
305
306
 
package/dist/index.d.ts CHANGED
@@ -280,6 +280,7 @@ interface RankingAssigneeItemProps extends React.ComponentProps<typeof Avatar> {
280
280
  }
281
281
  interface RankingPriorityProps extends React.HTMLAttributes<HTMLTableCellElement> {
282
282
  children: React.ReactNode;
283
+ icon?: React.ReactElement;
283
284
  }
284
285
  interface RankingPercentageProps extends React.HTMLAttributes<HTMLTableCellElement> {
285
286
  value: number;
@@ -299,7 +300,7 @@ declare function RankingAssigneesColumn({ children, className, ...props }: Ranki
299
300
  declare function RankingAssigneeLabel({ children, className, ...props }: RankingAssigneeLabelProps): react_jsx_runtime.JSX.Element;
300
301
  declare function RankingAssigneeGroup({ children, className, ...props }: RankingAssigneeGroupProps): react_jsx_runtime.JSX.Element;
301
302
  declare function RankingAssigneeItem({ src, alt, fallback, className, ...props }: RankingAssigneeItemProps): react_jsx_runtime.JSX.Element;
302
- declare function RankingPriority({ children, className, ...props }: RankingPriorityProps): react_jsx_runtime.JSX.Element;
303
+ declare function RankingPriority({ children, className, icon, ...props }: RankingPriorityProps): react_jsx_runtime.JSX.Element;
303
304
  declare function RankingPercentage({ value, className, ...props }: RankingPercentageProps): react_jsx_runtime.JSX.Element;
304
305
  declare function RankingButton({ children, className, onClick, ...props }: RankingButtonProps): react_jsx_runtime.JSX.Element;
305
306