@loafmarkets/ui 0.1.337 → 0.1.338
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.js +26 -28
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +26 -28
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -13337,24 +13337,22 @@ function OrderConfirmationModal({
|
|
|
13337
13337
|
] }),
|
|
13338
13338
|
/* @__PURE__ */ jsxRuntime.jsxs(ButtonRow2, { children: [
|
|
13339
13339
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
13340
|
-
|
|
13340
|
+
SecondaryButton,
|
|
13341
13341
|
{
|
|
13342
13342
|
type: "button",
|
|
13343
13343
|
onClick: onClose,
|
|
13344
|
-
className: "secondary",
|
|
13345
13344
|
disabled: isPlacing,
|
|
13346
13345
|
children: "Cancel"
|
|
13347
13346
|
}
|
|
13348
13347
|
),
|
|
13349
13348
|
!hasInsufficientFunds && /* @__PURE__ */ jsxRuntime.jsx(
|
|
13350
|
-
|
|
13349
|
+
PrimaryButton,
|
|
13351
13350
|
{
|
|
13352
13351
|
type: "button",
|
|
13353
13352
|
onClick: () => {
|
|
13354
13353
|
if (dontShowAgain) setSkipIpoConfirm(true);
|
|
13355
13354
|
onConfirm();
|
|
13356
13355
|
},
|
|
13357
|
-
className: "primary",
|
|
13358
13356
|
disabled: isPlacing,
|
|
13359
13357
|
children: isPlacing ? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
13360
13358
|
/* @__PURE__ */ jsxRuntime.jsx(Spinner, { "aria-hidden": true }),
|
|
@@ -13491,7 +13489,6 @@ var ModalFooter = styled9__default.default.div`
|
|
|
13491
13489
|
display: flex;
|
|
13492
13490
|
align-items: center;
|
|
13493
13491
|
justify-content: space-between;
|
|
13494
|
-
flex-wrap: wrap;
|
|
13495
13492
|
gap: 0.75rem;
|
|
13496
13493
|
`;
|
|
13497
13494
|
var DontShowLabel = styled9__default.default.label`
|
|
@@ -13510,32 +13507,33 @@ var ButtonRow2 = styled9__default.default.div`
|
|
|
13510
13507
|
gap: 1rem;
|
|
13511
13508
|
justify-content: flex-end;
|
|
13512
13509
|
flex-shrink: 0;
|
|
13513
|
-
|
|
13514
|
-
|
|
13515
|
-
|
|
13516
|
-
|
|
13517
|
-
|
|
13518
|
-
|
|
13519
|
-
|
|
13520
|
-
|
|
13521
|
-
|
|
13522
|
-
|
|
13523
|
-
|
|
13524
|
-
|
|
13510
|
+
`;
|
|
13511
|
+
var BaseButton = styled9__default.default.button`
|
|
13512
|
+
padding: 0.75rem 1.5rem;
|
|
13513
|
+
border-radius: 8px;
|
|
13514
|
+
font-weight: 600;
|
|
13515
|
+
font-size: 0.95rem;
|
|
13516
|
+
cursor: pointer;
|
|
13517
|
+
display: inline-flex;
|
|
13518
|
+
align-items: center;
|
|
13519
|
+
justify-content: center;
|
|
13520
|
+
white-space: nowrap;
|
|
13521
|
+
flex-shrink: 0;
|
|
13522
|
+
&:disabled {
|
|
13525
13523
|
cursor: not-allowed;
|
|
13526
13524
|
opacity: 0.75;
|
|
13527
13525
|
}
|
|
13528
|
-
|
|
13529
|
-
|
|
13530
|
-
|
|
13531
|
-
|
|
13532
|
-
|
|
13533
|
-
|
|
13534
|
-
|
|
13535
|
-
|
|
13536
|
-
|
|
13537
|
-
|
|
13538
|
-
|
|
13526
|
+
`;
|
|
13527
|
+
var SecondaryButton = styled9__default.default(BaseButton)`
|
|
13528
|
+
background: rgba(255,255,255,0.1);
|
|
13529
|
+
color: rgba(255,255,255,0.8);
|
|
13530
|
+
border: 1px solid rgba(255,255,255,0.2);
|
|
13531
|
+
`;
|
|
13532
|
+
var PrimaryButton = styled9__default.default(BaseButton)`
|
|
13533
|
+
background: linear-gradient(135deg, #0ecb81 0%, #0ba968 100%);
|
|
13534
|
+
color: #fff;
|
|
13535
|
+
border: none;
|
|
13536
|
+
box-shadow: 0 4px 12px rgba(14,203,129,0.3);
|
|
13539
13537
|
`;
|
|
13540
13538
|
|
|
13541
13539
|
// src/components/property-buy/constants.ts
|