@nexxtmove/ui 0.1.27 → 0.1.29

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 CHANGED
@@ -245,6 +245,26 @@ declare interface NexxtDatePickerProps extends NexxtCalendarProps {
245
245
  autoClose?: boolean;
246
246
  }
247
247
 
248
+ export declare const NexxtDropdownButton: DefineComponent<NexxtDropdownButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
249
+ navigate: (url: string) => any;
250
+ }, string, PublicProps, Readonly<NexxtDropdownButtonProps> & Readonly<{
251
+ onNavigate?: ((url: string) => any) | undefined;
252
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
253
+ wrapperRef: HTMLDivElement;
254
+ }, HTMLDivElement>;
255
+
256
+ declare interface NexxtDropdownButton_2 {
257
+ label: string;
258
+ action: string | (() => void);
259
+ icon?: InstanceType<typeof NexxtIcon>['name'];
260
+ }
261
+
262
+ declare interface NexxtDropdownButtonProps extends NexxtDropdownButton_2 {
263
+ variant?: 'primary' | 'secondary';
264
+ options: NexxtDropdownButton_2[];
265
+ placement?: 'left' | 'right';
266
+ }
267
+
248
268
  export declare const NexxtHeader: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
249
269
 
250
270
  declare interface NexxtHeaderProps {