@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/components/website/PendingPrice/PendingPrice.d.ts +7 -0
- package/components/website/PendingPrice/PendingPrice.d.ts.map +1 -0
- package/components/website/PendingPrice/index.d.ts +2 -0
- package/components/website/PendingPrice/index.d.ts.map +1 -0
- package/components/website/PricingHeroBlock/AppPricing/AppPricingCardsContainer/AppPricingCardsItemV2.d.ts +3 -1
- package/components/website/PricingHeroBlock/AppPricing/AppPricingCardsContainer/AppPricingCardsItemV2.d.ts.map +1 -1
- package/components/website/PricingHeroBlock/AppPricing/AppPricingCardsContainer/AppPricingPrice.d.ts +3 -1
- package/components/website/PricingHeroBlock/AppPricing/AppPricingCardsContainer/AppPricingPrice.d.ts.map +1 -1
- package/components/website/PricingHeroBlock/AppPricing/AppPricingFeaturesPlanHeader.d.ts +3 -1
- package/components/website/PricingHeroBlock/AppPricing/AppPricingFeaturesPlanHeader.d.ts.map +1 -1
- package/components/website/PricingPlanCardV2/PricingPlanCardV2.d.ts +3 -1
- package/components/website/PricingPlanCardV2/PricingPlanCardV2.d.ts.map +1 -1
- package/index.css +1 -1
- package/index.mjs +10979 -10974
- package/package.json +1 -1
- package/theme.css +11 -0
package/package.json
CHANGED
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
|
+
}
|