File tree Expand file tree Collapse file tree 1 file changed +26
-10
lines changed
projects/coreui-angular/src/lib Expand file tree Collapse file tree 1 file changed +26
-10
lines changed Original file line number Diff line number Diff line change 1
1
import { IsActiveMatchOptions } from '@angular/router' ;
2
2
3
+ export type NgCssClass = string | string [ ] | Set < string > | { [ klass : string ] : any } ;
4
+
3
5
export enum BreakpointInfix {
4
6
xs = 'xs' ,
5
7
sm = 'sm' ,
@@ -24,28 +26,42 @@ export type Colors =
24
26
| 'info'
25
27
| 'dark'
26
28
| 'light'
29
+ | 'primary-gradient'
30
+ | 'secondary-gradient'
31
+ | 'success-gradient'
32
+ | 'danger-gradient'
33
+ | 'warning-gradient'
34
+ | 'info-gradient'
35
+ | 'dark-gradient'
36
+ | 'light-gradient'
27
37
| string ;
28
38
29
- export type ColorsGradient =
30
- | `${Colors } -gradient`;
39
+ // export type ColorsGradient =
40
+ // | Colors
41
+ // | `${Colors}-gradient`;
31
42
32
43
export type BackgroundColors = Colors | 'body' | 'white' | 'transparent' ;
33
44
34
45
export type Directions = 'down' | 'up' | 'start' | 'end' | '' ;
35
46
36
47
export type TextColors =
37
48
| Colors
49
+ | 'primary-emphasis'
50
+ | 'secondary-emphasis'
51
+ | 'success-emphasis'
52
+ | 'danger-emphasis'
53
+ | 'warning-emphasis'
54
+ | 'info-emphasis'
55
+ | 'light-emphasis'
38
56
| 'body'
39
- | 'white'
40
- | 'muted'
57
+ | 'body-emphasis'
58
+ | 'body-secondary'
59
+ | 'body-tertiary'
60
+ | 'black'
41
61
| 'black-50'
62
+ | 'white'
42
63
| 'white-50'
43
- | 'high-emphasis'
44
- | 'medium-emphasis'
45
- | 'disabled'
46
- | 'high-emphasis-inverse'
47
- | 'medium-emphasis-inverse'
48
- | 'disabled-inverse' ;
64
+ | string ;
49
65
50
66
export type Alignment =
51
67
| 'baseline'
You can’t perform that action at this time.
0 commit comments