@l3mpire/ui 2.20.0 → 2.21.1
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 +2 -2
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +313 -272
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +313 -272
- 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
|
|
|
@@ -937,7 +937,7 @@ import {
|
|
|
937
937
|
| `FilterBar` / `FilterBarLeft` / `FilterBarRight` | Layout container |
|
|
938
938
|
| `SortButton` | Sort by dropdown (field list + asc/desc) |
|
|
939
939
|
| `FilterBarButton` | "Filters" trigger with optional badge count |
|
|
940
|
-
| `FilterChip` | Presentational segmented chip |
|
|
940
|
+
| `FilterChip` | Presentational segmented chip (value segment truncates at 160px with tooltip on overflow) |
|
|
941
941
|
| `InteractiveFilterChip` | FilterChip with per-segment popovers (property, operator, value, kebab) |
|
|
942
942
|
| `PropertySelector` | 2-level popover: categories → properties with search |
|
|
943
943
|
| `AdvancedChip` | Split button "Advanced filters (N)" + close (outlined neutral) |
|
package/dist/index.d.mts
CHANGED
|
@@ -388,7 +388,7 @@ declare const NumberInput: React.ForwardRefExoticComponent<NumberInputProps & Re
|
|
|
388
388
|
|
|
389
389
|
declare const typographyVariants: (props?: ({
|
|
390
390
|
variant?: "xs" | "sm" | "md" | "lg" | "h2" | "h3" | "h1" | null | undefined;
|
|
391
|
-
weight?: "bold" | "regular" | "semibold" | null | undefined;
|
|
391
|
+
weight?: "bold" | "medium" | "regular" | "semibold" | null | undefined;
|
|
392
392
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
393
393
|
interface TypographyProps extends React.HTMLAttributes<HTMLElement>, VariantProps<typeof typographyVariants> {
|
|
394
394
|
as?: React.ElementType;
|
package/dist/index.d.ts
CHANGED
|
@@ -388,7 +388,7 @@ declare const NumberInput: React.ForwardRefExoticComponent<NumberInputProps & Re
|
|
|
388
388
|
|
|
389
389
|
declare const typographyVariants: (props?: ({
|
|
390
390
|
variant?: "xs" | "sm" | "md" | "lg" | "h2" | "h3" | "h1" | null | undefined;
|
|
391
|
-
weight?: "bold" | "regular" | "semibold" | null | undefined;
|
|
391
|
+
weight?: "bold" | "medium" | "regular" | "semibold" | null | undefined;
|
|
392
392
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
393
393
|
interface TypographyProps extends React.HTMLAttributes<HTMLElement>, VariantProps<typeof typographyVariants> {
|
|
394
394
|
as?: React.ElementType;
|