Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@tiller-ds/core

Package Overview
Dependencies
Maintainers
3
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tiller-ds/core - npm Package Compare versions

Comparing version 1.1.0 to 1.2.0

6

Card.d.ts

@@ -42,2 +42,6 @@ import * as React from "react";

/**
* Custom additional styling for the card body.
*/
className?: string;
/**
* Removes the spacing (padding) from the body of the card.

@@ -81,4 +85,4 @@ */

}
declare function CardBody({ removeSpacing, children, ...props }: CardBodyProps): JSX.Element | null;
declare function CardBody({ removeSpacing, children, className, ...props }: CardBodyProps): JSX.Element | null;
declare function CardFooter({ children, className, ...props }: CardFooterProps): JSX.Element | null;
export default Card;

8

package.json
{
"name": "@tiller-ds/core",
"version": "1.1.0",
"version": "1.2.0",
"main": "./core.umd.js",

@@ -8,7 +8,7 @@ "module": "./core.esm.js",

"dependencies": {
"@tiller-ds/theme": "1.1.0",
"@tiller-ds/theme": "1.2.0",
"classnames": "2.2.6",
"lodash": "4.17.21",
"tsdef": "0.0.13",
"@tiller-ds/util": "1.1.0",
"@tiller-ds/util": "1.2.0",
"immer": "9.0.17",

@@ -27,2 +27,2 @@ "linkifyjs": "2.1.9",

}
}
}

@@ -29,3 +29,3 @@ import * as React from "react";

*/
active: boolean;
active?: boolean;
/**

@@ -32,0 +32,0 @@ * Progress Bar Step content (not exclusively text).

import * as React from "react";
import { TokenProps } from "@tiller-ds/theme";
import { ComponentTokens, TokenProps } from "@tiller-ds/theme";
declare type TabsProps = {

@@ -29,2 +29,5 @@ /**

className?: string;
} & TabsTokenProps;
declare type TabsTokenProps = {
tokens?: ComponentTokens<"Tabs">;
};

@@ -91,3 +94,3 @@ declare type TabsTabProp = {

} & TokenProps<"Tabs">;
declare function Tabs({ fullWidth, children, defaultIndex, className, iconPlacement, scrollButtons, }: TabsProps): JSX.Element;
declare function Tabs({ fullWidth, children, defaultIndex, className, iconPlacement, scrollButtons, ...props }: TabsProps): JSX.Element;
declare namespace Tabs {

@@ -94,0 +97,0 @@ var Tab: typeof TabsTab;

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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