@wixc3/react-board
Advanced tools
Comparing version 3.0.0 to 3.0.1
@@ -0,5 +1,6 @@ | ||
import React from 'react'; | ||
export declare function ContentSlot(props: { | ||
children?: React.ReactNode; | ||
name?: string; | ||
}): import("react").ReactNode; | ||
}): React.JSX.Element; | ||
//# sourceMappingURL=content-slot.d.ts.map |
"use strict"; | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.ContentSlot = ContentSlot; | ||
const react_1 = __importDefault(require("react")); | ||
function ContentSlot(props) { | ||
return props.children; | ||
return (react_1.default.createElement("div", { "data-content-slot": props.name, style: { display: 'contents' } }, props.children)); | ||
} | ||
//# sourceMappingURL=content-slot.js.map |
{ | ||
"name": "@wixc3/react-board", | ||
"description": "Library for creation of React component boards", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"main": "dist/index.js", | ||
@@ -11,3 +11,3 @@ "peerDependencies": { | ||
"dependencies": { | ||
"@wixc3/board-core": "^3.0.0" | ||
"@wixc3/board-core": "^3.0.1" | ||
}, | ||
@@ -14,0 +14,0 @@ "files": [ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
22449
318
Updated@wixc3/board-core@^3.0.1