linkedunion-design-kit 1.9.3 → 1.9.4

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/index.d.ts CHANGED
@@ -25,5 +25,6 @@ export { Select, SelectTrigger, SelectContent, SelectItem, SelectGroup, SelectLa
25
25
  export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, } from "./src/components/Alerts/AlertDialog";
26
26
  export { Avatar, AvatarImage, AvatarFallback, } from "./src/components/Avatar/Avatar/Avatar";
27
27
  export { Table, TableHeader, TableBody, TableRow, TableHead, TableCell, TableCaption, } from "./src/components/Table/Table";
28
+ export { DropdownMenu, DropdownMenuTrigger, DropdownMenuContent, DropdownMenuItem, DropdownMenuSeparator, DropdownMenuCheckboxItem, DropdownMenuLabel, DropdownMenuSubTrigger, DropdownMenuSub, DropdownMenuSubContent, } from "./src/components/Dropdown/DropdownMenu/DropdownMenu";
28
29
  export { Badge } from "./src/components/Badge/Badge";
29
30
  export { default as Combobox } from "./src/components/Dropdown/Combobox/Combobox";
package/dist/index.js CHANGED
@@ -25,5 +25,6 @@ export { Select, SelectTrigger, SelectContent, SelectItem, SelectGroup, SelectLa
25
25
  export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, } from "./src/components/Alerts/AlertDialog";
26
26
  export { Avatar, AvatarImage, AvatarFallback, } from "./src/components/Avatar/Avatar/Avatar";
27
27
  export { Table, TableHeader, TableBody, TableRow, TableHead, TableCell, TableCaption, } from "./src/components/Table/Table";
28
+ export { DropdownMenu, DropdownMenuTrigger, DropdownMenuContent, DropdownMenuItem, DropdownMenuSeparator, DropdownMenuCheckboxItem, DropdownMenuLabel, DropdownMenuSubTrigger, DropdownMenuSub, DropdownMenuSubContent, } from "./src/components/Dropdown/DropdownMenu/DropdownMenu";
28
29
  export { Badge } from "./src/components/Badge/Badge";
29
30
  export { default as Combobox } from "./src/components/Dropdown/Combobox/Combobox";
@@ -56,8 +56,8 @@ export var buttonStyles = {
56
56
  "light-red": "bg-red-100 text-red-600 hover:bg-red-700 hover:text-red-50 active:bg-red-800 active:text-red-50",
57
57
  indigo: "text-indigo-600 hover:bg-indigo-700 hover:text-indigo-50 active:bg-indigo-800 active:text-indigo-50",
58
58
  "light-indigo": "bg-indigo-100 text-indigo-600 hover:bg-indigo-700 hover:text-indigo-50 active:bg-indigo-800 active:text-indigo-50",
59
- gray: "bg-gray-100 text-gray-950 hover:bg-gray-100 hover:text-gray-950 active:bg-gray-300 active:text-gray-950",
60
- "light-gray": "text-gray-950 hover:bg-gray-100 hover:text-gray-950 active:bg-gray-300",
59
+ gray: "bg-gray-50 border-gray-200 text-gray-950 hover:bg-gray-100 hover:text-gray-950 active:bg-gray-300 active:text-gray-950",
60
+ "light-gray": "text-gray-900 border-gray-900 bg-gray-100 hover:text-gray-950 active:bg-gray-300 active:text-gray-950",
61
61
  disabled: "text-gray-300",
62
62
  },
