@plurix/onboarding
Advanced tools
Comparing version 0.1.0 to 0.1.1
@@ -1,2 +0,6 @@ | ||
import * as React from 'react'; | ||
export declare const Thing: () => React.JSX.Element; | ||
import React from 'react'; | ||
interface OnboardingProps { | ||
isOpen: boolean; | ||
} | ||
export declare const Onboarding: ({ isOpen }: OnboardingProps) => React.JSX.Element; | ||
export {}; |
@@ -5,10 +5,15 @@ 'use strict'; | ||
var React = require('react'); | ||
function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; } | ||
// Delete me | ||
var Thing = function Thing() { | ||
return React.createElement("div", null, "Onboarding"); | ||
var React = _interopDefault(require('react')); | ||
var Onboarding = function Onboarding(_ref) { | ||
var isOpen = _ref.isOpen; | ||
if (!isOpen) { | ||
return React.createElement(React.Fragment, null); | ||
} | ||
return React.createElement("p", null, "Modal Onboarding"); | ||
}; | ||
exports.Thing = Thing; | ||
exports.Onboarding = Onboarding; | ||
//# sourceMappingURL=onboarding.cjs.development.js.map |
@@ -1,2 +0,2 @@ | ||
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("react");exports.Thing=function(){return e.createElement("div",null,"Onboarding")}; | ||
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e,t=(e=require("react"))&&"object"==typeof e&&"default"in e?e.default:e;exports.Onboarding=function(e){return e.isOpen?t.createElement("p",null,"Modal Onboarding"):t.createElement(t.Fragment,null)}; | ||
//# sourceMappingURL=onboarding.cjs.production.min.js.map |
@@ -1,9 +0,12 @@ | ||
import { createElement } from 'react'; | ||
import React from 'react'; | ||
// Delete me | ||
var Thing = function Thing() { | ||
return createElement("div", null, "Onboarding"); | ||
var Onboarding = function Onboarding(_ref) { | ||
var isOpen = _ref.isOpen; | ||
if (!isOpen) { | ||
return React.createElement(React.Fragment, null); | ||
} | ||
return React.createElement("p", null, "Modal Onboarding"); | ||
}; | ||
export { Thing }; | ||
export { Onboarding }; | ||
//# sourceMappingURL=onboarding.esm.js.map |
{ | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"license": "MIT", | ||
@@ -4,0 +4,0 @@ "main": "dist/index.js", |
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
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
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
Non-existent author
Supply chain riskThe package was published by an npm account that no longer exists.
Found 1 instance in 1 package
11777
48
0
1