@photoroom/ui 0.1.623 → 0.1.625

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@photoroom/ui",
3
- "version": "0.1.623",
3
+ "version": "0.1.625",
4
4
  "private": false,
5
5
  "description": "Photoroom design system components",
6
6
  "sideEffects": [
package/theme.css CHANGED
@@ -1338,3 +1338,14 @@
1338
1338
  transform: scaleX(-1);
1339
1339
  }
1340
1340
  }
1341
+
1342
+ /*
1343
+ * A price skeleton never resolves without JavaScript: PendingPrice shows its noscript fallback
1344
+ * instead. Unlayered on purpose: inside `@layer base` this would lose to the `inline-block`
1345
+ * utility on the skeleton, whatever its specificity, since utilities sit in a later layer.
1346
+ */
1347
+ @media (scripting: none) {
1348
+ [data-pending-price] {
1349
+ display: none;
1350
+ }
1351
+ }