@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/README.md +1 -1
- package/dist/components/field/index.d.ts +0 -2
- package/dist/components/{card/__stories__/card.stories.d.ts → form/__stories__/textarea.stories.d.ts} +2 -3
- package/dist/components/{field/components/textarea-field.d.ts → form/components/textarea.d.ts} +2 -6
- package/dist/components/form/index.d.ts +2 -0
- package/dist/components/index.d.ts +1 -1
- package/dist/config/theme/components/index.d.ts +0 -1
- package/dist/config/theme/components/textarea.d.ts +54 -2
- package/dist/internal-ui.cjs.development.js +92 -57
- package/dist/internal-ui.cjs.development.js.map +1 -1
- package/dist/internal-ui.cjs.production.min.js +9 -9
- package/dist/internal-ui.cjs.production.min.js.map +1 -1
- package/dist/internal-ui.esm.js +102 -66
- package/dist/internal-ui.esm.js.map +1 -1
- package/package.json +2 -2
- package/dist/components/card/components/card.d.ts +0 -8
- package/dist/components/card/index.d.ts +0 -2
- package/dist/config/theme/components/card.d.ts +0 -18
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ctlyst.id/internal-ui",
|
3
|
-
"version": "
|
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": "
|
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,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;
|