@bunnyapp/components 1.6.0-beta.11 → 1.6.0-beta.12
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
|
@@ -52,7 +52,7 @@ var css_248z = ":root {\n --row-background: #ffffff;\n --row-background-altern
|
|
|
52
52
|
styleInject(css_248z);
|
|
53
53
|
|
|
54
54
|
// This will be replaced at build time by rollup-plugin-replace
|
|
55
|
-
const PACKAGE_VERSION = '1.6.0-beta.
|
|
55
|
+
const PACKAGE_VERSION = '1.6.0-beta.11';
|
|
56
56
|
const createRequestHeaders = (token) => {
|
|
57
57
|
const headers = createClientDevHeaders({ token });
|
|
58
58
|
// Add the components version header
|
|
@@ -23241,7 +23241,7 @@ const getSubscriptionStatusText = (subscription) => {
|
|
|
23241
23241
|
if (isTrial) {
|
|
23242
23242
|
switch (trialExpirationAction) {
|
|
23243
23243
|
case 'ACTIVATE':
|
|
23244
|
-
return `Activates on ${common.formatDate(
|
|
23244
|
+
return `Activates on ${common.formatDate(startDate)}`;
|
|
23245
23245
|
case 'CANCEL':
|
|
23246
23246
|
return `Trial expires on ${common.formatDate(trialEndDate)}`;
|
|
23247
23247
|
}
|
package/dist/esm/index.js
CHANGED
|
@@ -50,7 +50,7 @@ var css_248z = ":root {\n --row-background: #ffffff;\n --row-background-altern
|
|
|
50
50
|
styleInject(css_248z);
|
|
51
51
|
|
|
52
52
|
// This will be replaced at build time by rollup-plugin-replace
|
|
53
|
-
const PACKAGE_VERSION = '1.6.0-beta.
|
|
53
|
+
const PACKAGE_VERSION = '1.6.0-beta.11';
|
|
54
54
|
const createRequestHeaders = (token) => {
|
|
55
55
|
const headers = createClientDevHeaders({ token });
|
|
56
56
|
// Add the components version header
|
|
@@ -23239,7 +23239,7 @@ const getSubscriptionStatusText = (subscription) => {
|
|
|
23239
23239
|
if (isTrial) {
|
|
23240
23240
|
switch (trialExpirationAction) {
|
|
23241
23241
|
case 'ACTIVATE':
|
|
23242
|
-
return `Activates on ${formatDate(
|
|
23242
|
+
return `Activates on ${formatDate(startDate)}`;
|
|
23243
23243
|
case 'CANCEL':
|
|
23244
23244
|
return `Trial expires on ${formatDate(trialEndDate)}`;
|
|
23245
23245
|
}
|
package/package.json
CHANGED