@l3mpire/ui 2.19.1 → 2.21.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/USAGE.md +1 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +195 -125
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +195 -125
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
- package/src/styles/globals.css +1 -0
package/USAGE.md
CHANGED
|
@@ -114,7 +114,7 @@ Works with all Tailwind spacing prefixes: `p-`, `px-`, `py-`, `m-`, `mx-`, `my-`
|
|
|
114
114
|
|
|
115
115
|
**Line heights:** `leading-2xs` (14px), `leading-xs` (16px), `leading-sm` (20px), `leading-base` (24px), `leading-md` (28px), `leading-lg` (32px)
|
|
116
116
|
|
|
117
|
-
**Font weights:** `font-regular` (400), `font-semibold` (600), `font-bold` (700)
|
|
117
|
+
**Font weights:** `font-regular` (400), `font-medium` (500), `font-semibold` (600), `font-bold` (700)
|
|
118
118
|
|
|
119
119
|
### Typography component
|
|
120
120
|
|
package/dist/index.d.mts
CHANGED
|
@@ -282,6 +282,7 @@ interface SelectProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>
|
|
|
282
282
|
errorMessage?: string;
|
|
283
283
|
placeholder?: string;
|
|
284
284
|
value?: string;
|
|
285
|
+
/** @deprecated Use `tags` instead for multi-select display. */
|
|
285
286
|
multiCount?: number;
|
|
286
287
|
tags?: string[];
|
|
287
288
|
onTagRemove?: (tag: string) => void;
|
|
@@ -387,7 +388,7 @@ declare const NumberInput: React.ForwardRefExoticComponent<NumberInputProps & Re
|
|
|
387
388
|
|
|
388
389
|
declare const typographyVariants: (props?: ({
|
|
389
390
|
variant?: "xs" | "sm" | "md" | "lg" | "h2" | "h3" | "h1" | null | undefined;
|
|
390
|
-
weight?: "bold" | "regular" | "semibold" | null | undefined;
|
|
391
|
+
weight?: "bold" | "medium" | "regular" | "semibold" | null | undefined;
|
|
391
392
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
392
393
|
interface TypographyProps extends React.HTMLAttributes<HTMLElement>, VariantProps<typeof typographyVariants> {
|
|
393
394
|
as?: React.ElementType;
|
package/dist/index.d.ts
CHANGED
|
@@ -282,6 +282,7 @@ interface SelectProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>
|
|
|
282
282
|
errorMessage?: string;
|
|
283
283
|
placeholder?: string;
|
|
284
284
|
value?: string;
|
|
285
|
+
/** @deprecated Use `tags` instead for multi-select display. */
|
|
285
286
|
multiCount?: number;
|
|
286
287
|
tags?: string[];
|
|
287
288
|
onTagRemove?: (tag: string) => void;
|
|
@@ -387,7 +388,7 @@ declare const NumberInput: React.ForwardRefExoticComponent<NumberInputProps & Re
|
|
|
387
388
|
|
|
388
389
|
declare const typographyVariants: (props?: ({
|
|
389
390
|
variant?: "xs" | "sm" | "md" | "lg" | "h2" | "h3" | "h1" | null | undefined;
|
|
390
|
-
weight?: "bold" | "regular" | "semibold" | null | undefined;
|
|
391
|
+
weight?: "bold" | "medium" | "regular" | "semibold" | null | undefined;
|
|
391
392
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
392
393
|
interface TypographyProps extends React.HTMLAttributes<HTMLElement>, VariantProps<typeof typographyVariants> {
|
|
393
394
|
as?: React.ElementType;
|