@fluid-app/portal-sdk 0.1.254 → 0.1.255
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/{AddressAutocompleteInput-Dy5sL54V.mjs → AddressAutocompleteInput-Dg-75n-K.mjs} +9 -12
- package/dist/AddressAutocompleteInput-Dg-75n-K.mjs.map +1 -0
- package/dist/{AddressAutocompleteInput-eO2ZMNvX.cjs → AddressAutocompleteInput-W2jWPYoJ.cjs} +26 -11
- package/dist/AddressAutocompleteInput-W2jWPYoJ.cjs.map +1 -0
- package/dist/{ProfileScreen-CfTHeXRn.mjs → ProfileScreen-D42NNNqT.mjs} +2 -2
- package/dist/{ProfileScreen-DxO1rvGl.mjs → ProfileScreen-Dvq3SfmI.mjs} +2 -2
- package/dist/{ProfileScreen-DxO1rvGl.mjs.map → ProfileScreen-Dvq3SfmI.mjs.map} +1 -1
- package/dist/{ProfileScreen-CFXyi6hi.cjs → ProfileScreen-LL3z9-cx.cjs} +2 -2
- package/dist/{ProfileScreen-CFXyi6hi.cjs.map → ProfileScreen-LL3z9-cx.cjs.map} +1 -1
- package/dist/{ProfileScreen-CS-4fa9g.cjs → ProfileScreen-dU8ZM8eY.cjs} +2 -2
- package/dist/{SubscriptionsScreen-ByoOMsky.cjs → SubscriptionsScreen-Bm8Ncl1e.cjs} +624 -166
- package/dist/SubscriptionsScreen-Bm8Ncl1e.cjs.map +1 -0
- package/dist/{SubscriptionsScreen-Y4UgpC1Y.mjs → SubscriptionsScreen-CsNE6gik.mjs} +627 -169
- package/dist/SubscriptionsScreen-CsNE6gik.mjs.map +1 -0
- package/dist/{SubscriptionsScreen-GCZYPM8-.cjs → SubscriptionsScreen-ztgglvXe.cjs} +2 -2
- package/dist/index.cjs +7 -7
- package/dist/index.mjs +7 -7
- package/package.json +15 -15
- package/dist/AddressAutocompleteInput-Dy5sL54V.mjs.map +0 -1
- package/dist/AddressAutocompleteInput-eO2ZMNvX.cjs.map +0 -1
- package/dist/SubscriptionsScreen-ByoOMsky.cjs.map +0 -1
- package/dist/SubscriptionsScreen-Y4UgpC1Y.mjs.map +0 -1
package/dist/{AddressAutocompleteInput-eO2ZMNvX.cjs → AddressAutocompleteInput-W2jWPYoJ.cjs}
RENAMED
|
@@ -595,7 +595,7 @@ function FormSelectField$1({ control, name, label, options, placeholder, contain
|
|
|
595
595
|
onChange?.(val);
|
|
596
596
|
},
|
|
597
597
|
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_src.SelectTrigger, {
|
|
598
|
-
className: require_src.cn(error && "ring-destructive ring-1"),
|
|
598
|
+
className: require_src.cn("w-full", error && "ring-destructive ring-1"),
|
|
599
599
|
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_src.SelectValue, { placeholder })
|
|
600
600
|
}), /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_src.SelectContent, { children: options?.map((opt) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_src.SelectItem, {
|
|
601
601
|
value: opt.value.toString(),
|
|
@@ -1543,10 +1543,10 @@ function EditPaymentMethodDialog({ isOpen, paymentMethod, billingAddress, onClos
|
|
|
1543
1543
|
})]
|
|
1544
1544
|
})
|
|
1545
1545
|
}), /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", { children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("h3", {
|
|
1546
|
-
className: "text-foreground mb-
|
|
1546
|
+
className: "text-foreground mb-3 text-sm font-medium",
|
|
1547
1547
|
children: t("billing_address")
|
|
1548
1548
|
}), /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
|
|
1549
|
-
className: "space-y-
|
|
1549
|
+
className: "space-y-3",
|
|
1550
1550
|
children: [
|
|
1551
1551
|
/* @__PURE__ */ (0, react_jsx_runtime.jsx)(FormSelectField$1, {
|
|
1552
1552
|
control,
|
|
@@ -1574,27 +1574,24 @@ function EditPaymentMethodDialog({ isOpen, paymentMethod, billingAddress, onClos
|
|
|
1574
1574
|
label: t("address_line_2")
|
|
1575
1575
|
}),
|
|
1576
1576
|
/* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
|
|
1577
|
-
className: "
|
|
1577
|
+
className: "grid grid-cols-1 gap-3 sm:grid-cols-3",
|
|
1578
1578
|
children: [
|
|
1579
1579
|
/* @__PURE__ */ (0, react_jsx_runtime.jsx)(FormTextField$1, {
|
|
1580
1580
|
control,
|
|
1581
1581
|
name: "billing_address.city",
|
|
1582
|
-
label: t("city")
|
|
1583
|
-
containerClassName: "flex-1"
|
|
1582
|
+
label: t("city")
|
|
1584
1583
|
}),
|
|
1585
1584
|
/* @__PURE__ */ (0, react_jsx_runtime.jsx)(FormSelectField$1, {
|
|
1586
1585
|
control,
|
|
1587
1586
|
name: "billing_address.state",
|
|
1588
1587
|
label: config?.regionLabel ? t(config.regionLabel) : t("state"),
|
|
1589
1588
|
options: stateSelectOptions,
|
|
1590
|
-
placeholder: t("select_state")
|
|
1591
|
-
containerClassName: "flex-1"
|
|
1589
|
+
placeholder: t("select_state")
|
|
1592
1590
|
}),
|
|
1593
1591
|
/* @__PURE__ */ (0, react_jsx_runtime.jsx)(FormTextField$1, {
|
|
1594
1592
|
control,
|
|
1595
1593
|
name: "billing_address.zip",
|
|
1596
|
-
label: config?.postalLabel ? t(config.postalLabel) : t("zip_code")
|
|
1597
|
-
containerClassName: "flex-1"
|
|
1594
|
+
label: config?.postalLabel ? t(config.postalLabel) : t("zip_code")
|
|
1598
1595
|
})
|
|
1599
1596
|
]
|
|
1600
1597
|
})
|
|
@@ -3057,12 +3054,30 @@ Object.defineProperty(exports, "AddressFormDialog", {
|
|
|
3057
3054
|
return AddressFormDialog;
|
|
3058
3055
|
}
|
|
3059
3056
|
});
|
|
3057
|
+
Object.defineProperty(exports, "ConfirmActionDialog", {
|
|
3058
|
+
enumerable: true,
|
|
3059
|
+
get: function() {
|
|
3060
|
+
return ConfirmActionDialog;
|
|
3061
|
+
}
|
|
3062
|
+
});
|
|
3060
3063
|
Object.defineProperty(exports, "CreditCardFormDialog", {
|
|
3061
3064
|
enumerable: true,
|
|
3062
3065
|
get: function() {
|
|
3063
3066
|
return CreditCardFormDialog;
|
|
3064
3067
|
}
|
|
3065
3068
|
});
|
|
3069
|
+
Object.defineProperty(exports, "EditPaymentMethodDialog", {
|
|
3070
|
+
enumerable: true,
|
|
3071
|
+
get: function() {
|
|
3072
|
+
return EditPaymentMethodDialog;
|
|
3073
|
+
}
|
|
3074
|
+
});
|
|
3075
|
+
Object.defineProperty(exports, "EllipsesDropdown", {
|
|
3076
|
+
enumerable: true,
|
|
3077
|
+
get: function() {
|
|
3078
|
+
return EllipsesDropdown;
|
|
3079
|
+
}
|
|
3080
|
+
});
|
|
3066
3081
|
Object.defineProperty(exports, "FluidPayCoreProvider", {
|
|
3067
3082
|
enumerable: true,
|
|
3068
3083
|
get: function() {
|
|
@@ -3142,4 +3157,4 @@ Object.defineProperty(exports, "socialFields", {
|
|
|
3142
3157
|
}
|
|
3143
3158
|
});
|
|
3144
3159
|
|
|
3145
|
-
//# sourceMappingURL=AddressAutocompleteInput-
|
|
3160
|
+
//# sourceMappingURL=AddressAutocompleteInput-W2jWPYoJ.cjs.map
|