Socket
Socket
Sign inDemoInstall

@elvia/elvis-tooltip

Package Overview
Dependencies
Maintainers
7
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@elvia/elvis-tooltip - npm Package Compare versions

Comparing version 1.3.4 to 1.3.5

13

CHANGELOG.json

@@ -6,2 +6,15 @@ {

{
"date": "30.05.24",
"version": "1.3.5",
"changelog": [
{
"type": "patch",
"changes": [
"Now using <code>@emotion</code> for styling instead of <code>styled-components</code>.",
"Updated internal dependencies."
]
}
]
},
{
"date": "14.05.24",

@@ -8,0 +21,0 @@ "version": "1.3.4",

37

dist/react/elvia-tooltip.js

@@ -7,11 +7,30 @@ // components/elvis-tooltip/src/react/elvia-tooltip.tsx

// components/elvis-tooltip/src/react/styledComponents.tsx
import styled from "styled-components";
var TriggerContainer = styled.span.withConfig({
displayName: "TriggerContainer",
componentId: "sc-jdpnf4-0"
})`display:inline-block;`;
var TooltipContent = styled.div.withConfig({
displayName: "TooltipContent",
componentId: "sc-jdpnf4-1"
})`display:contents;`;
import _styled from "@emotion/styled/base";
function _EMOTION_STRINGIFIED_CSS_ERROR__() {
return "You have tried to stringify object returned from `css` function. It isn't supposed to be used directly (e.g. as value of the `className` prop), but rather handed to emotion so it can handle it (e.g. as value of `css` prop).";
}
var TriggerContainer = /* @__PURE__ */ _styled("span", {
target: "e11vsz8p1",
label: "TriggerContainer"
})(false ? {
name: "1r5gb7q",
styles: "display:inline-block"
} : {
name: "1r5gb7q",
styles: "display:inline-block",
map: "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInN0eWxlZENvbXBvbmVudHMudHN4Il0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUUyQyIsImZpbGUiOiJzdHlsZWRDb21wb25lbnRzLnRzeCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBzdHlsZWQgZnJvbSAnQGVtb3Rpb24vc3R5bGVkJztcblxuZXhwb3J0IGNvbnN0IFRyaWdnZXJDb250YWluZXIgPSBzdHlsZWQuc3BhbmBcbiAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuYDtcblxuZXhwb3J0IGNvbnN0IFRvb2x0aXBDb250ZW50ID0gc3R5bGVkLmRpdmBcbiAgZGlzcGxheTogY29udGVudHM7XG5gO1xuIl19 */",
toString: _EMOTION_STRINGIFIED_CSS_ERROR__
});
var TooltipContent = /* @__PURE__ */ _styled("div", {
target: "e11vsz8p0",
label: "TooltipContent"
})(false ? {
name: "49aokf",
styles: "display:contents"
} : {
name: "49aokf",
styles: "display:contents",
map: "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInN0eWxlZENvbXBvbmVudHMudHN4Il0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQU13QyIsImZpbGUiOiJzdHlsZWRDb21wb25lbnRzLnRzeCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBzdHlsZWQgZnJvbSAnQGVtb3Rpb24vc3R5bGVkJztcblxuZXhwb3J0IGNvbnN0IFRyaWdnZXJDb250YWluZXIgPSBzdHlsZWQuc3BhbmBcbiAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuYDtcblxuZXhwb3J0IGNvbnN0IFRvb2x0aXBDb250ZW50ID0gc3R5bGVkLmRpdmBcbiAgZGlzcGxheTogY29udGVudHM7XG5gO1xuIl19 */",
toString: _EMOTION_STRINGIFIED_CSS_ERROR__
});

@@ -18,0 +37,0 @@ // components/elvis-tooltip/src/react/elvia-tooltip.tsx

@@ -1,2 +0,9 @@

export declare const TriggerContainer: import("styled-components").StyledComponent<"span", any, {}, never>;
export declare const TooltipContent: import("styled-components").StyledComponent<"div", any, {}, never>;
/// <reference types="react" />
export declare const TriggerContainer: import("@emotion/styled").StyledComponent<{
theme?: import("@emotion/react").Theme | undefined;
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
export declare const TooltipContent: import("@emotion/styled").StyledComponent<{
theme?: import("@emotion/react").Theme | undefined;
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
{
"name": "@elvia/elvis-tooltip",
"version": "1.3.4",
"version": "1.3.5",
"license": "MIT",

@@ -19,6 +19,7 @@ "homepage": "https://design.elvia.io/components/tooltip",

"dependencies": {
"@elvia/elvis-component-wrapper": "^4.1.3",
"@elvia/elvis-toolbox": "^11.0.0",
"@floating-ui/react": "~0.26.13",
"styled-components": "^5.3.3"
"@elvia/elvis-component-wrapper": "^4.2.0",
"@elvia/elvis-toolbox": "^12.0.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@floating-ui/react": "~0.26.16"
},

@@ -25,0 +26,0 @@ "peerDependencies": {

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