@apolitical/component-library 8.3.25 → 8.3.26-ck-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.
- package/index.js +120 -120
- package/index.mjs +7584 -7453
- package/layout/page-layout/components/header/constants/suprsend-theme.d.ts +157 -0
- package/package.json +1 -1
- package/styles/mixins/_breakpoints.scss +1 -0
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
export declare const SUPRSEND_THEME_CONSTANTS: {
|
|
2
|
+
colors: {
|
|
3
|
+
primary: string;
|
|
4
|
+
error: string;
|
|
5
|
+
icon: string;
|
|
6
|
+
text: {
|
|
7
|
+
primary: string;
|
|
8
|
+
secondary: string;
|
|
9
|
+
};
|
|
10
|
+
background: {
|
|
11
|
+
primary: string;
|
|
12
|
+
hover: string;
|
|
13
|
+
};
|
|
14
|
+
border: string;
|
|
15
|
+
borderLight: string;
|
|
16
|
+
};
|
|
17
|
+
typography: {
|
|
18
|
+
fontSizes: {
|
|
19
|
+
xs: string;
|
|
20
|
+
sm: string;
|
|
21
|
+
md: string;
|
|
22
|
+
lg: string;
|
|
23
|
+
};
|
|
24
|
+
fontWeights: {
|
|
25
|
+
medium: string;
|
|
26
|
+
bold: string;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
spacing: {
|
|
30
|
+
xs: string;
|
|
31
|
+
sm: string;
|
|
32
|
+
md: string;
|
|
33
|
+
};
|
|
34
|
+
borderRadius: {
|
|
35
|
+
sm: string;
|
|
36
|
+
md: string;
|
|
37
|
+
full: string;
|
|
38
|
+
};
|
|
39
|
+
shadows: {
|
|
40
|
+
sm: string;
|
|
41
|
+
};
|
|
42
|
+
circleSizes: {
|
|
43
|
+
avatar: string;
|
|
44
|
+
dot: string;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
export declare const SUPRSEND_THEME: {
|
|
48
|
+
bell: {
|
|
49
|
+
color: string;
|
|
50
|
+
};
|
|
51
|
+
badge: {
|
|
52
|
+
backgroundColor: string;
|
|
53
|
+
color: string;
|
|
54
|
+
};
|
|
55
|
+
header: {
|
|
56
|
+
container: {
|
|
57
|
+
backgroundColor: string;
|
|
58
|
+
borderBottom: string;
|
|
59
|
+
};
|
|
60
|
+
headerText: {
|
|
61
|
+
color: string;
|
|
62
|
+
fontSize: string;
|
|
63
|
+
fontWeight: string;
|
|
64
|
+
};
|
|
65
|
+
markAllReadText: {
|
|
66
|
+
color: string;
|
|
67
|
+
fontWeight: string;
|
|
68
|
+
fontSize: string;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
notificationsContainer: {
|
|
72
|
+
container: {
|
|
73
|
+
borderRadius: string;
|
|
74
|
+
overflow: string;
|
|
75
|
+
backgroundColor: string;
|
|
76
|
+
boxShadow: string;
|
|
77
|
+
border: string;
|
|
78
|
+
};
|
|
79
|
+
loader: {
|
|
80
|
+
color: string;
|
|
81
|
+
};
|
|
82
|
+
noNotificationsText: {
|
|
83
|
+
color: string;
|
|
84
|
+
fontSize: string;
|
|
85
|
+
fontWeight: string;
|
|
86
|
+
};
|
|
87
|
+
noNotificationsSubtext: {
|
|
88
|
+
color: string;
|
|
89
|
+
fontSize: string;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
notification: {
|
|
93
|
+
unseenDot: {
|
|
94
|
+
backgroundColor: string;
|
|
95
|
+
width: string;
|
|
96
|
+
height: string;
|
|
97
|
+
right: string;
|
|
98
|
+
top: string;
|
|
99
|
+
};
|
|
100
|
+
container: {
|
|
101
|
+
unreadBackgroundColor: string;
|
|
102
|
+
readBackgroundColor: string;
|
|
103
|
+
hoverBackgroundColor: string;
|
|
104
|
+
borderBottom: string;
|
|
105
|
+
padding: string;
|
|
106
|
+
};
|
|
107
|
+
headerText: {
|
|
108
|
+
color: string;
|
|
109
|
+
fontSize: string;
|
|
110
|
+
fontWeight: string;
|
|
111
|
+
};
|
|
112
|
+
bodyText: {
|
|
113
|
+
color: string;
|
|
114
|
+
fontSize: string;
|
|
115
|
+
};
|
|
116
|
+
subtext: {
|
|
117
|
+
color: string;
|
|
118
|
+
fontSize: string;
|
|
119
|
+
};
|
|
120
|
+
actions: ({
|
|
121
|
+
container: {
|
|
122
|
+
backgroundColor: string;
|
|
123
|
+
color: string;
|
|
124
|
+
borderRadius: string;
|
|
125
|
+
padding: string;
|
|
126
|
+
fontSize: string;
|
|
127
|
+
fontWeight: string;
|
|
128
|
+
borderColor?: undefined;
|
|
129
|
+
};
|
|
130
|
+
} | {
|
|
131
|
+
container: {
|
|
132
|
+
borderColor: string;
|
|
133
|
+
color: string;
|
|
134
|
+
backgroundColor: string;
|
|
135
|
+
borderRadius: string;
|
|
136
|
+
padding: string;
|
|
137
|
+
fontSize: string;
|
|
138
|
+
fontWeight: string;
|
|
139
|
+
};
|
|
140
|
+
})[];
|
|
141
|
+
};
|
|
142
|
+
toast: {
|
|
143
|
+
container: {
|
|
144
|
+
backgroundColor: string;
|
|
145
|
+
borderRadius: string;
|
|
146
|
+
boxShadow: string;
|
|
147
|
+
border: string;
|
|
148
|
+
};
|
|
149
|
+
headerText: {
|
|
150
|
+
color: string;
|
|
151
|
+
fontWeight: string;
|
|
152
|
+
};
|
|
153
|
+
bodyText: {
|
|
154
|
+
color: string;
|
|
155
|
+
};
|
|
156
|
+
};
|
|
157
|
+
};
|
package/package.json
CHANGED