@eric-emg/symphiq-components 1.2.229 → 1.2.230

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eric-emg/symphiq-components",
3
- "version": "1.2.229",
3
+ "version": "1.2.230",
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
@@ -593,6 +593,12 @@
593
593
  .mx-auto {
594
594
  margin-inline: auto;
595
595
  }
596
+ .-my-0\.5 {
597
+ margin-block: calc(var(--spacing) * -0.5);
598
+ }
599
+ .-my-1 {
600
+ margin-block: calc(var(--spacing) * -1);
601
+ }
596
602
  .my-1\.5 {
597
603
  margin-block: calc(var(--spacing) * 1.5);
598
604
  }
@@ -650,6 +656,9 @@
650
656
  .mt-\[16px\] {
651
657
  margin-top: 16px;
652
658
  }
659
+ .-mr-1 {
660
+ margin-right: calc(var(--spacing) * -1);
661
+ }
653
662
  .mr-2 {
654
663
  margin-right: calc(var(--spacing) * 2);
655
664
  }
@@ -659,9 +668,6 @@
659
668
  .mr-4 {
660
669
  margin-right: calc(var(--spacing) * 4);
661
670
  }
662
- .-mb-1 {
663
- margin-bottom: calc(var(--spacing) * -1);
664
- }
665
671
  .mb-0\.5 {
666
672
  margin-bottom: calc(var(--spacing) * 0.5);
667
673
  }
@@ -710,9 +716,6 @@
710
716
  .ml-1 {
711
717
  margin-left: calc(var(--spacing) * 1);
712
718
  }
713
- .ml-1\.5 {
714
- margin-left: calc(var(--spacing) * 1.5);
715
- }
716
719
  .ml-2 {
717
720
  margin-left: calc(var(--spacing) * 2);
718
721
  }
@@ -1247,6 +1250,9 @@
1247
1250
  .flex-col {
1248
1251
  flex-direction: column;
1249
1252
  }
1253
+ .flex-row {
1254
+ flex-direction: row;
1255
+ }
1250
1256
  .flex-wrap {
1251
1257
  flex-wrap: wrap;
1252
1258
  }