@giddaa-housing/ui 3.3.0 → 3.4.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/dist/styles.css CHANGED
@@ -164,6 +164,7 @@
164
164
  --animate-accordion-up: accordion-up 0.2s ease-out;
165
165
  --animate-sonar-glow: sonar-glow 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
166
166
  --animate-round-sonar-glow: round-sonar-glow 1.5s ease-out infinite;
167
+ --animate-sonar-wave: sonar-wave 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
167
168
  --animate-spin-slow: spin 3s linear infinite;
168
169
  }
169
170
  }
@@ -721,6 +722,9 @@
721
722
  .block {
722
723
  display: block;
723
724
  }
725
+ .contents {
726
+ display: contents;
727
+ }
724
728
  .flex {
725
729
  display: flex;
726
730
  }
@@ -1555,6 +1559,9 @@
1555
1559
  .animate-pulse {
1556
1560
  animation: var(--animate-pulse);
1557
1561
  }
1562
+ .animate-sonar-wave {
1563
+ animation: var(--animate-sonar-wave);
1564
+ }
1558
1565
  .animate-spin {
1559
1566
  animation: var(--animate-spin);
1560
1567
  }
@@ -3692,6 +3699,15 @@
3692
3699
  .\[--slider-track-size\:0\.375rem\] {
3693
3700
  --slider-track-size: 0.375rem;
3694
3701
  }
3702
+ .\[--sonar-spread\:0\.375rem\] {
3703
+ --sonar-spread: 0.375rem;
3704
+ }
3705
+ .\[--sonar-spread\:0\.625rem\] {
3706
+ --sonar-spread: 0.625rem;
3707
+ }
3708
+ .\[--sonar-spread\:0\.875rem\] {
3709
+ --sonar-spread: 0.875rem;
3710
+ }
3695
3711
  .\[--switch-spinner-size\:0\.75rem\] {
3696
3712
  --switch-spinner-size: 0.75rem;
3697
3713
  }
@@ -9647,6 +9663,11 @@
9647
9663
  backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
9648
9664
  }
9649
9665
  }
9666
+ .motion-reduce\:hidden {
9667
+ @media (prefers-reduced-motion: reduce) {
9668
+ display: none;
9669
+ }
9670
+ }
9650
9671
  .motion-reduce\:scale-100 {
9651
9672
  @media (prefers-reduced-motion: reduce) {
9652
9673
  --tw-scale-x: 100%;
@@ -9660,6 +9681,17 @@
9660
9681
  animation: none;
9661
9682
  }
9662
9683
  }
9684
+ .motion-reduce\:opacity-40 {
9685
+ @media (prefers-reduced-motion: reduce) {
9686
+ opacity: 40%;
9687
+ }
9688
+ }
9689
+ .motion-reduce\:shadow-\[0_0_0_2px_currentColor\] {
9690
+ @media (prefers-reduced-motion: reduce) {
9691
+ --tw-shadow: 0 0 0 2px var(--tw-shadow-color, currentColor);
9692
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
9693
+ }
9694
+ }
9663
9695
  .motion-reduce\:transition-colors {
9664
9696
  @media (prefers-reduced-motion: reduce) {
9665
9697
  transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
@@ -12451,6 +12483,7 @@
12451
12483
  --animate-bouncing-loader: none;
12452
12484
  --animate-sonar-glow: none;
12453
12485
  --animate-round-sonar-glow: none;
12486
+ --animate-sonar-wave: none;
12454
12487
  --animate-spin-slow: none;
12455
12488
  }
12456
12489
  }
@@ -12533,6 +12566,16 @@
12533
12566
  opacity: 0;
12534
12567
  }
12535
12568
  }
12569
+ @keyframes sonar-wave {
12570
+ from {
12571
+ box-shadow: 0 0 0 0 currentColor;
12572
+ opacity: 0.55;
12573
+ }
12574
+ to {
12575
+ box-shadow: 0 0 0 var(--sonar-spread, 0.625rem) currentColor;
12576
+ opacity: 0;
12577
+ }
12578
+ }
12536
12579
  @layer base {
12537
12580
  body {
12538
12581
  display: flex;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@giddaa-housing/ui",
3
- "version": "3.3.0",
3
+ "version": "3.4.0",
4
4
  "description": "Giddaa reusable UI component library.",
5
5
  "type": "module",
6
6
  "private": false,
@@ -353,6 +353,10 @@
353
353
  "types": "./dist/skeleton.d.ts",
354
354
  "import": "./dist/skeleton.js"
355
355
  },
356
+ "./sonar": {
357
+ "types": "./dist/sonar.d.ts",
358
+ "import": "./dist/sonar.js"
359
+ },
356
360
  "./sparkline": {
357
361
  "types": "./dist/sparkline.d.ts",
358
362
  "import": "./dist/sparkline.js"