@rolatech/angular-components 20.2.8-bete.1 → 20.2.9-beta.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rolatech/angular-components",
3
- "version": "20.2.8-bete.1",
3
+ "version": "20.2.9-beta.2",
4
4
  "private": false,
5
5
  "description": "rolatech angular components",
6
6
  "repository": {
@@ -31,8 +31,8 @@
31
31
  "lodash": "^4.17.21"
32
32
  },
33
33
  "dependencies": {
34
- "@rolatech/angular-common": "20.2.8-bete.1",
35
- "@rolatech/angular-services": "20.2.8-bete.1",
34
+ "@rolatech/angular-common": "20.2.9-beta.2",
35
+ "@rolatech/angular-services": "20.2.9-beta.2",
36
36
  "tslib": "^2.3.0"
37
37
  },
38
38
  "exports": {
@@ -724,6 +724,10 @@ video {
724
724
  margin-top: -1rem;
725
725
  }
726
726
 
727
+ .mb-0 {
728
+ margin-bottom: 0px;
729
+ }
730
+
727
731
  .mb-0\.5 {
728
732
  margin-bottom: 0.125rem;
729
733
  }
@@ -1401,6 +1405,10 @@ video {
1401
1405
  overflow: scroll;
1402
1406
  }
1403
1407
 
1408
+ .overflow-x-auto {
1409
+ overflow-x: auto;
1410
+ }
1411
+
1404
1412
  .overflow-y-auto {
1405
1413
  overflow-y: auto;
1406
1414
  }
@@ -1423,6 +1431,10 @@ video {
1423
1431
  white-space: normal;
1424
1432
  }
1425
1433
 
1434
+ .whitespace-nowrap {
1435
+ white-space: nowrap;
1436
+ }
1437
+
1426
1438
  .whitespace-pre {
1427
1439
  white-space: pre;
1428
1440
  }
@@ -1475,6 +1487,11 @@ video {
1475
1487
  border-width: 2px;
1476
1488
  }
1477
1489
 
1490
+ .border-y {
1491
+ border-top-width: 1px;
1492
+ border-bottom-width: 1px;
1493
+ }
1494
+
1478
1495
  .border-l {
1479
1496
  border-left-width: 1px;
1480
1497
  }
@@ -1682,6 +1699,10 @@ video {
1682
1699
  padding-bottom: 1.5rem;
1683
1700
  }
1684
1701
 
1702
+ .pb-1 {
1703
+ padding-bottom: 0.25rem;
1704
+ }
1705
+
1685
1706
  .pb-16 {
1686
1707
  padding-bottom: 4rem;
1687
1708
  }
@@ -1974,6 +1995,10 @@ video {
1974
1995
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
1975
1996
  }
1976
1997
 
1998
+ .\[-webkit-overflow-scrolling\:touch\] {
1999
+ -webkit-overflow-scrolling: touch;
2000
+ }
2001
+
1977
2002
  .\[overflow-anchor\:none\] {
1978
2003
  overflow-anchor: none;
1979
2004
  }
@@ -168,9 +168,8 @@ declare class RejectDialogComponent implements OnInit {
168
168
  }
169
169
 
170
170
  declare class AcceptDialogComponent {
171
- dialogRef: MatDialogRef<AcceptDialogComponent>;
171
+ dialogRef: MatDialogRef<any, any>;
172
172
  data: DialogData$1;
173
- constructor(dialogRef: MatDialogRef<AcceptDialogComponent>, data: DialogData$1);
174
173
  onNoClick(): void;
175
174
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AcceptDialogComponent, never>;
176
175
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AcceptDialogComponent, "rolatech-accept-dialog", never, {}, {}, never, never, true, never>;
@@ -212,7 +211,7 @@ interface LINK {
212
211
  subtitle?: string;
213
212
  openinView?: boolean;
214
213
  icon?: string;
215
- link: string;
214
+ link?: string;
216
215
  children?: LINK[];
217
216
  button?: boolean;
218
217
  exact?: boolean;
@@ -221,6 +220,8 @@ declare class DrawerComponent implements AfterContentInit, AfterContentChecked {
221
220
  private _enableAnimations;
222
221
  persistent: boolean | undefined;
223
222
  links: _angular_core.InputSignal<LINK[] | undefined>;
223
+ /** index of the FIRST item that has children (or -1 if none) */
224
+ readonly firstChildrenIndex: _angular_core.Signal<number>;
224
225
  position: _angular_core.InputSignal<string>;
225
226
  opened: _angular_core.InputSignal<boolean>;
226
227
  el: ElementRef<any>;
@@ -240,6 +241,7 @@ declare class DrawerComponent implements AfterContentInit, AfterContentChecked {
240
241
  open(): void;
241
242
  close(): void;
242
243
  toggle(): void;
244
+ isNextItemChildren(index: number): boolean;
243
245
  init(isMobile: boolean): void;
244
246
  ngAfterContentInit(): void;
245
247
  ngAfterContentChecked(): void;
@@ -355,13 +357,12 @@ declare class FolderComponent {
355
357
  }
356
358
 
357
359
  declare class MediaPreviewDialogComponent implements OnInit {
358
- data: any;
359
- private dialogRef;
360
360
  selected: any;
361
361
  index: number;
362
362
  prevDisabled: boolean;
363
363
  nextDisabled: boolean;
364
- constructor(data: any, dialogRef: MatDialogRef<MediaPreviewDialogComponent>);
364
+ data: any;
365
+ dialogRef: MatDialogRef<any, any>;
365
366
  ngOnInit(): void;
366
367
  close(): void;
367
368
  prev(): void;
@@ -458,16 +459,15 @@ interface PreMedia {
458
459
  file: File;
459
460
  }
460
461
  declare class MediaUploadDialogComponent implements OnInit {
461
- dialogRef: MatDialogRef<MediaUploadDialogComponent>;
462
- data: any;
463
- private mediaService;
464
462
  fileData: any;
465
463
  progressInfos: any;
466
464
  media: Media[];
467
465
  preMedia: PreMedia[];
468
466
  isFinished: boolean;
469
467
  isUploaded: boolean;
470
- constructor(dialogRef: MatDialogRef<MediaUploadDialogComponent>, data: any, mediaService: MediaService);
468
+ dialogRef: MatDialogRef<any, any>;
469
+ data: any;
470
+ mediaService: MediaService;
471
471
  ngOnInit(): void;
472
472
  selectFiles(event: any): void;
473
473
  addImage(file: any): void;
@@ -584,6 +584,7 @@ declare class SearchIcon {
584
584
  }
585
585
 
586
586
  declare class SearchBar {
587
+ placeholder: _angular_core.InputSignal<string>;
587
588
  show: _angular_core.ModelSignal<boolean>;
588
589
  search: _angular_core.OutputEmitterRef<string>;
589
590
  close: _angular_core.OutputEmitterRef<void>;
@@ -597,7 +598,7 @@ declare class SearchBar {
597
598
  onCompositionStart(): void;
598
599
  onCompositionEnd(): void;
599
600
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SearchBar, never>;
600
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SearchBar, "rolatech-search-bar", never, { "show": { "alias": "show"; "required": false; "isSignal": true; }; }, { "show": "showChange"; "search": "search"; "close": "close"; }, never, never, true, never>;
601
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SearchBar, "rolatech-search-bar", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "show": { "alias": "show"; "required": false; "isSignal": true; }; }, { "show": "showChange"; "search": "search"; "close": "close"; }, never, never, true, never>;
601
602
  }
602
603
 
603
604
  declare class BaseComponent {
@@ -831,13 +832,12 @@ declare class ImagePlaceholderComponent implements OnInit {
831
832
  }
832
833
 
833
834
  declare class ImagePreviewDialogComponent implements OnInit {
834
- data: any;
835
- private dialogRef;
836
835
  selected: any;
837
836
  index: number;
838
837
  prevDisabled: boolean;
839
838
  nextDisabled: boolean;
840
- constructor(data: any, dialogRef: MatDialogRef<ImagePreviewDialogComponent>);
839
+ data: any;
840
+ dialogRef: MatDialogRef<any, any>;
841
841
  ngOnInit(): void;
842
842
  close(): void;
843
843
  prev(): void;