@ascentgl/ads-ui 21.26.0 → 21.27.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ascentgl/ads-ui",
3
- "version": "21.26.0",
3
+ "version": "21.27.0",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": ">=21.0.0",
6
6
  "date-fns": ">=4.1.0",
@@ -226,7 +226,7 @@ declare class AdsButtonModule {
226
226
 
227
227
  declare class AdsButtonContainerComponent {
228
228
  /** How buttons in the container should be placed */
229
- justify: i0.InputSignal<"flex-start" | "flex-end" | "center">;
229
+ justify: i0.InputSignal<"center" | "flex-start" | "flex-end">;
230
230
  /** The gap between elements */
231
231
  gap: i0.InputSignal<number>;
232
232
  static ɵfac: i0.ɵɵFactoryDeclaration<AdsButtonContainerComponent, never>;
@@ -1362,6 +1362,10 @@ declare class AdsCheckboxComponent extends AbstractBaseComponent implements OnIn
1362
1362
  /** Set to "true" to make the checkbox indeterminate */
1363
1363
  indeterminate: boolean;
1364
1364
  width: string;
1365
+ /** Tooltip message, displayed over tooltip icon */
1366
+ tooltip?: string;
1367
+ /** Href for the Tooltip */
1368
+ tooltipHref?: string;
1365
1369
  /** @ignore */
1366
1370
  private valueChangeSub?;
1367
1371
  /** @ignore */
@@ -1374,7 +1378,7 @@ declare class AdsCheckboxComponent extends AbstractBaseComponent implements OnIn
1374
1378
  /** @ignore */
1375
1379
  toggleCheck(): void;
1376
1380
  static ɵfac: i0.ɵɵFactoryDeclaration<AdsCheckboxComponent, never>;
1377
- static ɵcmp: i0.ɵɵComponentDeclaration<AdsCheckboxComponent, "ads-checkbox", never, { "indeterminate": { "alias": "indeterminate"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, never, never, false, never>;
1381
+ static ɵcmp: i0.ɵɵComponentDeclaration<AdsCheckboxComponent, "ads-checkbox", never, { "indeterminate": { "alias": "indeterminate"; "required": false; }; "width": { "alias": "width"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "tooltipHref": { "alias": "tooltipHref"; "required": false; }; }, {}, never, never, false, never>;
1378
1382
  }
1379
1383
 
1380
1384
  declare class AdsCheckboxModule {
@@ -3504,6 +3508,8 @@ declare class AdsVerticalSideNavigationStepperComponent {
3504
3508
  steps: VerticalSideNavigationStep[];
3505
3509
  /** Whether to enable smooth scrolling when navigating to steps */
3506
3510
  smoothScroll: boolean;
3511
+ /** Offset in pixels from the top when scrolling to an element */
3512
+ scrollOffset: number;
3507
3513
  /** Event emitted when a step is clicked */
3508
3514
  stepClick: EventEmitter<{
3509
3515
  step: VerticalSideNavigationStep;
@@ -3522,7 +3528,7 @@ declare class AdsVerticalSideNavigationStepperComponent {
3522
3528
  /** @ignore */
3523
3529
  private scrollToElement;
3524
3530
  static ɵfac: i0.ɵɵFactoryDeclaration<AdsVerticalSideNavigationStepperComponent, never>;
3525
- static ɵcmp: i0.ɵɵComponentDeclaration<AdsVerticalSideNavigationStepperComponent, "ads-vertical-side-navigation-stepper", never, { "steps": { "alias": "steps"; "required": false; }; "smoothScroll": { "alias": "smoothScroll"; "required": false; }; }, { "stepClick": "stepClick"; "subStepClick": "subStepClick"; }, never, never, false, never>;
3531
+ static ɵcmp: i0.ɵɵComponentDeclaration<AdsVerticalSideNavigationStepperComponent, "ads-vertical-side-navigation-stepper", never, { "steps": { "alias": "steps"; "required": false; }; "smoothScroll": { "alias": "smoothScroll"; "required": false; }; "scrollOffset": { "alias": "scrollOffset"; "required": false; }; }, { "stepClick": "stepClick"; "subStepClick": "subStepClick"; }, never, never, false, never>;
3526
3532
  }
3527
3533
 
3528
3534
  declare class AdsVerticalSideNavigationStepperModule {