@eric-emg/symphiq-components 1.2.360 → 1.2.361
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 +1047 -284
- package/fesm2022/symphiq-components.mjs.map +1 -1
- package/index.d.ts +40 -34
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/styles.css +39 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eric-emg/symphiq-components",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.361",
|
|
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",
|
package/styles.css
CHANGED
|
@@ -1276,6 +1276,9 @@
|
|
|
1276
1276
|
.resize {
|
|
1277
1277
|
resize: both;
|
|
1278
1278
|
}
|
|
1279
|
+
.resize-y {
|
|
1280
|
+
resize: vertical;
|
|
1281
|
+
}
|
|
1279
1282
|
.snap-x {
|
|
1280
1283
|
scroll-snap-type: x var(--tw-scroll-snap-strictness);
|
|
1281
1284
|
}
|
|
@@ -6852,6 +6855,26 @@
|
|
|
6852
6855
|
margin-bottom: calc(var(--spacing) * 0);
|
|
6853
6856
|
}
|
|
6854
6857
|
}
|
|
6858
|
+
.checked\:border-blue-500 {
|
|
6859
|
+
&:checked {
|
|
6860
|
+
border-color: var(--color-blue-500);
|
|
6861
|
+
}
|
|
6862
|
+
}
|
|
6863
|
+
.checked\:border-blue-600 {
|
|
6864
|
+
&:checked {
|
|
6865
|
+
border-color: var(--color-blue-600);
|
|
6866
|
+
}
|
|
6867
|
+
}
|
|
6868
|
+
.checked\:bg-blue-500 {
|
|
6869
|
+
&:checked {
|
|
6870
|
+
background-color: var(--color-blue-500);
|
|
6871
|
+
}
|
|
6872
|
+
}
|
|
6873
|
+
.checked\:bg-blue-600 {
|
|
6874
|
+
&:checked {
|
|
6875
|
+
background-color: var(--color-blue-600);
|
|
6876
|
+
}
|
|
6877
|
+
}
|
|
6855
6878
|
.hover\:translate-x-1 {
|
|
6856
6879
|
&:hover {
|
|
6857
6880
|
@media (hover: hover) {
|
|
@@ -8979,6 +9002,22 @@
|
|
|
8979
9002
|
--tw-ring-color: var(--color-red-500);
|
|
8980
9003
|
}
|
|
8981
9004
|
}
|
|
9005
|
+
.focus\:ring-offset-2 {
|
|
9006
|
+
&:focus {
|
|
9007
|
+
--tw-ring-offset-width: 2px;
|
|
9008
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
9009
|
+
}
|
|
9010
|
+
}
|
|
9011
|
+
.focus\:ring-offset-slate-800 {
|
|
9012
|
+
&:focus {
|
|
9013
|
+
--tw-ring-offset-color: var(--color-slate-800);
|
|
9014
|
+
}
|
|
9015
|
+
}
|
|
9016
|
+
.focus\:ring-offset-white {
|
|
9017
|
+
&:focus {
|
|
9018
|
+
--tw-ring-offset-color: var(--color-white);
|
|
9019
|
+
}
|
|
9020
|
+
}
|
|
8982
9021
|
.focus\:outline-none {
|
|
8983
9022
|
&:focus {
|
|
8984
9023
|
--tw-outline-style: none;
|