@ngflux/ngflux 2.2.2 → 3.0.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/fesm2022/ngflux-ngflux.mjs +155 -156
- package/fesm2022/ngflux-ngflux.mjs.map +1 -1
- package/package.json +1 -1
- package/types/ngflux-ngflux.d.ts +10 -10
package/package.json
CHANGED
package/types/ngflux-ngflux.d.ts
CHANGED
|
@@ -219,14 +219,14 @@ declare class NgFluxButton {
|
|
|
219
219
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NgFluxButton, "ngf-button", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "theme": { "alias": "theme"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "block": { "alias": "block"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
220
220
|
}
|
|
221
221
|
|
|
222
|
-
declare class
|
|
223
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<
|
|
224
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<
|
|
222
|
+
declare class NgFluxDialogBody {
|
|
223
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NgFluxDialogBody, never>;
|
|
224
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NgFluxDialogBody, "ngf-dialog-body", never, {}, {}, never, ["*"], true, never>;
|
|
225
225
|
}
|
|
226
226
|
|
|
227
|
-
declare class
|
|
228
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<
|
|
229
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<
|
|
227
|
+
declare class NgFluxDialogFooter {
|
|
228
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NgFluxDialogFooter, never>;
|
|
229
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NgFluxDialogFooter, "ngf-dialog-footer", never, {}, {}, never, ["*"], true, never>;
|
|
230
230
|
}
|
|
231
231
|
|
|
232
232
|
declare class NgFluxLoading {
|
|
@@ -272,12 +272,12 @@ declare class NgFluxDialogInstance<T = any> {
|
|
|
272
272
|
send(cmd: NgFluxDialogCommand<T>): void;
|
|
273
273
|
}
|
|
274
274
|
|
|
275
|
-
declare class
|
|
275
|
+
declare class NgFluxDialogHeader {
|
|
276
276
|
readonly config: _ngflux_ngflux.NgFluxDialogConfig;
|
|
277
277
|
readonly dialogRef: NgFluxDialogRef<unknown>;
|
|
278
278
|
readonly icon: _angular_core.InputSignal<string | undefined>;
|
|
279
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<
|
|
280
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<
|
|
279
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NgFluxDialogHeader, never>;
|
|
280
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NgFluxDialogHeader, "ngf-dialog-header", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
281
281
|
}
|
|
282
282
|
|
|
283
283
|
declare class NgFluxDialogRootComponent {
|
|
@@ -467,5 +467,5 @@ declare class NgFluxFrame {
|
|
|
467
467
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NgFluxFrame, "ngf-frame", never, { "viewport": { "alias": "viewport"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
468
468
|
}
|
|
469
469
|
|
|
470
|
-
export { NGF_CONFIG, NGF_DIALOG_DATA, NgFluxActions, NgFluxButton, NgFluxDialog,
|
|
470
|
+
export { NGF_CONFIG, NGF_DIALOG_DATA, NgFluxActions, NgFluxButton, NgFluxDialog, NgFluxDialogBody, NgFluxDialogFooter, NgFluxDialogHeader, NgFluxDialogInstance, NgFluxDialogRef, NgFluxDialogRootComponent, NgFluxFrame, NgFluxLoading, NgFluxLoadingRootComponent, NgFluxPagination, NgFluxPinInput, NgFluxSelect, NgFluxTab, NgFluxTabContentDirective, NgFluxTabGroup, NgFluxTabNavDirective, NgFluxTabNavbar, NgFluxTabPanel, provideNgFlux };
|
|
471
471
|
export type { ButtonDirection, ButtonOptions, ButtonSize, ButtonTheme, ButtonType, FrameHeaderMenu, FrameOptions, FrameSize, FrameToolbarItem, Menu, NgFluxComponent, NgFluxConfig, NgFluxDialogAlertOptions, NgFluxDialogButton, NgFluxDialogButtonObj, NgFluxDialogCommand, NgFluxDialogConfig, NgFluxDialogConfirmOptions, NgFluxDialogEvents, NgFluxDialogPromptOptions, NgFluxDialogRoot, NgFluxLoadingEntry, NgFluxRoute, NgFluxRoutes, Pagination, PaginationInfo, PaginationTransformer, SelectItem, SelectTransformer };
|