creactive 0.0.132 → 0.0.134

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.
@@ -1,24 +0,0 @@
1
- /**
2
- * Supported by view component tags.
3
- * All possible layout tags should be listed here.
4
- */
5
- export declare enum TextTag {
6
- H1 = 0,
7
- H2 = 1,
8
- H3 = 2,
9
- H4 = 3,
10
- H5 = 4,
11
- H6 = 5,
12
- P = 6,
13
- SPAN = 7
14
- }
15
- export declare const TEXT_HTML_TAG: {
16
- 0: "h1";
17
- 1: "h2";
18
- 2: "h3";
19
- 3: "h4";
20
- 4: "h5";
21
- 5: "h6";
22
- 6: "p";
23
- 7: "span";
24
- };
@@ -1,37 +0,0 @@
1
- /**
2
- * Text align enum supported by compoent.
3
- * Allows to control text alignment if required.
4
- */
5
- export declare enum TextAlign {
6
- LEFT = 0,
7
- CENTER = 1,
8
- RIGHT = 2
9
- }
10
- /**
11
- * Available text color enum.
12
- * Should be used to control the color of the text.
13
- */
14
- export declare enum TextDecoration {
15
- NONE = 0,
16
- UNDERLINE = 1
17
- }
18
- /**
19
- * Available text line height enum.
20
- * Should be used to control the line height of the text.
21
- */
22
- export declare enum TextLineHeight {
23
- NONE = 0,
24
- TIGHT = 1,
25
- SNUG = 2,
26
- NORMAL = 3,
27
- RELAXED = 4,
28
- LOOSE = 5
29
- }
30
- export declare const TEXT_THEME_LINE_HEIGHT_KEY: {
31
- 0: "lineHeightBaseNone";
32
- 1: "lineHeightBaseTight";
33
- 2: "lineHeightBaseSnug";
34
- 3: "lineHeightBaseNormal";
35
- 4: "lineHeightBaseRelaxed";
36
- 5: "lineHeightBaseLoose";
37
- };
@@ -1,3 +0,0 @@
1
- import type { TextComponent, TextProps, TextRef } from './text.types';
2
- export declare const Text: TextComponent;
3
- export type { TextComponent, TextProps, TextRef };