@eric-emg/symphiq-components 1.3.29 → 1.3.30
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/fesm2022/symphiq-components.mjs +1242 -677
- package/fesm2022/symphiq-components.mjs.map +1 -1
- package/package.json +2 -2
- package/styles.css +16 -0
- package/types/symphiq-components.d.ts +1582 -1656
- package/types/symphiq-components.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eric-emg/symphiq-components",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.30",
|
|
4
4
|
"description": "A comprehensive Angular library for component dashboards with performance visualization and metrics analysis",
|
|
5
5
|
"author": "Your Organization",
|
|
6
6
|
"license": "MIT",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@angular/forms": "^21.0.0",
|
|
40
40
|
"@angular/platform-browser": "^21.0.0",
|
|
41
41
|
"@angular/router": "^21.0.0",
|
|
42
|
-
"@jebgem/model": "^0.0.
|
|
42
|
+
"@jebgem/model": "^0.0.88",
|
|
43
43
|
"@jebgem/util": "^0.0.5",
|
|
44
44
|
"rxjs": "^7.8.1"
|
|
45
45
|
},
|
package/styles.css
CHANGED
|
@@ -2878,6 +2878,12 @@
|
|
|
2878
2878
|
.bg-blue-600 {
|
|
2879
2879
|
background-color: var(--color-blue-600);
|
|
2880
2880
|
}
|
|
2881
|
+
.bg-blue-600\/20 {
|
|
2882
|
+
background-color: color-mix(in srgb, oklch(54.6% 0.245 262.881) 20%, transparent);
|
|
2883
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2884
|
+
background-color: color-mix(in oklab, var(--color-blue-600) 20%, transparent);
|
|
2885
|
+
}
|
|
2886
|
+
}
|
|
2881
2887
|
.bg-blue-800\/50 {
|
|
2882
2888
|
background-color: color-mix(in srgb, oklch(42.4% 0.199 265.638) 50%, transparent);
|
|
2883
2889
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -8355,6 +8361,16 @@
|
|
|
8355
8361
|
}
|
|
8356
8362
|
}
|
|
8357
8363
|
}
|
|
8364
|
+
.hover\:bg-blue-600\/30 {
|
|
8365
|
+
&:hover {
|
|
8366
|
+
@media (hover: hover) {
|
|
8367
|
+
background-color: color-mix(in srgb, oklch(54.6% 0.245 262.881) 30%, transparent);
|
|
8368
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
8369
|
+
background-color: color-mix(in oklab, var(--color-blue-600) 30%, transparent);
|
|
8370
|
+
}
|
|
8371
|
+
}
|
|
8372
|
+
}
|
|
8373
|
+
}
|
|
8358
8374
|
.hover\:bg-blue-700 {
|
|
8359
8375
|
&:hover {
|
|
8360
8376
|
@media (hover: hover) {
|