@treely/strapi-slices 5.1.0 → 5.1.2
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/strapi-slices.cjs.development.js +9 -9
- package/dist/strapi-slices.cjs.development.js.map +1 -1
- package/dist/strapi-slices.cjs.production.min.js +1 -1
- package/dist/strapi-slices.cjs.production.min.js.map +1 -1
- package/dist/strapi-slices.esm.js +9 -9
- package/dist/strapi-slices.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/CustomerCard/CustomerCard.tsx +11 -16
- package/src/components/CustomerQuoteCard/CustomerQuoteCard.tsx +12 -7
|
@@ -4535,20 +4535,20 @@ var CustomerCard = function CustomerCard(_ref) {
|
|
|
4535
4535
|
color: "gray.500",
|
|
4536
4536
|
mb: "2"
|
|
4537
4537
|
}, customerStory.customerCardCustomerIndustry), customerStory.title && React__default.default.createElement(boemly.Heading, {
|
|
4538
|
-
size: "
|
|
4538
|
+
size: "md",
|
|
4539
4539
|
fontWeight: "500"
|
|
4540
4540
|
}, customerStory.title)), React__default.default.createElement(boemly.Box, {
|
|
4541
4541
|
px: "6",
|
|
4542
4542
|
pt: "8",
|
|
4543
4543
|
pb: "6"
|
|
4544
|
-
}, React__default.default.createElement(boemly.Link, {
|
|
4545
|
-
href: "/customer-stories/" + customerStory.slug
|
|
4546
4544
|
}, React__default.default.createElement(boemly.Button, {
|
|
4545
|
+
as: Link__default.default,
|
|
4546
|
+
href: "/customer-stories/" + customerStory.slug,
|
|
4547
4547
|
variant: "outline",
|
|
4548
4548
|
size: "sm"
|
|
4549
4549
|
}, formatMessage({
|
|
4550
4550
|
id: 'sections.customerCard.more'
|
|
4551
|
-
})))))
|
|
4551
|
+
})))));
|
|
4552
4552
|
};
|
|
4553
4553
|
|
|
4554
4554
|
var CustomerQuoteCard = function CustomerQuoteCard(_ref) {
|
|
@@ -4575,22 +4575,22 @@ var CustomerQuoteCard = function CustomerQuoteCard(_ref) {
|
|
|
4575
4575
|
})) : React__default.default.createElement(React__default.default.Fragment, null), React__default.default.createElement(boemly.Box, null, React__default.default.createElement(boemly.Box, {
|
|
4576
4576
|
my: "8"
|
|
4577
4577
|
}, React__default.default.createElement(boemly.Heading, {
|
|
4578
|
-
size: "
|
|
4578
|
+
size: "md",
|
|
4579
4579
|
fontWeight: "500"
|
|
4580
4580
|
}, customerStory.customerName), React__default.default.createElement(boemly.Text, {
|
|
4581
4581
|
size: "xs"
|
|
4582
4582
|
}, customerStory.quoteCardCustomerTitle)), React__default.default.createElement(boemly.Text, {
|
|
4583
4583
|
size: "xs",
|
|
4584
4584
|
color: "black"
|
|
4585
|
-
}, customerStory.quoteCardQuote), React__default.default.createElement(boemly.
|
|
4586
|
-
href: "/customer-stories/" + customerStory.slug
|
|
4587
|
-
|
|
4585
|
+
}, customerStory.quoteCardQuote), React__default.default.createElement(boemly.Button, {
|
|
4586
|
+
href: "/customer-stories/" + customerStory.slug,
|
|
4587
|
+
as: Link__default.default,
|
|
4588
4588
|
variant: "outline",
|
|
4589
4589
|
size: "sm",
|
|
4590
4590
|
mt: "8"
|
|
4591
4591
|
}, formatMessage({
|
|
4592
4592
|
id: 'sections.customerQuoteCard.more'
|
|
4593
|
-
}))))
|
|
4593
|
+
}))));
|
|
4594
4594
|
};
|
|
4595
4595
|
|
|
4596
4596
|
var CustomerStories = function CustomerStories(_ref) {
|