@jackcrane/ui 0.1.9 → 0.1.10
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/dist/components/Hatch/hatch.d.ts +2 -1
- package/dist/jcui.cjs.js +8 -2
- package/dist/jcui.es.js +8 -2
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
export default function Hatch({ children, className, variant, ...props }: {
|
|
1
|
+
export default function Hatch({ children, className, variant, chamfer, ...props }: {
|
|
2
2
|
[x: string]: any;
|
|
3
3
|
children: any;
|
|
4
4
|
className: any;
|
|
5
5
|
variant: any;
|
|
6
|
+
chamfer?: boolean;
|
|
6
7
|
}): import("react/jsx-runtime").JSX.Element;
|
package/dist/jcui.cjs.js
CHANGED
|
@@ -25736,7 +25736,13 @@ const styles$2 = {
|
|
|
25736
25736
|
info: info$1,
|
|
25737
25737
|
secondary: secondary$1
|
|
25738
25738
|
};
|
|
25739
|
-
function Hatch({
|
|
25739
|
+
function Hatch({
|
|
25740
|
+
children: children2,
|
|
25741
|
+
className,
|
|
25742
|
+
variant,
|
|
25743
|
+
chamfer: chamfer2 = true,
|
|
25744
|
+
...props
|
|
25745
|
+
}) {
|
|
25740
25746
|
return /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
25741
25747
|
"div",
|
|
25742
25748
|
{
|
|
@@ -25744,7 +25750,7 @@ function Hatch({ children: children2, className, variant, ...props }) {
|
|
|
25744
25750
|
styles$2.hatch,
|
|
25745
25751
|
styles$2[variant],
|
|
25746
25752
|
hatchStyles.hatch,
|
|
25747
|
-
chamferStyles.chamfer,
|
|
25753
|
+
chamfer2 && chamferStyles.chamfer,
|
|
25748
25754
|
className
|
|
25749
25755
|
),
|
|
25750
25756
|
...props,
|
package/dist/jcui.es.js
CHANGED
|
@@ -25718,7 +25718,13 @@ const styles$2 = {
|
|
|
25718
25718
|
info: info$1,
|
|
25719
25719
|
secondary: secondary$1
|
|
25720
25720
|
};
|
|
25721
|
-
function Hatch({
|
|
25721
|
+
function Hatch({
|
|
25722
|
+
children: children2,
|
|
25723
|
+
className,
|
|
25724
|
+
variant,
|
|
25725
|
+
chamfer: chamfer2 = true,
|
|
25726
|
+
...props
|
|
25727
|
+
}) {
|
|
25722
25728
|
return /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
25723
25729
|
"div",
|
|
25724
25730
|
{
|
|
@@ -25726,7 +25732,7 @@ function Hatch({ children: children2, className, variant, ...props }) {
|
|
|
25726
25732
|
styles$2.hatch,
|
|
25727
25733
|
styles$2[variant],
|
|
25728
25734
|
hatchStyles.hatch,
|
|
25729
|
-
chamferStyles.chamfer,
|
|
25735
|
+
chamfer2 && chamferStyles.chamfer,
|
|
25730
25736
|
className
|
|
25731
25737
|
),
|
|
25732
25738
|
...props,
|