@bunnyapp/components 1.7.0-beta.36 → 1.7.0-beta.37
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 +2 -2
- package/dist/esm/index.js +2 -2
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -1283,7 +1283,7 @@ const DEFAULT_CONFIG = {
|
|
|
1283
1283
|
};
|
|
1284
1284
|
|
|
1285
1285
|
// This will be replaced at build time by rollup-plugin-replace
|
|
1286
|
-
const PACKAGE_VERSION = '1.7.0-beta.
|
|
1286
|
+
const PACKAGE_VERSION = '1.7.0-beta.36';
|
|
1287
1287
|
const createRequestHeaders = (token) => {
|
|
1288
1288
|
const headers = createClientDevHeaders({ token });
|
|
1289
1289
|
// Add the components version header
|
|
@@ -26511,7 +26511,7 @@ function doesPriceListHaveFlatFeeCharges(maskedPriceList) {
|
|
|
26511
26511
|
function priceDescriptionString({ unitName, showPriceAsMonthly, periodMonths, priceListHasFlatFeeCharges, }) {
|
|
26512
26512
|
const periodMonthsConverted = periodMonthsConverter(periodMonths);
|
|
26513
26513
|
const periodLabel = periodMonthsConverted ? PERIOD_LABELS[periodMonthsConverted] : null;
|
|
26514
|
-
return `Per ${unitName && !priceListHasFlatFeeCharges ? `${unitName
|
|
26514
|
+
return `Per ${unitName && !priceListHasFlatFeeCharges ? `${unitName} / ` : ''}${showPriceAsMonthly ? 'month' : periodLabel}`;
|
|
26515
26515
|
}
|
|
26516
26516
|
|
|
26517
26517
|
const { Text: Text$e } = antd.Typography;
|
package/dist/esm/index.js
CHANGED
|
@@ -1281,7 +1281,7 @@ const DEFAULT_CONFIG = {
|
|
|
1281
1281
|
};
|
|
1282
1282
|
|
|
1283
1283
|
// This will be replaced at build time by rollup-plugin-replace
|
|
1284
|
-
const PACKAGE_VERSION = '1.7.0-beta.
|
|
1284
|
+
const PACKAGE_VERSION = '1.7.0-beta.36';
|
|
1285
1285
|
const createRequestHeaders = (token) => {
|
|
1286
1286
|
const headers = createClientDevHeaders({ token });
|
|
1287
1287
|
// Add the components version header
|
|
@@ -26509,7 +26509,7 @@ function doesPriceListHaveFlatFeeCharges(maskedPriceList) {
|
|
|
26509
26509
|
function priceDescriptionString({ unitName, showPriceAsMonthly, periodMonths, priceListHasFlatFeeCharges, }) {
|
|
26510
26510
|
const periodMonthsConverted = periodMonthsConverter(periodMonths);
|
|
26511
26511
|
const periodLabel = periodMonthsConverted ? PERIOD_LABELS[periodMonthsConverted] : null;
|
|
26512
|
-
return `Per ${unitName && !priceListHasFlatFeeCharges ? `${unitName
|
|
26512
|
+
return `Per ${unitName && !priceListHasFlatFeeCharges ? `${unitName} / ` : ''}${showPriceAsMonthly ? 'month' : periodLabel}`;
|
|
26513
26513
|
}
|
|
26514
26514
|
|
|
26515
26515
|
const { Text: Text$e } = Typography;
|
package/package.json
CHANGED