@corensystem/coren-ui 1.0.2 → 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/avatar-status-dot.d.mts +1 -1
- package/dist/avatar.d.mts +2 -2
- package/dist/badge.d.mts +1 -1
- package/dist/button.d.mts +1 -1
- package/dist/citation.d.mts +1 -1
- package/dist/command.d.mts +1 -1
- package/dist/form-layout.d.mts +1 -1
- package/dist/grid.d.mts +2 -2
- package/dist/house-shape.d.mts +1 -1
- package/dist/icon-button.d.mts +2 -2
- package/dist/icon.d.mts +1 -1
- package/dist/minimap.d.mts +1 -1
- package/dist/segmented-control.d.mts +1 -1
- package/dist/stack.d.mts +1 -1
- package/dist/status-dot.d.mts +2 -2
- package/dist/styles.css +1 -1
- package/dist/styles.tw4.css +1 -1
- package/dist/tab-list.d.mts +2 -2
- package/dist/tabs.d.mts +2 -2
- package/dist/text.d.mts +1 -1
- package/dist/thumbnail.d.mts +2 -2
- package/package.json +3 -3
package/dist/tab-list.d.mts
CHANGED
|
@@ -3,11 +3,11 @@ import { VariantProps } from "class-variance-authority";
|
|
|
3
3
|
//#region src/tab-list.d.ts
|
|
4
4
|
declare const tabListVariants: (props?: ({
|
|
5
5
|
variant?: "default" | "underline" | "pills" | null | undefined;
|
|
6
|
-
size?: "sm" | "
|
|
6
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
7
7
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
8
8
|
declare const tabItemVariants: (props?: ({
|
|
9
9
|
variant?: "default" | "underline" | "pills" | null | undefined;
|
|
10
|
-
size?: "sm" | "
|
|
10
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
11
11
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
12
12
|
export interface TabItem {
|
|
13
13
|
value: string;
|
package/dist/tabs.d.mts
CHANGED
|
@@ -12,8 +12,8 @@ declare const Tabs: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsProps
|
|
|
12
12
|
declare const TabsList: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
13
13
|
declare const tabsTriggerVariants: (props?: ({
|
|
14
14
|
variant?: "default" | "underline" | null | undefined;
|
|
15
|
-
display?: "
|
|
16
|
-
size?: "sm" | "
|
|
15
|
+
display?: "text" | "icon" | "icon-text" | null | undefined;
|
|
16
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
17
17
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
18
18
|
interface TabsTriggerProps extends React.ComponentPropsWithoutRef<typeof TabsPrimitive.Trigger>, Omit<VariantProps<typeof tabsTriggerVariants>, "variant" | "size"> {}
|
|
19
19
|
declare const TabsTrigger: React.ForwardRefExoticComponent<TabsTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
package/dist/text.d.mts
CHANGED
|
@@ -2,7 +2,7 @@ import * as React from "react";
|
|
|
2
2
|
import { VariantProps } from "class-variance-authority";
|
|
3
3
|
//#region src/text.d.ts
|
|
4
4
|
declare const textVariants: (props?: ({
|
|
5
|
-
size?: "
|
|
5
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
6
6
|
weight?: "bold" | "normal" | "medium" | "semibold" | null | undefined;
|
|
7
7
|
variant?: "default" | "muted" | "success" | "accent" | "error" | null | undefined;
|
|
8
8
|
align?: "center" | "left" | "right" | "justify" | null | undefined;
|
package/dist/thumbnail.d.mts
CHANGED
|
@@ -2,8 +2,8 @@ import * as React from "react";
|
|
|
2
2
|
import { VariantProps } from "class-variance-authority";
|
|
3
3
|
//#region src/thumbnail.d.ts
|
|
4
4
|
declare const thumbnailVariants: (props?: ({
|
|
5
|
-
size?: "sm" | "
|
|
6
|
-
rounded?: "sm" | "
|
|
5
|
+
size?: "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
6
|
+
rounded?: "sm" | "md" | "lg" | "full" | "none" | null | undefined;
|
|
7
7
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
8
8
|
export interface ThumbnailProps extends Omit<React.ImgHTMLAttributes<HTMLImageElement>, "src">, VariantProps<typeof thumbnailVariants> {
|
|
9
9
|
/** Image source URL */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@corensystem/coren-ui",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"bin": {
|
|
5
5
|
"intent": "./bin/intent.js"
|
|
6
6
|
},
|
|
@@ -1709,8 +1709,8 @@
|
|
|
1709
1709
|
"tailwind-merge": "^3.4.0",
|
|
1710
1710
|
"vaul": "^1.1.2",
|
|
1711
1711
|
"zod": "^4.3.5",
|
|
1712
|
-
"@corensystem/coren-
|
|
1713
|
-
"@corensystem/coren-
|
|
1712
|
+
"@corensystem/coren-utils": "1.1.0",
|
|
1713
|
+
"@corensystem/coren-tokens": "1.1.0"
|
|
1714
1714
|
},
|
|
1715
1715
|
"devDependencies": {
|
|
1716
1716
|
"@tailwindcss/cli": "^4.2.2",
|