@nexxtmove/ui 1.1.1 → 1.1.3

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.
@@ -20,7 +20,7 @@ type NexxtDropdownButtonBase = {
20
20
  export type NexxtDropdownButtonProps = (NexxtDropdownButtonBase & {
21
21
  iconOnly?: false;
22
22
  label: string;
23
- action: string | (() => void);
23
+ action?: string | (() => void);
24
24
  }) | (NexxtDropdownButtonBase & {
25
25
  iconOnly: true;
26
26
  label?: string;
@@ -29,7 +29,7 @@ export type NexxtDropdownButtonProps = (NexxtDropdownButtonBase & {
29
29
  declare const __VLS_export: import('vue').DefineComponent<(NexxtDropdownButtonBase & {
30
30
  iconOnly?: false;
31
31
  label: string;
32
- action: string | (() => void);
32
+ action?: string | (() => void);
33
33
  }) | (NexxtDropdownButtonBase & {
34
34
  iconOnly: true;
35
35
  label?: string;
@@ -40,7 +40,7 @@ declare const __VLS_export: import('vue').DefineComponent<(NexxtDropdownButtonBa
40
40
  }, string, import('vue').PublicProps, Readonly<(NexxtDropdownButtonBase & {
41
41
  iconOnly?: false;
42
42
  label: string;
43
- action: string | (() => void);
43
+ action?: string | (() => void);
44
44
  }) | (NexxtDropdownButtonBase & {
45
45
  iconOnly: true;
46
46
  label?: string;
@@ -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
@@ -43,6 +43,7 @@ export { default as NexxtSwitch } from './components/Switch/Switch.vue';
43
43
  export { default as NexxtTabbedContent } from './components/TabbedContent/TabbedContent.vue';
44
44
  export { default as NexxtTable } from './components/Table/Table.vue';
45
45
  export { default as NexxtTabs } from './components/Tabs/Tabs.vue';
46
+ export { default as NexxtTemplateCard } from './components/TemplateCard/TemplateCard.vue';
46
47
  export { default as NexxtTimelineEvent } from './components/TimelineEvent/TimelineEvent.vue';
47
48
  export { default as NexxtTimelinePhaseblock } from './components/TimelinePhaseblock/TimelinePhaseblock.vue';
48
49
  export { default as NexxtToast } from './components/Toast/Toast.vue';