Socket
Socket
Sign inDemoInstall

@owlui/card

Package Overview
Dependencies
Maintainers
2
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@owlui/card - npm Package Compare versions

Comparing version 0.0.16 to 0.0.17

dist/index.js

8

package.json
{
"name": "@owlui/card",
"version": "0.0.16",
"version": "0.0.17",
"description": "",
"homepage": "https://github.com/EEBOS/owl-ui/tree/main/packages/card#readme",
"license": "MIT",
"type": "module",
"type": "commonjs",
"source": "src/index.ts",

@@ -36,5 +36,5 @@ "main": "dist/owl.card.js",

"@owlui/typings": "^0.0.1",
"@owlui/utils": "^0.0.16"
"@owlui/utils": "^0.0.17"
},
"gitHead": "6e79b186348dcc122b04d10958dda11767f29fd7"
"gitHead": "3d79b9fccee0b26c802d2b39b989d356c4c63ded"
}
import React from 'react';
import type { CardDefaultProps } from '../Default/Default.types';
export type CardCardBodyCommons = CardDefaultProps & {
export interface CardCardBodyCommons extends CardDefaultProps {
children: React.ReactNode;
};
}
export type CardCardBodyProps = Partial<CardCardBodyCommons>;
import React from 'react';
import type { CardDefaultProps } from '../Default/Default.types';
export type CardCardFooterCommons = CardDefaultProps & {
export interface CardCardFooterCommons extends CardDefaultProps {
children: React.ReactNode;
};
}
export type CardCardFooterProps = Partial<CardCardFooterCommons>;
import React from 'react';
import type { CardDefaultProps } from '../Default/Default.types';
export type CardCardHeaderCommons = CardDefaultProps & {
export interface CardCardHeaderCommons extends CardDefaultProps {
children: React.ReactNode;
};
}
export type CardCardHeaderProps = Partial<CardCardHeaderCommons>;
import React from 'react';
export type CardDefaultCommons = {
export interface CardDefaultCommons {
appearance?: 'Default' | 'Primary' | 'Outline';

@@ -8,5 +8,5 @@ children: React.ReactNode;

theme?: 'Default' | 'Dark';
};
}
export type CardDefaultProps = Partial<CardDefaultCommons> &
React.HTMLAttributes<HTMLDivElement>;

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

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