@nova-design-system/nova-angular-18 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.
- package/dist/nova-components/esm2022/lib/components/nv-datatable.component.mjs +73 -54
- package/dist/nova-components/esm2022/lib/nova-components.module.mjs +3 -3
- package/dist/nova-components/esm2022/lib/stencil-generated/component-value-accessors.mjs +37 -1
- package/dist/nova-components/esm2022/lib/stencil-generated/components.mjs +91 -1
- package/dist/nova-components/esm2022/lib/stencil-generated/index.mjs +4 -1
- package/dist/nova-components/fesm2022/nova-components.mjs +201 -56
- package/dist/nova-components/fesm2022/nova-components.mjs.map +1 -1
- package/dist/nova-components/lib/components/nv-datatable.component.d.ts +15 -7
- package/dist/nova-components/lib/nova-components.module.d.ts +2 -2
- package/dist/nova-components/lib/stencil-generated/component-value-accessors.d.ts +7 -0
- package/dist/nova-components/lib/stencil-generated/components.d.ts +44 -1
- package/dist/nova-components/lib/stencil-generated/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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
|
-
*
|
|
156
|
+
* The pagination behavior (client vs server) is derived from the top-level `mode` prop.
|
|
151
157
|
*/
|
|
152
158
|
export interface NvDatatablePaginationConfig {
|
|
153
|
-
/**
|
|
154
|
-
|
|
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
|
-
*
|
|
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 */
|
|
@@ -11,11 +11,11 @@ import * as i3 from "./stencil-generated/component-value-accessors";
|
|
|
11
11
|
export declare function provideNovaComponents(): Provider;
|
|
12
12
|
export declare class NovaComponentsModule {
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<NovaComponentsModule, never>;
|
|
14
|
-
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]>;
|
|
14
|
+
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]>;
|
|
15
15
|
static ɵinj: i0.ɵɵInjectorDeclaration<NovaComponentsModule>;
|
|
16
16
|
}
|
|
17
17
|
export declare class NovaComponentsValueAccessorModule {
|
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<NovaComponentsValueAccessorModule, never>;
|
|
19
|
-
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]>;
|
|
19
|
+
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]>;
|
|
20
20
|
static ɵinj: i0.ɵɵInjectorDeclaration<NovaComponentsValueAccessorModule>;
|
|
21
21
|
}
|
|
@@ -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 (
|
|
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-18",
|
|
3
|
-
"version": "3.
|
|
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",
|