@abhir9/pd-design-system 0.1.9 → 0.1.10

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.css CHANGED
@@ -1,6 +1,8 @@
1
1
  @tailwind base;
2
2
  @tailwind components;
3
3
  @tailwind utilities;
4
+ /* Note: @tailwind utilities is required for @layer utilities to work, but won't generate utilities
5
+ since we don't use Tailwind utility classes in this CSS file. Consumer's Tailwind will generate utilities. */
4
6
 
5
7
  @layer base {
6
8
  /**
package/dist/styles.css CHANGED
@@ -1132,6 +1132,12 @@ button {
1132
1132
  .border-\[var\(--border-yellow-subtle\)\] {
1133
1133
  border-color: var(--border-yellow-subtle);
1134
1134
  }
1135
+ .border-\[var\(--pd-border-primary\)\] {
1136
+ border-color: var(--pd-border-primary);
1137
+ }
1138
+ .border-\[var\(--pd-border-red\)\] {
1139
+ border-color: var(--pd-border-red);
1140
+ }
1135
1141
  .bg-\[var\(--background-base\)\] {
1136
1142
  background-color: var(--background-base);
1137
1143
  }
@@ -1162,6 +1168,9 @@ button {
1162
1168
  .bg-\[var\(--content-primary\)\] {
1163
1169
  background-color: var(--content-primary);
1164
1170
  }
1171
+ .bg-\[var\(--pd-background-base\)\] {
1172
+ background-color: var(--pd-background-base);
1173
+ }
1165
1174
  .bg-blue-400 {
1166
1175
  --tw-bg-opacity: 1;
1167
1176
  background-color: rgb(96 165 250 / var(--tw-bg-opacity, 1));
@@ -1301,6 +1310,12 @@ button {
1301
1310
  .text-\[var\(--content-yellow\)\] {
1302
1311
  color: var(--content-yellow);
1303
1312
  }
1313
+ .text-\[var\(--pd-content-primary\)\] {
1314
+ color: var(--pd-content-primary);
1315
+ }
1316
+ .text-\[var\(--pd-content-red\)\] {
1317
+ color: var(--pd-content-red);
1318
+ }
1304
1319
  .text-gray-500 {
1305
1320
  --tw-text-opacity: 1;
1306
1321
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
@@ -1385,6 +1400,25 @@ button {
1385
1400
  background-color 0.15s ease-in-out,
1386
1401
  border-color 0.15s ease-in-out;
1387
1402
  }
1403
+ .file\:border-0::file-selector-button {
1404
+ border-width: 0px;
1405
+ }
1406
+ .file\:bg-transparent::file-selector-button {
1407
+ background-color: transparent;
1408
+ }
1409
+ .file\:text-sm::file-selector-button {
1410
+ font-size: 0.875rem;
1411
+ line-height: 1.25rem;
1412
+ }
1413
+ .file\:font-medium::file-selector-button {
1414
+ font-weight: 500;
1415
+ }
1416
+ .placeholder\:text-\[var\(--pd-content-subtle\)\]::-moz-placeholder {
1417
+ color: var(--pd-content-subtle);
1418
+ }
1419
+ .placeholder\:text-\[var\(--pd-content-subtle\)\]::placeholder {
1420
+ color: var(--pd-content-subtle);
1421
+ }
1388
1422
  .hover\:border-\[var\(--border-green-on-hover\)\]:hover {
1389
1423
  border-color: var(--border-green-on-hover);
1390
1424
  }
@@ -1455,6 +1489,12 @@ button {
1455
1489
  var(--tw-ring-shadow, 0 0 #0000),
1456
1490
  var(--tw-shadow);
1457
1491
  }
1492
+ .focus-visible\:border-\[var\(--pd-border-blueOnHover\)\]:focus-visible {
1493
+ border-color: var(--pd-border-blueOnHover);
1494
+ }
1495
+ .focus-visible\:border-\[var\(--pd-border-redOnHover\)\]:focus-visible {
1496
+ border-color: var(--pd-border-redOnHover);
1497
+ }
1458
1498
  .focus-visible\:outline-none:focus-visible {
1459
1499
  outline: 2px solid transparent;
1460
1500
  outline-offset: 2px;
@@ -1470,6 +1510,12 @@ button {
1470
1510
  .focus-visible\:ring-\[var\(--border-blue\)\]:focus-visible {
1471
1511
  --tw-ring-color: var(--border-blue);
1472
1512
  }
1513
+ .focus-visible\:ring-\[var\(--pd-border-blue\)\]:focus-visible {
1514
+ --tw-ring-color: var(--pd-border-blue);
1515
+ }
1516
+ .focus-visible\:ring-\[var\(--pd-border-red\)\]:focus-visible {
1517
+ --tw-ring-color: var(--pd-border-red);
1518
+ }
1473
1519
  .focus-visible\:ring-offset-2:focus-visible {
1474
1520
  --tw-ring-offset-width: 2px;
1475
1521
  }
@@ -1494,6 +1540,9 @@ button {
1494
1540
  .disabled\:pointer-events-none:disabled {
1495
1541
  pointer-events: none;
1496
1542
  }
1543
+ .disabled\:cursor-not-allowed:disabled {
1544
+ cursor: not-allowed;
1545
+ }
1497
1546
  .disabled\:border-\[var\(--border-subtle\)\]:disabled {
1498
1547
  border-color: var(--border-subtle);
1499
1548
  }
@@ -1509,6 +1558,9 @@ button {
1509
1558
  .disabled\:text-\[var\(--content-subtle\)\]:disabled {
1510
1559
  color: var(--content-subtle);
1511
1560
  }
1561
+ .disabled\:text-\[var\(--pd-content-subtle\)\]:disabled {
1562
+ color: var(--pd-content-subtle);
1563
+ }
1512
1564
  .disabled\:opacity-50:disabled {
1513
1565
  opacity: 0.5;
1514
1566
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abhir9/pd-design-system",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "Production-grade design system with adapter layer support",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",