@ascentgl/ads-ui 21.8.0 → 21.9.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.9.0",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": ">=21.0.0",
6
6
  "date-fns": ">=4.1.0",
@@ -135,7 +135,7 @@ declare class AdsNumericBadgeComponent extends AdsIconHoverComponent {
135
135
  /** provide icon name. NOTE: the icon must be registered in icon registry **/
136
136
  name: i0.InputSignal<adsIcon>;
137
137
  /** choose ads icon theme **/
138
- theme: i0.InputSignal<"iconPrimary" | "primary" | "success" | "warn" | "white">;
138
+ theme: i0.InputSignal<"primary" | "iconPrimary" | "success" | "warn" | "white">;
139
139
  /** set badge value as number **/
140
140
  value: i0.InputSignal<number>;
141
141
  /** @ignore **/
@@ -224,7 +224,7 @@ declare class AdsButtonModule {
224
224
 
225
225
  declare class AdsButtonContainerComponent {
226
226
  /** How buttons in the container should be placed */
227
- justify: i0.InputSignal<"flex-start" | "flex-end" | "center">;
227
+ justify: i0.InputSignal<"center" | "flex-start" | "flex-end">;
228
228
  /** The gap between elements */
229
229
  gap: i0.InputSignal<number>;
230
230
  static ɵfac: i0.ɵɵFactoryDeclaration<AdsButtonContainerComponent, never>;
@@ -3352,8 +3352,6 @@ declare class AdsVerticalSideNavigationStepperComponent {
3352
3352
  steps: VerticalSideNavigationStep[];
3353
3353
  /** Whether to enable smooth scrolling when navigating to steps */
3354
3354
  smoothScroll: boolean;
3355
- /** Scroll offset in pixels when navigating to target elements */
3356
- scrollOffset: number;
3357
3355
  /** Event emitted when a step is clicked */
3358
3356
  stepClick: EventEmitter<{
3359
3357
  step: VerticalSideNavigationStep;
@@ -3372,7 +3370,7 @@ declare class AdsVerticalSideNavigationStepperComponent {
3372
3370
  /** @ignore */
3373
3371
  private scrollToElement;
3374
3372
  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>;
3373
+ 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
3374
  }
3377
3375
 
3378
3376
  declare class AdsVerticalSideNavigationStepperModule {