@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 +1 -1
- package/dist/button.d.mts +1 -1
- package/dist/command.d.mts +1 -1
- package/dist/floor-progress-bar.d.mts +1 -1
- package/dist/house-shape.d.mts +1 -1
- package/dist/icon-button.d.mts +1 -1
- package/dist/status-dot.d.mts +1 -1
- package/dist/styles.css +1 -1
- package/dist/styles.tw4.css +1 -1
- package/package.json +3 -3
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" | "
|
|
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" | "
|
|
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;
|
package/dist/command.d.mts
CHANGED
|
@@ -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" | "
|
|
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?: "
|
|
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. */
|
package/dist/house-shape.d.mts
CHANGED
|
@@ -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" | "
|
|
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> {
|
package/dist/icon-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/icon-button.d.ts
|
|
4
4
|
declare const iconButtonVariants: (props?: ({
|
|
5
|
-
variant?: "default" | "
|
|
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> {
|
package/dist/status-dot.d.mts
CHANGED
|
@@ -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?: "
|
|
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;
|