@contentful/field-editor-reference 4.6.5 → 4.6.6
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/CHANGELOG.md +6 -0
- package/dist/__fixtures__/FakeSdk.d.ts +6 -88
- package/dist/field-editor-reference.cjs.development.js +6 -2
- package/dist/field-editor-reference.cjs.development.js.map +1 -1
- package/dist/field-editor-reference.cjs.production.min.js +1 -1
- package/dist/field-editor-reference.cjs.production.min.js.map +1 -1
- package/dist/field-editor-reference.esm.js +6 -2
- package/dist/field-editor-reference.esm.js.map +1 -1
- package/package.json +2 -2
|
@@ -2812,14 +2812,18 @@ var styles$1 = {
|
|
|
2812
2812
|
spaceName: /*#__PURE__*/css({
|
|
2813
2813
|
color: tokens.gray700,
|
|
2814
2814
|
fontSize: tokens.fontSizeS,
|
|
2815
|
-
fontWeight: tokens.fontWeightDemiBold
|
|
2815
|
+
fontWeight: tokens.fontWeightDemiBold,
|
|
2816
|
+
maxWidth: '80px',
|
|
2817
|
+
textOverflow: 'ellipsis',
|
|
2818
|
+
overflow: 'hidden',
|
|
2819
|
+
whiteSpace: 'nowrap'
|
|
2816
2820
|
})
|
|
2817
2821
|
};
|
|
2818
2822
|
function SpaceName(props) {
|
|
2819
2823
|
return createElement(Tooltip, {
|
|
2820
2824
|
placement: "top",
|
|
2821
2825
|
as: "div",
|
|
2822
|
-
content: "Space"
|
|
2826
|
+
content: "Space: " + props.spaceName
|
|
2823
2827
|
}, createElement(Flex, {
|
|
2824
2828
|
alignItems: "center",
|
|
2825
2829
|
gap: "spacingXs",
|