@nexxtmove/ui 1.1.4 → 1.1.6

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.
@@ -0,0 +1,46 @@
1
+ export interface ProposalReference {
2
+ index: number;
3
+ postalCode: string;
4
+ streetName: string;
5
+ houseNumber: number;
6
+ houseType: string;
7
+ city: string;
8
+ mainImageUrl: string | null;
9
+ latitude: number;
10
+ longitude: number;
11
+ useSurface: number | null;
12
+ parcelSurface: number | null;
13
+ buildYear: number | null;
14
+ volume: number | null;
15
+ energyLabel: string | null;
16
+ garage: string | null;
17
+ insulation: string | null;
18
+ shedStorageType: string | null;
19
+ saleDate: string | null;
20
+ dateOnOfferSince: string | null;
21
+ transportDate: string | null;
22
+ salePrice: string | null;
23
+ indexedSalePrice: string | null;
24
+ pricePerSquareMeter: string | null;
25
+ }
26
+ export type NexxtReferenceCardMessage = 'selected' | 'unselected' | 'details' | 'energyLabel';
27
+ export interface NexxtReferenceCardProps {
28
+ reference: ProposalReference;
29
+ messages?: Partial<Record<NexxtReferenceCardMessage, string>>;
30
+ locale?: string;
31
+ currency?: string;
32
+ }
33
+ type __VLS_Props = NexxtReferenceCardProps;
34
+ type __VLS_ModelProps = {
35
+ modelValue?: boolean;
36
+ };
37
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
38
+ declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
39
+ details: (reference: ProposalReference) => any;
40
+ "update:modelValue": (value: boolean) => any;
41
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
42
+ onDetails?: ((reference: ProposalReference) => any) | undefined;
43
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
44
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
45
+ declare const _default: typeof __VLS_export;
46
+ export default _default;
package/dist/index.d.ts CHANGED
@@ -29,6 +29,7 @@ export { default as NexxtPresenceIndicator } from './components/PresenceIndicato
29
29
  export { default as NexxtProgressBar } from './components/ProgressBar/ProgressBar.vue';
30
30
  export { default as NexxtPropertyCard } from './components/PropertyCard/PropertyCard.vue';
31
31
  export { default as NexxtPropertyListing } from './components/PropertyListing/PropertyListing.vue';
32
+ export { default as NexxtReferenceCard } from './components/ReferenceCard/ReferenceCard.vue';
32
33
  export { default as NexxtSelect } from './components/Select/Select.vue';
33
34
  export { default as NexxtSidebarMenuItem } from './components/SidebarMenuItem/SidebarMenuItem.vue';
34
35
  export { default as NexxtSkeleton } from './components/Skeleton/Skeleton.vue';