@clickpalm/react 1.2.13 → 1.2.15
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/index.d.ts +2 -2
- package/dist/index.js +12 -5
- package/dist/index.mjs +12 -5
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3572,7 +3572,7 @@ declare const Box: {
|
|
|
3572
3572
|
|
|
3573
3573
|
declare const StyledParagraph: _stitches_react_types_styled_component.StyledComponent<"p", {
|
|
3574
3574
|
size?: "sm" | "md" | "lg" | "xxs" | "xs" | "xl" | "2xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl" | undefined;
|
|
3575
|
-
|
|
3575
|
+
weight?: "regular" | "medium" | "bold" | undefined;
|
|
3576
3576
|
lineHeight?: "regular" | "shorter" | "short" | "base" | "tall" | undefined;
|
|
3577
3577
|
}, {
|
|
3578
3578
|
sm: "(min-width: 375px)";
|
|
@@ -3798,7 +3798,7 @@ interface ParagraphProps extends ComponentPropsWithoutRef<'p'>, VariantProps<typ
|
|
|
3798
3798
|
as?: ElementType;
|
|
3799
3799
|
css?: CustomCSS$2;
|
|
3800
3800
|
size?: "sm" | "md" | "lg" | "xxs" | "xs" | "xl" | "2xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
|
|
3801
|
-
|
|
3801
|
+
weight?: "regular" | "medium" | "bold";
|
|
3802
3802
|
lineHeight?: "regular" | "shorter" | "short" | "base" | "tall";
|
|
3803
3803
|
}
|
|
3804
3804
|
declare const Paragraph: {
|
package/dist/index.js
CHANGED
|
@@ -2648,7 +2648,7 @@ var StyledParagraph = styled("p", {
|
|
|
2648
2648
|
"8xl": { fontSize: "$8xl" },
|
|
2649
2649
|
"9xl": { fontSize: "$9xl" }
|
|
2650
2650
|
},
|
|
2651
|
-
|
|
2651
|
+
weight: {
|
|
2652
2652
|
regular: { fontWeight: "$regular" },
|
|
2653
2653
|
medium: { fontWeight: "$medium" },
|
|
2654
2654
|
bold: { fontWeight: "$bold" }
|
|
@@ -2663,7 +2663,7 @@ var StyledParagraph = styled("p", {
|
|
|
2663
2663
|
},
|
|
2664
2664
|
defaultVariants: {
|
|
2665
2665
|
size: "md",
|
|
2666
|
-
|
|
2666
|
+
weight: "regular",
|
|
2667
2667
|
lineHeight: "short"
|
|
2668
2668
|
}
|
|
2669
2669
|
});
|
|
@@ -2710,7 +2710,8 @@ var import_react16 = require("react");
|
|
|
2710
2710
|
var Select = __toESM(require("@radix-ui/react-select"));
|
|
2711
2711
|
var StyledWrapper4 = styled("div", {
|
|
2712
2712
|
display: "flex",
|
|
2713
|
-
flexDirection: "column"
|
|
2713
|
+
flexDirection: "column",
|
|
2714
|
+
fontFamily: "$default"
|
|
2714
2715
|
});
|
|
2715
2716
|
var Label3 = styled("label", {
|
|
2716
2717
|
fontSize: "$md",
|
|
@@ -2726,7 +2727,7 @@ var StyledTrigger = styled(Select.Trigger, {
|
|
|
2726
2727
|
alignItems: "center",
|
|
2727
2728
|
justifyContent: "space-between",
|
|
2728
2729
|
marginBottom: "$6",
|
|
2729
|
-
padding: "
|
|
2730
|
+
padding: "0.92rem $4",
|
|
2730
2731
|
boxSizing: "border-box",
|
|
2731
2732
|
borderRadius: "$md",
|
|
2732
2733
|
border: "1px solid $gray_mid",
|
|
@@ -2766,13 +2767,19 @@ var StyledContent3 = styled(Select.Content, {
|
|
|
2766
2767
|
zIndex: 103,
|
|
2767
2768
|
width: "var(--radix-select-trigger-width)",
|
|
2768
2769
|
maxHeight: "var(--radix-select-content-available-height)",
|
|
2770
|
+
fontFamily: "$default",
|
|
2771
|
+
fontSize: "$md",
|
|
2769
2772
|
fontWeight: "$regular"
|
|
2770
2773
|
});
|
|
2771
2774
|
var StyledViewport = styled(Select.Viewport, {
|
|
2772
|
-
padding: "4px"
|
|
2775
|
+
padding: "4px",
|
|
2776
|
+
fontFamily: "$default",
|
|
2777
|
+
fontSize: "$md",
|
|
2778
|
+
fontWeight: "$regular"
|
|
2773
2779
|
});
|
|
2774
2780
|
var StyledItem3 = styled(Select.Item, {
|
|
2775
2781
|
position: "relative",
|
|
2782
|
+
fontFamily: "$default",
|
|
2776
2783
|
fontSize: "$md",
|
|
2777
2784
|
fontWeight: "$regular",
|
|
2778
2785
|
padding: "14px 12px",
|
package/dist/index.mjs
CHANGED
|
@@ -2577,7 +2577,7 @@ var StyledParagraph = styled("p", {
|
|
|
2577
2577
|
"8xl": { fontSize: "$8xl" },
|
|
2578
2578
|
"9xl": { fontSize: "$9xl" }
|
|
2579
2579
|
},
|
|
2580
|
-
|
|
2580
|
+
weight: {
|
|
2581
2581
|
regular: { fontWeight: "$regular" },
|
|
2582
2582
|
medium: { fontWeight: "$medium" },
|
|
2583
2583
|
bold: { fontWeight: "$bold" }
|
|
@@ -2592,7 +2592,7 @@ var StyledParagraph = styled("p", {
|
|
|
2592
2592
|
},
|
|
2593
2593
|
defaultVariants: {
|
|
2594
2594
|
size: "md",
|
|
2595
|
-
|
|
2595
|
+
weight: "regular",
|
|
2596
2596
|
lineHeight: "short"
|
|
2597
2597
|
}
|
|
2598
2598
|
});
|
|
@@ -2639,7 +2639,8 @@ import { forwardRef as forwardRef11, useState as useState6 } from "react";
|
|
|
2639
2639
|
import * as Select from "@radix-ui/react-select";
|
|
2640
2640
|
var StyledWrapper4 = styled("div", {
|
|
2641
2641
|
display: "flex",
|
|
2642
|
-
flexDirection: "column"
|
|
2642
|
+
flexDirection: "column",
|
|
2643
|
+
fontFamily: "$default"
|
|
2643
2644
|
});
|
|
2644
2645
|
var Label3 = styled("label", {
|
|
2645
2646
|
fontSize: "$md",
|
|
@@ -2655,7 +2656,7 @@ var StyledTrigger = styled(Select.Trigger, {
|
|
|
2655
2656
|
alignItems: "center",
|
|
2656
2657
|
justifyContent: "space-between",
|
|
2657
2658
|
marginBottom: "$6",
|
|
2658
|
-
padding: "
|
|
2659
|
+
padding: "0.92rem $4",
|
|
2659
2660
|
boxSizing: "border-box",
|
|
2660
2661
|
borderRadius: "$md",
|
|
2661
2662
|
border: "1px solid $gray_mid",
|
|
@@ -2695,13 +2696,19 @@ var StyledContent3 = styled(Select.Content, {
|
|
|
2695
2696
|
zIndex: 103,
|
|
2696
2697
|
width: "var(--radix-select-trigger-width)",
|
|
2697
2698
|
maxHeight: "var(--radix-select-content-available-height)",
|
|
2699
|
+
fontFamily: "$default",
|
|
2700
|
+
fontSize: "$md",
|
|
2698
2701
|
fontWeight: "$regular"
|
|
2699
2702
|
});
|
|
2700
2703
|
var StyledViewport = styled(Select.Viewport, {
|
|
2701
|
-
padding: "4px"
|
|
2704
|
+
padding: "4px",
|
|
2705
|
+
fontFamily: "$default",
|
|
2706
|
+
fontSize: "$md",
|
|
2707
|
+
fontWeight: "$regular"
|
|
2702
2708
|
});
|
|
2703
2709
|
var StyledItem3 = styled(Select.Item, {
|
|
2704
2710
|
position: "relative",
|
|
2711
|
+
fontFamily: "$default",
|
|
2705
2712
|
fontSize: "$md",
|
|
2706
2713
|
fontWeight: "$regular",
|
|
2707
2714
|
padding: "14px 12px",
|
package/package.json
CHANGED