@clasing/ui 0.0.51 → 0.0.53

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
@@ -3,13 +3,13 @@ import { JSX as JSX_2 } from 'react/jsx-runtime';
3
3
  import * as TablerIcons from '@tabler/icons-react';
4
4
  import { VariantProps } from 'class-variance-authority';
5
5
 
6
- export declare const Badge: ({ children, iconLeft, iconRight, status, intent, size, rounded, className, ...props }: IBadgeProps) => JSX_2.Element;
6
+ export declare const Badge: ({ children, iconLeft, iconRight, status, intent, size, rounded, weight, className, ...props }: IBadgeProps) => JSX_2.Element;
7
7
 
8
8
  declare const badgeStyles: (props?: ({
9
- status?: "locked" | "locked-outline" | "available" | "available-outline" | "inProgress" | "inProgress-outline" | "completed" | "completed-outline" | "viewed" | "viewed-outline" | null | undefined;
9
+ status?: "notStarted" | "notStarted-outline" | "locked" | "locked-outline" | "available" | "available-outline" | "inProgress" | "inProgress-outline" | "completed" | "completed-outline" | "viewed" | "viewed-outline" | null | undefined;
10
10
  intent?: "neutral" | "neutral-outline" | "blue" | "blue-outline" | "mustard" | "mustard-outline" | "green" | "green-outline" | "lime" | "lime-outline" | "fuchsia" | "fuchsia-outline" | "marine" | "marine-outline" | "ice" | "ice-outline" | "gray" | "gray-outline" | null | undefined;
11
11
  size?: "small" | "medium" | "large" | null | undefined;
12
- fontWeight?: "bold" | "light" | "regular" | "semibold" | null | undefined;
12
+ weight?: "bold" | "light" | "regular" | "semibold" | null | undefined;
13
13
  rounded?: "rectangle" | "full" | null | undefined;
14
14
  } & ClassProp) | undefined) => string;
15
15