@mindly/ui-components 5.13.0 → 5.14.0
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/configs/tailwind/fonts.d.ts +3 -0
- package/dist/cjs/index.js +5 -5
- package/dist/cjs/lib2/shared/ui/Typography/types.d.ts +2 -1
- package/dist/esm/configs/tailwind/fonts.d.ts +3 -0
- package/dist/esm/index.js +4 -4
- package/dist/esm/lib2/shared/ui/Typography/types.d.ts +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
- package/src/configs/tailwind/fonts.ts +6 -0
|
@@ -17,7 +17,8 @@ export declare enum TypographyVariantsEnum {
|
|
|
17
17
|
Text14Regular = "Text/14 Regular",
|
|
18
18
|
Text13Semi = "Text/13 Semi",
|
|
19
19
|
Text13Regular = "Text/13 Regular",
|
|
20
|
-
Text12Regular = "Text/12 Regular"
|
|
20
|
+
Text12Regular = "Text/12 Regular",
|
|
21
|
+
Tabbar10Medium = "Tabbar/10 Medium"
|
|
21
22
|
}
|
|
22
23
|
export type TypographyAlignType = 'left' | 'center' | 'right';
|
|
23
24
|
export type TypographyOpacityType = 100 | 65 | 50 | 45 | 35 | 30 | 15 | 10 | 8 | 6;
|
package/dist/index.d.ts
CHANGED
|
@@ -1411,7 +1411,8 @@ declare enum TypographyVariantsEnum {
|
|
|
1411
1411
|
Text14Regular = "Text/14 Regular",
|
|
1412
1412
|
Text13Semi = "Text/13 Semi",
|
|
1413
1413
|
Text13Regular = "Text/13 Regular",
|
|
1414
|
-
Text12Regular = "Text/12 Regular"
|
|
1414
|
+
Text12Regular = "Text/12 Regular",
|
|
1415
|
+
Tabbar10Medium = "Tabbar/10 Medium"
|
|
1415
1416
|
}
|
|
1416
1417
|
type TypographyAlignType = 'left' | 'center' | 'right';
|
|
1417
1418
|
type TypographyOpacityType = 100 | 65 | 50 | 45 | 35 | 30 | 15 | 10 | 8 | 6;
|
package/package.json
CHANGED