kaleido-ui 0.1.34 → 0.1.35
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/web/index.cjs +3 -3
- package/dist/web/index.js +3 -3
- package/package.json +1 -1
package/dist/web/index.cjs
CHANGED
|
@@ -6429,7 +6429,7 @@ function BtcUnifiedReceive({
|
|
|
6429
6429
|
type: "text",
|
|
6430
6430
|
value: amount,
|
|
6431
6431
|
onChange: handleAmountChange,
|
|
6432
|
-
placeholder: "Any amount
|
|
6432
|
+
placeholder: "Any amount",
|
|
6433
6433
|
className: "w-full rounded-lg border bg-white/5 px-3 py-1.5 font-mono text-xs font-bold text-white transition-all placeholder:text-white/25 focus:border-primary/40 focus:outline-none",
|
|
6434
6434
|
inputMode: "decimal"
|
|
6435
6435
|
}
|
|
@@ -6600,7 +6600,7 @@ function DepositGeneratedView({
|
|
|
6600
6600
|
type: "text",
|
|
6601
6601
|
value: amount,
|
|
6602
6602
|
onChange: handleAmountChange,
|
|
6603
|
-
placeholder: "Any amount
|
|
6603
|
+
placeholder: "Any amount",
|
|
6604
6604
|
className: "w-full rounded-lg border bg-white/5 px-3 py-1.5 font-mono text-xs font-bold text-white transition-all placeholder:text-white/25 focus:border-warning/40 focus:outline-none",
|
|
6605
6605
|
inputMode: "decimal"
|
|
6606
6606
|
}
|
|
@@ -6620,7 +6620,7 @@ function DepositGeneratedView({
|
|
|
6620
6620
|
type: "text",
|
|
6621
6621
|
value: amount,
|
|
6622
6622
|
onChange: handleAmountChange,
|
|
6623
|
-
placeholder: `Any amount (${selectedAsset
|
|
6623
|
+
placeholder: selectedAsset?.ticker ? `Any amount (${selectedAsset.ticker})` : "Any amount",
|
|
6624
6624
|
className: "w-full rounded-lg border bg-white/5 px-3 py-1.5 font-mono text-xs font-bold text-white transition-all placeholder:text-white/25 focus:border-warning/40 focus:outline-none",
|
|
6625
6625
|
inputMode: "decimal"
|
|
6626
6626
|
}
|
package/dist/web/index.js
CHANGED
|
@@ -6271,7 +6271,7 @@ function BtcUnifiedReceive({
|
|
|
6271
6271
|
type: "text",
|
|
6272
6272
|
value: amount,
|
|
6273
6273
|
onChange: handleAmountChange,
|
|
6274
|
-
placeholder: "Any amount
|
|
6274
|
+
placeholder: "Any amount",
|
|
6275
6275
|
className: "w-full rounded-lg border bg-white/5 px-3 py-1.5 font-mono text-xs font-bold text-white transition-all placeholder:text-white/25 focus:border-primary/40 focus:outline-none",
|
|
6276
6276
|
inputMode: "decimal"
|
|
6277
6277
|
}
|
|
@@ -6442,7 +6442,7 @@ function DepositGeneratedView({
|
|
|
6442
6442
|
type: "text",
|
|
6443
6443
|
value: amount,
|
|
6444
6444
|
onChange: handleAmountChange,
|
|
6445
|
-
placeholder: "Any amount
|
|
6445
|
+
placeholder: "Any amount",
|
|
6446
6446
|
className: "w-full rounded-lg border bg-white/5 px-3 py-1.5 font-mono text-xs font-bold text-white transition-all placeholder:text-white/25 focus:border-warning/40 focus:outline-none",
|
|
6447
6447
|
inputMode: "decimal"
|
|
6448
6448
|
}
|
|
@@ -6462,7 +6462,7 @@ function DepositGeneratedView({
|
|
|
6462
6462
|
type: "text",
|
|
6463
6463
|
value: amount,
|
|
6464
6464
|
onChange: handleAmountChange,
|
|
6465
|
-
placeholder: `Any amount (${selectedAsset
|
|
6465
|
+
placeholder: selectedAsset?.ticker ? `Any amount (${selectedAsset.ticker})` : "Any amount",
|
|
6466
6466
|
className: "w-full rounded-lg border bg-white/5 px-3 py-1.5 font-mono text-xs font-bold text-white transition-all placeholder:text-white/25 focus:border-warning/40 focus:outline-none",
|
|
6467
6467
|
inputMode: "decimal"
|
|
6468
6468
|
}
|
package/package.json
CHANGED