![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@clds/component-enhancer
Advanced tools
This package contains some utilities and HOC functions that will help you create themeable components
In case you have a component which is not a styled-component and you want to allow overriding it's style using [interpolation][https://www.styled-components.com/docs/advanced#referring-to-other-components] you should use this wrapper.
import React from 'react';
import { default as styled } from 'styled-components';
import { asStyledComponent } from '@cld/component-enhancer';
const StyledDiv = styled.div`
color: red;
`;
const Component = React.forwardRef((props, ref) => <StyledDiv {...props} ref={ref} />);
export const CompAsStyledComponent = asStyledComponent(Component);
We created a dedicated styled component for wrapping text items so it will be easy to style an inner text elements in child components
This is the styled component that wraps the text elements, you can use it to style nested text elements in children
import { default as styled } from 'styled-components';
import { TextWrap } from '@cld/component-enhancer';
const StyledDiv = styled.div`
color: red;
${TextWrap} {
margin: 10px;
}
`;
export default StyledDiv;
You can use it to automatically wrap any text children which are not wrapped with an HTML element
import React from 'react';
import { useWrapTextChildren } from '@cld/component-enhancer';
export default ({ children }) => {
const parsedChildren = useWrapTextChildren(children);
return <div>{parsedChildren}</div>;
};
In case you are not using React hooks you can use this component as a parent to the received children, this will wrap any text children which are not wrapped with an HTML element
import React from 'react';
import { WrapTextChildren } from '@cld/component-enhancer';
class MyComponent extends React.Component {
render() {
return <WrapTextChildren>{props.children}</WrapTextChildren>;
}
}
In case you want to wrap an existing component with [TextWrap][#textwrap] you can use this HOC
import React from 'react';
import { withTextWrap } from '@cld/component-enhancer';
import Component from './Component';
const WrappedComponent = withTextWrap(Component);
export default WrappedComponent;
This library follows Semantic Versioning.
See LICENSE
FAQs
---
The npm package @clds/component-enhancer receives a total of 157 weekly downloads. As such, @clds/component-enhancer popularity was classified as not popular.
We found that @clds/component-enhancer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.