@bunnyapp/components 1.0.76-beta.13 → 1.0.76-beta.14
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/cjs/index.js +14 -14
- package/dist/esm/index.js +14 -14
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -154,7 +154,7 @@ var BrandContext = react.createContext({
|
|
|
154
154
|
});
|
|
155
155
|
|
|
156
156
|
// This will be replaced at build time by rollup-plugin-replace
|
|
157
|
-
var PACKAGE_VERSION = '1.0.76-beta.
|
|
157
|
+
var PACKAGE_VERSION = '1.0.76-beta.14';
|
|
158
158
|
var createRequestHeaders = function (token) {
|
|
159
159
|
var headers = common.createClientDevHeaders(token);
|
|
160
160
|
// Add the components version header
|
|
@@ -21329,17 +21329,21 @@ var getActivePlanPriceData = function (priceList, selectedPriceList) {
|
|
|
21329
21329
|
};
|
|
21330
21330
|
};
|
|
21331
21331
|
var isPriceListDisabled = function (_a) {
|
|
21332
|
-
var priceList = _a.priceList, subscriptions = _a.subscriptions, upgradingSubscription = _a.upgradingSubscription, canPurchaseFeatureAddons = _a.canPurchaseFeatureAddons;
|
|
21333
21332
|
// Plan already has a subscription
|
|
21334
|
-
var
|
|
21333
|
+
var priceList = _a.priceList, subscriptions = _a.subscriptions, upgradingSubscription = _a.upgradingSubscription, canPurchaseFeatureAddons = _a.canPurchaseFeatureAddons;
|
|
21334
|
+
var existingSubscription = subscriptions === null || subscriptions === void 0 ? void 0 : subscriptions.find(function (subscription) {
|
|
21335
21335
|
var _a, _b;
|
|
21336
|
-
|
|
21336
|
+
var isCurrentUpgradingSubscription = subscription.id === (upgradingSubscription === null || upgradingSubscription === void 0 ? void 0 : upgradingSubscription.id);
|
|
21337
|
+
var subscriptionAlreadyExists = isCurrentUpgradingSubscription
|
|
21338
|
+
? subscription.priceList.id === priceList.id
|
|
21339
|
+
: subscription.plan.id === priceList.plan.id;
|
|
21340
|
+
return (subscriptionAlreadyExists &&
|
|
21337
21341
|
((_a = subscription.state) === null || _a === void 0 ? void 0 : _a.toUpperCase()) !== common.SubscriptionState.CANCELED &&
|
|
21338
|
-
((_b = subscription.state) === null || _b === void 0 ? void 0 : _b.toUpperCase()) !== common.SubscriptionState.EXPIRED;
|
|
21342
|
+
((_b = subscription.state) === null || _b === void 0 ? void 0 : _b.toUpperCase()) !== common.SubscriptionState.EXPIRED);
|
|
21339
21343
|
});
|
|
21340
21344
|
// Is this plan the one that the user is upgrading from
|
|
21341
21345
|
var isUpgradingPlan = (upgradingSubscription === null || upgradingSubscription === void 0 ? void 0 : upgradingSubscription.plan.id) === priceList.plan.id;
|
|
21342
|
-
if (
|
|
21346
|
+
if (existingSubscription && !isUpgradingPlan) {
|
|
21343
21347
|
return true;
|
|
21344
21348
|
}
|
|
21345
21349
|
if (isUpgradingPlan && !canPurchaseFeatureAddons) {
|
|
@@ -21891,21 +21895,17 @@ var PriceListCard = function (_a) {
|
|
|
21891
21895
|
upgradingSubscription: upgradingSubscription,
|
|
21892
21896
|
canPurchaseFeatureAddons: canPurchaseFeatureAddons,
|
|
21893
21897
|
});
|
|
21894
|
-
var
|
|
21898
|
+
var subscriptionPlan = subscriptions === null || subscriptions === void 0 ? void 0 : subscriptions.find(function (subscription) {
|
|
21895
21899
|
var _a, _b;
|
|
21896
|
-
|
|
21897
|
-
var subscriptionAlreadyExists = isCurrentUpgradingSubscription
|
|
21898
|
-
? subscription.priceList.id === priceList.id
|
|
21899
|
-
: subscription.plan.id === priceList.plan.id;
|
|
21900
|
-
return (subscriptionAlreadyExists &&
|
|
21900
|
+
return subscription.plan.id === priceList.plan.id &&
|
|
21901
21901
|
((_a = subscription.state) === null || _a === void 0 ? void 0 : _a.toUpperCase()) !== common.SubscriptionState.CANCELED &&
|
|
21902
|
-
((_b = subscription.state) === null || _b === void 0 ? void 0 : _b.toUpperCase()) !== common.SubscriptionState.EXPIRED
|
|
21902
|
+
((_b = subscription.state) === null || _b === void 0 ? void 0 : _b.toUpperCase()) !== common.SubscriptionState.EXPIRED;
|
|
21903
21903
|
});
|
|
21904
21904
|
if (!activeCharge) {
|
|
21905
21905
|
return null;
|
|
21906
21906
|
}
|
|
21907
21907
|
var feature = activeCharge.feature;
|
|
21908
|
-
return isMobile ? (jsxRuntime.jsx(PriceListCardMobile, { description: description, disableOnClick: disableOnClick, feature: feature, isPriceListCurrentSubscription: isPriceListCurrentSubscription, isSelected: isSelected, onClick: onClick, priceList: priceList, trialRemainingDays: trialRemainingDays, subscriptionPlan:
|
|
21908
|
+
return isMobile ? (jsxRuntime.jsx(PriceListCardMobile, { description: description, disableOnClick: disableOnClick, feature: feature, isPriceListCurrentSubscription: isPriceListCurrentSubscription, isSelected: isSelected, onClick: onClick, priceList: priceList, trialRemainingDays: trialRemainingDays, subscriptionPlan: subscriptionPlan })) : (jsxRuntime.jsx(PriceListCardDesktop, { description: description, disableOnClick: disableOnClick, feature: feature, isPriceListCurrentSubscription: isPriceListCurrentSubscription, isSelected: isSelected, onClick: onClick, priceList: priceList, trialRemainingDays: trialRemainingDays, subscriptionPlan: subscriptionPlan }));
|
|
21909
21909
|
};
|
|
21910
21910
|
|
|
21911
21911
|
var QUOTE_CHARGE_CREATE$1 = "\nmutation QuoteChargeCreate ($quoteChangeId: ID!, $startDate: ISO8601Date!, $endDate: ISO8601Date, $priceListChargeId: ID, $subscriptionChargeId: ID, $price: Float, $quantity: Int) {\n quoteChargeCreate(\n endDate: $endDate\n price: $price\n priceListChargeId: $priceListChargeId\n quantity: $quantity\n quoteChangeId: $quoteChangeId\n startDate: $startDate\n subscriptionChargeId: $subscriptionChargeId\n ) {\n quoteCharge {\n quoteChange {\n id\n quoteId\n }\n id\n }\n }\n}\n\n";
|
package/dist/esm/index.js
CHANGED
|
@@ -143,7 +143,7 @@ var BrandContext = createContext({
|
|
|
143
143
|
});
|
|
144
144
|
|
|
145
145
|
// This will be replaced at build time by rollup-plugin-replace
|
|
146
|
-
var PACKAGE_VERSION = '1.0.76-beta.
|
|
146
|
+
var PACKAGE_VERSION = '1.0.76-beta.14';
|
|
147
147
|
var createRequestHeaders = function (token) {
|
|
148
148
|
var headers = createClientDevHeaders(token);
|
|
149
149
|
// Add the components version header
|
|
@@ -21318,17 +21318,21 @@ var getActivePlanPriceData = function (priceList, selectedPriceList) {
|
|
|
21318
21318
|
};
|
|
21319
21319
|
};
|
|
21320
21320
|
var isPriceListDisabled = function (_a) {
|
|
21321
|
-
var priceList = _a.priceList, subscriptions = _a.subscriptions, upgradingSubscription = _a.upgradingSubscription, canPurchaseFeatureAddons = _a.canPurchaseFeatureAddons;
|
|
21322
21321
|
// Plan already has a subscription
|
|
21323
|
-
var
|
|
21322
|
+
var priceList = _a.priceList, subscriptions = _a.subscriptions, upgradingSubscription = _a.upgradingSubscription, canPurchaseFeatureAddons = _a.canPurchaseFeatureAddons;
|
|
21323
|
+
var existingSubscription = subscriptions === null || subscriptions === void 0 ? void 0 : subscriptions.find(function (subscription) {
|
|
21324
21324
|
var _a, _b;
|
|
21325
|
-
|
|
21325
|
+
var isCurrentUpgradingSubscription = subscription.id === (upgradingSubscription === null || upgradingSubscription === void 0 ? void 0 : upgradingSubscription.id);
|
|
21326
|
+
var subscriptionAlreadyExists = isCurrentUpgradingSubscription
|
|
21327
|
+
? subscription.priceList.id === priceList.id
|
|
21328
|
+
: subscription.plan.id === priceList.plan.id;
|
|
21329
|
+
return (subscriptionAlreadyExists &&
|
|
21326
21330
|
((_a = subscription.state) === null || _a === void 0 ? void 0 : _a.toUpperCase()) !== SubscriptionState$2.CANCELED &&
|
|
21327
|
-
((_b = subscription.state) === null || _b === void 0 ? void 0 : _b.toUpperCase()) !== SubscriptionState$2.EXPIRED;
|
|
21331
|
+
((_b = subscription.state) === null || _b === void 0 ? void 0 : _b.toUpperCase()) !== SubscriptionState$2.EXPIRED);
|
|
21328
21332
|
});
|
|
21329
21333
|
// Is this plan the one that the user is upgrading from
|
|
21330
21334
|
var isUpgradingPlan = (upgradingSubscription === null || upgradingSubscription === void 0 ? void 0 : upgradingSubscription.plan.id) === priceList.plan.id;
|
|
21331
|
-
if (
|
|
21335
|
+
if (existingSubscription && !isUpgradingPlan) {
|
|
21332
21336
|
return true;
|
|
21333
21337
|
}
|
|
21334
21338
|
if (isUpgradingPlan && !canPurchaseFeatureAddons) {
|
|
@@ -21880,21 +21884,17 @@ var PriceListCard = function (_a) {
|
|
|
21880
21884
|
upgradingSubscription: upgradingSubscription,
|
|
21881
21885
|
canPurchaseFeatureAddons: canPurchaseFeatureAddons,
|
|
21882
21886
|
});
|
|
21883
|
-
var
|
|
21887
|
+
var subscriptionPlan = subscriptions === null || subscriptions === void 0 ? void 0 : subscriptions.find(function (subscription) {
|
|
21884
21888
|
var _a, _b;
|
|
21885
|
-
|
|
21886
|
-
var subscriptionAlreadyExists = isCurrentUpgradingSubscription
|
|
21887
|
-
? subscription.priceList.id === priceList.id
|
|
21888
|
-
: subscription.plan.id === priceList.plan.id;
|
|
21889
|
-
return (subscriptionAlreadyExists &&
|
|
21889
|
+
return subscription.plan.id === priceList.plan.id &&
|
|
21890
21890
|
((_a = subscription.state) === null || _a === void 0 ? void 0 : _a.toUpperCase()) !== SubscriptionState$2.CANCELED &&
|
|
21891
|
-
((_b = subscription.state) === null || _b === void 0 ? void 0 : _b.toUpperCase()) !== SubscriptionState$2.EXPIRED
|
|
21891
|
+
((_b = subscription.state) === null || _b === void 0 ? void 0 : _b.toUpperCase()) !== SubscriptionState$2.EXPIRED;
|
|
21892
21892
|
});
|
|
21893
21893
|
if (!activeCharge) {
|
|
21894
21894
|
return null;
|
|
21895
21895
|
}
|
|
21896
21896
|
var feature = activeCharge.feature;
|
|
21897
|
-
return isMobile ? (jsx(PriceListCardMobile, { description: description, disableOnClick: disableOnClick, feature: feature, isPriceListCurrentSubscription: isPriceListCurrentSubscription, isSelected: isSelected, onClick: onClick, priceList: priceList, trialRemainingDays: trialRemainingDays, subscriptionPlan:
|
|
21897
|
+
return isMobile ? (jsx(PriceListCardMobile, { description: description, disableOnClick: disableOnClick, feature: feature, isPriceListCurrentSubscription: isPriceListCurrentSubscription, isSelected: isSelected, onClick: onClick, priceList: priceList, trialRemainingDays: trialRemainingDays, subscriptionPlan: subscriptionPlan })) : (jsx(PriceListCardDesktop, { description: description, disableOnClick: disableOnClick, feature: feature, isPriceListCurrentSubscription: isPriceListCurrentSubscription, isSelected: isSelected, onClick: onClick, priceList: priceList, trialRemainingDays: trialRemainingDays, subscriptionPlan: subscriptionPlan }));
|
|
21898
21898
|
};
|
|
21899
21899
|
|
|
21900
21900
|
var QUOTE_CHARGE_CREATE$1 = "\nmutation QuoteChargeCreate ($quoteChangeId: ID!, $startDate: ISO8601Date!, $endDate: ISO8601Date, $priceListChargeId: ID, $subscriptionChargeId: ID, $price: Float, $quantity: Int) {\n quoteChargeCreate(\n endDate: $endDate\n price: $price\n priceListChargeId: $priceListChargeId\n quantity: $quantity\n quoteChangeId: $quoteChangeId\n startDate: $startDate\n subscriptionChargeId: $subscriptionChargeId\n ) {\n quoteCharge {\n quoteChange {\n id\n quoteId\n }\n id\n }\n }\n}\n\n";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bunnyapp/components",
|
|
3
|
-
"version": "1.0.76-beta.
|
|
3
|
+
"version": "1.0.76-beta.14",
|
|
4
4
|
"description": "Components from the Bunny portal to embed Bunny UI functionality into your application.",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|