@ctlyst.id/internal-ui 1.1.0-canary.0 → 2.0.0-canary.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctlyst.id/internal-ui",
3
- "version": "1.1.0-canary.0",
3
+ "version": "2.0.0-canary.2",
4
4
  "description": "Voila Internal UI Component",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/internal-ui.esm.js",
@@ -65,5 +65,5 @@
65
65
  "framer-motion": "^6.3.13",
66
66
  "jest": "^26.6.3"
67
67
  },
68
- "gitHead": "52e8f5670ab4b3dfe1702b02043e14da29e432c0"
68
+ "gitHead": "1d756dbe41108f05608ffd49a6459d394510f968"
69
69
  }
@@ -1,8 +0,0 @@
1
- import type { BoxProps } from '@chakra-ui/react';
2
- import React from 'react';
3
- export interface CardProps extends BoxProps {
4
- withShadow?: boolean;
5
- isRounded?: boolean;
6
- }
7
- declare const CardCustom: React.ForwardRefExoticComponent<CardProps & React.RefAttributes<HTMLDivElement>>;
8
- export default CardCustom;
@@ -1,2 +0,0 @@
1
- export { default as Card } from './components/card';
2
- export * from './components/card';
@@ -1,18 +0,0 @@
1
- declare const CardStyle: {
2
- baseStyle?: ((props: import("@chakra-ui/styled-system").StyleFunctionProps) => {
3
- shadow: string;
4
- borderRadius: string;
5
- }) | undefined;
6
- sizes?: {
7
- [key: string]: import("@chakra-ui/styled-system").SystemStyleInterpolation;
8
- } | undefined;
9
- variants?: {
10
- [key: string]: import("@chakra-ui/styled-system").SystemStyleInterpolation;
11
- } | undefined;
12
- defaultProps?: {
13
- size?: string | number | undefined;
14
- variant?: string | number | undefined;
15
- colorScheme?: string | undefined;
16
- } | undefined;
17
- };
18
- export default CardStyle;