@corensystem/coren-ui 1.0.1 → 1.1.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.
package/dist/badge.d.mts CHANGED
@@ -2,7 +2,7 @@ import * as React from "react";
2
2
  import { VariantProps } from "class-variance-authority";
3
3
  //#region src/badge.d.ts
4
4
  declare const badgeVariants: (props?: ({
5
- variant?: "default" | "destructive" | "warning" | "info" | "secondary" | "outline" | "success" | "successSoft" | "warningSoft" | "dangerSoft" | "infoSoft" | "neutralSoft" | null | undefined;
5
+ variant?: "default" | "secondary" | "destructive" | "outline" | "success" | "warning" | "info" | "successSoft" | "warningSoft" | "dangerSoft" | "infoSoft" | "neutralSoft" | null | undefined;
6
6
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
7
7
  export interface BadgeProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {}
8
8
  /**
package/dist/button.d.mts CHANGED
@@ -2,7 +2,7 @@ import * as React from "react";
2
2
  import { VariantProps } from "class-variance-authority";
3
3
  //#region src/button.d.ts
4
4
  declare const buttonVariants: (props?: ({
5
- variant?: "default" | "link" | "destructive" | "secondary" | "outline" | "ghost" | null | undefined;
5
+ variant?: "default" | "link" | "secondary" | "destructive" | "outline" | "ghost" | null | undefined;
6
6
  size?: "default" | "sm" | "lg" | null | undefined;
7
7
  icon?: boolean | null | undefined;
8
8
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
@@ -75,7 +75,7 @@ declare const CommandItem: React.ForwardRefExoticComponent<Omit<{
75
75
  ref?: React.Ref<HTMLDivElement>;
76
76
  } & {
77
77
  asChild?: boolean;
78
- }, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild">, "onSelect" | "disabled" | "value"> & {
78
+ }, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild">, "onSelect" | "value" | "disabled"> & {
79
79
  disabled?: boolean;
80
80
  onSelect?: (value: string) => void;
81
81
  value?: string;
@@ -2,7 +2,7 @@ import * as React from "react";
2
2
  import { VariantProps } from "class-variance-authority";
3
3
  //#region src/floor-progress-bar.d.ts
4
4
  declare const floorProgressBarVariants: (props?: ({
5
- tone?: "neutral" | "primary" | null | undefined;
5
+ tone?: "primary" | "neutral" | null | undefined;
6
6
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
7
7
  export interface FloorProgressBarProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof floorProgressBarVariants> {
8
8
  /** Completion percentage, clamped to 0–100. */
@@ -2,7 +2,7 @@ import * as React from "react";
2
2
  import { VariantProps } from "class-variance-authority";
3
3
  //#region src/house-shape.d.ts
4
4
  declare const houseShapeVariants: (props?: ({
5
- variant?: "muted" | "destructive" | "secondary" | "primary" | "accent" | null | undefined;
5
+ variant?: "muted" | "secondary" | "destructive" | "primary" | "accent" | null | undefined;
6
6
  state?: "selected" | "idle" | "hovered" | null | undefined;
7
7
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
8
8
  export interface HouseShapeProps extends Omit<React.SVGProps<SVGSVGElement>, "state">, VariantProps<typeof houseShapeVariants> {
@@ -2,7 +2,7 @@ import * as React from "react";
2
2
  import { VariantProps } from "class-variance-authority";
3
3
  //#region src/icon-button.d.ts
4
4
  declare const iconButtonVariants: (props?: ({
5
- variant?: "default" | "destructive" | "secondary" | "outline" | "ghost" | null | undefined;
5
+ variant?: "default" | "secondary" | "destructive" | "outline" | "ghost" | null | undefined;
6
6
  size?: "sm" | "md" | "lg" | null | undefined;
7
7
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
8
8
  export interface IconButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof iconButtonVariants> {
@@ -2,7 +2,7 @@ import * as React from "react";
2
2
  import { VariantProps } from "class-variance-authority";
3
3
  //#region src/status-dot.d.ts
4
4
  declare const statusDotVariants: (props?: ({
5
- variant?: "offline" | "warning" | "info" | "success" | "neutral" | "error" | null | undefined;
5
+ variant?: "success" | "warning" | "info" | "offline" | "neutral" | "error" | null | undefined;
6
6
  size?: "xs" | "sm" | "md" | "lg" | null | undefined;
7
7
  shape?: "filled" | "ring" | "minus" | null | undefined;
8
8
  pulse?: boolean | null | undefined;