coinley-test 0.0.26 → 0.0.27
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.esm.js +16 -12
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/vanilla/coinley-vanilla.umd.js +3 -3
- package/dist/vanilla/coinley-vanilla.umd.js.map +1 -1
- package/dist/vanilla/style.css +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -2557,16 +2557,18 @@ const EnhancedSimpleCoinleyPayment = ({
|
|
|
2557
2557
|
setSelectedNetwork(network);
|
|
2558
2558
|
setSelectedToken(null);
|
|
2559
2559
|
},
|
|
2560
|
-
className: "w-full p-4 border border-gray-
|
|
2560
|
+
className: "w-full p-4 border border-gray-200 rounded-2xl bg-gradient-to-r from-white to-gray-50 text-gray-800 focus:outline-none focus:ring-3 focus:ring-[#7042D2]/20 focus:border-[#7042D2] appearance-none shadow-lg hover:shadow-xl hover:border-[#7042D2]/50 transition-all duration-300 ease-out",
|
|
2561
2561
|
style: {
|
|
2562
|
-
minHeight: "
|
|
2562
|
+
minHeight: "60px",
|
|
2563
2563
|
fontFamily: "Bricolage Grotesque, sans-serif",
|
|
2564
2564
|
fontSize: "16px",
|
|
2565
|
-
|
|
2566
|
-
|
|
2565
|
+
fontWeight: "500",
|
|
2566
|
+
backgroundImage: `url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3e%3cpath stroke='%237042D2' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3e%3c/svg%3e")`,
|
|
2567
|
+
backgroundPosition: "right 16px center",
|
|
2567
2568
|
backgroundRepeat: "no-repeat",
|
|
2568
|
-
backgroundSize: "
|
|
2569
|
-
paddingRight: "
|
|
2569
|
+
backgroundSize: "20px",
|
|
2570
|
+
paddingRight: "50px",
|
|
2571
|
+
borderWidth: "2px"
|
|
2570
2572
|
},
|
|
2571
2573
|
children: [
|
|
2572
2574
|
/* @__PURE__ */ jsxRuntimeExports.jsx("option", { value: "", style: { fontFamily: "Bricolage Grotesque, sans-serif" }, children: "Choose your network..." }),
|
|
@@ -2592,16 +2594,18 @@ const EnhancedSimpleCoinleyPayment = ({
|
|
|
2592
2594
|
}).find((t) => t.id === e.target.value);
|
|
2593
2595
|
setSelectedToken(token);
|
|
2594
2596
|
},
|
|
2595
|
-
className: "w-full p-4 border border-gray-
|
|
2597
|
+
className: "w-full p-4 border border-gray-200 rounded-2xl bg-gradient-to-r from-white to-gray-50 text-gray-800 focus:outline-none focus:ring-3 focus:ring-[#7042D2]/20 focus:border-[#7042D2] appearance-none shadow-lg hover:shadow-xl hover:border-[#7042D2]/50 transition-all duration-300 ease-out",
|
|
2596
2598
|
style: {
|
|
2597
|
-
minHeight: "
|
|
2599
|
+
minHeight: "60px",
|
|
2598
2600
|
fontFamily: "Bricolage Grotesque, sans-serif",
|
|
2599
2601
|
fontSize: "16px",
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
+
fontWeight: "500",
|
|
2603
|
+
backgroundImage: `url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3e%3cpath stroke='%237042D2' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3e%3c/svg%3e")`,
|
|
2604
|
+
backgroundPosition: "right 16px center",
|
|
2602
2605
|
backgroundRepeat: "no-repeat",
|
|
2603
|
-
backgroundSize: "
|
|
2604
|
-
paddingRight: "
|
|
2606
|
+
backgroundSize: "20px",
|
|
2607
|
+
paddingRight: "50px",
|
|
2608
|
+
borderWidth: "2px"
|
|
2605
2609
|
},
|
|
2606
2610
|
children: [
|
|
2607
2611
|
/* @__PURE__ */ jsxRuntimeExports.jsx("option", { value: "", style: { fontFamily: "Bricolage Grotesque, sans-serif" }, children: "Choose your token..." }),
|