@planetaexo/design-system 0.3.5 → 0.3.6
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.cjs +20 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +31 -2
- package/dist/index.d.ts +31 -2
- package/dist/index.js +20 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -6498,6 +6498,25 @@ function PaymentModalShell({
|
|
|
6498
6498
|
}
|
|
6499
6499
|
);
|
|
6500
6500
|
}
|
|
6501
|
+
|
|
6502
|
+
// src/lib/stripeAppearance.ts
|
|
6503
|
+
var stripeAppearance = {
|
|
6504
|
+
theme: "night",
|
|
6505
|
+
variables: {
|
|
6506
|
+
/** Cor primária — foco, checkbox, botão interno do Stripe */
|
|
6507
|
+
colorPrimary: "#22c55e",
|
|
6508
|
+
/** Border-radius dos campos do Stripe */
|
|
6509
|
+
borderRadius: "8px",
|
|
6510
|
+
/** Background dos campos internos */
|
|
6511
|
+
colorBackground: "#020617",
|
|
6512
|
+
/** Cor base do texto */
|
|
6513
|
+
colorText: "#e2e8f0",
|
|
6514
|
+
/** Cor do placeholder */
|
|
6515
|
+
colorTextPlaceholder: "#64748b",
|
|
6516
|
+
/** Cor da borda padrão */
|
|
6517
|
+
colorIconTab: "#94a3b8"
|
|
6518
|
+
}
|
|
6519
|
+
};
|
|
6501
6520
|
function Input(_a) {
|
|
6502
6521
|
var _b = _a, { className, type } = _b, props = __objRest(_b, ["className", "type"]);
|
|
6503
6522
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -6895,5 +6914,6 @@ exports.TripCard = TripCard;
|
|
|
6895
6914
|
exports.TripHeader = TripHeader;
|
|
6896
6915
|
exports.TripPage = TripPage;
|
|
6897
6916
|
exports.cn = cn;
|
|
6917
|
+
exports.stripeAppearance = stripeAppearance;
|
|
6898
6918
|
//# sourceMappingURL=index.cjs.map
|
|
6899
6919
|
//# sourceMappingURL=index.cjs.map
|