@nova-design-system/nova-angular 3.23.0 → 3.24.0

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.
@@ -11,6 +11,12 @@ export declare class NvDatatable<T> implements AfterViewInit, OnDestroy {
11
11
  columns: import("@angular/core").InputSignal<NvDatatableColumn<T, keyof T, T[keyof T]>[]>;
12
12
  /** Row data */
13
13
  rows: import("@angular/core").InputSignal<T[]>;
14
+ /**
15
+ * Data handling mode for sorting and filtering operations.
16
+ * - 'client': All operations handled in browser (default)
17
+ * - 'server': Operations trigger callbacks for server-side handling
18
+ */
19
+ mode: import("@angular/core").InputSignal<"client" | "server">;
14
20
  /** Optional pagination configuration */
15
21
  pagination: import("@angular/core").InputSignal<NvDatatablePaginationConfig | undefined>;
16
22
  /** Optional sorting configuration */
@@ -60,7 +66,7 @@ export declare class NvDatatable<T> implements AfterViewInit, OnDestroy {
60
66
  ngAfterViewInit(): void;
61
67
  ngOnDestroy(): void;
62
68
  static ɵfac: i0.ɵɵFactoryDeclaration<NvDatatable<any>, never>;
63
- static ɵcmp: i0.ɵɵComponentDeclaration<NvDatatable<any>, "nv-datatable", never, { "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "rows": { "alias": "rows"; "required": false; "isSignal": true; }; "pagination": { "alias": "pagination"; "required": false; "isSignal": true; }; "sorting": { "alias": "sorting"; "required": false; "isSignal": true; }; "stickyHeader": { "alias": "stickyHeader"; "required": false; "isSignal": true; }; }, {}, ["paginationTemplate", "cellTemplates"], never, true, never>;
69
+ static ɵcmp: i0.ɵɵComponentDeclaration<NvDatatable<any>, "nv-datatable", never, { "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "rows": { "alias": "rows"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "pagination": { "alias": "pagination"; "required": false; "isSignal": true; }; "sorting": { "alias": "sorting"; "required": false; "isSignal": true; }; "stickyHeader": { "alias": "stickyHeader"; "required": false; "isSignal": true; }; }, {}, ["paginationTemplate", "cellTemplates"], never, true, never>;
64
70
  }
65
71
  /********************************* UTILS **************************************/
66
72
  /**
@@ -147,11 +153,15 @@ export interface NvTableValueFormatterParams<Row, Value, Field> {
147
153
  }
148
154
  /**
149
155
  * Pagination configuration for NvDatatable.
150
- * Supports three modes: client-side, server-side with buttons, and infinite scroll.
156
+ * The pagination behavior (client vs server) is derived from the top-level `mode` prop.
151
157
  */
152
158
  export interface NvDatatablePaginationConfig {
153
- /** Pagination mode */
154
- mode: 'client' | 'server' | 'infinite';
159
+ /**
160
+ * Enable infinite scroll mode.
161
+ * When true, requires the component's top-level `mode` to be set to 'server'.
162
+ * Data is loaded incrementally as the user scrolls.
163
+ */
164
+ infinite?: boolean;
155
165
  /** Initial page size (default: 10) */
156
166
  initialPageSize?: number;
157
167
  /** Available page size options (default: [10, 20, 50, 100]) */
@@ -211,11 +221,9 @@ export interface NvDatatableRenderPaginationAPI {
211
221
  }
212
222
  /**
213
223
  * Sorting configuration for NvDatatable.
214
- * Supports both client-side and server-side sorting.
224
+ * The sorting mode (client vs server) is derived from the component's top-level `mode` prop.
215
225
  */
216
226
  export interface NvDatatableSortingConfig {
217
- /** Sorting mode */
218
- mode: 'client' | 'server';
219
227
  /** Enable multi-column sorting with Shift+Click */
220
228
  enableMultiSort?: boolean;
221
229
  /** Allow cycling through to "no sort" state */
@@ -12,12 +12,12 @@ import * as i4 from "./providers/notification-service.component";
12
12
  export declare function provideNovaComponents(): Provider;
13
13
  export declare class NovaComponentsModule {
14
14
  static ɵfac: i0.ɵɵFactoryDeclaration<NovaComponentsModule, never>;
15
- static ɵmod: i0.ɵɵNgModuleDeclaration<NovaComponentsModule, [typeof i1.NvAccordion, typeof i1.NvAccordionItem, typeof i1.NvAlert, typeof i1.NvAvatar, typeof i1.NvBadge, typeof i1.NvBreadcrumb, typeof i1.NvBreadcrumbs, typeof i1.NvButton, typeof i1.NvButtongroup, typeof i1.NvCalendar, typeof i1.NvCol, typeof i1.NvDatagrid, typeof i1.NvDatagridcolumn, typeof i1.NvDialog, typeof i1.NvDialogfooter, typeof i1.NvDialogheader, typeof i1.NvFieldcheckbox, typeof i1.NvFielddate, typeof i1.NvFielddaterange, typeof i1.NvFielddropdown, typeof i1.NvFielddropdownitem, typeof i1.NvFielddropdownitemcheck, typeof i1.NvFieldmultiselect, typeof i1.NvFieldnumber, typeof i1.NvFieldpassword, typeof i1.NvFieldradio, typeof i1.NvFieldselect, typeof i1.NvFieldslider, typeof i1.NvFieldtext, typeof i1.NvFieldtextarea, typeof i1.NvFieldtime, typeof i1.NvIcon, typeof i1.NvIconbutton, typeof i1.NvLoader, typeof i1.NvMenu, typeof i1.NvMenuitem, typeof i1.NvNotification, typeof i1.NvNotificationBullet, typeof i1.NvNotificationcontainer, typeof i1.NvPopover, typeof i1.NvRow, typeof i1.NvSidebar, typeof i1.NvSidebarcontent, typeof i1.NvSidebardivider, typeof i1.NvSidebarfooter, typeof i1.NvSidebargroup, typeof i1.NvSidebarheader, typeof i1.NvSidebarlogo, typeof i1.NvSidebarnavitem, typeof i1.NvSidebarnavsubitem, typeof i1.NvSplit, typeof i1.NvStack, typeof i1.NvTable, typeof i1.NvTableheader, typeof i1.NvToggle, typeof i1.NvTogglebutton, typeof i1.NvTogglebuttongroup, typeof i1.NvTooltip], [typeof i2.NvDatatable], [typeof i1.NvAccordion, typeof i1.NvAccordionItem, typeof i1.NvAlert, typeof i1.NvAvatar, typeof i1.NvBadge, typeof i1.NvBreadcrumb, typeof i1.NvBreadcrumbs, typeof i1.NvButton, typeof i1.NvButtongroup, typeof i1.NvCalendar, typeof i1.NvCol, typeof i1.NvDatagrid, typeof i1.NvDatagridcolumn, typeof i1.NvDialog, typeof i1.NvDialogfooter, typeof i1.NvDialogheader, typeof i1.NvFieldcheckbox, typeof i1.NvFielddate, typeof i1.NvFielddaterange, typeof i1.NvFielddropdown, typeof i1.NvFielddropdownitem, typeof i1.NvFielddropdownitemcheck, typeof i1.NvFieldmultiselect, typeof i1.NvFieldnumber, typeof i1.NvFieldpassword, typeof i1.NvFieldradio, typeof i1.NvFieldselect, typeof i1.NvFieldslider, typeof i1.NvFieldtext, typeof i1.NvFieldtextarea, typeof i1.NvFieldtime, typeof i1.NvIcon, typeof i1.NvIconbutton, typeof i1.NvLoader, typeof i1.NvMenu, typeof i1.NvMenuitem, typeof i1.NvNotification, typeof i1.NvNotificationBullet, typeof i1.NvNotificationcontainer, typeof i1.NvPopover, typeof i1.NvRow, typeof i1.NvSidebar, typeof i1.NvSidebarcontent, typeof i1.NvSidebardivider, typeof i1.NvSidebarfooter, typeof i1.NvSidebargroup, typeof i1.NvSidebarheader, typeof i1.NvSidebarlogo, typeof i1.NvSidebarnavitem, typeof i1.NvSidebarnavsubitem, typeof i1.NvSplit, typeof i1.NvStack, typeof i1.NvTable, typeof i1.NvTableheader, typeof i1.NvToggle, typeof i1.NvTogglebutton, typeof i1.NvTogglebuttongroup, typeof i1.NvTooltip, typeof i2.NvDatatable]>;
15
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NovaComponentsModule, [typeof i1.NvAccordion, typeof i1.NvAccordionItem, typeof i1.NvAlert, typeof i1.NvAvatar, typeof i1.NvBadge, typeof i1.NvBreadcrumb, typeof i1.NvBreadcrumbs, typeof i1.NvButton, typeof i1.NvButtongroup, typeof i1.NvCalendar, typeof i1.NvCol, typeof i1.NvDatagrid, typeof i1.NvDatagridcolumn, typeof i1.NvDialog, typeof i1.NvDialogfooter, typeof i1.NvDialogheader, typeof i1.NvDrawer, typeof i1.NvDrawerfooter, typeof i1.NvDrawerheader, typeof i1.NvFieldcheckbox, typeof i1.NvFielddate, typeof i1.NvFielddaterange, typeof i1.NvFielddropdown, typeof i1.NvFielddropdownitem, typeof i1.NvFielddropdownitemcheck, typeof i1.NvFieldmultiselect, typeof i1.NvFieldnumber, typeof i1.NvFieldpassword, typeof i1.NvFieldradio, typeof i1.NvFieldselect, typeof i1.NvFieldslider, typeof i1.NvFieldtext, typeof i1.NvFieldtextarea, typeof i1.NvFieldtime, typeof i1.NvIcon, typeof i1.NvIconbutton, typeof i1.NvLoader, typeof i1.NvMenu, typeof i1.NvMenuitem, typeof i1.NvNotification, typeof i1.NvNotificationBullet, typeof i1.NvNotificationcontainer, typeof i1.NvPopover, typeof i1.NvRow, typeof i1.NvSidebar, typeof i1.NvSidebarcontent, typeof i1.NvSidebardivider, typeof i1.NvSidebarfooter, typeof i1.NvSidebargroup, typeof i1.NvSidebarheader, typeof i1.NvSidebarlogo, typeof i1.NvSidebarnavitem, typeof i1.NvSidebarnavsubitem, typeof i1.NvSplit, typeof i1.NvStack, typeof i1.NvTable, typeof i1.NvTableheader, typeof i1.NvToggle, typeof i1.NvTogglebutton, typeof i1.NvTogglebuttongroup, typeof i1.NvTooltip], [typeof i2.NvDatatable], [typeof i1.NvAccordion, typeof i1.NvAccordionItem, typeof i1.NvAlert, typeof i1.NvAvatar, typeof i1.NvBadge, typeof i1.NvBreadcrumb, typeof i1.NvBreadcrumbs, typeof i1.NvButton, typeof i1.NvButtongroup, typeof i1.NvCalendar, typeof i1.NvCol, typeof i1.NvDatagrid, typeof i1.NvDatagridcolumn, typeof i1.NvDialog, typeof i1.NvDialogfooter, typeof i1.NvDialogheader, typeof i1.NvDrawer, typeof i1.NvDrawerfooter, typeof i1.NvDrawerheader, typeof i1.NvFieldcheckbox, typeof i1.NvFielddate, typeof i1.NvFielddaterange, typeof i1.NvFielddropdown, typeof i1.NvFielddropdownitem, typeof i1.NvFielddropdownitemcheck, typeof i1.NvFieldmultiselect, typeof i1.NvFieldnumber, typeof i1.NvFieldpassword, typeof i1.NvFieldradio, typeof i1.NvFieldselect, typeof i1.NvFieldslider, typeof i1.NvFieldtext, typeof i1.NvFieldtextarea, typeof i1.NvFieldtime, typeof i1.NvIcon, typeof i1.NvIconbutton, typeof i1.NvLoader, typeof i1.NvMenu, typeof i1.NvMenuitem, typeof i1.NvNotification, typeof i1.NvNotificationBullet, typeof i1.NvNotificationcontainer, typeof i1.NvPopover, typeof i1.NvRow, typeof i1.NvSidebar, typeof i1.NvSidebarcontent, typeof i1.NvSidebardivider, typeof i1.NvSidebarfooter, typeof i1.NvSidebargroup, typeof i1.NvSidebarheader, typeof i1.NvSidebarlogo, typeof i1.NvSidebarnavitem, typeof i1.NvSidebarnavsubitem, typeof i1.NvSplit, typeof i1.NvStack, typeof i1.NvTable, typeof i1.NvTableheader, typeof i1.NvToggle, typeof i1.NvTogglebutton, typeof i1.NvTogglebuttongroup, typeof i1.NvTooltip, typeof i2.NvDatatable]>;
16
16
  static ɵinj: i0.ɵɵInjectorDeclaration<NovaComponentsModule>;
17
17
  }
18
18
  export declare class NovaComponentsValueAccessorModule {
19
19
  static ɵfac: i0.ɵɵFactoryDeclaration<NovaComponentsValueAccessorModule, never>;
20
- static ɵmod: i0.ɵɵNgModuleDeclaration<NovaComponentsValueAccessorModule, [typeof i3.NvAccordionValueAccessor, typeof i3.NvAlertValueAccessor, typeof i3.NvCalendarValueAccessor, typeof i3.NvDatagridValueAccessor, typeof i3.NvDialogValueAccessor, typeof i3.NvFieldcheckboxValueAccessor, typeof i3.NvFielddateValueAccessor, typeof i3.NvFielddaterangeValueAccessor, typeof i3.NvFielddropdownValueAccessor, typeof i3.NvFieldmultiselectValueAccessor, typeof i3.NvFieldnumberValueAccessor, typeof i3.NvFieldpasswordValueAccessor, typeof i3.NvFieldradioValueAccessor, typeof i3.NvFieldselectValueAccessor, typeof i3.NvFieldsliderValueAccessor, typeof i3.NvFieldtextValueAccessor, typeof i3.NvFieldtextareaValueAccessor, typeof i3.NvFieldtimeValueAccessor, typeof i3.NvNotificationValueAccessor, typeof i3.NvPopoverValueAccessor, typeof i3.NvSidebarValueAccessor, typeof i3.NvSplitValueAccessor, typeof i3.NvToggleValueAccessor, typeof i3.NvTogglebuttongroupValueAccessor], never, [typeof i3.NvAccordionValueAccessor, typeof i3.NvAlertValueAccessor, typeof i3.NvCalendarValueAccessor, typeof i3.NvDatagridValueAccessor, typeof i3.NvDialogValueAccessor, typeof i3.NvFieldcheckboxValueAccessor, typeof i3.NvFielddateValueAccessor, typeof i3.NvFielddaterangeValueAccessor, typeof i3.NvFielddropdownValueAccessor, typeof i3.NvFieldmultiselectValueAccessor, typeof i3.NvFieldnumberValueAccessor, typeof i3.NvFieldpasswordValueAccessor, typeof i3.NvFieldradioValueAccessor, typeof i3.NvFieldselectValueAccessor, typeof i3.NvFieldsliderValueAccessor, typeof i3.NvFieldtextValueAccessor, typeof i3.NvFieldtextareaValueAccessor, typeof i3.NvFieldtimeValueAccessor, typeof i3.NvNotificationValueAccessor, typeof i3.NvPopoverValueAccessor, typeof i3.NvSidebarValueAccessor, typeof i3.NvSplitValueAccessor, typeof i3.NvToggleValueAccessor, typeof i3.NvTogglebuttongroupValueAccessor]>;
20
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NovaComponentsValueAccessorModule, [typeof i3.NvAccordionValueAccessor, typeof i3.NvAlertValueAccessor, typeof i3.NvCalendarValueAccessor, typeof i3.NvDatagridValueAccessor, typeof i3.NvDialogValueAccessor, typeof i3.NvDrawerValueAccessor, typeof i3.NvFieldcheckboxValueAccessor, typeof i3.NvFielddateValueAccessor, typeof i3.NvFielddaterangeValueAccessor, typeof i3.NvFielddropdownValueAccessor, typeof i3.NvFieldmultiselectValueAccessor, typeof i3.NvFieldnumberValueAccessor, typeof i3.NvFieldpasswordValueAccessor, typeof i3.NvFieldradioValueAccessor, typeof i3.NvFieldselectValueAccessor, typeof i3.NvFieldsliderValueAccessor, typeof i3.NvFieldtextValueAccessor, typeof i3.NvFieldtextareaValueAccessor, typeof i3.NvFieldtimeValueAccessor, typeof i3.NvNotificationValueAccessor, typeof i3.NvPopoverValueAccessor, typeof i3.NvSidebarValueAccessor, typeof i3.NvSplitValueAccessor, typeof i3.NvToggleValueAccessor, typeof i3.NvTogglebuttongroupValueAccessor], never, [typeof i3.NvAccordionValueAccessor, typeof i3.NvAlertValueAccessor, typeof i3.NvCalendarValueAccessor, typeof i3.NvDatagridValueAccessor, typeof i3.NvDialogValueAccessor, typeof i3.NvDrawerValueAccessor, typeof i3.NvFieldcheckboxValueAccessor, typeof i3.NvFielddateValueAccessor, typeof i3.NvFielddaterangeValueAccessor, typeof i3.NvFielddropdownValueAccessor, typeof i3.NvFieldmultiselectValueAccessor, typeof i3.NvFieldnumberValueAccessor, typeof i3.NvFieldpasswordValueAccessor, typeof i3.NvFieldradioValueAccessor, typeof i3.NvFieldselectValueAccessor, typeof i3.NvFieldsliderValueAccessor, typeof i3.NvFieldtextValueAccessor, typeof i3.NvFieldtextareaValueAccessor, typeof i3.NvFieldtimeValueAccessor, typeof i3.NvNotificationValueAccessor, typeof i3.NvPopoverValueAccessor, typeof i3.NvSidebarValueAccessor, typeof i3.NvSplitValueAccessor, typeof i3.NvToggleValueAccessor, typeof i3.NvTogglebuttongroupValueAccessor]>;
21
21
  static ɵinj: i0.ɵɵInjectorDeclaration<NovaComponentsValueAccessorModule>;
22
22
  }
23
23
  export declare class NovaComponentsProvidersModule {
@@ -36,6 +36,13 @@ export declare class NvDialogValueAccessor extends ValueAccessor {
36
36
  static ɵfac: i0.ɵɵFactoryDeclaration<NvDialogValueAccessor, never>;
37
37
  static ɵdir: i0.ɵɵDirectiveDeclaration<NvDialogValueAccessor, "nv-dialog", never, {}, {}, never, never, false, never>;
38
38
  }
39
+ export declare class NvDrawerValueAccessor extends ValueAccessor {
40
+ constructor(el: ElementRef);
41
+ handleOpenChanged(event: any): void;
42
+ writeValue(value: any): void;
43
+ static ɵfac: i0.ɵɵFactoryDeclaration<NvDrawerValueAccessor, never>;
44
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NvDrawerValueAccessor, "nv-drawer", never, {}, {}, never, never, false, never>;
45
+ }
39
46
  export declare class NvFieldcheckboxValueAccessor extends ValueAccessor {
40
47
  constructor(el: ElementRef);
41
48
  handleCheckedChanged(event: any): void;
@@ -262,6 +262,49 @@ export declare class NvDialogheader {
262
262
  }
263
263
  export declare interface NvDialogheader extends Components.NvDialogheader {
264
264
  }
265
+ export declare class NvDrawer {
266
+ protected z: NgZone;
267
+ protected el: HTMLNvDrawerElement;
268
+ openChanged: EventEmitter<CustomEvent<boolean>>;
269
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
270
+ static ɵfac: i0.ɵɵFactoryDeclaration<NvDrawer, never>;
271
+ static ɵcmp: i0.ɵɵComponentDeclaration<NvDrawer, "nv-drawer", never, { "autofocus": { "alias": "autofocus"; "required": false; }; "clickOutside": { "alias": "clickOutside"; "required": false; }; "controlled": { "alias": "controlled"; "required": false; }; "open": { "alias": "open"; "required": false; }; "side": { "alias": "side"; "required": false; }; "size": { "alias": "size"; "required": false; }; "swipeToOpen": { "alias": "swipeToOpen"; "required": false; }; "undismissable": { "alias": "undismissable"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, { "openChanged": "openChanged"; }, never, ["*"], false, never>;
272
+ }
273
+ export declare interface NvDrawer extends Components.NvDrawer {
274
+ /**
275
+ * Emitted when the drawer is closing in order to allow for cleanup, data-capture, etc. @bind open
276
+ */
277
+ openChanged: EventEmitter<CustomEvent<boolean>>;
278
+ }
279
+ export declare class NvDrawerfooter {
280
+ protected z: NgZone;
281
+ protected el: HTMLNvDrawerfooterElement;
282
+ drawerCanceled: EventEmitter<CustomEvent<void>>;
283
+ drawerPrimaryClicked: EventEmitter<CustomEvent<void>>;
284
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
285
+ static ɵfac: i0.ɵɵFactoryDeclaration<NvDrawerfooter, never>;
286
+ static ɵcmp: i0.ɵɵComponentDeclaration<NvDrawerfooter, "nv-drawerfooter", never, { "cancelLabel": { "alias": "cancelLabel"; "required": false; }; "danger": { "alias": "danger"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "leadingIcon": { "alias": "leadingIcon"; "required": false; }; "primaryButtonType": { "alias": "primaryButtonType"; "required": false; }; "primaryLabel": { "alias": "primaryLabel"; "required": false; }; "trailingIcon": { "alias": "trailingIcon"; "required": false; }; "undismissable": { "alias": "undismissable"; "required": false; }; }, { "drawerCanceled": "drawerCanceled"; "drawerPrimaryClicked": "drawerPrimaryClicked"; }, never, ["*"], false, never>;
287
+ }
288
+ export declare interface NvDrawerfooter extends Components.NvDrawerfooter {
289
+ /**
290
+ * Emitted when the cancel button is clicked. This will close the drawer.
291
+ */
292
+ drawerCanceled: EventEmitter<CustomEvent<void>>;
293
+ /**
294
+ * Emitted when the primary button is clicked. This allows to handle the
295
+ primary action and potential data capture before closing the drawer.
296
+ */
297
+ drawerPrimaryClicked: EventEmitter<CustomEvent<void>>;
298
+ }
299
+ export declare class NvDrawerheader {
300
+ protected z: NgZone;
301
+ protected el: HTMLNvDrawerheaderElement;
302
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
303
+ static ɵfac: i0.ɵɵFactoryDeclaration<NvDrawerheader, never>;
304
+ static ɵcmp: i0.ɵɵComponentDeclaration<NvDrawerheader, "nv-drawerheader", never, { "heading": { "alias": "heading"; "required": false; }; "subheading": { "alias": "subheading"; "required": false; }; }, {}, never, ["*"], false, never>;
305
+ }
306
+ export declare interface NvDrawerheader extends Components.NvDrawerheader {
307
+ }
265
308
  export declare class NvFieldcheckbox {
266
309
  protected z: NgZone;
267
310
  protected el: HTMLNvFieldcheckboxElement;
@@ -744,7 +787,7 @@ export declare class NvSplit {
744
787
  }
745
788
  export declare interface NvSplit extends Components.NvSplit {
746
789
  /**
747
- * Emitted when pane sizes are updated (either via dragging or programmatically). @bind sizes
790
+ * Emitted when pane sizes are updated (drag start/stop or programmatically). @bind sizes
748
791
  */
749
792
  sizesChanged: EventEmitter<CustomEvent<number[]>>;
750
793
  }
@@ -1,2 +1,2 @@
1
1
  import * as d from './components';
2
- export declare const DIRECTIVES: (typeof d.NvAccordion | typeof d.NvAccordionItem | typeof d.NvAlert | typeof d.NvAvatar | typeof d.NvBadge | typeof d.NvBreadcrumb | typeof d.NvBreadcrumbs | typeof d.NvButton | typeof d.NvButtongroup | typeof d.NvCalendar | typeof d.NvCol | typeof d.NvDatagrid | typeof d.NvDatagridcolumn | typeof d.NvDialog | typeof d.NvDialogfooter | typeof d.NvDialogheader | typeof d.NvFieldcheckbox | typeof d.NvFielddate | typeof d.NvFielddaterange | typeof d.NvFielddropdown | typeof d.NvFielddropdownitem | typeof d.NvFielddropdownitemcheck | typeof d.NvFieldmultiselect | typeof d.NvFieldnumber | typeof d.NvFieldpassword | typeof d.NvFieldradio | typeof d.NvFieldselect | typeof d.NvFieldslider | typeof d.NvFieldtext | typeof d.NvFieldtextarea | typeof d.NvFieldtime | typeof d.NvIcon | typeof d.NvIconbutton | typeof d.NvLoader | typeof d.NvMenu | typeof d.NvMenuitem | typeof d.NvNotification | typeof d.NvNotificationBullet | typeof d.NvNotificationcontainer | typeof d.NvPopover | typeof d.NvRow | typeof d.NvSidebar | typeof d.NvSidebarcontent | typeof d.NvSidebardivider | typeof d.NvSidebarfooter | typeof d.NvSidebargroup | typeof d.NvSidebarheader | typeof d.NvSidebarlogo | typeof d.NvSidebarnavitem | typeof d.NvSidebarnavsubitem | typeof d.NvSplit | typeof d.NvStack | typeof d.NvTable | typeof d.NvTableheader | typeof d.NvToggle | typeof d.NvTogglebutton | typeof d.NvTogglebuttongroup | typeof d.NvTooltip)[];
2
+ export declare const DIRECTIVES: (typeof d.NvAccordion | typeof d.NvAccordionItem | typeof d.NvAlert | typeof d.NvAvatar | typeof d.NvBadge | typeof d.NvBreadcrumb | typeof d.NvBreadcrumbs | typeof d.NvButton | typeof d.NvButtongroup | typeof d.NvCalendar | typeof d.NvCol | typeof d.NvDatagrid | typeof d.NvDatagridcolumn | typeof d.NvDialog | typeof d.NvDialogfooter | typeof d.NvDialogheader | typeof d.NvDrawer | typeof d.NvDrawerfooter | typeof d.NvDrawerheader | typeof d.NvFieldcheckbox | typeof d.NvFielddate | typeof d.NvFielddaterange | typeof d.NvFielddropdown | typeof d.NvFielddropdownitem | typeof d.NvFielddropdownitemcheck | typeof d.NvFieldmultiselect | typeof d.NvFieldnumber | typeof d.NvFieldpassword | typeof d.NvFieldradio | typeof d.NvFieldselect | typeof d.NvFieldslider | typeof d.NvFieldtext | typeof d.NvFieldtextarea | typeof d.NvFieldtime | typeof d.NvIcon | typeof d.NvIconbutton | typeof d.NvLoader | typeof d.NvMenu | typeof d.NvMenuitem | typeof d.NvNotification | typeof d.NvNotificationBullet | typeof d.NvNotificationcontainer | typeof d.NvPopover | typeof d.NvRow | typeof d.NvSidebar | typeof d.NvSidebarcontent | typeof d.NvSidebardivider | typeof d.NvSidebarfooter | typeof d.NvSidebargroup | typeof d.NvSidebarheader | typeof d.NvSidebarlogo | typeof d.NvSidebarnavitem | typeof d.NvSidebarnavsubitem | typeof d.NvSplit | typeof d.NvStack | typeof d.NvTable | typeof d.NvTableheader | typeof d.NvToggle | typeof d.NvTogglebutton | typeof d.NvTogglebuttongroup | typeof d.NvTooltip)[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nova-design-system/nova-angular",
3
- "version": "3.23.0",
3
+ "version": "3.24.0",
4
4
  "description": "Nova is a design system created by Elia Group to empower creators to efficiently build solutions that people love to use.",
5
5
  "author": "Elia Group",
6
6
  "homepage": "https://nova.eliagroup.io",