63
63
  ghostColor: {
@@ -1,6 +1,6 @@
1
1
  export var colors = {
2
2
  white: "#fefefe",
3
- black: "#0f0f0f",
3
+ black: "#030404",
4
4
  "blue-50": "#fbfcfe",
5
5
  "blue-100": "#e2edf9",
6
6
  "blue-200": "#b8d3ef",
@@ -13,16 +13,16 @@ export var colors = {
13
13
  "blue-900": "#0c2036",
14
14
  "blue-950": "#03080d",
15
15
  "gray-50": "#fafafa",
16
- "gray-100": "#ecedee",
17
- "gray-200": "#d2d3d5",
18
- "gray-300": "#b7babd",
19
- "gray-400": "#9da1a5",
20
- "gray-500": "#82878c",
21
- "gray-600": "#696e72",
22
- "gray-700": "#515457",
23
- "gray-800": "#383b3d",
24
- "gray-900": "#202122",
25
- "gray-950": "#070808",
16
+ "gray-100": "#F4F5F6",
17
+ "gray-200": "#E7E8EA",
18
+ "gray-300": "#D2D4D6",
19
+ "gray-400": "#B9BBBD",
20
+ "gray-500": "#929699",
21
+ "gray-600": "#76787A",
22
+ "gray-700": "#56595C",
23
+ "gray-800": "#393B3D",
24
+ "gray-900": "#2B2C2E",
25
+ "gray-950": "#18191A",
26
26
  "green-50": "#fcfdfc",
27
27
  "green-100": "#ebf5f0",
28
28
  "green-200": "#d1e7dd",
@@ -1194,10 +1194,10 @@
1194
1194
  border-style: none;
1195
1195
  }
1196
1196
  .\!border-gray-100 {
1197
- border-color: #ecedee !important;
1197
+ border-color: #F4F5F6 !important;
1198
1198
  }
1199
1199
  .\!border-gray-300 {
1200
- border-color: #b7babd !important;
1200
+ border-color: #D2D4D6 !important;
1201
1201
  }
1202
1202
  .\!border-white {
1203
1203
  border-color: #fefefe !important;
@@ -1206,13 +1206,16 @@
1206
1206
  border-color: #276ab3;
1207
1207
  }
1208
1208
  .border-gray-200 {
1209
- border-color: #d2d3d5;
1209
+ border-color: #E7E8EA;
1210
1210
  }
1211
1211
  .border-gray-300 {
1212
- border-color: #b7babd;
1212
+ border-color: #D2D4D6;
1213
1213
  }
1214
1214
  .border-gray-600 {
1215
- border-color: #696e72;
1215
+ border-color: #76787A;
1216
+ }
1217
+ .border-gray-900 {
1218
+ border-color: #2B2C2E;
1216
1219
  }
1217
1220
  .border-green-100 {
1218
1221
  border-color: #ebf5f0;
@@ -1248,7 +1251,7 @@
1248
1251
  border-left-color: transparent;
1249
1252
  }
1250
1253
  .\!bg-black {
1251
- background-color: #0f0f0f !important;
1254
+ background-color: #030404 !important;
1252
1255
  }
1253
1256
  .\!bg-primary {
1254
1257
  background-color: var(--primary) !important;
@@ -1263,16 +1266,16 @@
1263
1266
  background-color: var(--background);
1264
1267
  }
1265
1268
  .bg-black {
1266
- background-color: #0f0f0f;
1269
+ background-color: #030404;
1267
1270
  }
1268
1271
  .bg-black\/30 {
1269
- background-color: color-mix(in oklab, #0f0f0f 30%, transparent);
1272
+ background-color: color-mix(in oklab, #030404 30%, transparent);
1270
1273
  }
1271
1274
  .bg-black\/50 {
1272
- background-color: color-mix(in oklab, #0f0f0f 50%, transparent);
1275
+ background-color: color-mix(in oklab, #030404 50%, transparent);
1273
1276
  }
1274
1277
  .bg-black\/75 {
1275
- background-color: color-mix(in oklab, #0f0f0f 75%, transparent);
1278
+ background-color: color-mix(in oklab, #030404 75%, transparent);
1276
1279
  }
1277
1280
  .bg-blue-50 {
1278
1281
  background-color: #fbfcfe;
@@ -1314,34 +1317,34 @@
1314
1317
  background-color: #fafafa;
1315
1318
  }
1316
1319
  .bg-gray-100 {
1317
- background-color: #ecedee;
1320
+ background-color: #F4F5F6;
1318
1321
  }
1319
1322
  .bg-gray-200 {
1320
- background-color: #d2d3d5;
1323
+ background-color: #E7E8EA;
1321
1324
  }
1322
1325
  .bg-gray-300 {
1323
- background-color: #b7babd;
1326
+ background-color: #D2D4D6;
1324
1327
  }
1325
1328
  .bg-gray-400 {
1326
- background-color: #9da1a5;
1329
+ background-color: #B9BBBD;
1327
1330
  }
1328
1331
  .bg-gray-500 {
1329
- background-color: #82878c;
1332
+ background-color: #929699;
1330
1333
  }
1331
1334
  .bg-gray-600 {
1332
- background-color: #696e72;
1335
+ background-color: #76787A;
1333
1336
  }
1334
1337
  .bg-gray-700 {
1335
- background-color: #515457;
1338
+ background-color: #56595C;
1336
1339
  }
1337
1340
  .bg-gray-800 {
1338
- background-color: #383b3d;
1341
+ background-color: #393B3D;
1339
1342
  }
1340
1343
  .bg-gray-900 {
1341
- background-color: #202122;
1344
+ background-color: #2B2C2E;
1342
1345
  }
1343
1346
  .bg-gray-950 {
1344
- background-color: #070808;
1347
+ background-color: #18191A;
1345
1348
  }
1346
1349
  .bg-green-50 {
1347
1350
  background-color: #fcfdfc;
@@ -1492,7 +1495,7 @@
1492
1495
  background-image: linear-gradient(var(--tw-gradient-stops));
1493
1496
  }
1494
1497
  .from-black {
1495
- --tw-gradient-from: #0f0f0f;
1498
+ --tw-gradient-from: #030404;
1496
1499
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1497
1500
  }
1498
1501
  .to-transparent {
@@ -1854,13 +1857,13 @@
1854
1857
  white-space: nowrap;
1855
1858
  }
1856
1859
  .\!text-black {
1857
- color: #0f0f0f !important;
1860
+ color: #030404 !important;
1858
1861
  }
1859
1862
  .\!text-primary-foreground {
1860
1863
  color: var(--primary-foreground) !important;
1861
1864
  }
1862
1865
  .text-black {
1863
- color: #0f0f0f;
1866
+ color: #030404;
1864
1867
  }
1865
1868
  .text-blue-50 {
1866
1869
  color: #fbfcfe;
@@ -1905,34 +1908,34 @@
1905
1908
  color: #fafafa;
1906
1909
  }
1907
1910
  .text-gray-100 {
1908
- color: #ecedee;
1911
+ color: #F4F5F6;
1909
1912
  }
1910
1913
  .text-gray-200 {
1911
- color: #d2d3d5;
1914
+ color: #E7E8EA;
1912
1915
  }
1913
1916
  .text-gray-300 {
1914
- color: #b7babd;
1917
+ color: #D2D4D6;
1915
1918
  }
1916
1919
  .text-gray-400 {
1917
- color: #9da1a5;
1920
+ color: #B9BBBD;
1918
1921
  }
1919
1922
  .text-gray-500 {
1920
- color: #82878c;
1923
+ color: #929699;
1921
1924
  }
1922
1925
  .text-gray-600 {
1923
- color: #696e72;
1926
+ color: #76787A;
1924
1927
  }
1925
1928
  .text-gray-700 {
1926
- color: #515457;
1929
+ color: #56595C;
1927
1930
  }
1928
1931
  .text-gray-800 {
1929
- color: #383b3d;
1932
+ color: #393B3D;
1930
1933
  }
1931
1934
  .text-gray-900 {
1932
- color: #202122;
1935
+ color: #2B2C2E;
1933
1936
  }
1934
1937
  .text-gray-950 {
1935
- color: #070808;
1938
+ color: #18191A;
1936
1939
  }
1937
1940
  .text-green-50 {
1938
1941
  color: #fcfdfc;
@@ -2338,7 +2341,7 @@
2338
2341
  }
2339
2342
  .placeholder\:text-gray-400 {
2340
2343
  &::placeholder {
2341
- color: #9da1a5;
2344
+ color: #B9BBBD;
2342
2345
  }
2343
2346
  }
2344
2347
  .placeholder\:text-muted-foreground {
@@ -2409,7 +2412,7 @@
2409
2412
  .hover\:border-gray-300 {
2410
2413
  &:hover {
2411
2414
  @media (hover: hover) {
2412
- border-color: #b7babd;
2415
+ border-color: #D2D4D6;
2413
2416
  }
2414
2417
  }
2415
2418
  }
@@ -2507,70 +2510,70 @@
2507
2510
  .hover\:bg-gray-100 {
2508
2511
  &:hover {
2509
2512
  @media (hover: hover) {
2510
- background-color: #ecedee;
2513
+ background-color: #F4F5F6;
2511
2514
  }
2512
2515
  }
2513
2516
  }
2514
2517
  .hover\:bg-gray-200 {
2515
2518
  &:hover {
2516
2519
  @media (hover: hover) {
2517
- background-color: #d2d3d5;
2520
+ background-color: #E7E8EA;
2518
2521
  }
2519
2522
  }
2520
2523
  }
2521
2524
  .hover\:bg-gray-300 {
2522
2525
  &:hover {
2523
2526
  @media (hover: hover) {
2524
- background-color: #b7babd;
2527
+ background-color: #D2D4D6;
2525
2528
  }
2526
2529
  }
2527
2530
  }
2528
2531
  .hover\:bg-gray-400 {
2529
2532
  &:hover {
2530
2533
  @media (hover: hover) {
2531
- background-color: #9da1a5;
2534
+ background-color: #B9BBBD;
2532
2535
  }
2533
2536
  }
2534
2537
  }
2535
2538
  .hover\:bg-gray-500 {
2536
2539
  &:hover {
2537
2540
  @media (hover: hover) {
2538
- background-color: #82878c;
2541
+ background-color: #929699;
2539
2542
  }
2540
2543
  }
2541
2544
  }
2542
2545
  .hover\:bg-gray-600 {
2543
2546
  &:hover {
2544
2547
  @media (hover: hover) {
2545
- background-color: #696e72;
2548
+ background-color: #76787A;
2546
2549
  }
2547
2550
  }
2548
2551
  }
2549
2552
  .hover\:bg-gray-700 {
2550
2553
  &:hover {
2551
2554
  @media (hover: hover) {
2552
- background-color: #515457;
2555
+ background-color: #56595C;
2553
2556
  }
2554
2557
  }
2555
2558
  }
2556
2559
  .hover\:bg-gray-800 {
2557
2560
  &:hover {
2558
2561
  @media (hover: hover) {
2559
- background-color: #383b3d;
2562
+ background-color: #393B3D;
2560
2563
  }
2561
2564
  }
2562
2565
  }
2563
2566
  .hover\:bg-gray-900 {
2564
2567
  &:hover {
2565
2568
  @media (hover: hover) {
2566
- background-color: #202122;
2569
+ background-color: #2B2C2E;
2567
2570
  }
2568
2571
  }
2569
2572
  }
2570
2573
  .hover\:bg-gray-950 {
2571
2574
  &:hover {
2572
2575
  @media (hover: hover) {
2573
- background-color: #070808;
2576
+ background-color: #18191A;
2574
2577
  }
2575
2578
  }
2576
2579
  }
@@ -2976,70 +2979,70 @@
2976
2979
  .hover\:text-gray-100 {
2977
2980
  &:hover {
2978
2981
  @media (hover: hover) {
2979
- color: #ecedee;
2982
+ color: #F4F5F6;
2980
2983
  }
2981
2984
  }
2982
2985
  }
2983
2986
  .hover\:text-gray-200 {
2984
2987
  &:hover {
2985
2988
  @media (hover: hover) {
2986
- color: #d2d3d5;
2989
+ color: #E7E8EA;
2987
2990
  }
2988
2991
  }
2989
2992
  }
2990
2993
  .hover\:text-gray-300 {
2991
2994
  &:hover {
2992
2995
  @media (hover: hover) {
2993
- color: #b7babd;
2996
+ color: #D2D4D6;
2994
2997
  }
2995
2998
  }
2996
2999
  }
2997
3000
  .hover\:text-gray-400 {
2998
3001
  &:hover {
2999
3002
  @media (hover: hover) {
3000
- color: #9da1a5;
3003
+ color: #B9BBBD;
3001
3004
  }
3002
3005
  }
3003
3006
  }
3004
3007
  .hover\:text-gray-500 {
3005
3008
  &:hover {
3006
3009
  @media (hover: hover) {
3007
- color: #82878c;
3010
+ color: #929699;
3008
3011
  }
3009
3012
  }
3010
3013
  }
3011
3014
  .hover\:text-gray-600 {
3012
3015
  &:hover {
3013
3016
  @media (hover: hover) {
3014
- color: #696e72;
3017
+ color: #76787A;
3015
3018
  }
3016
3019
  }
3017
3020
  }
3018
3021
  .hover\:text-gray-700 {
3019
3022
  &:hover {
3020
3023
  @media (hover: hover) {
3021
- color: #515457;
3024
+ color: #56595C;
3022
3025
  }
3023
3026
  }
3024
3027
  }
3025
3028
  .hover\:text-gray-800 {
3026
3029
  &:hover {
3027
3030
  @media (hover: hover) {
3028
- color: #383b3d;
3031
+ color: #393B3D;
3029
3032
  }
3030
3033
  }
3031
3034
  }
3032
3035
  .hover\:text-gray-900 {
3033
3036
  &:hover {
3034
3037
  @media (hover: hover) {
3035
- color: #202122;
3038
+ color: #2B2C2E;
3036
3039
  }
3037
3040
  }
3038
3041
  }
3039
3042
  .hover\:text-gray-950 {
3040
3043
  &:hover {
3041
3044
  @media (hover: hover) {
3042
- color: #070808;
3045
+ color: #18191A;
3043
3046
  }
3044
3047
  }
3045
3048
  }
@@ -3571,12 +3574,12 @@
3571
3574
  }
3572
3575
  .active\:bg-gray-300 {
3573
3576
  &:active {
3574
- background-color: #b7babd;
3577
+ background-color: #D2D4D6;
3575
3578
  }
3576
3579
  }
3577
3580
  .active\:bg-gray-950 {
3578
3581
  &:active {
3579
- background-color: #070808;
3582
+ background-color: #18191A;
3580
3583
  }
3581
3584
  }
3582
3585
  .active\:bg-green-600 {
@@ -3641,12 +3644,12 @@
3641
3644
  }
3642
3645
  .active\:text-gray-700 {
3643
3646
  &:active {
3644
- color: #515457;
3647
+ color: #56595C;
3645
3648
  }
3646
3649
  }
3647
3650
  .active\:text-gray-950 {
3648
3651
  &:active {
3649
- color: #070808;
3652
+ color: #18191A;
3650
3653
  }
3651
3654
  }
3652
3655
  .active\:text-green-50 {
@@ -3701,12 +3704,12 @@
3701
3704
  }
3702
3705
  .disabled\:border-gray-300 {
3703
3706
  &:disabled {
3704
- border-color: #b7babd;
3707
+ border-color: #D2D4D6;
3705
3708
  }
3706
3709
  }
3707
3710
  .disabled\:bg-gray-100 {
3708
3711
  &:disabled {
3709
- background-color: #ecedee;
3712
+ background-color: #F4F5F6;
3710
3713
  }
3711
3714
  }
3712
3715
  .disabled\:opacity-50 {
@@ -3734,12 +3737,12 @@
3734
3737
  }
3735
3738
  .data-\[disabled\]\:bg-gray-100 {
3736
3739
  &[data-disabled] {
3737
- background-color: #ecedee;
3740
+ background-color: #F4F5F6;
3738
3741
  }
3739
3742
  }
3740
3743
  .data-\[disabled\]\:text-gray-300 {
3741
3744
  &[data-disabled] {
3742
- color: #b7babd;
3745
+ color: #D2D4D6;
3743
3746
  }
3744
3747
  }
3745
3748
  .data-\[disabled\]\:opacity-50 {
@@ -3804,7 +3807,7 @@
3804
3807
  }
3805
3808
  .data-\[placeholder\]\:text-gray-400 {
3806
3809
  &[data-placeholder] {
3807
- color: #9da1a5;
3810
+ color: #B9BBBD;
3808
3811
  }
3809
3812
  }
3810
3813
  .data-\[side\=bottom\]\:translate-y-1 {
@@ -4324,7 +4327,7 @@
4324
4327
  }
4325
4328
  .\[\&_\[data-slot\=\'alert-dialog-header\'\]_svg\:not\(\.lu-icon-custom-color\)\]\:text-gray-600 {
4326
4329
  & [data-slot='alert-dialog-header'] svg:not(.lu-icon-custom-color) {
4327
- color: #696e72;
4330
+ color: #76787A;
4328
4331
  }
4329
4332
  }
4330
4333
  .\[\&_\[data-slot\=\'alert-dialog-header\'\]_svg\:not\(\.lu-icon-custom-color\)\]\:text-green-600 {
@@ -4401,7 +4404,7 @@
4401
4404
  }
4402
4405
  .\[\&_h2\[data-slot\=\'alert-dialog-title\'\]\]\:text-gray-600 {
4403
4406
  & h2[data-slot='alert-dialog-title'] {
4404
- color: #696e72;
4407
+ color: #76787A;
4405
4408
  }
4406
4409
  }
4407
4410
  .\[\&_h2\[data-slot\=\'alert-dialog-title\'\]\]\:text-green-600 {
@@ -4624,7 +4627,7 @@
4624
4627
  initial-value: 0;
4625
4628
  }
4626
4629
  :root {
4627
- --foreground-rgb: #0f0f0f;
4630
+ --foreground-rgb: #030404;
4628
4631
  --background-start-rgb: 214, 219, 220;
4629
4632
  --background: oklch(1 0 0);
4630
4633
  --foreground: oklch(0.145 0 0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "linkedunion-design-kit",
3
- "version": "1.9.3",
3
+ "version": "1.9.4",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist",