@l3mpire/ui 2.9.0 → 2.10.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 +32 -1
- package/dist/index.d.mts +10 -1
- package/dist/index.d.ts +10 -1
- package/dist/index.js +752 -661
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +750 -661
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -5
- package/src/styles/globals.css +15 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@l3mpire/ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.10.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/icons": "0.3.
|
|
62
|
-
"@l3mpire/tokens": "0.5.
|
|
62
|
+
"@l3mpire/icons": "0.3.11",
|
|
63
|
+
"@l3mpire/tokens": "0.5.9"
|
|
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
|
@@ -341,6 +341,21 @@ body {
|
|
|
341
341
|
--color-link-warning-text-pressed: var(--comp-link-warning-text-pressed);
|
|
342
342
|
--color-link-disabled-text: var(--comp-link-disabled-text);
|
|
343
343
|
|
|
344
|
+
/* ── Colors: Radio ──────────────────────────────────────────────────────── */
|
|
345
|
+
--color-radio-unselected-bg: var(--comp-radio-unselected-bg);
|
|
346
|
+
--color-radio-unselected-border-default: var(--comp-radio-unselected-border-default);
|
|
347
|
+
--color-radio-unselected-border-hover: var(--comp-radio-unselected-border-hover);
|
|
348
|
+
--color-radio-unselected-border-pressed: var(--comp-radio-unselected-border-pressed);
|
|
349
|
+
--color-radio-selected-bg-default: var(--comp-radio-selected-bg-default);
|
|
350
|
+
--color-radio-selected-bg-hover: var(--comp-radio-selected-bg-hover);
|
|
351
|
+
--color-radio-selected-bg-pressed: var(--comp-radio-selected-bg-pressed);
|
|
352
|
+
--color-radio-selected-dot: var(--comp-radio-selected-dot);
|
|
353
|
+
--color-radio-disabled-bg: var(--comp-radio-disabled-bg);
|
|
354
|
+
--color-radio-disabled-border: var(--comp-radio-disabled-border);
|
|
355
|
+
--color-radio-disabled-dot: var(--comp-radio-disabled-dot);
|
|
356
|
+
--color-radio-label-default: var(--comp-radio-label-default);
|
|
357
|
+
--color-radio-label-disabled: var(--comp-radio-label-disabled);
|
|
358
|
+
|
|
344
359
|
/* ── Colors: SearchBar ─────────────────────────────────────────────────── */
|
|
345
360
|
--color-search-bar-white-bg: var(--comp-search-bar-white-bg);
|
|
346
361
|
--color-search-bar-grey-bg: var(--comp-search-bar-grey-bg);
|