New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@mygodcorp/baseui

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mygodcorp/baseui - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

9

lib/components/text/Text.d.ts

@@ -1,5 +0,6 @@

import { ReactNode } from "react";
declare const Text: ({ children }: {
children: ReactNode;
}) => JSX.Element;
/// <reference types="react" />
declare const Text: import("@emotion/styled").StyledComponent<{
theme?: import("@emotion/react").Theme | undefined;
as?: import("react").ElementType<any> | undefined;
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, {}>;
export default Text;

@@ -0,7 +1,7 @@

import styled from '@emotion/styled';
import { jsx } from 'react/jsx-runtime';
var Text = function (_a) {
var children = _a.children;
return jsx("span", { children: children }, void 0);
};
var Text = styled.p({
color: "red",
});

@@ -8,0 +8,0 @@ var Button = function (_a) {

@@ -5,9 +5,13 @@ 'use strict';

var styled = require('@emotion/styled');
var jsxRuntime = require('react/jsx-runtime');
var Text = function (_a) {
var children = _a.children;
return jsxRuntime.jsx("span", { children: children }, void 0);
};
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
var styled__default = /*#__PURE__*/_interopDefaultLegacy(styled);
var Text = styled__default["default"].p({
color: "red",
});
var Button = function (_a) {

@@ -14,0 +18,0 @@ var children = _a.children;

{
"name": "@mygodcorp/baseui",
"version": "1.0.3",
"version": "1.0.4",
"main": "lib/index.js",

@@ -15,4 +15,7 @@ "module": "lib/index.esm.js",

"peerDependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
"react-dom": "^17.0.2",
"styled-system": "^5.1.5"
},

@@ -32,3 +35,8 @@ "scripts": {

},
"gitHead": "5622f151f027275e03019fdef51802b4f72cfeb1"
"gitHead": "302170723bc5a5594a9510b272e47a896ce8fcb7",
"dependencies": {
"@emotion/react": "latest",
"@emotion/styled": "latest",
"styled-system": "latest"
}
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc