@neo4j-ndl/base 0.1.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/LICENSE +674 -0
- package/lib/neo4j-ds-styles.css +2839 -0
- package/lib/optimised.config.d.ts +274 -0
- package/lib/optimised.config.js +69 -0
- package/lib/optimised.config.js.map +1 -0
- package/lib/tailwindConfig.d.ts +254 -0
- package/lib/tailwindConfig.js +162 -0
- package/lib/tailwindConfig.js.map +1 -0
- package/lib/tokens/css/tokens.css +147 -0
- package/lib/tokens/js/tokens-raw.js +2871 -0
- package/lib/tokens/js/tokens.d.ts +266 -0
- package/lib/tokens/js/tokens.js +220 -0
- package/lib/tokens/js/tokens.js.map +1 -0
- package/lib/tokens/scss/tokens.scss +144 -0
- package/lib/typings.d.ts +22 -0
- package/lib/typings.js +23 -0
- package/lib/typings.js.map +1 -0
- package/package.json +43 -0
|
@@ -0,0 +1,266 @@
|
|
|
1
|
+
export const borderRadius: {
|
|
2
|
+
sm: string;
|
|
3
|
+
md: string;
|
|
4
|
+
lg: string;
|
|
5
|
+
xl: string;
|
|
6
|
+
"1xl": string;
|
|
7
|
+
"2xl": string;
|
|
8
|
+
"3xl": string;
|
|
9
|
+
"4xl": string;
|
|
10
|
+
"5xl": string;
|
|
11
|
+
full: string;
|
|
12
|
+
};
|
|
13
|
+
export namespace colors {
|
|
14
|
+
const primary: {
|
|
15
|
+
"10": string;
|
|
16
|
+
"20": string;
|
|
17
|
+
"30": string;
|
|
18
|
+
"40": string;
|
|
19
|
+
"50": string;
|
|
20
|
+
"60": string;
|
|
21
|
+
"70": string;
|
|
22
|
+
};
|
|
23
|
+
const danger: {
|
|
24
|
+
"10": string;
|
|
25
|
+
"20": string;
|
|
26
|
+
"30": string;
|
|
27
|
+
"40": string;
|
|
28
|
+
"50": string;
|
|
29
|
+
"60": string;
|
|
30
|
+
"70": string;
|
|
31
|
+
};
|
|
32
|
+
const success: {
|
|
33
|
+
"10": string;
|
|
34
|
+
"20": string;
|
|
35
|
+
"30": string;
|
|
36
|
+
"40": string;
|
|
37
|
+
"50": string;
|
|
38
|
+
"60": string;
|
|
39
|
+
"70": string;
|
|
40
|
+
};
|
|
41
|
+
const warning: {
|
|
42
|
+
"10": string;
|
|
43
|
+
"20": string;
|
|
44
|
+
"30": string;
|
|
45
|
+
"40": string;
|
|
46
|
+
"50": string;
|
|
47
|
+
"60": string;
|
|
48
|
+
"70": string;
|
|
49
|
+
};
|
|
50
|
+
const blueberry: {
|
|
51
|
+
"10": string;
|
|
52
|
+
"20": string;
|
|
53
|
+
"30": string;
|
|
54
|
+
"40": string;
|
|
55
|
+
"50": string;
|
|
56
|
+
"60": string;
|
|
57
|
+
"70": string;
|
|
58
|
+
};
|
|
59
|
+
const mint: {
|
|
60
|
+
"10": string;
|
|
61
|
+
"20": string;
|
|
62
|
+
"30": string;
|
|
63
|
+
"40": string;
|
|
64
|
+
"50": string;
|
|
65
|
+
"60": string;
|
|
66
|
+
"70": string;
|
|
67
|
+
};
|
|
68
|
+
const neutral: {
|
|
69
|
+
"10": string;
|
|
70
|
+
"20": string;
|
|
71
|
+
"30": string;
|
|
72
|
+
"40": string;
|
|
73
|
+
"50": string;
|
|
74
|
+
"60": string;
|
|
75
|
+
"70": string;
|
|
76
|
+
"80": string;
|
|
77
|
+
"90": string;
|
|
78
|
+
};
|
|
79
|
+
}
|
|
80
|
+
export namespace font {
|
|
81
|
+
const size: {
|
|
82
|
+
h1: string;
|
|
83
|
+
h2: string;
|
|
84
|
+
h3: string;
|
|
85
|
+
h4: string;
|
|
86
|
+
h5: string;
|
|
87
|
+
h6: string;
|
|
88
|
+
"subheading-large": string;
|
|
89
|
+
"subheading-medium": string;
|
|
90
|
+
"subheading-small": string;
|
|
91
|
+
"body-large": string;
|
|
92
|
+
"body-medium": string;
|
|
93
|
+
"body-small": string;
|
|
94
|
+
code: string;
|
|
95
|
+
label: string;
|
|
96
|
+
};
|
|
97
|
+
namespace weight {
|
|
98
|
+
const bold: string;
|
|
99
|
+
const semibold: string;
|
|
100
|
+
const normal: string;
|
|
101
|
+
const light: string;
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
export namespace palette {
|
|
105
|
+
export namespace light_1 {
|
|
106
|
+
export namespace neutral_1 {
|
|
107
|
+
namespace text {
|
|
108
|
+
export const weakest: string;
|
|
109
|
+
export const weaker: string;
|
|
110
|
+
export const weak: string;
|
|
111
|
+
const _default: string;
|
|
112
|
+
export { _default as default };
|
|
113
|
+
export const inverse: string;
|
|
114
|
+
}
|
|
115
|
+
namespace bg {
|
|
116
|
+
const weak_1: string;
|
|
117
|
+
export { weak_1 as weak };
|
|
118
|
+
const _default_1: string;
|
|
119
|
+
export { _default_1 as default };
|
|
120
|
+
export const strong: string;
|
|
121
|
+
export const strongest: string;
|
|
122
|
+
}
|
|
123
|
+
namespace border {
|
|
124
|
+
const weak_2: string;
|
|
125
|
+
export { weak_2 as weak };
|
|
126
|
+
const strong_1: string;
|
|
127
|
+
export { strong_1 as strong };
|
|
128
|
+
}
|
|
129
|
+
const hover: string;
|
|
130
|
+
const pressed: string;
|
|
131
|
+
}
|
|
132
|
+
export { neutral_1 as neutral };
|
|
133
|
+
export namespace primary_1 {
|
|
134
|
+
const text_1: string;
|
|
135
|
+
export { text_1 as text };
|
|
136
|
+
export const icon: string;
|
|
137
|
+
export namespace bg_1 {
|
|
138
|
+
const strong_2: string;
|
|
139
|
+
export { strong_2 as strong };
|
|
140
|
+
const weak_3: string;
|
|
141
|
+
export { weak_3 as weak };
|
|
142
|
+
}
|
|
143
|
+
export { bg_1 as bg };
|
|
144
|
+
export namespace border_1 {
|
|
145
|
+
const strong_3: string;
|
|
146
|
+
export { strong_3 as strong };
|
|
147
|
+
const weak_4: string;
|
|
148
|
+
export { weak_4 as weak };
|
|
149
|
+
}
|
|
150
|
+
export { border_1 as border };
|
|
151
|
+
export const focus: string;
|
|
152
|
+
export namespace hover_1 {
|
|
153
|
+
const weak_5: string;
|
|
154
|
+
export { weak_5 as weak };
|
|
155
|
+
const strong_4: string;
|
|
156
|
+
export { strong_4 as strong };
|
|
157
|
+
}
|
|
158
|
+
export { hover_1 as hover };
|
|
159
|
+
export namespace pressed_1 {
|
|
160
|
+
const weak_6: string;
|
|
161
|
+
export { weak_6 as weak };
|
|
162
|
+
const strong_5: string;
|
|
163
|
+
export { strong_5 as strong };
|
|
164
|
+
}
|
|
165
|
+
export { pressed_1 as pressed };
|
|
166
|
+
}
|
|
167
|
+
export { primary_1 as primary };
|
|
168
|
+
export namespace danger_1 {
|
|
169
|
+
const text_2: string;
|
|
170
|
+
export { text_2 as text };
|
|
171
|
+
const icon_1: string;
|
|
172
|
+
export { icon_1 as icon };
|
|
173
|
+
export namespace bg_2 {
|
|
174
|
+
const strong_6: string;
|
|
175
|
+
export { strong_6 as strong };
|
|
176
|
+
const weak_7: string;
|
|
177
|
+
export { weak_7 as weak };
|
|
178
|
+
}
|
|
179
|
+
export { bg_2 as bg };
|
|
180
|
+
export namespace border_2 {
|
|
181
|
+
const strong_7: string;
|
|
182
|
+
export { strong_7 as strong };
|
|
183
|
+
const weak_8: string;
|
|
184
|
+
export { weak_8 as weak };
|
|
185
|
+
}
|
|
186
|
+
export { border_2 as border };
|
|
187
|
+
export namespace hover_2 {
|
|
188
|
+
const weak_9: string;
|
|
189
|
+
export { weak_9 as weak };
|
|
190
|
+
const strong_8: string;
|
|
191
|
+
export { strong_8 as strong };
|
|
192
|
+
}
|
|
193
|
+
export { hover_2 as hover };
|
|
194
|
+
export namespace pressed_2 {
|
|
195
|
+
const weak_10: string;
|
|
196
|
+
export { weak_10 as weak };
|
|
197
|
+
const strong_9: string;
|
|
198
|
+
export { strong_9 as strong };
|
|
199
|
+
}
|
|
200
|
+
export { pressed_2 as pressed };
|
|
201
|
+
}
|
|
202
|
+
export { danger_1 as danger };
|
|
203
|
+
export namespace warning_1 {
|
|
204
|
+
const text_3: string;
|
|
205
|
+
export { text_3 as text };
|
|
206
|
+
const icon_2: string;
|
|
207
|
+
export { icon_2 as icon };
|
|
208
|
+
export namespace bg_3 {
|
|
209
|
+
const strong_10: string;
|
|
210
|
+
export { strong_10 as strong };
|
|
211
|
+
const weak_11: string;
|
|
212
|
+
export { weak_11 as weak };
|
|
213
|
+
}
|
|
214
|
+
export { bg_3 as bg };
|
|
215
|
+
export namespace border_3 {
|
|
216
|
+
const strong_11: string;
|
|
217
|
+
export { strong_11 as strong };
|
|
218
|
+
const weak_12: string;
|
|
219
|
+
export { weak_12 as weak };
|
|
220
|
+
}
|
|
221
|
+
export { border_3 as border };
|
|
222
|
+
}
|
|
223
|
+
export { warning_1 as warning };
|
|
224
|
+
export namespace success_1 {
|
|
225
|
+
const text_4: string;
|
|
226
|
+
export { text_4 as text };
|
|
227
|
+
const icon_3: string;
|
|
228
|
+
export { icon_3 as icon };
|
|
229
|
+
export namespace bg_4 {
|
|
230
|
+
const strong_12: string;
|
|
231
|
+
export { strong_12 as strong };
|
|
232
|
+
const weak_13: string;
|
|
233
|
+
export { weak_13 as weak };
|
|
234
|
+
}
|
|
235
|
+
export { bg_4 as bg };
|
|
236
|
+
export namespace border_4 {
|
|
237
|
+
const strong_13: string;
|
|
238
|
+
export { strong_13 as strong };
|
|
239
|
+
const weak_14: string;
|
|
240
|
+
export { weak_14 as weak };
|
|
241
|
+
}
|
|
242
|
+
export { border_4 as border };
|
|
243
|
+
}
|
|
244
|
+
export { success_1 as success };
|
|
245
|
+
}
|
|
246
|
+
export { light_1 as light };
|
|
247
|
+
}
|
|
248
|
+
export namespace boxShadow {
|
|
249
|
+
const l2: string;
|
|
250
|
+
const l3: string;
|
|
251
|
+
const l4: string;
|
|
252
|
+
const l5: string;
|
|
253
|
+
}
|
|
254
|
+
export const space: {
|
|
255
|
+
"1": string;
|
|
256
|
+
"2": string;
|
|
257
|
+
"3": string;
|
|
258
|
+
"4": string;
|
|
259
|
+
"6": string;
|
|
260
|
+
"8": string;
|
|
261
|
+
"12": string;
|
|
262
|
+
"16": string;
|
|
263
|
+
"20": string;
|
|
264
|
+
"24": string;
|
|
265
|
+
"32": string;
|
|
266
|
+
};
|
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Do not edit directly
|
|
4
|
+
* Generated on Tue, 01 Mar 2022 17:09:29 GMT
|
|
5
|
+
*/
|
|
6
|
+
module.exports = {
|
|
7
|
+
"borderRadius": {
|
|
8
|
+
"sm": "4px",
|
|
9
|
+
"md": "6px",
|
|
10
|
+
"lg": "8px",
|
|
11
|
+
"xl": "10px",
|
|
12
|
+
"1xl": "12px",
|
|
13
|
+
"2xl": "14px",
|
|
14
|
+
"3xl": "16px",
|
|
15
|
+
"4xl": "18px",
|
|
16
|
+
"5xl": "20px",
|
|
17
|
+
"full": "9999px;"
|
|
18
|
+
},
|
|
19
|
+
"colors": {
|
|
20
|
+
"primary": {
|
|
21
|
+
"10": "#e6f8ff",
|
|
22
|
+
"20": "#a3e2ff",
|
|
23
|
+
"30": "#7ad1ff",
|
|
24
|
+
"40": "#018bff",
|
|
25
|
+
"50": "#006FD6",
|
|
26
|
+
"60": "#0056b3",
|
|
27
|
+
"70": "#004092"
|
|
28
|
+
},
|
|
29
|
+
"danger": {
|
|
30
|
+
"10": "#ffe6e9",
|
|
31
|
+
"20": "#ffb8c4",
|
|
32
|
+
"30": "#ff668a",
|
|
33
|
+
"40": "#ed1252",
|
|
34
|
+
"50": "#cc254b",
|
|
35
|
+
"60": "#a1003b",
|
|
36
|
+
"70": "#7a0031"
|
|
37
|
+
},
|
|
38
|
+
"success": {
|
|
39
|
+
"10": "#E1FAEF",
|
|
40
|
+
"20": "#98EDCB",
|
|
41
|
+
"30": "#44D4A4",
|
|
42
|
+
"40": "#00BA88",
|
|
43
|
+
"50": "#327D60",
|
|
44
|
+
"60": "#006E58",
|
|
45
|
+
"70": "#00473B"
|
|
46
|
+
},
|
|
47
|
+
"warning": {
|
|
48
|
+
"10": "#FFFBDE",
|
|
49
|
+
"20": "#FFF4B5",
|
|
50
|
+
"30": "#FFEA8C",
|
|
51
|
+
"40": "#FFDE63",
|
|
52
|
+
"50": "#D9B54A",
|
|
53
|
+
"60": "#966c2e",
|
|
54
|
+
"70": "#664817"
|
|
55
|
+
},
|
|
56
|
+
"blueberry": {
|
|
57
|
+
"10": "#E8EBF6",
|
|
58
|
+
"20": "#C4CCE9",
|
|
59
|
+
"30": "#9DABD9",
|
|
60
|
+
"40": "#768ACA",
|
|
61
|
+
"50": "#3557B4",
|
|
62
|
+
"60": "#25459E",
|
|
63
|
+
"70": "#0B297D"
|
|
64
|
+
},
|
|
65
|
+
"mint": {
|
|
66
|
+
"10": "#F0FFFA",
|
|
67
|
+
"20": "#D1FFF4",
|
|
68
|
+
"30": "#A8FFEE",
|
|
69
|
+
"40": "#55F9E2",
|
|
70
|
+
"50": "#3DD4C5",
|
|
71
|
+
"60": "#2AADA5",
|
|
72
|
+
"70": "#116161"
|
|
73
|
+
},
|
|
74
|
+
"neutral": {
|
|
75
|
+
"10": "#FFFFFF",
|
|
76
|
+
"20": "#F5F7FA",
|
|
77
|
+
"30": "#EEF1F6",
|
|
78
|
+
"40": "#E6E9EE",
|
|
79
|
+
"50": "#C4C8CD",
|
|
80
|
+
"60": "#B2B7BD",
|
|
81
|
+
"70": "#717780",
|
|
82
|
+
"80": "#535B66",
|
|
83
|
+
"90": "#151E29"
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
"font": {
|
|
87
|
+
"size": {
|
|
88
|
+
"h1": "48px",
|
|
89
|
+
"h2": "40px",
|
|
90
|
+
"h3": "30px",
|
|
91
|
+
"h4": "24px",
|
|
92
|
+
"h5": "20px",
|
|
93
|
+
"h6": "16px",
|
|
94
|
+
"subheading-large": "20px",
|
|
95
|
+
"subheading-medium": "16px",
|
|
96
|
+
"subheading-small": "14px",
|
|
97
|
+
"body-large": "16px",
|
|
98
|
+
"body-medium": "14px",
|
|
99
|
+
"body-small": "12px",
|
|
100
|
+
"code": "14px",
|
|
101
|
+
"label": "14px"
|
|
102
|
+
},
|
|
103
|
+
"weight": {
|
|
104
|
+
"bold": "700",
|
|
105
|
+
"semibold": "600",
|
|
106
|
+
"normal": "400",
|
|
107
|
+
"light": "300"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
"palette": {
|
|
111
|
+
"light": {
|
|
112
|
+
"neutral": {
|
|
113
|
+
"text": {
|
|
114
|
+
"weakest": "#B2B7BD",
|
|
115
|
+
"weaker": "#717780",
|
|
116
|
+
"weak": "#535B66",
|
|
117
|
+
"default": "#151E29",
|
|
118
|
+
"inverse": "#FFFFFF"
|
|
119
|
+
},
|
|
120
|
+
"bg": {
|
|
121
|
+
"weak": "#FFFFFF",
|
|
122
|
+
"default": "#F5F7FA",
|
|
123
|
+
"strong": "#E6E9EE",
|
|
124
|
+
"strongest": "#535B66"
|
|
125
|
+
},
|
|
126
|
+
"border": {
|
|
127
|
+
"weak": "#EEF1F6",
|
|
128
|
+
"strong": "#B2B7BD"
|
|
129
|
+
},
|
|
130
|
+
"hover": "rgba(113,119,128,0.1)",
|
|
131
|
+
"pressed": "rgba(113,119,128,0.2)"
|
|
132
|
+
},
|
|
133
|
+
"primary": {
|
|
134
|
+
"text": "#006FD6",
|
|
135
|
+
"icon": "#006FD6",
|
|
136
|
+
"bg": {
|
|
137
|
+
"strong": "#006FD6",
|
|
138
|
+
"weak": "#e6f8ff"
|
|
139
|
+
},
|
|
140
|
+
"border": {
|
|
141
|
+
"strong": "#006FD6",
|
|
142
|
+
"weak": "#7ad1ff"
|
|
143
|
+
},
|
|
144
|
+
"focus": "#018bff",
|
|
145
|
+
"hover": {
|
|
146
|
+
"weak": "rgba(1,139,255,0.08)",
|
|
147
|
+
"strong": "#0056b3"
|
|
148
|
+
},
|
|
149
|
+
"pressed": {
|
|
150
|
+
"weak": "rgba(1,139,255,0.12)",
|
|
151
|
+
"strong": "#004092"
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
"danger": {
|
|
155
|
+
"text": "#cc254b",
|
|
156
|
+
"icon": "#cc254b",
|
|
157
|
+
"bg": {
|
|
158
|
+
"strong": "#cc254b",
|
|
159
|
+
"weak": "#ffe6e9"
|
|
160
|
+
},
|
|
161
|
+
"border": {
|
|
162
|
+
"strong": "#cc254b",
|
|
163
|
+
"weak": "#ffb8c4"
|
|
164
|
+
},
|
|
165
|
+
"hover": {
|
|
166
|
+
"weak": "rgba(237,18,82,0.08)",
|
|
167
|
+
"strong": "#a1003b"
|
|
168
|
+
},
|
|
169
|
+
"pressed": {
|
|
170
|
+
"weak": "rgba(237,18,82,0.12)",
|
|
171
|
+
"strong": "#7a0031"
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
"warning": {
|
|
175
|
+
"text": "#966c2e",
|
|
176
|
+
"icon": "#966c2e",
|
|
177
|
+
"bg": {
|
|
178
|
+
"strong": "#966c2e",
|
|
179
|
+
"weak": "#FFFBDE"
|
|
180
|
+
},
|
|
181
|
+
"border": {
|
|
182
|
+
"strong": "#966c2e",
|
|
183
|
+
"weak": "#FFEA8C"
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
"success": {
|
|
187
|
+
"text": "#327D60",
|
|
188
|
+
"icon": "#327D60",
|
|
189
|
+
"bg": {
|
|
190
|
+
"strong": "#327D60",
|
|
191
|
+
"weak": "#E1FAEF"
|
|
192
|
+
},
|
|
193
|
+
"border": {
|
|
194
|
+
"strong": "#327D60",
|
|
195
|
+
"weak": "#98EDCB"
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"boxShadow": {
|
|
201
|
+
"l2": "0px 1px 2px 0px rgba(12, 26, 37, 0.18)",
|
|
202
|
+
"l3": "0px 4px 8px 0px rgba(12, 26, 37, 0.04)",
|
|
203
|
+
"l4": "0px 4px 8px 0px rgba(12, 26, 37, 0.08)",
|
|
204
|
+
"l5": "0px 8px 20px 0px rgba(12, 26, 37, 0.12)"
|
|
205
|
+
},
|
|
206
|
+
"space": {
|
|
207
|
+
"1": "0.25rem",
|
|
208
|
+
"2": "0.5rem",
|
|
209
|
+
"3": "0.75rem",
|
|
210
|
+
"4": "1rem",
|
|
211
|
+
"6": "1.5rem",
|
|
212
|
+
"8": "2rem",
|
|
213
|
+
"12": "3rem",
|
|
214
|
+
"16": "4rem",
|
|
215
|
+
"20": "5rem",
|
|
216
|
+
"24": "6rem",
|
|
217
|
+
"32": "8rem"
|
|
218
|
+
}
|
|
219
|
+
};
|
|
220
|
+
//# sourceMappingURL=tokens.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tokens.js","sourceRoot":"","sources":["../../../src/tokens/js/tokens.js"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
|
|
2
|
+
// Do not edit directly
|
|
3
|
+
// Generated on Tue, 01 Mar 2022 17:09:29 GMT
|
|
4
|
+
|
|
5
|
+
$border-radius-sm: 4px;
|
|
6
|
+
$border-radius-md: 6px;
|
|
7
|
+
$border-radius-lg: 8px;
|
|
8
|
+
$border-radius-xl: 10px;
|
|
9
|
+
$border-radius-1xl: 12px;
|
|
10
|
+
$border-radius-2xl: 14px;
|
|
11
|
+
$border-radius-3xl: 16px;
|
|
12
|
+
$border-radius-4xl: 18px;
|
|
13
|
+
$border-radius-5xl: 20px;
|
|
14
|
+
$border-radius-full: 9999px;;
|
|
15
|
+
$colors-primary-10: #e6f8ff; // lighest shade of brand primary color
|
|
16
|
+
$colors-primary-20: #a3e2ff;
|
|
17
|
+
$colors-primary-30: #7ad1ff;
|
|
18
|
+
$colors-primary-40: #018bff;
|
|
19
|
+
$colors-primary-50: #006FD6;
|
|
20
|
+
$colors-primary-60: #0056b3;
|
|
21
|
+
$colors-primary-70: #004092;
|
|
22
|
+
$colors-danger-10: #ffe6e9;
|
|
23
|
+
$colors-danger-20: #ffb8c4;
|
|
24
|
+
$colors-danger-30: #ff668a;
|
|
25
|
+
$colors-danger-40: #ed1252;
|
|
26
|
+
$colors-danger-50: #cc254b;
|
|
27
|
+
$colors-danger-60: #a1003b;
|
|
28
|
+
$colors-danger-70: #7a0031;
|
|
29
|
+
$colors-success-10: #E1FAEF;
|
|
30
|
+
$colors-success-20: #98EDCB;
|
|
31
|
+
$colors-success-30: #44D4A4;
|
|
32
|
+
$colors-success-40: #00BA88;
|
|
33
|
+
$colors-success-50: #327D60;
|
|
34
|
+
$colors-success-60: #006E58;
|
|
35
|
+
$colors-success-70: #00473B;
|
|
36
|
+
$colors-warning-10: #FFFBDE;
|
|
37
|
+
$colors-warning-20: #FFF4B5;
|
|
38
|
+
$colors-warning-30: #FFEA8C;
|
|
39
|
+
$colors-warning-40: #FFDE63;
|
|
40
|
+
$colors-warning-50: #D9B54A;
|
|
41
|
+
$colors-warning-60: #966c2e;
|
|
42
|
+
$colors-warning-70: #664817;
|
|
43
|
+
$colors-blueberry-10: #E8EBF6;
|
|
44
|
+
$colors-blueberry-20: #C4CCE9;
|
|
45
|
+
$colors-blueberry-30: #9DABD9;
|
|
46
|
+
$colors-blueberry-40: #768ACA;
|
|
47
|
+
$colors-blueberry-50: #3557B4;
|
|
48
|
+
$colors-blueberry-60: #25459E;
|
|
49
|
+
$colors-blueberry-70: #0B297D;
|
|
50
|
+
$colors-mint-10: #F0FFFA;
|
|
51
|
+
$colors-mint-20: #D1FFF4;
|
|
52
|
+
$colors-mint-30: #A8FFEE;
|
|
53
|
+
$colors-mint-40: #55F9E2;
|
|
54
|
+
$colors-mint-50: #3DD4C5;
|
|
55
|
+
$colors-mint-60: #2AADA5;
|
|
56
|
+
$colors-mint-70: #116161;
|
|
57
|
+
$colors-neutral-10: #FFFFFF;
|
|
58
|
+
$colors-neutral-20: #F5F7FA;
|
|
59
|
+
$colors-neutral-30: #EEF1F6;
|
|
60
|
+
$colors-neutral-40: #E6E9EE;
|
|
61
|
+
$colors-neutral-50: #C4C8CD;
|
|
62
|
+
$colors-neutral-60: #B2B7BD;
|
|
63
|
+
$colors-neutral-70: #717780;
|
|
64
|
+
$colors-neutral-80: #535B66;
|
|
65
|
+
$colors-neutral-90: #151E29;
|
|
66
|
+
$font-size-h1: 48px;
|
|
67
|
+
$font-size-h2: 40px;
|
|
68
|
+
$font-size-h3: 30px;
|
|
69
|
+
$font-size-h4: 24px;
|
|
70
|
+
$font-size-h5: 20px;
|
|
71
|
+
$font-size-h6: 16px;
|
|
72
|
+
$font-size-subheading-large: 20px;
|
|
73
|
+
$font-size-subheading-medium: 16px;
|
|
74
|
+
$font-size-subheading-small: 14px;
|
|
75
|
+
$font-size-body-large: 16px;
|
|
76
|
+
$font-size-body-medium: 14px;
|
|
77
|
+
$font-size-body-small: 12px;
|
|
78
|
+
$font-size-code: 14px;
|
|
79
|
+
$font-size-label: 14px;
|
|
80
|
+
$font-weight-bold: 700;
|
|
81
|
+
$font-weight-semibold: 600;
|
|
82
|
+
$font-weight-normal: 400;
|
|
83
|
+
$font-weight-light: 300;
|
|
84
|
+
$palette-light-neutral-text-weakest: #B2B7BD;
|
|
85
|
+
$palette-light-neutral-text-weaker: #717780;
|
|
86
|
+
$palette-light-neutral-text-weak: #535B66;
|
|
87
|
+
$palette-light-neutral-text-default: #151E29;
|
|
88
|
+
$palette-light-neutral-text-inverse: #FFFFFF;
|
|
89
|
+
$palette-light-neutral-bg-weak: #FFFFFF;
|
|
90
|
+
$palette-light-neutral-bg-default: #F5F7FA;
|
|
91
|
+
$palette-light-neutral-bg-strong: #E6E9EE;
|
|
92
|
+
$palette-light-neutral-bg-strongest: #535B66;
|
|
93
|
+
$palette-light-neutral-border-weak: #EEF1F6;
|
|
94
|
+
$palette-light-neutral-border-strong: #B2B7BD;
|
|
95
|
+
$palette-light-neutral-hover: rgba(113,119,128,0.1);
|
|
96
|
+
$palette-light-neutral-pressed: rgba(113,119,128,0.2);
|
|
97
|
+
$palette-light-primary-text: #006FD6;
|
|
98
|
+
$palette-light-primary-icon: #006FD6;
|
|
99
|
+
$palette-light-primary-bg-strong: #006FD6;
|
|
100
|
+
$palette-light-primary-bg-weak: #e6f8ff;
|
|
101
|
+
$palette-light-primary-border-strong: #006FD6;
|
|
102
|
+
$palette-light-primary-border-weak: #7ad1ff;
|
|
103
|
+
$palette-light-primary-focus: #018bff;
|
|
104
|
+
$palette-light-primary-hover-weak: rgba(1,139,255,0.08);
|
|
105
|
+
$palette-light-primary-hover-strong: #0056b3;
|
|
106
|
+
$palette-light-primary-pressed-weak: rgba(1,139,255,0.12);
|
|
107
|
+
$palette-light-primary-pressed-strong: #004092;
|
|
108
|
+
$palette-light-danger-text: #cc254b;
|
|
109
|
+
$palette-light-danger-icon: #cc254b;
|
|
110
|
+
$palette-light-danger-bg-strong: #cc254b;
|
|
111
|
+
$palette-light-danger-bg-weak: #ffe6e9;
|
|
112
|
+
$palette-light-danger-border-strong: #cc254b;
|
|
113
|
+
$palette-light-danger-border-weak: #ffb8c4;
|
|
114
|
+
$palette-light-danger-hover-weak: rgba(237,18,82,0.08);
|
|
115
|
+
$palette-light-danger-hover-strong: #a1003b;
|
|
116
|
+
$palette-light-danger-pressed-weak: rgba(237,18,82,0.12);
|
|
117
|
+
$palette-light-danger-pressed-strong: #7a0031;
|
|
118
|
+
$palette-light-warning-text: #966c2e;
|
|
119
|
+
$palette-light-warning-icon: #966c2e;
|
|
120
|
+
$palette-light-warning-bg-strong: #966c2e;
|
|
121
|
+
$palette-light-warning-bg-weak: #FFFBDE;
|
|
122
|
+
$palette-light-warning-border-strong: #966c2e;
|
|
123
|
+
$palette-light-warning-border-weak: #FFEA8C;
|
|
124
|
+
$palette-light-success-text: #327D60;
|
|
125
|
+
$palette-light-success-icon: #327D60;
|
|
126
|
+
$palette-light-success-bg-strong: #327D60;
|
|
127
|
+
$palette-light-success-bg-weak: #E1FAEF;
|
|
128
|
+
$palette-light-success-border-strong: #327D60;
|
|
129
|
+
$palette-light-success-border-weak: #98EDCB;
|
|
130
|
+
$box-shadow-l2: 0px 1px 2px 0px rgba(12, 26, 37, 0.18);
|
|
131
|
+
$box-shadow-l3: 0px 4px 8px 0px rgba(12, 26, 37, 0.04);
|
|
132
|
+
$box-shadow-l4: 0px 4px 8px 0px rgba(12, 26, 37, 0.08);
|
|
133
|
+
$box-shadow-l5: 0px 8px 20px 0px rgba(12, 26, 37, 0.12);
|
|
134
|
+
$space-1: 0.25rem;
|
|
135
|
+
$space-2: 0.5rem;
|
|
136
|
+
$space-3: 0.75rem;
|
|
137
|
+
$space-4: 1rem;
|
|
138
|
+
$space-6: 1.5rem;
|
|
139
|
+
$space-8: 2rem;
|
|
140
|
+
$space-12: 3rem;
|
|
141
|
+
$space-16: 4rem;
|
|
142
|
+
$space-20: 5rem;
|
|
143
|
+
$space-24: 6rem;
|
|
144
|
+
$space-32: 8rem;
|
package/lib/typings.d.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
* Copyright (c) "Neo4j"
|
|
4
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
5
|
+
*
|
|
6
|
+
* This file is part of Neo4j.
|
|
7
|
+
*
|
|
8
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
9
|
+
* it under the terms of the GNU General Public License as published by
|
|
10
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
11
|
+
* (at your option) any later version.
|
|
12
|
+
*
|
|
13
|
+
* This program is distributed in the hope that it will be useful,
|
|
14
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
* GNU General Public License for more details.
|
|
17
|
+
*
|
|
18
|
+
* You should have received a copy of the GNU General Public License
|
|
19
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
20
|
+
*/
|
|
21
|
+
/** All available Neo4j color classes */
|
|
22
|
+
export declare type Neo4jColors = 'primary' | 'danger' | 'warning' | 'success' | 'blueberry' | 'mint' | 'neutral';
|
package/lib/typings.js
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) "Neo4j"
|
|
5
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
6
|
+
*
|
|
7
|
+
* This file is part of Neo4j.
|
|
8
|
+
*
|
|
9
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
10
|
+
* it under the terms of the GNU General Public License as published by
|
|
11
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
12
|
+
* (at your option) any later version.
|
|
13
|
+
*
|
|
14
|
+
* This program is distributed in the hope that it will be useful,
|
|
15
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
17
|
+
* GNU General Public License for more details.
|
|
18
|
+
*
|
|
19
|
+
* You should have received a copy of the GNU General Public License
|
|
20
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
21
|
+
*/
|
|
22
|
+
exports.__esModule = true;
|
|
23
|
+
//# sourceMappingURL=typings.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"typings.js","sourceRoot":"","sources":["../src/typings.tsx"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;GAmBG"}
|