@bizy/core 20.1.0 → 20.1.2

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/index.d.ts CHANGED
@@ -1411,7 +1411,10 @@ declare enum TOAST {
1411
1411
  }
1412
1412
  declare class BizyToastService {
1413
1413
  #private;
1414
- static toasts: Set<DialogRef<BizyToastWrapperComponent, unknown>>;
1414
+ static toasts: Array<{
1415
+ ref: DialogRef<BizyToastWrapperComponent>;
1416
+ element: HTMLElement;
1417
+ }>;
1415
1418
  duration: number;
1416
1419
  defaultDebugTitle: string;
1417
1420
  defaultInfoTitle: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizy/core",
3
- "version": "20.1.0",
3
+ "version": "20.1.2",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "^20.0.0",
6
6
  "@angular/cdk": "^20.0.0",
@@ -7,6 +7,10 @@ body {
7
7
  margin: 0;
8
8
  font-family: var(--bizy-font-family);
9
9
  font-size: clamp(12px, 1vmax, 16px) !important;
10
+ padding-top: env(safe-area-inset-top);
11
+ padding-right: env(safe-area-inset-right);
12
+ padding-bottom: env(safe-area-inset-bottom);
13
+ padding-left: env(safe-area-inset-left);
10
14
  }
11
15
 
12
16
  p,
package/styles/toast.css CHANGED
@@ -1,13 +1,15 @@
1
1
  .bizy-toast {
2
2
  position: fixed !important;
3
- top: 0.5rem;
4
- right: 0;
3
+ top: 10px;
4
+ right: 10px;
5
5
  width: fit-content;
6
6
  height: fit-content;
7
7
  -webkit-animation-duration: 0.5s;
8
8
  animation-duration: 0.5s;
9
9
  -webkit-animation-fill-mode: both;
10
10
  animation-fill-mode: both;
11
+ transition: top 0.3s ease;
12
+ z-index: 999;
11
13
  }
12
14
 
13
15
  .bizy-toast--in {