@medway-ui/core 1.16.13 → 1.16.14

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
@@ -236,6 +236,12 @@ declare function BreadcrumbPage({ className, ...props }: ComponentProps<"span">)
236
236
  declare function BreadcrumbSeparator({ children, className, ...props }: ComponentProps<"li">): react_jsx_runtime.JSX.Element;
237
237
  declare function BreadcrumbEllipsis({ className, ...props }: ComponentProps<"span">): react_jsx_runtime.JSX.Element;
238
238
 
239
+ interface ProgressProps extends ComponentProps<typeof Progress$1.Root> {
240
+ indicatorClassName?: string;
241
+ label?: string;
242
+ }
243
+ declare function Progress({ className, indicatorClassName, label, value, ...props }: ProgressProps): react_jsx_runtime.JSX.Element;
244
+
239
245
  interface ProgressCircleProps extends ComponentProps<"div"> {
240
246
  value: number | string;
241
247
  size?: number;
@@ -248,12 +254,6 @@ interface ProgressCircleProps extends ComponentProps<"div"> {
248
254
  }
249
255
  declare function ProgressCircle({ className, indicatorClassName, trackClassName, valueClassName, label, labelClassName, value, size, strokeWidth, ...props }: ProgressCircleProps): react_jsx_runtime.JSX.Element;
250
256
 
251
- interface ProgressProps extends ComponentProps<typeof Progress$1.Root> {
252
- indicatorClassName?: string;
253
- label?: string;
254
- }
255
- declare function Progress({ className, indicatorClassName, label, value, ...props }: ProgressProps): react_jsx_runtime.JSX.Element;
256
-
257
257
  interface CardWeekProps extends ComponentProps<"div"> {
258
258
  done?: boolean;
259
259
  postponed?: boolean;
@@ -274,7 +274,7 @@ declare function CardWeekTitle({ className, ...props }: ComponentProps<"div">):
274
274
  declare function CardWeekDescription({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
275
275
  declare function CardWeekTags({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
276
276
  declare function CardWeekProgressCircle({ className, ...props }: ProgressCircleProps): react_jsx_runtime.JSX.Element;
277
- declare function CardWeekProgress({ className, ...props }: ProgressProps): react_jsx_runtime.JSX.Element;
277
+ declare function CardWeekProgress({ className, value, indicatorClassName, ...props }: ProgressProps): react_jsx_runtime.JSX.Element;
278
278
  declare function CardWeekFooter({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
279
279
  declare function CardWeekContent({ className, children, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
280
280
  declare function CardWeekText({ className, children, isTime, ...props }: CardWeekTextProps): react_jsx_runtime.JSX.Element;
package/dist/index.d.ts CHANGED
@@ -236,6 +236,12 @@ declare function BreadcrumbPage({ className, ...props }: ComponentProps<"span">)
236
236
  declare function BreadcrumbSeparator({ children, className, ...props }: ComponentProps<"li">): react_jsx_runtime.JSX.Element;
237
237
  declare function BreadcrumbEllipsis({ className, ...props }: ComponentProps<"span">): react_jsx_runtime.JSX.Element;
238
238
 
239
+ interface ProgressProps extends ComponentProps<typeof Progress$1.Root> {
240
+ indicatorClassName?: string;
241
+ label?: string;
242
+ }
243
+ declare function Progress({ className, indicatorClassName, label, value, ...props }: ProgressProps): react_jsx_runtime.JSX.Element;
244
+
239
245
  interface ProgressCircleProps extends ComponentProps<"div"> {
240
246
  value: number | string;
241
247
  size?: number;
@@ -248,12 +254,6 @@ interface ProgressCircleProps extends ComponentProps<"div"> {
248
254
  }
249
255
  declare function ProgressCircle({ className, indicatorClassName, trackClassName, valueClassName, label, labelClassName, value, size, strokeWidth, ...props }: ProgressCircleProps): react_jsx_runtime.JSX.Element;
250
256
 
251
- interface ProgressProps extends ComponentProps<typeof Progress$1.Root> {
252
- indicatorClassName?: string;
253
- label?: string;
254
- }
255
- declare function Progress({ className, indicatorClassName, label, value, ...props }: ProgressProps): react_jsx_runtime.JSX.Element;
256
-
257
257
  interface CardWeekProps extends ComponentProps<"div"> {
258
258
  done?: boolean;
259
259
  postponed?: boolean;
@@ -274,7 +274,7 @@ declare function CardWeekTitle({ className, ...props }: ComponentProps<"div">):
274
274
  declare function CardWeekDescription({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
275
275
  declare function CardWeekTags({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
276
276
  declare function CardWeekProgressCircle({ className, ...props }: ProgressCircleProps): react_jsx_runtime.JSX.Element;
277
- declare function CardWeekProgress({ className, ...props }: ProgressProps): react_jsx_runtime.JSX.Element;
277
+ declare function CardWeekProgress({ className, value, indicatorClassName, ...props }: ProgressProps): react_jsx_runtime.JSX.Element;
278
278
  declare function CardWeekFooter({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
279
279
  declare function CardWeekContent({ className, children, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
280
280
  declare function CardWeekText({ className, children, isTime, ...props }: CardWeekTextProps): react_jsx_runtime.JSX.Element;