@nexxtmove/ui 0.1.26 → 0.1.28
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/dist/index.d.ts +9 -0
- package/dist/index.js +448 -378
- package/dist/nuxt.js +17 -16
- package/package.json +2 -2
- package/src/components/CustomerJourneyTile/CustomerJourneyTile.stories.ts +86 -0
- package/src/components/CustomerJourneyTile/CustomerJourneyTile.test.ts +178 -0
- package/src/components/CustomerJourneyTile/CustomerJourneyTile.vue +81 -0
- package/src/components/Header/Header.stories.ts +6 -0
- package/src/components/Header/Header.test.ts +15 -1
- package/src/components/Header/Header.vue +8 -4
- package/src/components.json +1 -0
- package/src/index.ts +1 -0
package/dist/index.d.ts
CHANGED
|
@@ -228,6 +228,15 @@ declare interface NexxtChipProps {
|
|
|
228
228
|
variant?: 'default' | 'warning' | 'success' | 'danger';
|
|
229
229
|
}
|
|
230
230
|
|
|
231
|
+
export declare const NexxtCustomerJourneyTile: DefineComponent<NexxtCustomerJourneyTileProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtCustomerJourneyTileProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
232
|
+
|
|
233
|
+
declare interface NexxtCustomerJourneyTileProps {
|
|
234
|
+
title?: string;
|
|
235
|
+
amount?: number;
|
|
236
|
+
percentage?: number;
|
|
237
|
+
percentageExplanaition?: string;
|
|
238
|
+
}
|
|
239
|
+
|
|
231
240
|
export declare const NexxtDatePicker: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
232
241
|
|
|
233
242
|
declare interface NexxtDatePickerProps extends NexxtCalendarProps {
|