coer-elements 2.0.6 → 2.0.7
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/components/lib/coer-button/coer-button.component.d.ts +2 -2
- package/components/lib/coer-datebox/coer-datebox.component.d.ts +1 -1
- package/components/lib/coer-dropdown/coer-dropdown.component.d.ts +1 -1
- package/components/lib/coer-modal/coer-modal.component.d.ts +1 -1
- package/components/lib/coer-numberbox/coer-numberbox.component.d.ts +1 -1
- package/components/lib/coer-secretbox/coer-secretbox.component.d.ts +1 -1
- package/components/lib/coer-sidenav/coer-toolbar/coer-toolbar.component.d.ts +0 -4
- package/components/lib/coer-switch/coer-switch.component.d.ts +1 -1
- package/components/lib/coer-textarea/coer-textarea.component.d.ts +1 -1
- package/components/lib/coer-textbox/coer-textbox.component.d.ts +1 -1
- package/fesm2022/coer-elements-components.mjs +40 -45
- package/fesm2022/coer-elements-components.mjs.map +1 -1
- package/fesm2022/coer-elements-interfaces.mjs.map +1 -1
- package/fesm2022/coer-elements-pages.mjs +26 -14
- package/fesm2022/coer-elements-pages.mjs.map +1 -1
- package/fesm2022/coer-elements-services.mjs.map +1 -1
- package/fesm2022/coer-elements-signals.mjs +33 -10
- package/fesm2022/coer-elements-signals.mjs.map +1 -1
- package/fesm2022/coer-elements-tools.mjs +75 -116
- package/fesm2022/coer-elements-tools.mjs.map +1 -1
- package/interfaces/lib/colors.interface.d.ts +36 -0
- package/interfaces/public-api.d.ts +1 -0
- package/package.json +5 -5
- package/signals/lib/colors.signal.d.ts +2 -9
- package/styles/coer-elements.css +685 -132
- package/styles/colors.scss +88 -417
- package/styles/containers.scss +1 -1
- package/styles/index.scss +1 -26
- package/tools/lib/colors.class.d.ts +33 -27
- package/tools/lib/elements-html.class.d.ts +8 -4
package/styles/colors.scss
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
:root {
|
2
|
+
//Fixed colors
|
2
3
|
--blue: #0d6efd;
|
3
4
|
--gray: #6c757d;
|
4
5
|
--green: #198754;
|
@@ -10,423 +11,93 @@
|
|
10
11
|
--white: #ffffff;
|
11
12
|
--purple:#a615bc;
|
12
13
|
|
13
|
-
|
14
|
-
--
|
15
|
-
--
|
16
|
-
--
|
17
|
-
--
|
18
|
-
--
|
19
|
-
--
|
20
|
-
--
|
21
|
-
|
14
|
+
//Action Colors
|
15
|
+
--primary-inner: var(--primary, var(--blue));
|
16
|
+
--secondary-inner: var(--secondary, var(--gray));
|
17
|
+
--success-inner: var(--success, var(--green));
|
18
|
+
--warning-inner: var(--warning, var(--yellow));
|
19
|
+
--danger-inner: var(--danger, var(--red));
|
20
|
+
--navigation-inner: var(--navigation, var(--orange));
|
21
|
+
--information-inner: var(--information, var(--blue));
|
22
|
+
|
23
|
+
//App Colors
|
24
|
+
--breadcrumbs-inner: var(--app-breadcrumbs, var(--blue));
|
25
|
+
--background-inner: var(--app-background, var(--smoke));
|
26
|
+
--containers-inner: var(--app-containers, var(--white));
|
27
|
+
--sidenav-inner: var(--app-sidenav, var(--black));
|
28
|
+
--sidenav-text-inner: var(--app-sidenav-text, var(--smoke));
|
29
|
+
--toolbar-inner: var(--app-toolbar, var(--smoke));
|
30
|
+
--toolbar-text-inner: var(--app-toolbar-text, var(--black));
|
22
31
|
}
|
23
32
|
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
}
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
}
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
}
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
border
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
.text-yellow {
|
95
|
-
color: var(--yellow) !important;
|
96
|
-
}
|
97
|
-
|
98
|
-
.text-yellow-bold {
|
99
|
-
color: var(--yellow) !important;
|
100
|
-
font-weight: bold !important;
|
101
|
-
}
|
102
|
-
|
103
|
-
.background-yellow {
|
104
|
-
background-color: var(--yellow) !important;
|
105
|
-
}
|
106
|
-
|
107
|
-
.background-border-yellow {
|
108
|
-
background-color: var(--yellow) !important;
|
109
|
-
border-color: var(--yellow) !important;
|
110
|
-
}
|
111
|
-
|
112
|
-
.border-yellow {
|
113
|
-
border-color: var(--yellow) !important;
|
114
|
-
}
|
115
|
-
|
116
|
-
//Red
|
117
|
-
.text-red {
|
118
|
-
color: var(--red) !important;
|
119
|
-
}
|
120
|
-
|
121
|
-
.text-red-bold {
|
122
|
-
color: var(--red) !important;
|
123
|
-
font-weight: bold !important;
|
124
|
-
}
|
125
|
-
|
126
|
-
.background-red {
|
127
|
-
background-color: var(--red) !important;
|
128
|
-
}
|
129
|
-
|
130
|
-
.background-border-red {
|
131
|
-
background-color: var(--red) !important;
|
132
|
-
border-color: var(--red) !important;
|
133
|
-
}
|
134
|
-
|
135
|
-
.border-red {
|
136
|
-
border-color: var(--red) !important;
|
137
|
-
}
|
138
|
-
|
139
|
-
//White
|
140
|
-
.text-white {
|
141
|
-
color: var(--white) !important;
|
142
|
-
}
|
143
|
-
|
144
|
-
.text-white-bold {
|
145
|
-
color: var(--white) !important;
|
146
|
-
font-weight: bold !important;
|
147
|
-
}
|
148
|
-
|
149
|
-
.background-white {
|
150
|
-
background-color: var(--white) !important;
|
151
|
-
}
|
152
|
-
|
153
|
-
.background-border-white {
|
154
|
-
background-color: var(--white) !important;
|
155
|
-
border-color: var(--white) !important;
|
156
|
-
}
|
157
|
-
|
158
|
-
.border-white {
|
159
|
-
border-color: var(--white) !important;
|
160
|
-
}
|
161
|
-
|
162
|
-
//Black
|
163
|
-
.text-black {
|
164
|
-
color: var(--black) !important;
|
165
|
-
}
|
166
|
-
|
167
|
-
.text-black-bold {
|
168
|
-
color: var(--black) !important;
|
169
|
-
font-weight: bold !important;
|
170
|
-
}
|
171
|
-
|
172
|
-
.background-black {
|
173
|
-
background-color: var(--black) !important;
|
174
|
-
}
|
175
|
-
|
176
|
-
.background-border-black {
|
177
|
-
background-color: var(--black) !important;
|
178
|
-
border-color: var(--black) !important;
|
179
|
-
}
|
180
|
-
|
181
|
-
.border-black {
|
182
|
-
border-color: var(--black) !important;
|
183
|
-
}
|
184
|
-
|
185
|
-
//Orange
|
186
|
-
.text-orange {
|
187
|
-
color: var(--orange) !important;
|
188
|
-
}
|
189
|
-
|
190
|
-
.text-orange-bold {
|
191
|
-
color: var(--orange) !important;
|
192
|
-
font-weight: bold !important;
|
193
|
-
}
|
194
|
-
|
195
|
-
.background-orange {
|
196
|
-
background-color: var(--orange) !important;
|
197
|
-
}
|
198
|
-
|
199
|
-
.background-border-orange {
|
200
|
-
background-color: var(--orange) !important;
|
201
|
-
border-color: var(--orange) !important;
|
202
|
-
}
|
203
|
-
|
204
|
-
.border-orange {
|
205
|
-
border-color: var(--orange) !important;
|
206
|
-
}
|
207
|
-
|
208
|
-
//Primary
|
209
|
-
.text-primary {
|
210
|
-
color: var(--primary-inner) !important;
|
211
|
-
}
|
212
|
-
|
213
|
-
.text-primary-bold {
|
214
|
-
color: var(--primary-inner) !important;
|
215
|
-
font-weight: bold !important;
|
216
|
-
}
|
217
|
-
|
218
|
-
.background-primary {
|
219
|
-
background-color: var(--primary-inner) !important;
|
220
|
-
}
|
221
|
-
|
222
|
-
.background-border-primary {
|
223
|
-
background-color: var(--primary-inner) !important;
|
224
|
-
border-color: var(--primary-inner) !important;
|
225
|
-
}
|
226
|
-
|
227
|
-
.border-primary {
|
228
|
-
border-color: var(--primary-inner) !important;
|
229
|
-
}
|
230
|
-
|
231
|
-
|
232
|
-
//Secondary
|
233
|
-
.text-secondary {
|
234
|
-
color: var(--secondary-inner) !important;
|
235
|
-
}
|
236
|
-
|
237
|
-
.text-secondary-bold {
|
238
|
-
color: var(--secondary-inner) !important;
|
239
|
-
font-weight: bold !important;
|
240
|
-
}
|
241
|
-
|
242
|
-
.background-secondary {
|
243
|
-
background-color: var(--secondary-inner) !important;
|
244
|
-
}
|
245
|
-
|
246
|
-
.background-border-secondary {
|
247
|
-
background-color: var(--secondary-inner) !important;
|
248
|
-
border-color: var(--secondary-inner) !important;
|
249
|
-
}
|
250
|
-
|
251
|
-
.border-secondary {
|
252
|
-
border-color: var(--secondary-inner) !important;
|
253
|
-
}
|
254
|
-
|
255
|
-
//Success
|
256
|
-
.text-success {
|
257
|
-
color: var(--success-inner) !important;
|
258
|
-
}
|
259
|
-
|
260
|
-
.text-success-bold {
|
261
|
-
color: var(--success-inner) !important;
|
262
|
-
font-weight: bold !important;
|
263
|
-
}
|
264
|
-
|
265
|
-
.background-success {
|
266
|
-
background-color: var(--success-inner) !important;
|
267
|
-
}
|
268
|
-
|
269
|
-
.background-border-success {
|
270
|
-
background-color: var(--success-inner) !important;
|
271
|
-
border-color: var(--success-inner) !important;
|
272
|
-
}
|
273
|
-
|
274
|
-
.border-success {
|
275
|
-
border-color: var(--success-inner) !important;
|
276
|
-
}
|
277
|
-
|
278
|
-
//Warning
|
279
|
-
.text-warning {
|
280
|
-
color: var(--warning-inner) !important;
|
281
|
-
}
|
282
|
-
|
283
|
-
.text-warning-bold {
|
284
|
-
color: var(--warning-inner) !important;
|
285
|
-
font-weight: bold !important;
|
286
|
-
}
|
287
|
-
|
288
|
-
.background-warning {
|
289
|
-
background-color: var(--warning-inner) !important;
|
290
|
-
}
|
291
|
-
|
292
|
-
.background-border-warning {
|
293
|
-
background-color: var(--warning-inner) !important;
|
294
|
-
border-color: var(--warning-inner) !important;
|
295
|
-
}
|
296
|
-
|
297
|
-
.border-warning {
|
298
|
-
border-color: var(--warning-inner) !important;
|
299
|
-
}
|
300
|
-
|
301
|
-
//Danger
|
302
|
-
.text-danger {
|
303
|
-
color: var(--danger-inner) !important;
|
304
|
-
}
|
305
|
-
|
306
|
-
.text-danger-bold {
|
307
|
-
color: var(--danger-inner) !important;
|
308
|
-
font-weight: bold !important;
|
309
|
-
}
|
310
|
-
|
311
|
-
.background-danger {
|
312
|
-
background-color: var(--danger-inner) !important;
|
313
|
-
}
|
314
|
-
|
315
|
-
.background-border-danger {
|
316
|
-
background-color: var(--danger-inner) !important;
|
317
|
-
border-color: var(--danger-inner) !important;
|
318
|
-
}
|
319
|
-
|
320
|
-
.border-danger {
|
321
|
-
border-color: var(--danger-inner) !important;
|
322
|
-
}
|
323
|
-
|
324
|
-
//Background
|
325
|
-
.text-background {
|
326
|
-
color: var(--background-inner) !important;
|
327
|
-
}
|
328
|
-
|
329
|
-
.text-background-bold {
|
330
|
-
color: var(--background-inner) !important;
|
331
|
-
font-weight: bold !important;
|
332
|
-
}
|
333
|
-
|
334
|
-
.background-background {
|
335
|
-
background-color: var(--background-inner) !important;
|
336
|
-
}
|
337
|
-
|
338
|
-
.background-border-background {
|
339
|
-
background-color: var(--background-inner) !important;
|
340
|
-
border-color: var(--background-inner) !important;
|
341
|
-
}
|
342
|
-
|
343
|
-
.border-background {
|
344
|
-
border-color: var(--background-inner) !important;
|
345
|
-
}
|
346
|
-
|
347
|
-
//Sidenav
|
348
|
-
.text-sidenav {
|
349
|
-
color: var(--sidenav-inner) !important;
|
350
|
-
}
|
351
|
-
|
352
|
-
.text-blue-sidenav {
|
353
|
-
color: var(--sidenav-inner) !important;
|
354
|
-
font-weight: bold !important;
|
355
|
-
}
|
356
|
-
|
357
|
-
.background-sidenav {
|
358
|
-
background-color: var(--sidenav-inner) !important;
|
359
|
-
}
|
360
|
-
|
361
|
-
.background-border-sidenav {
|
362
|
-
background-color: var(--sidenav-inner) !important;
|
363
|
-
border-color: var(--sidenav-inner) !important;
|
364
|
-
}
|
365
|
-
|
366
|
-
.border-sidenav {
|
367
|
-
border-color: var(--sidenav-inner) !important;
|
368
|
-
}
|
369
|
-
|
370
|
-
//Navigation
|
371
|
-
.text-navigation {
|
372
|
-
color: var(--navigation-inner) !important;
|
373
|
-
}
|
374
|
-
|
375
|
-
.text-navigation-bold {
|
376
|
-
color: var(--navigation-inner) !important;
|
377
|
-
font-weight: bold !important;
|
378
|
-
}
|
379
|
-
|
380
|
-
.background-navigation {
|
381
|
-
background-color: var(--navigation-inner) !important;
|
382
|
-
}
|
383
|
-
|
384
|
-
.background-border-navigation {
|
385
|
-
background-color: var(--navigation-inner) !important;
|
386
|
-
border-color: var(--navigation-inner) !important;
|
387
|
-
}
|
388
|
-
|
389
|
-
.border-navigation {
|
390
|
-
border-color: var(--navigation-inner) !important;
|
391
|
-
}
|
392
|
-
|
393
|
-
//Container
|
394
|
-
.text-container {
|
395
|
-
color: var(--container-inner) !important;
|
396
|
-
}
|
397
|
-
|
398
|
-
.text-container-bold {
|
399
|
-
color: var(--container-inner) !important;
|
400
|
-
font-weight: bold !important;
|
401
|
-
}
|
402
|
-
|
403
|
-
.background-container {
|
404
|
-
background-color: var(--container-inner) !important;
|
405
|
-
}
|
406
|
-
|
407
|
-
.background-border-container {
|
408
|
-
background-color: var(--container-inner) !important;
|
409
|
-
border-color: var(--container-inner) !important;
|
410
|
-
}
|
411
|
-
|
412
|
-
.border-container {
|
413
|
-
border-color: var(--container-inner) !important;
|
414
|
-
}
|
415
|
-
|
416
|
-
//transparent
|
417
|
-
.text-transparent {
|
418
|
-
color: transparent !important;
|
419
|
-
}
|
420
|
-
|
421
|
-
.background-transparent {
|
422
|
-
background-color: transparent !important;
|
423
|
-
}
|
424
|
-
|
425
|
-
.background-border-transparent {
|
426
|
-
background-color: transparent !important;
|
427
|
-
border-color: transparent !important;
|
428
|
-
}
|
429
|
-
|
430
|
-
.border-transparent {
|
431
|
-
border-color: transparent !important;
|
33
|
+
$colors: (
|
34
|
+
'blue': var(--blue),
|
35
|
+
'gray': var(--gray),
|
36
|
+
'green': var(--green),
|
37
|
+
'yellow': var(--yellow),
|
38
|
+
'red': var(--red),
|
39
|
+
'smoke': var(--smoke),
|
40
|
+
'black': var(--black),
|
41
|
+
'orange': var(--orange),
|
42
|
+
'white': var(--white),
|
43
|
+
'purple': var(--purple),
|
44
|
+
'primary': var(--primary-inner),
|
45
|
+
'secondary': var(--secondary-inner),
|
46
|
+
'success': var(--success-inner),
|
47
|
+
'warning': var(--warning-inner),
|
48
|
+
'danger': var(--danger-inner),
|
49
|
+
'navigation': var(--navigation-inner),
|
50
|
+
'information': var(--information-inner),
|
51
|
+
'breadcrumbs': var(--breadcrumbs-inner),
|
52
|
+
'app-background': var(--background-inner),
|
53
|
+
'app-container': var(--containers-inner),
|
54
|
+
'app-sidenav': var(--sidenav-inner),
|
55
|
+
'app-sidenav-text': var(--sidenav-text-inner),
|
56
|
+
'app-toolbar': var(--toolbar-inner),
|
57
|
+
'app-toolbar-text': var(--toolbar-text-inner),
|
58
|
+
'transparent': transparent
|
59
|
+
);
|
60
|
+
|
61
|
+
|
62
|
+
@each $key, $value in $colors {
|
63
|
+
//Text
|
64
|
+
.text-#{$key} {
|
65
|
+
color: $value !important;
|
66
|
+
}
|
67
|
+
|
68
|
+
.text-#{$key}-bold {
|
69
|
+
color: $value !important;
|
70
|
+
font-weight: bold !important;
|
71
|
+
}
|
72
|
+
|
73
|
+
//Borders
|
74
|
+
.border-#{$key} {
|
75
|
+
border-color: $value !important;
|
76
|
+
}
|
77
|
+
|
78
|
+
.border-top-#{$key} {
|
79
|
+
border-top-color: $value !important;
|
80
|
+
}
|
81
|
+
|
82
|
+
.border-right-#{$key} {
|
83
|
+
border-right-color: $value !important;
|
84
|
+
}
|
85
|
+
|
86
|
+
.border-bottom-#{$key} {
|
87
|
+
border-bottom-color: $value !important;
|
88
|
+
}
|
89
|
+
|
90
|
+
.border-left-#{$key} {
|
91
|
+
border-left-color: $value !important;
|
92
|
+
}
|
93
|
+
|
94
|
+
//Background
|
95
|
+
.background-#{$key} {
|
96
|
+
background-color: $value !important;
|
97
|
+
}
|
98
|
+
|
99
|
+
.background-border-#{$key} {
|
100
|
+
background-color: $value !important;
|
101
|
+
border-color: $value !important;
|
102
|
+
}
|
432
103
|
}
|
package/styles/containers.scss
CHANGED
package/styles/index.scss
CHANGED
@@ -30,29 +30,4 @@ input[type="file"] {
|
|
30
30
|
|
31
31
|
.no-selection::selection {
|
32
32
|
background-color: transparent !important;
|
33
|
-
}
|
34
|
-
|
35
|
-
|
36
|
-
div#coer-tool-bar {
|
37
|
-
coer-button * {
|
38
|
-
color: var(--orange) !important;
|
39
|
-
}
|
40
|
-
|
41
|
-
coer-dropdown coer-button * {
|
42
|
-
color: transparent !important;
|
43
|
-
}
|
44
|
-
|
45
|
-
coer-dropdown ul {
|
46
|
-
right: 0px !important;
|
47
|
-
width: auto !important;
|
48
|
-
top: 2px !important;
|
49
|
-
border-top: 0px !important;
|
50
|
-
background-color: whitesmoke !important;
|
51
|
-
|
52
|
-
li:not(.no-options):hover{
|
53
|
-
color: black !important;
|
54
|
-
background-color: color.adjust(#0d6efd, $lightness: 45%) !important;
|
55
|
-
}
|
56
|
-
}
|
57
|
-
}
|
58
|
-
|
33
|
+
}
|
@@ -1,31 +1,37 @@
|
|
1
1
|
export declare class Colors {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
static
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
2
|
+
static readonly fixedColors: {
|
3
|
+
blue: string;
|
4
|
+
gray: string;
|
5
|
+
green: string;
|
6
|
+
yellow: string;
|
7
|
+
red: string;
|
8
|
+
smoke: string;
|
9
|
+
black: string;
|
10
|
+
orange: string;
|
11
|
+
white: string;
|
12
|
+
purple: string;
|
13
|
+
};
|
14
|
+
static readonly actionColors: {
|
15
|
+
primary: string;
|
16
|
+
secondary: string;
|
17
|
+
success: string;
|
18
|
+
warning: string;
|
19
|
+
danger: string;
|
20
|
+
navigation: string;
|
21
|
+
information: string;
|
22
|
+
};
|
23
|
+
static readonly appColors: {
|
24
|
+
appBreadcrumbs: string;
|
25
|
+
appBackground: string;
|
26
|
+
appContainers: string;
|
27
|
+
appSidenav: string;
|
28
|
+
appSidenavText: string;
|
29
|
+
appToolbar: string;
|
30
|
+
appToolbarText: string;
|
31
|
+
};
|
32
|
+
static ToHexadecimal(r: number, g: number, b: number, a?: number): string;
|
33
|
+
/** Returns a random color in hexadecimal
|
34
|
+
public static GetRandomColorHex = (): string => "#xxxxxx".replace(/x/g, () => (Math.random() * 16 | 0).toString(16)); */
|
27
35
|
/** Returns the number of colors requested */
|
28
36
|
static GetColorHexList(quantity: number): string[];
|
29
|
-
/** Returns the number of colors requested with opacity */
|
30
|
-
static GetColorRGBList(quantity: number): string[];
|
31
37
|
}
|
@@ -1,12 +1,16 @@
|
|
1
1
|
export declare const ElementsHTML: {
|
2
|
+
/** */
|
3
|
+
GetElement: (selector: string) => HTMLElement | null;
|
4
|
+
/** */
|
5
|
+
GetCssValueBy: (selector: string, style: string) => string;
|
6
|
+
/** */
|
7
|
+
GetCssValue: (element: Element | null, style: string) => string;
|
2
8
|
/** Get width in px */
|
3
9
|
GetElementWidth: (element: HTMLElement | null | undefined, ...args: (number | HTMLElement | null | undefined)[]) => string;
|
4
10
|
/** Get height in px */
|
5
11
|
GetElementHeight: (element: HTMLElement | null | undefined, ...args: (number | HTMLElement | null | undefined)[]) => string;
|
6
12
|
/** */
|
7
13
|
IsInvalidElement: (element: any) => boolean;
|
8
|
-
/** */
|
9
|
-
|
10
|
-
/** */
|
11
|
-
GetCssValue: (element: HTMLElement | null, style: string) => string;
|
14
|
+
/** Get color in hexadecimal format */
|
15
|
+
GetElementColor: (element: HTMLElement | null | undefined) => string;
|
12
16
|
};
|