@bizy/core 20.6.7 → 20.6.9

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
@@ -1631,7 +1631,7 @@ declare class BizyToastService {
1631
1631
  #private;
1632
1632
  static toasts: Array<{
1633
1633
  ref: DialogRef<BizyToastWrapperComponent>;
1634
- element: HTMLElement;
1634
+ element: HTMLElement | null;
1635
1635
  }>;
1636
1636
  duration: number;
1637
1637
  defaultDebugTitle: string;
@@ -1683,8 +1683,7 @@ declare class BizyToastWrapperComponent {
1683
1683
  title: string;
1684
1684
  msg: string;
1685
1685
  id: string;
1686
- ngOnInit(): void;
1687
- getNativeElement: () => any;
1686
+ constructor();
1688
1687
  close(): void;
1689
1688
  static ɵfac: i0.ɵɵFactoryDeclaration<BizyToastWrapperComponent, never>;
1690
1689
  static ɵcmp: i0.ɵɵComponentDeclaration<BizyToastWrapperComponent, "bizy-toast-wrapper", never, {}, {}, never, never, true, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizy/core",
3
- "version": "20.6.7",
3
+ "version": "20.6.9",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^20.0.0",
6
6
  "@angular/common": "^20.0.0",
@@ -361,6 +361,14 @@
361
361
  --bizy-tag-warning-color: var(--bizy-dark-warning-color);
362
362
  --bizy-tag-danger-background-color: var(--bizy-light-danger-color);
363
363
  --bizy-tag-danger-color: var(--bizy-dark-danger-color);
364
+ --bizy-tag-cursor: pointer;
365
+ --bizy-tag-height: auto;
366
+ --bizy-tag-min-height: auto;
367
+ --bizy-tag-max-height: auto;
368
+ --bizy-tag-width: fit-content;
369
+ --bizy-tag-min-width: auto;
370
+ --bizy-tag-max-width: auto;
371
+ --bizy-tag-border-radius: 0.3rem;
364
372
  --bizy-tag-padding: 0.1rem 0.3rem;
365
373
 
366
374
  --bizy-timeline-color: var(--bizy-info-color);