@rehagro/ui 1.0.19 → 1.0.20
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.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +33 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +33 -2
- package/dist/index.mjs.map +1 -1
- package/dist/native.js.map +1 -1
- package/dist/native.mjs.map +1 -1
- package/dist/styles.css +3 -3
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2728,20 +2728,51 @@ var defaultElements = {
|
|
|
2728
2728
|
h2: "h2",
|
|
2729
2729
|
h3: "h3",
|
|
2730
2730
|
h4: "h4",
|
|
2731
|
+
h5: "h5",
|
|
2732
|
+
h6: "h6",
|
|
2731
2733
|
bodyLg: "p",
|
|
2732
2734
|
body: "p",
|
|
2733
2735
|
label: "span",
|
|
2734
|
-
|
|
2736
|
+
labelSm: "span",
|
|
2737
|
+
caption: "span",
|
|
2738
|
+
captionSm: "span",
|
|
2739
|
+
menu: "span",
|
|
2740
|
+
overline: "span"
|
|
2735
2741
|
};
|
|
2736
2742
|
var variantClasses4 = {
|
|
2743
|
+
// Headings - Sora font
|
|
2737
2744
|
h1: "rh-text-4xl rh-font-bold rh-leading-tight rh-font-display",
|
|
2745
|
+
// 32px
|
|
2738
2746
|
h2: "rh-text-2xl rh-font-bold rh-leading-snug rh-font-display",
|
|
2747
|
+
// 24px
|
|
2739
2748
|
h3: "rh-text-xl rh-font-semibold rh-leading-snug rh-font-display",
|
|
2749
|
+
// 20px
|
|
2740
2750
|
h4: "rh-text-lg rh-font-semibold rh-leading-snug rh-font-display",
|
|
2751
|
+
// 18px
|
|
2752
|
+
h5: "rh-text-base rh-font-bold rh-leading-normal rh-font-display",
|
|
2753
|
+
// 16px Sora Bold
|
|
2754
|
+
h6: "rh-text-sm rh-font-bold rh-leading-normal rh-font-display",
|
|
2755
|
+
// 14px Sora Bold
|
|
2756
|
+
// Body - Inter font
|
|
2741
2757
|
bodyLg: "rh-text-base rh-font-normal rh-leading-normal rh-font-body",
|
|
2758
|
+
// 16px
|
|
2742
2759
|
body: "rh-text-sm rh-font-normal rh-leading-normal rh-font-body",
|
|
2760
|
+
// 14px
|
|
2761
|
+
// Labels - Inter font
|
|
2743
2762
|
label: "rh-text-sm rh-font-medium rh-leading-normal rh-font-body",
|
|
2744
|
-
|
|
2763
|
+
// 14px Medium
|
|
2764
|
+
labelSm: "rh-text-sm rh-font-semibold rh-leading-normal rh-font-body",
|
|
2765
|
+
// 14px SemiBold
|
|
2766
|
+
// Captions - Inter font
|
|
2767
|
+
caption: "rh-text-xs rh-font-normal rh-leading-normal rh-font-body",
|
|
2768
|
+
// 12px
|
|
2769
|
+
captionSm: "rh-text-2xs rh-font-normal rh-leading-tight rh-font-body",
|
|
2770
|
+
// 10px
|
|
2771
|
+
// Special - Sora/Inter font
|
|
2772
|
+
menu: "rh-text-xs rh-font-bold rh-leading-normal rh-font-display",
|
|
2773
|
+
// 12px Sora Bold
|
|
2774
|
+
overline: "rh-text-2xs rh-font-semibold rh-leading-tight rh-font-body rh-tracking-wide"
|
|
2775
|
+
// 10px Inter SemiBold
|
|
2745
2776
|
};
|
|
2746
2777
|
var colorClasses2 = {
|
|
2747
2778
|
default: "rh-text-text",
|