@nexxtmove/ui 1.1.5 → 1.1.7

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.
@@ -4,6 +4,7 @@ interface NexxtProgressBarProps {
4
4
  currentStep: number;
5
5
  progressLabel?: string;
6
6
  stepTitles?: string[];
7
+ maxInlineSteps?: number;
7
8
  }
8
9
  declare const __VLS_export: import('vue').DefineComponent<NexxtProgressBarProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
9
10
  "update:currentStep": (...args: any[]) => void;
@@ -23,11 +23,12 @@ export interface ProposalReference {
23
23
  indexedSalePrice: string | null;
24
24
  pricePerSquareMeter: string | null;
25
25
  }
26
+ export type NexxtReferenceCardMessage = 'selected' | 'unselected' | 'details' | 'energyLabel';
26
27
  export interface NexxtReferenceCardProps {
27
28
  reference: ProposalReference;
28
- selectedLabel?: string;
29
- unselectedLabel?: string;
30
- detailsLabel?: string;
29
+ messages?: Partial<Record<NexxtReferenceCardMessage, string>>;
30
+ locale?: string;
31
+ currency?: string;
31
32
  }
32
33
  type __VLS_Props = NexxtReferenceCardProps;
33
34
  type __VLS_ModelProps = {