@alpic-ai/ui 1.169.0 → 1.170.0

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.
@@ -3,7 +3,7 @@ import * as React$1 from "react";
3
3
  import * as AvatarPrimitive from "@radix-ui/react-avatar";
4
4
  //#region src/components/avatar.d.ts
5
5
  declare const avatarVariants: (props?: ({
6
- size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
6
+ size?: "sm" | "lg" | "xs" | "md" | "xl" | null | undefined;
7
7
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
8
8
  type AvatarSize = NonNullable<VariantProps<typeof avatarVariants>["size"]>;
9
9
  type AvatarStatus = "online";
@@ -1,7 +1,7 @@
1
1
  import { VariantProps } from "class-variance-authority";
2
2
  //#region src/components/skeleton.d.ts
3
3
  declare const skeletonVariants: (props?: ({
4
- shape?: "rectangle" | "circle" | null | undefined;
4
+ shape?: "circle" | "rectangle" | null | undefined;
5
5
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
6
6
  interface SkeletonProps extends React.ComponentProps<"div">, VariantProps<typeof skeletonVariants> {}
7
7
  declare function Skeleton({ className, shape, ...props }: SkeletonProps): import("react").JSX.Element;
@@ -2,7 +2,7 @@ import { VariantProps } from "class-variance-authority";
2
2
  //#region src/components/spinner.d.ts
3
3
  declare const spinnerVariants: (props?: ({
4
4
  variant?: "secondary" | "primary" | null | undefined;
5
- size?: "sm" | "md" | "lg" | "xl" | null | undefined;
5
+ size?: "sm" | "lg" | "md" | "xl" | null | undefined;
6
6
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
7
7
  interface SpinnerProps extends Omit<React.ComponentProps<"svg">, "children">, VariantProps<typeof spinnerVariants> {}
8
8
  declare function Spinner({ className, variant, size, ...props }: SpinnerProps): import("react").JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alpic-ai/ui",
3
- "version": "1.169.0",
3
+ "version": "1.170.0",
4
4
  "description": "Alpic design system — shared UI components",
5
5
  "type": "module",
6
6
  "exports": {