@prijsvrijtechsupport/ui 0.0.43 → 0.0.44
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/components/priceCheck/styles.css +10 -0
- package/dist/components/toggle/styles.css +2 -2
- package/dist/dist/index.css +17 -3
- package/dist/dist/index.css.map +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/styles/variables.css +5 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4183,11 +4183,11 @@ const PriceCheck = ({ className, price, text, disabled = false, "data-testid": t
|
|
|
4183
4183
|
children: [
|
|
4184
4184
|
/* @__PURE__ */ jsx("span", { className: "price-background block w-full h-full" }),
|
|
4185
4185
|
/* @__PURE__ */ jsx("span", {
|
|
4186
|
-
className:
|
|
4186
|
+
className: `price-check-text-padding${price && price > 999 ? "-large" : ""} text-start price-check-color price-check-fontFamily price-check-font-price-text text-[11px] whitespace-nowrap`,
|
|
4187
4187
|
children: text
|
|
4188
4188
|
}),
|
|
4189
4189
|
/* @__PURE__ */ jsxs("span", {
|
|
4190
|
-
className:
|
|
4190
|
+
className: `price-check-price-padding${price && price > 999 ? "-large" : ""} text-start price-check-color-price price-check-fontFamily-price font-bold text-2xl whitespace-nowrap price-check-price-margin-top`,
|
|
4191
4191
|
children: [
|
|
4192
4192
|
price,
|
|
4193
4193
|
",",
|