@nexxtmove/ui 1.1.2 → 1.1.4

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,7 @@
1
+ export type EnergyLabelLetter = 'A++++' | 'A+++' | 'A++' | 'A+' | 'A' | 'B' | 'C' | 'D' | 'E' | 'F' | 'G';
2
+ interface NexxtEnergyLabelProps {
3
+ label: EnergyLabelLetter | Lowercase<EnergyLabelLetter>;
4
+ }
5
+ declare const __VLS_export: import('vue').DefineComponent<NexxtEnergyLabelProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NexxtEnergyLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,16 @@
1
+ export type NexxtTemplateCardContentFeature = 'references' | 'valuation' | 'reviews' | 'packages';
2
+ export interface NexxtTemplateCardProps {
3
+ image?: string;
4
+ title: string;
5
+ subtitle?: string;
6
+ contentFeatures?: NexxtTemplateCardContentFeature[];
7
+ messages?: Partial<Record<NexxtTemplateCardContentFeature, string>>;
8
+ }
9
+ declare const __VLS_export: import('vue').DefineComponent<NexxtTemplateCardProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NexxtTemplateCardProps> & Readonly<{}>, {
10
+ image: string;
11
+ messages: Partial<Record<NexxtTemplateCardContentFeature, string>>;
12
+ subtitle: string;
13
+ contentFeatures: NexxtTemplateCardContentFeature[];
14
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
15
+ declare const _default: typeof __VLS_export;
16
+ export default _default;
package/dist/index.d.ts CHANGED
@@ -16,6 +16,7 @@ export { default as NexxtCustomerJourneyTile } from './components/CustomerJourne
16
16
  export { default as NexxtDatePicker } from './components/DatePicker/DatePicker.vue';
17
17
  export { default as NexxtDoughnutChart } from './components/DoughnutChart/DoughnutChart.vue';
18
18
  export { default as NexxtDropdownButton } from './components/DropdownButton/DropdownButton.vue';
19
+ export { default as NexxtEnergyLabel } from './components/EnergyLabel/EnergyLabel.vue';
19
20
  export { default as NexxtFloatingPanel } from './components/FloatingPanel/FloatingPanel.vue';
20
21
  export { default as NexxtHeader } from './components/Header/Header.vue';
21
22
  export { default as NexxtIcon } from './components/Icon/Icon.vue';
@@ -43,6 +44,7 @@ export { default as NexxtSwitch } from './components/Switch/Switch.vue';
43
44
  export { default as NexxtTabbedContent } from './components/TabbedContent/TabbedContent.vue';
44
45
  export { default as NexxtTable } from './components/Table/Table.vue';
45
46
  export { default as NexxtTabs } from './components/Tabs/Tabs.vue';
47
+ export { default as NexxtTemplateCard } from './components/TemplateCard/TemplateCard.vue';
46
48
  export { default as NexxtTimelineEvent } from './components/TimelineEvent/TimelineEvent.vue';
47
49
  export { default as NexxtTimelinePhaseblock } from './components/TimelinePhaseblock/TimelinePhaseblock.vue';
48
50
  export { default as NexxtToast } from './components/Toast/Toast.vue';