mn-angular-lib 1.0.19 → 1.0.21

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": "mn-angular-lib",
3
- "version": "1.0.19",
3
+ "version": "1.0.21",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.1.3",
6
6
  "@angular/core": "^21.1.3"
@@ -155,6 +155,7 @@ declare const mnBadgeVariants: tailwind_variants.TVReturnType<{
155
155
  warning: string;
156
156
  success: string;
157
157
  accent: string;
158
+ lightgray: string;
158
159
  };
159
160
  }, undefined, "inline-flex items-center rounded-md border font-semibold", {
160
161
  size: {
@@ -170,6 +171,7 @@ declare const mnBadgeVariants: tailwind_variants.TVReturnType<{
170
171
  warning: string;
171
172
  success: string;
172
173
  accent: string;
174
+ lightgray: string;
173
175
  };
174
176
  }, undefined, tailwind_variants.TVReturnType<{
175
177
  size: {
@@ -185,6 +187,7 @@ declare const mnBadgeVariants: tailwind_variants.TVReturnType<{
185
187
  warning: string;
186
188
  success: string;
187
189
  accent: string;
190
+ lightgray: string;
188
191
  };
189
192
  }, undefined, "inline-flex items-center rounded-md border font-semibold", unknown, unknown, undefined>>;
190
193
  type MnBadgeVariants = VariantProps<typeof mnBadgeVariants>;
@@ -3394,6 +3397,8 @@ declare class MnWizardBodyComponent implements OnInit, AfterViewInit, OnDestroy
3394
3397
  get canGoBack(): boolean;
3395
3398
  get canGoNext(): boolean;
3396
3399
  get isLastStep(): boolean;
3400
+ /** Index of the current step for the progress line */
3401
+ get currentProgressIndex(): number;
3397
3402
  get isFreeFlow(): boolean;
3398
3403
  canNavigateToStep(step: WizardStepConfig): boolean;
3399
3404
  goToStep(step: WizardStepConfig): Promise<void>;