@syscore/ui-library 1.12.0 → 1.13.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/client/global.css CHANGED
@@ -1492,7 +1492,7 @@ body {
1492
1492
  align-items: center;
1493
1493
  border-radius: 9999px;
1494
1494
  border: 2px solid transparent;
1495
- transition: background-color 0.15s ease-in-out;
1495
+ transition: border-color 0.15s ease-in-out;
1496
1496
  }
1497
1497
 
1498
1498
  .switch:focus-visible {
@@ -1508,11 +1508,11 @@ body {
1508
1508
  }
1509
1509
 
1510
1510
  .switch[data-state="checked"] {
1511
- background-color: hsl(var(--primary));
1511
+ border: 1px solid var(--color-cyan-300, #39c9ea);
1512
1512
  }
1513
1513
 
1514
1514
  .switch[data-state="unchecked"] {
1515
- background-color: hsl(var(--input));
1515
+ border: 1px solid var(--color-gray-100, #dedfe3);
1516
1516
  }
1517
1517
 
1518
1518
  .switch-thumb {
@@ -1521,19 +1521,18 @@ body {
1521
1521
  height: 1.25rem;
1522
1522
  width: 1.25rem;
1523
1523
  border-radius: 9999px;
1524
- background-color: hsl(var(--background));
1525
- box-shadow:
1526
- 0 10px 15px -3px rgba(0, 0, 0, 0.1),
1527
- 0 4px 6px -4px rgba(0, 0, 0, 0.1);
1528
1524
  transition: transform 0.15s ease-in-out;
1525
+ transition: background-color 0.15s ease-in-out;
1529
1526
  }
1530
1527
 
1531
1528
  .switch-thumb[data-state="checked"] {
1532
1529
  transform: translateX(1.25rem);
1530
+ background-color: var(--color-cyan-700, #128ba6);
1533
1531
  }
1534
1532
 
1535
1533
  .switch-thumb[data-state="unchecked"] {
1536
1534
  transform: translateX(0);
1535
+ background-color: var(--color-gray-400, #9fa2ab);
1537
1536
  }
1538
1537
 
1539
1538
  /* Checkbox Styles */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syscore/ui-library",
3
- "version": "1.12.0",
3
+ "version": "1.13.0",
4
4
  "description": "A comprehensive React component library built with Radix UI, Tailwind CSS, and TypeScript",
5
5
  "private": false,
6
6
  "type": "module",