@pipelinesolucoes/theme 1.0.6 → 1.0.7-beta.1
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,4 +1,11 @@
|
|
|
1
1
|
export type ButtonKind = "primary" | "secondary" | "tertiary" | "delete" | "none";
|
|
2
|
+
export interface PipelineSolucoesLinkTokens {
|
|
3
|
+
color?: string;
|
|
4
|
+
colorHover?: string;
|
|
5
|
+
colorDisabled?: string;
|
|
6
|
+
padding?: string;
|
|
7
|
+
margin?: string;
|
|
8
|
+
}
|
|
2
9
|
export interface PipelineSolucoesButtonTokens {
|
|
3
10
|
background?: string;
|
|
4
11
|
color?: string;
|
|
@@ -8,7 +15,9 @@ export interface PipelineSolucoesButtonTokens {
|
|
|
8
15
|
colorDisabled?: string;
|
|
9
16
|
borderRadius?: string;
|
|
10
17
|
boxShadow?: string;
|
|
18
|
+
border?: string;
|
|
11
19
|
padding?: string;
|
|
20
|
+
margin?: string;
|
|
12
21
|
}
|
|
13
22
|
export interface PipelineSolucoesFieldTokens {
|
|
14
23
|
background?: string;
|
|
@@ -21,6 +30,7 @@ export interface PipelineSolucoesFieldTokens {
|
|
|
21
30
|
boxShadow?: string;
|
|
22
31
|
borderColor?: string;
|
|
23
32
|
padding?: string;
|
|
33
|
+
margin?: string;
|
|
24
34
|
}
|
|
25
35
|
export interface PipelineSolucoesFormTokens {
|
|
26
36
|
notification?: {
|
|
@@ -28,8 +38,14 @@ export interface PipelineSolucoesFormTokens {
|
|
|
28
38
|
};
|
|
29
39
|
field?: PipelineSolucoesFieldTokens;
|
|
30
40
|
login?: {
|
|
41
|
+
background?: string;
|
|
42
|
+
borderRadius?: string;
|
|
43
|
+
border?: string;
|
|
44
|
+
boxShadow?: string;
|
|
31
45
|
button?: PipelineSolucoesButtonTokens;
|
|
32
46
|
field?: PipelineSolucoesFieldTokens;
|
|
47
|
+
link?: PipelineSolucoesLinkTokens;
|
|
48
|
+
divider?: string;
|
|
33
49
|
};
|
|
34
50
|
}
|
|
35
51
|
/**
|