@ascentgl/ads-ui 21.8.0 → 21.10.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.8.0",
3
+ "version": "21.10.0",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": ">=21.0.0",
6
6
  "date-fns": ">=4.1.0",
@@ -2326,7 +2326,8 @@ declare class AdsChipModule {
2326
2326
 
2327
2327
  declare class AdsExpansionPanelComponent implements AfterContentInit {
2328
2328
  private registry;
2329
- constructor(registry: AdsIconRegistry);
2329
+ private elementRef;
2330
+ constructor(registry: AdsIconRegistry, elementRef: ElementRef);
2330
2331
  /** The unique id of the chip */
2331
2332
  id: i0.InputSignal<string>;
2332
2333
  /** The header text */
@@ -2345,9 +2346,9 @@ declare class AdsExpansionPanelComponent implements AfterContentInit {
2345
2346
  width: i0.InputSignal<string>;
2346
2347
  /** The Chevron Icon size () */
2347
2348
  chevronSize: i0.InputSignal<"base" | "xs">;
2348
- /** Header padding size size () */
2349
+ /** Header padding size () */
2349
2350
  headerPadding: i0.InputSignal<string>;
2350
- /** Content padding size size () */
2351
+ /** Content padding size () */
2351
2352
  contentPadding: i0.InputSignal<string>;
2352
2353
  expandedChange: i0.OutputEmitterRef<boolean>;
2353
2354
  /** @ignore */
@@ -3352,8 +3353,6 @@ declare class AdsVerticalSideNavigationStepperComponent {
3352
3353
  steps: VerticalSideNavigationStep[];
3353
3354
  /** Whether to enable smooth scrolling when navigating to steps */
3354
3355
  smoothScroll: boolean;
3355
- /** Scroll offset in pixels when navigating to target elements */
3356
- scrollOffset: number;
3357
3356
  /** Event emitted when a step is clicked */
3358
3357
  stepClick: EventEmitter<{
3359
3358
  step: VerticalSideNavigationStep;
@@ -3372,7 +3371,7 @@ declare class AdsVerticalSideNavigationStepperComponent {
3372
3371
  /** @ignore */
3373
3372
  private scrollToElement;
3374
3373
  static ɵfac: i0.ɵɵFactoryDeclaration<AdsVerticalSideNavigationStepperComponent, never>;
3375
- 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>;
3374
+ 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>;
3376
3375
  }
3377
3376
 
3378
3377
  declare class AdsVerticalSideNavigationStepperModule {