@telepix-lab/telepix-ui 0.6.7 → 0.6.8
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/cjs/client.js +15 -0
- package/dist/cjs/index.js +15 -0
- package/dist/cjs/text/types.d.ts +5 -0
- package/dist/esm/client.js +15 -0
- package/dist/esm/index.js +15 -0
- package/dist/esm/text/types.d.ts +5 -0
- package/dist/index.d.ts +5 -0
- package/package.json +1 -1
package/dist/cjs/client.js
CHANGED
|
@@ -12691,6 +12691,10 @@ const TEXT_VARIANTS = {
|
|
|
12691
12691
|
BOLDLABELBOLDCOMPACT: "boldLabelBoldCompact",
|
|
12692
12692
|
BOLDLABELBOLD: "boldLabelBold",
|
|
12693
12693
|
BOLDXSMALLBOLD: "boldXSmallBold",
|
|
12694
|
+
SEMIBOLDXLARGESEMIBOLDCOMPACT: "semiBoldXLargeSemiBoldCompact",
|
|
12695
|
+
SEMIBOLDXLARGESEMIBOLD: "semiBoldXLargeSemiBold",
|
|
12696
|
+
SEMIBOLDLARGESEMIBOLDCOMPACT: "semiBoldLargeSemiBoldCompact",
|
|
12697
|
+
SEMIBOLDLARGESEMIBOLD: "semiBoldLargeSemiBold",
|
|
12694
12698
|
SEMIBOLDBASESEMIBOLDCOMPACT: "semiBoldBaseSemiBoldCompact",
|
|
12695
12699
|
SEMIBOLDBASESEMIBOLD: "semiBoldBaseSemiBold",
|
|
12696
12700
|
SEMIBOLDBODYSEMIBOLDCOMPACT: "semiBoldBodySemiBoldCompact",
|
|
@@ -12698,6 +12702,7 @@ const TEXT_VARIANTS = {
|
|
|
12698
12702
|
SEMIBOLDLABELSEMIBOLDCOMPACT: "semiBoldLabelSemiBoldCompact",
|
|
12699
12703
|
MED3XLARGEMED: "med3XLargeMed",
|
|
12700
12704
|
MEDXLARGEMED: "medXLargeMed",
|
|
12705
|
+
MEDLARGEMEDCOMPACT: "medLargeMedCompact",
|
|
12701
12706
|
MEDLARGEMED: "medLargeMed",
|
|
12702
12707
|
MEDBASEMEDCOMPACT: "medBaseMedCompact",
|
|
12703
12708
|
MEDBASEMED: "medBaseMed",
|
|
@@ -12807,6 +12812,14 @@ const Text = ({ children, className, size, weight, align, variant = "regularBase
|
|
|
12807
12812
|
return "text-label font-bold leading-label";
|
|
12808
12813
|
case TEXT_VARIANTS.BOLDXSMALLBOLD:
|
|
12809
12814
|
return "text-xsmall font-bold leading-xsmall";
|
|
12815
|
+
case TEXT_VARIANTS.SEMIBOLDXLARGESEMIBOLDCOMPACT:
|
|
12816
|
+
return "text-xl font-semibold leading-xl-compact";
|
|
12817
|
+
case TEXT_VARIANTS.SEMIBOLDXLARGESEMIBOLD:
|
|
12818
|
+
return "text-xl font-semibold leading-xl";
|
|
12819
|
+
case TEXT_VARIANTS.SEMIBOLDLARGESEMIBOLDCOMPACT:
|
|
12820
|
+
return "text-large font-semibold leading-large-compact";
|
|
12821
|
+
case TEXT_VARIANTS.SEMIBOLDLARGESEMIBOLD:
|
|
12822
|
+
return "text-large font-semibold leading-large";
|
|
12810
12823
|
case TEXT_VARIANTS.SEMIBOLDBASESEMIBOLDCOMPACT:
|
|
12811
12824
|
return "text-base font-semibold leading-base-compact";
|
|
12812
12825
|
case TEXT_VARIANTS.SEMIBOLDBASESEMIBOLD:
|
|
@@ -12823,6 +12836,8 @@ const Text = ({ children, className, size, weight, align, variant = "regularBase
|
|
|
12823
12836
|
return "text-xl font-medium leading-xl";
|
|
12824
12837
|
case TEXT_VARIANTS.MEDLARGEMED:
|
|
12825
12838
|
return "text-large font-medium leading-large";
|
|
12839
|
+
case TEXT_VARIANTS.MEDLARGEMEDCOMPACT:
|
|
12840
|
+
return "text-large font-medium leading-large-compact";
|
|
12826
12841
|
case TEXT_VARIANTS.MEDBASEMEDCOMPACT:
|
|
12827
12842
|
return "text-base font-medium leading-base-compact";
|
|
12828
12843
|
case TEXT_VARIANTS.MEDBASEMED:
|
package/dist/cjs/index.js
CHANGED
|
@@ -3452,6 +3452,10 @@ const TEXT_VARIANTS = {
|
|
|
3452
3452
|
BOLDLABELBOLDCOMPACT: "boldLabelBoldCompact",
|
|
3453
3453
|
BOLDLABELBOLD: "boldLabelBold",
|
|
3454
3454
|
BOLDXSMALLBOLD: "boldXSmallBold",
|
|
3455
|
+
SEMIBOLDXLARGESEMIBOLDCOMPACT: "semiBoldXLargeSemiBoldCompact",
|
|
3456
|
+
SEMIBOLDXLARGESEMIBOLD: "semiBoldXLargeSemiBold",
|
|
3457
|
+
SEMIBOLDLARGESEMIBOLDCOMPACT: "semiBoldLargeSemiBoldCompact",
|
|
3458
|
+
SEMIBOLDLARGESEMIBOLD: "semiBoldLargeSemiBold",
|
|
3455
3459
|
SEMIBOLDBASESEMIBOLDCOMPACT: "semiBoldBaseSemiBoldCompact",
|
|
3456
3460
|
SEMIBOLDBASESEMIBOLD: "semiBoldBaseSemiBold",
|
|
3457
3461
|
SEMIBOLDBODYSEMIBOLDCOMPACT: "semiBoldBodySemiBoldCompact",
|
|
@@ -3459,6 +3463,7 @@ const TEXT_VARIANTS = {
|
|
|
3459
3463
|
SEMIBOLDLABELSEMIBOLDCOMPACT: "semiBoldLabelSemiBoldCompact",
|
|
3460
3464
|
MED3XLARGEMED: "med3XLargeMed",
|
|
3461
3465
|
MEDXLARGEMED: "medXLargeMed",
|
|
3466
|
+
MEDLARGEMEDCOMPACT: "medLargeMedCompact",
|
|
3462
3467
|
MEDLARGEMED: "medLargeMed",
|
|
3463
3468
|
MEDBASEMEDCOMPACT: "medBaseMedCompact",
|
|
3464
3469
|
MEDBASEMED: "medBaseMed",
|
|
@@ -3568,6 +3573,14 @@ const Text = ({ children, className, size, weight, align, variant = "regularBase
|
|
|
3568
3573
|
return "text-label font-bold leading-label";
|
|
3569
3574
|
case TEXT_VARIANTS.BOLDXSMALLBOLD:
|
|
3570
3575
|
return "text-xsmall font-bold leading-xsmall";
|
|
3576
|
+
case TEXT_VARIANTS.SEMIBOLDXLARGESEMIBOLDCOMPACT:
|
|
3577
|
+
return "text-xl font-semibold leading-xl-compact";
|
|
3578
|
+
case TEXT_VARIANTS.SEMIBOLDXLARGESEMIBOLD:
|
|
3579
|
+
return "text-xl font-semibold leading-xl";
|
|
3580
|
+
case TEXT_VARIANTS.SEMIBOLDLARGESEMIBOLDCOMPACT:
|
|
3581
|
+
return "text-large font-semibold leading-large-compact";
|
|
3582
|
+
case TEXT_VARIANTS.SEMIBOLDLARGESEMIBOLD:
|
|
3583
|
+
return "text-large font-semibold leading-large";
|
|
3571
3584
|
case TEXT_VARIANTS.SEMIBOLDBASESEMIBOLDCOMPACT:
|
|
3572
3585
|
return "text-base font-semibold leading-base-compact";
|
|
3573
3586
|
case TEXT_VARIANTS.SEMIBOLDBASESEMIBOLD:
|
|
@@ -3584,6 +3597,8 @@ const Text = ({ children, className, size, weight, align, variant = "regularBase
|
|
|
3584
3597
|
return "text-xl font-medium leading-xl";
|
|
3585
3598
|
case TEXT_VARIANTS.MEDLARGEMED:
|
|
3586
3599
|
return "text-large font-medium leading-large";
|
|
3600
|
+
case TEXT_VARIANTS.MEDLARGEMEDCOMPACT:
|
|
3601
|
+
return "text-large font-medium leading-large-compact";
|
|
3587
3602
|
case TEXT_VARIANTS.MEDBASEMEDCOMPACT:
|
|
3588
3603
|
return "text-base font-medium leading-base-compact";
|
|
3589
3604
|
case TEXT_VARIANTS.MEDBASEMED:
|
package/dist/cjs/text/types.d.ts
CHANGED
|
@@ -43,6 +43,10 @@ export declare const TEXT_VARIANTS: {
|
|
|
43
43
|
readonly BOLDLABELBOLDCOMPACT: "boldLabelBoldCompact";
|
|
44
44
|
readonly BOLDLABELBOLD: "boldLabelBold";
|
|
45
45
|
readonly BOLDXSMALLBOLD: "boldXSmallBold";
|
|
46
|
+
readonly SEMIBOLDXLARGESEMIBOLDCOMPACT: "semiBoldXLargeSemiBoldCompact";
|
|
47
|
+
readonly SEMIBOLDXLARGESEMIBOLD: "semiBoldXLargeSemiBold";
|
|
48
|
+
readonly SEMIBOLDLARGESEMIBOLDCOMPACT: "semiBoldLargeSemiBoldCompact";
|
|
49
|
+
readonly SEMIBOLDLARGESEMIBOLD: "semiBoldLargeSemiBold";
|
|
46
50
|
readonly SEMIBOLDBASESEMIBOLDCOMPACT: "semiBoldBaseSemiBoldCompact";
|
|
47
51
|
readonly SEMIBOLDBASESEMIBOLD: "semiBoldBaseSemiBold";
|
|
48
52
|
readonly SEMIBOLDBODYSEMIBOLDCOMPACT: "semiBoldBodySemiBoldCompact";
|
|
@@ -50,6 +54,7 @@ export declare const TEXT_VARIANTS: {
|
|
|
50
54
|
readonly SEMIBOLDLABELSEMIBOLDCOMPACT: "semiBoldLabelSemiBoldCompact";
|
|
51
55
|
readonly MED3XLARGEMED: "med3XLargeMed";
|
|
52
56
|
readonly MEDXLARGEMED: "medXLargeMed";
|
|
57
|
+
readonly MEDLARGEMEDCOMPACT: "medLargeMedCompact";
|
|
53
58
|
readonly MEDLARGEMED: "medLargeMed";
|
|
54
59
|
readonly MEDBASEMEDCOMPACT: "medBaseMedCompact";
|
|
55
60
|
readonly MEDBASEMED: "medBaseMed";
|
package/dist/esm/client.js
CHANGED
|
@@ -12671,6 +12671,10 @@ const TEXT_VARIANTS = {
|
|
|
12671
12671
|
BOLDLABELBOLDCOMPACT: "boldLabelBoldCompact",
|
|
12672
12672
|
BOLDLABELBOLD: "boldLabelBold",
|
|
12673
12673
|
BOLDXSMALLBOLD: "boldXSmallBold",
|
|
12674
|
+
SEMIBOLDXLARGESEMIBOLDCOMPACT: "semiBoldXLargeSemiBoldCompact",
|
|
12675
|
+
SEMIBOLDXLARGESEMIBOLD: "semiBoldXLargeSemiBold",
|
|
12676
|
+
SEMIBOLDLARGESEMIBOLDCOMPACT: "semiBoldLargeSemiBoldCompact",
|
|
12677
|
+
SEMIBOLDLARGESEMIBOLD: "semiBoldLargeSemiBold",
|
|
12674
12678
|
SEMIBOLDBASESEMIBOLDCOMPACT: "semiBoldBaseSemiBoldCompact",
|
|
12675
12679
|
SEMIBOLDBASESEMIBOLD: "semiBoldBaseSemiBold",
|
|
12676
12680
|
SEMIBOLDBODYSEMIBOLDCOMPACT: "semiBoldBodySemiBoldCompact",
|
|
@@ -12678,6 +12682,7 @@ const TEXT_VARIANTS = {
|
|
|
12678
12682
|
SEMIBOLDLABELSEMIBOLDCOMPACT: "semiBoldLabelSemiBoldCompact",
|
|
12679
12683
|
MED3XLARGEMED: "med3XLargeMed",
|
|
12680
12684
|
MEDXLARGEMED: "medXLargeMed",
|
|
12685
|
+
MEDLARGEMEDCOMPACT: "medLargeMedCompact",
|
|
12681
12686
|
MEDLARGEMED: "medLargeMed",
|
|
12682
12687
|
MEDBASEMEDCOMPACT: "medBaseMedCompact",
|
|
12683
12688
|
MEDBASEMED: "medBaseMed",
|
|
@@ -12787,6 +12792,14 @@ const Text = ({ children, className, size, weight, align, variant = "regularBase
|
|
|
12787
12792
|
return "text-label font-bold leading-label";
|
|
12788
12793
|
case TEXT_VARIANTS.BOLDXSMALLBOLD:
|
|
12789
12794
|
return "text-xsmall font-bold leading-xsmall";
|
|
12795
|
+
case TEXT_VARIANTS.SEMIBOLDXLARGESEMIBOLDCOMPACT:
|
|
12796
|
+
return "text-xl font-semibold leading-xl-compact";
|
|
12797
|
+
case TEXT_VARIANTS.SEMIBOLDXLARGESEMIBOLD:
|
|
12798
|
+
return "text-xl font-semibold leading-xl";
|
|
12799
|
+
case TEXT_VARIANTS.SEMIBOLDLARGESEMIBOLDCOMPACT:
|
|
12800
|
+
return "text-large font-semibold leading-large-compact";
|
|
12801
|
+
case TEXT_VARIANTS.SEMIBOLDLARGESEMIBOLD:
|
|
12802
|
+
return "text-large font-semibold leading-large";
|
|
12790
12803
|
case TEXT_VARIANTS.SEMIBOLDBASESEMIBOLDCOMPACT:
|
|
12791
12804
|
return "text-base font-semibold leading-base-compact";
|
|
12792
12805
|
case TEXT_VARIANTS.SEMIBOLDBASESEMIBOLD:
|
|
@@ -12803,6 +12816,8 @@ const Text = ({ children, className, size, weight, align, variant = "regularBase
|
|
|
12803
12816
|
return "text-xl font-medium leading-xl";
|
|
12804
12817
|
case TEXT_VARIANTS.MEDLARGEMED:
|
|
12805
12818
|
return "text-large font-medium leading-large";
|
|
12819
|
+
case TEXT_VARIANTS.MEDLARGEMEDCOMPACT:
|
|
12820
|
+
return "text-large font-medium leading-large-compact";
|
|
12806
12821
|
case TEXT_VARIANTS.MEDBASEMEDCOMPACT:
|
|
12807
12822
|
return "text-base font-medium leading-base-compact";
|
|
12808
12823
|
case TEXT_VARIANTS.MEDBASEMED:
|
package/dist/esm/index.js
CHANGED
|
@@ -3450,6 +3450,10 @@ const TEXT_VARIANTS = {
|
|
|
3450
3450
|
BOLDLABELBOLDCOMPACT: "boldLabelBoldCompact",
|
|
3451
3451
|
BOLDLABELBOLD: "boldLabelBold",
|
|
3452
3452
|
BOLDXSMALLBOLD: "boldXSmallBold",
|
|
3453
|
+
SEMIBOLDXLARGESEMIBOLDCOMPACT: "semiBoldXLargeSemiBoldCompact",
|
|
3454
|
+
SEMIBOLDXLARGESEMIBOLD: "semiBoldXLargeSemiBold",
|
|
3455
|
+
SEMIBOLDLARGESEMIBOLDCOMPACT: "semiBoldLargeSemiBoldCompact",
|
|
3456
|
+
SEMIBOLDLARGESEMIBOLD: "semiBoldLargeSemiBold",
|
|
3453
3457
|
SEMIBOLDBASESEMIBOLDCOMPACT: "semiBoldBaseSemiBoldCompact",
|
|
3454
3458
|
SEMIBOLDBASESEMIBOLD: "semiBoldBaseSemiBold",
|
|
3455
3459
|
SEMIBOLDBODYSEMIBOLDCOMPACT: "semiBoldBodySemiBoldCompact",
|
|
@@ -3457,6 +3461,7 @@ const TEXT_VARIANTS = {
|
|
|
3457
3461
|
SEMIBOLDLABELSEMIBOLDCOMPACT: "semiBoldLabelSemiBoldCompact",
|
|
3458
3462
|
MED3XLARGEMED: "med3XLargeMed",
|
|
3459
3463
|
MEDXLARGEMED: "medXLargeMed",
|
|
3464
|
+
MEDLARGEMEDCOMPACT: "medLargeMedCompact",
|
|
3460
3465
|
MEDLARGEMED: "medLargeMed",
|
|
3461
3466
|
MEDBASEMEDCOMPACT: "medBaseMedCompact",
|
|
3462
3467
|
MEDBASEMED: "medBaseMed",
|
|
@@ -3566,6 +3571,14 @@ const Text = ({ children, className, size, weight, align, variant = "regularBase
|
|
|
3566
3571
|
return "text-label font-bold leading-label";
|
|
3567
3572
|
case TEXT_VARIANTS.BOLDXSMALLBOLD:
|
|
3568
3573
|
return "text-xsmall font-bold leading-xsmall";
|
|
3574
|
+
case TEXT_VARIANTS.SEMIBOLDXLARGESEMIBOLDCOMPACT:
|
|
3575
|
+
return "text-xl font-semibold leading-xl-compact";
|
|
3576
|
+
case TEXT_VARIANTS.SEMIBOLDXLARGESEMIBOLD:
|
|
3577
|
+
return "text-xl font-semibold leading-xl";
|
|
3578
|
+
case TEXT_VARIANTS.SEMIBOLDLARGESEMIBOLDCOMPACT:
|
|
3579
|
+
return "text-large font-semibold leading-large-compact";
|
|
3580
|
+
case TEXT_VARIANTS.SEMIBOLDLARGESEMIBOLD:
|
|
3581
|
+
return "text-large font-semibold leading-large";
|
|
3569
3582
|
case TEXT_VARIANTS.SEMIBOLDBASESEMIBOLDCOMPACT:
|
|
3570
3583
|
return "text-base font-semibold leading-base-compact";
|
|
3571
3584
|
case TEXT_VARIANTS.SEMIBOLDBASESEMIBOLD:
|
|
@@ -3582,6 +3595,8 @@ const Text = ({ children, className, size, weight, align, variant = "regularBase
|
|
|
3582
3595
|
return "text-xl font-medium leading-xl";
|
|
3583
3596
|
case TEXT_VARIANTS.MEDLARGEMED:
|
|
3584
3597
|
return "text-large font-medium leading-large";
|
|
3598
|
+
case TEXT_VARIANTS.MEDLARGEMEDCOMPACT:
|
|
3599
|
+
return "text-large font-medium leading-large-compact";
|
|
3585
3600
|
case TEXT_VARIANTS.MEDBASEMEDCOMPACT:
|
|
3586
3601
|
return "text-base font-medium leading-base-compact";
|
|
3587
3602
|
case TEXT_VARIANTS.MEDBASEMED:
|
package/dist/esm/text/types.d.ts
CHANGED
|
@@ -43,6 +43,10 @@ export declare const TEXT_VARIANTS: {
|
|
|
43
43
|
readonly BOLDLABELBOLDCOMPACT: "boldLabelBoldCompact";
|
|
44
44
|
readonly BOLDLABELBOLD: "boldLabelBold";
|
|
45
45
|
readonly BOLDXSMALLBOLD: "boldXSmallBold";
|
|
46
|
+
readonly SEMIBOLDXLARGESEMIBOLDCOMPACT: "semiBoldXLargeSemiBoldCompact";
|
|
47
|
+
readonly SEMIBOLDXLARGESEMIBOLD: "semiBoldXLargeSemiBold";
|
|
48
|
+
readonly SEMIBOLDLARGESEMIBOLDCOMPACT: "semiBoldLargeSemiBoldCompact";
|
|
49
|
+
readonly SEMIBOLDLARGESEMIBOLD: "semiBoldLargeSemiBold";
|
|
46
50
|
readonly SEMIBOLDBASESEMIBOLDCOMPACT: "semiBoldBaseSemiBoldCompact";
|
|
47
51
|
readonly SEMIBOLDBASESEMIBOLD: "semiBoldBaseSemiBold";
|
|
48
52
|
readonly SEMIBOLDBODYSEMIBOLDCOMPACT: "semiBoldBodySemiBoldCompact";
|
|
@@ -50,6 +54,7 @@ export declare const TEXT_VARIANTS: {
|
|
|
50
54
|
readonly SEMIBOLDLABELSEMIBOLDCOMPACT: "semiBoldLabelSemiBoldCompact";
|
|
51
55
|
readonly MED3XLARGEMED: "med3XLargeMed";
|
|
52
56
|
readonly MEDXLARGEMED: "medXLargeMed";
|
|
57
|
+
readonly MEDLARGEMEDCOMPACT: "medLargeMedCompact";
|
|
53
58
|
readonly MEDLARGEMED: "medLargeMed";
|
|
54
59
|
readonly MEDBASEMEDCOMPACT: "medBaseMedCompact";
|
|
55
60
|
readonly MEDBASEMED: "medBaseMed";
|
package/dist/index.d.ts
CHANGED
|
@@ -92,6 +92,10 @@ declare const TEXT_VARIANTS: {
|
|
|
92
92
|
readonly BOLDLABELBOLDCOMPACT: "boldLabelBoldCompact";
|
|
93
93
|
readonly BOLDLABELBOLD: "boldLabelBold";
|
|
94
94
|
readonly BOLDXSMALLBOLD: "boldXSmallBold";
|
|
95
|
+
readonly SEMIBOLDXLARGESEMIBOLDCOMPACT: "semiBoldXLargeSemiBoldCompact";
|
|
96
|
+
readonly SEMIBOLDXLARGESEMIBOLD: "semiBoldXLargeSemiBold";
|
|
97
|
+
readonly SEMIBOLDLARGESEMIBOLDCOMPACT: "semiBoldLargeSemiBoldCompact";
|
|
98
|
+
readonly SEMIBOLDLARGESEMIBOLD: "semiBoldLargeSemiBold";
|
|
95
99
|
readonly SEMIBOLDBASESEMIBOLDCOMPACT: "semiBoldBaseSemiBoldCompact";
|
|
96
100
|
readonly SEMIBOLDBASESEMIBOLD: "semiBoldBaseSemiBold";
|
|
97
101
|
readonly SEMIBOLDBODYSEMIBOLDCOMPACT: "semiBoldBodySemiBoldCompact";
|
|
@@ -99,6 +103,7 @@ declare const TEXT_VARIANTS: {
|
|
|
99
103
|
readonly SEMIBOLDLABELSEMIBOLDCOMPACT: "semiBoldLabelSemiBoldCompact";
|
|
100
104
|
readonly MED3XLARGEMED: "med3XLargeMed";
|
|
101
105
|
readonly MEDXLARGEMED: "medXLargeMed";
|
|
106
|
+
readonly MEDLARGEMEDCOMPACT: "medLargeMedCompact";
|
|
102
107
|
readonly MEDLARGEMED: "medLargeMed";
|
|
103
108
|
readonly MEDBASEMEDCOMPACT: "medBaseMedCompact";
|
|
104
109
|
readonly MEDBASEMED: "medBaseMed";
|