@medway-ui/core 1.7.6 → 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
@@ -111,11 +111,12 @@ interface CardWeekProps extends React.ComponentProps<"div"> {
111
111
  }
112
112
  interface CardWeekBreadcrumbProps extends React.ComponentProps<"div"> {
113
113
  tag?: string;
114
+ tagIcon?: React.ReactElement;
114
115
  }
115
116
  type CardWeekStatusProps = React.ComponentProps<"div">;
116
117
  type CardWeekStatusTimeProps = React.ComponentProps<"div">;
117
118
  declare function CardWeek({ className, done, postponed, skipped, ...props }: CardWeekProps): react_jsx_runtime.JSX.Element;
118
- declare function CardWeekBreadcrumb({ className, children, tag, ...props }: CardWeekBreadcrumbProps): react_jsx_runtime.JSX.Element;
119
+ declare function CardWeekBreadcrumb({ className, children, tag, tagIcon, ...props }: CardWeekBreadcrumbProps): react_jsx_runtime.JSX.Element;
119
120
  declare function CardWeekContainer({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
120
121
  declare function CardWeekHeader({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
121
122
  declare function CardWeekTitle({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
@@ -279,6 +280,7 @@ interface RankingAssigneeItemProps extends React.ComponentProps<typeof Avatar> {
279
280
  }
280
281
  interface RankingPriorityProps extends React.HTMLAttributes<HTMLTableCellElement> {
281
282
  children: React.ReactNode;
283
+ icon?: React.ReactElement;
282
284
  }
283
285
  interface RankingPercentageProps extends React.HTMLAttributes<HTMLTableCellElement> {
284
286
  value: number;
@@ -298,7 +300,7 @@ declare function RankingAssigneesColumn({ children, className, ...props }: Ranki
298
300
  declare function RankingAssigneeLabel({ children, className, ...props }: RankingAssigneeLabelProps): react_jsx_runtime.JSX.Element;
299
301
  declare function RankingAssigneeGroup({ children, className, ...props }: RankingAssigneeGroupProps): react_jsx_runtime.JSX.Element;
300
302
  declare function RankingAssigneeItem({ src, alt, fallback, className, ...props }: RankingAssigneeItemProps): react_jsx_runtime.JSX.Element;
301
- 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;
302
304
  declare function RankingPercentage({ value, className, ...props }: RankingPercentageProps): react_jsx_runtime.JSX.Element;
303
305
  declare function RankingButton({ children, className, onClick, ...props }: RankingButtonProps): react_jsx_runtime.JSX.Element;
304
306
 
package/dist/index.d.ts CHANGED
@@ -111,11 +111,12 @@ interface CardWeekProps extends React.ComponentProps<"div"> {
111
111
  }
112
112
  interface CardWeekBreadcrumbProps extends React.ComponentProps<"div"> {
113
113
  tag?: string;
114
+ tagIcon?: React.ReactElement;
114
115
  }
115
116
  type CardWeekStatusProps = React.ComponentProps<"div">;
116
117
  type CardWeekStatusTimeProps = React.ComponentProps<"div">;
117
118
  declare function CardWeek({ className, done, postponed, skipped, ...props }: CardWeekProps): react_jsx_runtime.JSX.Element;
118
- declare function CardWeekBreadcrumb({ className, children, tag, ...props }: CardWeekBreadcrumbProps): react_jsx_runtime.JSX.Element;
119
+ declare function CardWeekBreadcrumb({ className, children, tag, tagIcon, ...props }: CardWeekBreadcrumbProps): react_jsx_runtime.JSX.Element;
119
120
  declare function CardWeekContainer({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
120
121
  declare function CardWeekHeader({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
121
122
  declare function CardWeekTitle({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
@@ -279,6 +280,7 @@ interface RankingAssigneeItemProps extends React.ComponentProps<typeof Avatar> {
279
280
  }
280
281
  interface RankingPriorityProps extends React.HTMLAttributes<HTMLTableCellElement> {
281
282
  children: React.ReactNode;
283
+ icon?: React.ReactElement;
282
284
  }
283
285
  interface RankingPercentageProps extends React.HTMLAttributes<HTMLTableCellElement> {
284
286
  value: number;
@@ -298,7 +300,7 @@ declare function RankingAssigneesColumn({ children, className, ...props }: Ranki
298
300
  declare function RankingAssigneeLabel({ children, className, ...props }: RankingAssigneeLabelProps): react_jsx_runtime.JSX.Element;
299
301
  declare function RankingAssigneeGroup({ children, className, ...props }: RankingAssigneeGroupProps): react_jsx_runtime.JSX.Element;
300
302
  declare function RankingAssigneeItem({ src, alt, fallback, className, ...props }: RankingAssigneeItemProps): react_jsx_runtime.JSX.Element;
301
- 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;
302
304
  declare function RankingPercentage({ value, className, ...props }: RankingPercentageProps): react_jsx_runtime.JSX.Element;
303
305
  declare function RankingButton({ children, className, onClick, ...props }: RankingButtonProps): react_jsx_runtime.JSX.Element;
304
306