@contentful/experiences-components-react 3.1.1-dev-20250808T0933-3a55c60.0 → 3.1.1-dev-20250811T1516-ddc6cd6.0
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/index.d.ts +1 -2
- package/dist/index.js +1 -3
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -229,9 +229,8 @@ declare const sectionDefinition: ComponentDefinition;
|
|
|
229
229
|
|
|
230
230
|
type ContentfulDividerProps = {
|
|
231
231
|
className?: string;
|
|
232
|
-
dragProps?: unknown;
|
|
233
232
|
};
|
|
234
|
-
declare const ContentfulDivider: ({ className,
|
|
233
|
+
declare const ContentfulDivider: ({ className, ...props }: ContentfulDividerProps) => React.JSX.Element;
|
|
235
234
|
|
|
236
235
|
declare const dividerDefinition: ComponentDefinition;
|
|
237
236
|
|
package/dist/index.js
CHANGED
|
@@ -2145,9 +2145,7 @@ const sectionDefinition = {
|
|
|
2145
2145
|
var css_248z$1 = ".cf-divider{display:contents;height:100%;position:relative;width:100%}.cf-divider hr{border:none}";
|
|
2146
2146
|
styleInject(css_248z$1);
|
|
2147
2147
|
|
|
2148
|
-
const ContentfulDivider = ({ className = '',
|
|
2149
|
-
// We have to exclude this explicitly from rendering as withComponentWrapper is not used
|
|
2150
|
-
dragProps: _, ...props }) => {
|
|
2148
|
+
const ContentfulDivider = ({ className = '', ...props }) => {
|
|
2151
2149
|
return (React.createElement("div", { className: "cf-divider", ...props },
|
|
2152
2150
|
React.createElement("hr", { className: className })));
|
|
2153
2151
|
};
|