@l3mpire/ui 2.9.1 → 2.11.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 +33 -2
- package/dist/index.d.mts +13 -2
- package/dist/index.d.ts +13 -2
- package/dist/index.js +807 -711
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +806 -712
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -5
- package/src/styles/globals.css +25 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@l3mpire/ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.11.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org",
|
|
6
6
|
"access": "public"
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"react": ">=18",
|
|
39
39
|
"react-dom": ">=18",
|
|
40
|
-
"@l3mpire/icons": "0.3.
|
|
40
|
+
"@l3mpire/icons": "0.3.11"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@dnd-kit/core": "^6.3.1",
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
50
50
|
"@radix-ui/react-label": "^2.1.8",
|
|
51
51
|
"@radix-ui/react-popover": "^1.1.15",
|
|
52
|
+
"@radix-ui/react-radio-group": "^1.3.8",
|
|
52
53
|
"@radix-ui/react-slot": "^1",
|
|
53
54
|
"@radix-ui/react-switch": "^1.2.6",
|
|
54
55
|
"@radix-ui/react-tabs": "^1.1.13",
|
|
@@ -58,8 +59,8 @@
|
|
|
58
59
|
"class-variance-authority": "^0.7",
|
|
59
60
|
"clsx": "^2",
|
|
60
61
|
"tailwind-merge": "^3",
|
|
61
|
-
"@l3mpire/
|
|
62
|
-
"@l3mpire/
|
|
62
|
+
"@l3mpire/icons": "0.3.11",
|
|
63
|
+
"@l3mpire/tokens": "0.6.0"
|
|
63
64
|
},
|
|
64
65
|
"devDependencies": {
|
|
65
66
|
"@types/react": "^19",
|
|
@@ -69,7 +70,7 @@
|
|
|
69
70
|
"tailwindcss": "^4",
|
|
70
71
|
"tsup": "^8",
|
|
71
72
|
"typescript": "^5",
|
|
72
|
-
"@l3mpire/icons": "0.3.
|
|
73
|
+
"@l3mpire/icons": "0.3.11"
|
|
73
74
|
},
|
|
74
75
|
"scripts": {
|
|
75
76
|
"build": "cp ../../USAGE.md ./USAGE.md && tsup",
|
package/src/styles/globals.css
CHANGED
|
@@ -10,6 +10,15 @@ body {
|
|
|
10
10
|
font-variant-numeric: tabular-nums;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
+
/* Hidden scrollbar utility */
|
|
14
|
+
.scrollbar-none {
|
|
15
|
+
-ms-overflow-style: none;
|
|
16
|
+
scrollbar-width: none;
|
|
17
|
+
}
|
|
18
|
+
.scrollbar-none::-webkit-scrollbar {
|
|
19
|
+
display: none;
|
|
20
|
+
}
|
|
21
|
+
|
|
13
22
|
@theme inline {
|
|
14
23
|
/* ── Spacing ───────────────────────────────────────────────────────────── */
|
|
15
24
|
--spacing-none: 0;
|
|
@@ -62,7 +71,7 @@ body {
|
|
|
62
71
|
|
|
63
72
|
/* ── Font Weight ───────────────────────────────────────────────────────── */
|
|
64
73
|
--font-weight-regular: var(--font-weight-regular);
|
|
65
|
-
--font-weight-
|
|
74
|
+
--font-weight-semibold: var(--font-weight-semibold);
|
|
66
75
|
--font-weight-bold: var(--font-weight-bold);
|
|
67
76
|
|
|
68
77
|
/* ── Shadows ───────────────────────────────────────────────────────────── */
|
|
@@ -341,6 +350,21 @@ body {
|
|
|
341
350
|
--color-link-warning-text-pressed: var(--comp-link-warning-text-pressed);
|
|
342
351
|
--color-link-disabled-text: var(--comp-link-disabled-text);
|
|
343
352
|
|
|
353
|
+
/* ── Colors: Radio ──────────────────────────────────────────────────────── */
|
|
354
|
+
--color-radio-unselected-bg: var(--comp-radio-unselected-bg);
|
|
355
|
+
--color-radio-unselected-border-default: var(--comp-radio-unselected-border-default);
|
|
356
|
+
--color-radio-unselected-border-hover: var(--comp-radio-unselected-border-hover);
|
|
357
|
+
--color-radio-unselected-border-pressed: var(--comp-radio-unselected-border-pressed);
|
|
358
|
+
--color-radio-selected-bg-default: var(--comp-radio-selected-bg-default);
|
|
359
|
+
--color-radio-selected-bg-hover: var(--comp-radio-selected-bg-hover);
|
|
360
|
+
--color-radio-selected-bg-pressed: var(--comp-radio-selected-bg-pressed);
|
|
361
|
+
--color-radio-selected-dot: var(--comp-radio-selected-dot);
|
|
362
|
+
--color-radio-disabled-bg: var(--comp-radio-disabled-bg);
|
|
363
|
+
--color-radio-disabled-border: var(--comp-radio-disabled-border);
|
|
364
|
+
--color-radio-disabled-dot: var(--comp-radio-disabled-dot);
|
|
365
|
+
--color-radio-label-default: var(--comp-radio-label-default);
|
|
366
|
+
--color-radio-label-disabled: var(--comp-radio-label-disabled);
|
|
367
|
+
|
|
344
368
|
/* ── Colors: SearchBar ─────────────────────────────────────────────────── */
|
|
345
369
|
--color-search-bar-white-bg: var(--comp-search-bar-white-bg);
|
|
346
370
|
--color-search-bar-grey-bg: var(--comp-search-bar-grey-bg);
|